
(function(){
var T= window.Tracking= new function(){
var tracker=null;
var baseURL= null;
function itrack(cat, act, label, val){
}
this.track= function(p){
if(tracker){
tracker._trackPageview(p);}
itrack("Page",(p) ? p : document.title);}
this.onglet= function(o){
if(baseURL.substr(baseURL.length-1)=="/"){
o= baseURL+ o;} else{
o= baseURL+"/"+ o}
T.track(o);}
this.event= function(cat, act, label, val){
if(tracker){
tracker._trackEvent(cat, act, label, val);}
itrack(cat, act, label, val);}
this.flashEvent= function(params){
var cat= params[0];
var act= params[1];
var label= params[2];
var val= params[3];
this.event(cat, act, label, val);}
function tclick(){
var l= $j(this);
var c= l.attr("title") || l.text() || l.attr("href");
T.event("Click", c, document.title);}
this.init= function(url, id){
baseURL= decodeURIComponent(url);
if(id!=""){
try{
tracker= _gat._getTracker(id);} catch(err){}}
T.track();
T.enable($j(document.body));}
this.enable= function(s){
s.find("a").one("click", tclick);}}})();



var DynamicZoneJavascriptNone= 0;
var DynamicZoneJavascriptEval= 1;
var DynamicZoneJavascriptWrite= 2;

function DynamicZone(idCible, javascriptMode, nomFrame){




var putFrameInNode= function(node){
frame=frames[nomFrame];
var d= frame.document;
var source= d.body.firstChild;
while(node.childNodes.length> 0){
node.removeChild(node.childNodes[0])}
var ie= false;
try{
ie= YAHOO.env.ua.ie;} catch(e){
ie= jQuery.browser.msie;}
if( ie ){
node.innerHTML= source.innerHTML;} else{
var clone= source.cloneNode(true);
var scripts= clone.getElementsByTagName("SCRIPT");
for(var i=0; i< scripts.length; i++){
var s= scripts[i];
s.parentNode.removeChild(s);}
node.appendChild(clone);}}
function continuTypeFace(elements, i){
var perf= 200;
if(i< elements.length){
while(i< elements.length && perf> 0){
var e= elements[i];
if(e.className.match(/(^|\s)typeface-js(\s|$)/) || e.tagName.match(/^(H1|H2|H3|H4|H5|H6)$/)){
_typeface_js.replaceText(e);
e.style.visibility='visible';
perf-=75;}
perf--;
i++;}
setTimeout(function(){
continuTypeFace(elements, i);}, 100);} else{
if(_typeface_js.vectorBackend=='vml' ){
try{
var dummyShape= document.createElement('v:shape');
dummyShape.style.display='none';
document.body.appendChild(dummyShape);} catch(e){}}}}

this.fixTypeFace= function(node){
var elements= node.getElementsByTagName('*');
continuTypeFace(elements, 0);}
function insertContentEvalMode(node, html){
var dw= document.write;
document.write= function(){
alert("Cette function n'est pas support? dans un onglet. PS: Demandez ? Tommy de faire un fix pour document.write !");}
jQuery(node).empty().append(html);
document.write= dw;}

this.setContenu= function(html){
var node= document.getElementById(idCible);
if(node){
if(javascriptMode== DynamicZoneJavascriptWrite){
creerFrame();
genererDansFrame(html);
putFrameInNode(node);} else if(javascriptMode== DynamicZoneJavascriptEval){
insertContentEvalMode(node, html);} else{
node.innerHTML= html;}
Tracking.enable($j(node));
try{
if(_typeface_js){
this.fixTypeFace(node);}} catch(err){}
this.customFix(node);}}}
DynamicZone.prototype.customFix= function(){};


/*****************************************************************

typeface.js, version 0.15 | 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(/^(H1|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', 'h1', '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.CanvasRenderingContext2D || document.createElement('canvas').getContext ? 'canvas' : !!(window.attachEvent && !window.opera) ? 'vml' : 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) {};

})();



if (_typeface_js && _typeface_js.loadFace) _typeface_js.loadFace({"glyphs":{"S":{"x_min":66.78125,"x_max":681,"ha":745,"o":"m 681 307 q 612 86 681 178 q 485 0 568 24 q 381 -15 440 -15 q 197 40 270 -15 q 102 163 137 85 q 66 342 66 241 l 241 342 q 299 192 253 240 q 375 158 332 158 q 473 216 436 158 q 492 298 492 245 q 422 453 492 376 q 256 609 366 505 q 125 770 163 699 q 84 943 84 850 q 197 1199 84 1112 q 370 1252 267 1252 q 541 1207 470 1252 q 630 1110 596 1172 q 672 967 664 1048 l 492 934 q 449 1052 485 1010 q 375 1084 423 1084 q 297 1038 324 1084 q 276 947 276 1002 q 349 775 276 863 q 431 696 376 741 q 517 620 496 642 q 625 484 586 551 q 654 425 643 453 q 681 307 681 360 "},"¦":{"x_min":127,"x_max":233,"ha":360,"o":"m 233 1012 l 233 476 l 127 476 l 127 1012 l 233 1012 m 233 244 l 233 -292 l 127 -292 l 127 244 l 233 244 "},"/":{"x_min":63.75,"x_max":731.0625,"ha":796,"o":"m 579 1315 l 731 1315 l 215 -37 l 63 -37 l 579 1315 "},"y":{"x_min":63.4375,"x_max":749.9375,"ha":814,"o":"m 313 518 l 63 1237 l 268 1237 l 406 792 l 543 1237 l 749 1237 l 499 518 l 499 0 l 313 0 l 313 518 "},"Á":{"x_min":63.75,"x_max":737.171875,"ha":802,"o":"m 303 284 l 257 0 l 63 0 l 273 1236 l 530 1236 l 737 0 l 541 0 l 497 284 l 303 284 m 400 952 l 331 466 l 469 466 l 400 952 m 288 1199 l 284 1184 l 608 1184 l 612 1243 l 288 1199 "},"g":{"x_min":64,"x_max":655,"ha":719,"o":"m 359 -16 q 150 70 236 -16 q 64 278 64 157 l 64 953 q 150 1162 64 1076 q 359 1249 237 1249 q 569 1162 483 1249 q 655 953 655 1075 l 655 812 l 462 812 l 462 957 q 430 1033 462 1001 q 353 1065 398 1065 q 278 1033 309 1065 q 247 957 247 1001 l 247 281 q 278 205 247 236 q 353 174 309 174 q 430 205 398 174 q 462 280 462 236 l 462 524 l 358 524 l 358 711 l 655 711 l 655 279 q 568 69 655 155 q 359 -16 481 -16 "},"²":{"x_min":16.6875,"x_max":439,"ha":462,"o":"m 16 497 q 48 574 20 535 q 188 703 91 632 q 304 794 286 774 q 330 851 330 822 q 306 904 330 883 q 236 926 282 926 q 169 910 191 926 q 133 848 147 894 l 30 859 q 99 970 50 934 q 238 1006 147 1006 q 388 966 340 1006 q 436 868 436 926 q 396 760 436 811 q 257 644 365 722 q 177 579 201 603 l 439 579 l 439 497 l 16 497 "},"ë":{"x_min":64,"x_max":594.515625,"ha":660,"o":"m 64 -1 l 64 1237 l 594 1237 l 594 1050 l 250 1050 l 250 711 l 501 711 l 501 524 l 250 524 l 250 186 l 594 186 l 594 -1 l 64 -1 m 177 1423 l 165 1319 l 262 1319 l 262 1423 l 177 1423 m 373 1419 l 373 1324 l 471 1336 l 471 1419 l 373 1419 "},"Î":{"x_min":-22.125,"x_max":407.34375,"ha":315,"o":"m 250 0 l 64 0 l 64 1236 l 250 1236 l 250 0 m 194 1170 l 117 1055 l -22 1055 l 124 1245 l 254 1245 l 407 1055 l 269 1055 l 194 1170 "},"e":{"x_min":64,"x_max":594.515625,"ha":659,"o":"m 64 -1 l 64 1237 l 594 1237 l 594 1050 l 250 1050 l 250 711 l 501 711 l 501 524 l 250 524 l 250 186 l 594 186 l 594 -1 l 64 -1 "},"Ã":{"x_min":63.421875,"x_max":736.828125,"ha":801,"o":"m 302 284 l 257 0 l 63 0 l 272 1236 l 529 1236 l 736 0 l 541 0 l 497 284 l 302 284 m 400 952 l 331 466 l 469 466 l 400 952 m 235 1055 q 274 1167 235 1125 q 373 1210 312 1210 q 487 1173 415 1210 q 551 1153 527 1153 q 584 1164 573 1153 q 601 1212 596 1176 l 688 1212 q 650 1095 688 1134 q 556 1057 613 1057 q 443 1095 513 1057 q 377 1120 398 1120 q 339 1103 354 1120 q 325 1055 325 1087 l 235 1055 "},"J":{"x_min":64.140625,"x_max":474.421875,"ha":539,"o":"m 474 279 q 387 71 474 156 q 179 -14 301 -14 q 64 0 108 -14 l 90 174 q 144 168 121 168 q 184 170 158 170 q 260 200 229 170 q 292 275 292 231 l 292 1234 l 474 1234 l 474 279 "},"»":{"x_min":94.9375,"x_max":676.140625,"ha":772,"o":"m 536 358 l 359 668 l 459 668 l 676 358 l 459 49 l 360 49 l 536 358 m 273 358 l 94 668 l 197 668 l 410 358 l 197 49 l 94 49 l 273 358 "},"©":{"x_min":2,"x_max":1025,"ha":1023,"o":"m 513 1012 q 765 945 642 1012 q 956 756 888 879 q 1025 499 1025 633 q 957 245 1025 367 q 768 55 890 123 q 513 -12 646 -12 q 259 55 380 -12 q 69 245 137 123 q 2 499 2 367 q 70 756 2 633 q 262 945 139 879 q 513 1012 385 1012 m 513 927 q 304 871 406 927 q 144 713 202 816 q 87 499 87 610 q 143 287 87 389 q 301 129 200 186 q 513 73 403 73 q 725 129 624 73 q 883 287 827 186 q 940 499 940 389 q 882 713 940 610 q 723 871 825 816 q 513 927 620 927 m 677 416 l 761 392 q 674 257 740 307 q 514 207 608 207 q 320 284 395 207 q 246 498 246 361 q 279 653 246 587 q 376 753 313 719 q 519 787 439 787 q 669 743 609 787 q 750 626 729 700 l 670 607 q 610 684 649 657 q 516 711 570 711 q 388 655 439 711 q 338 496 338 599 q 385 339 338 392 q 509 286 433 286 q 616 321 570 286 q 677 416 662 356 "},"ò":{"x_min":64,"x_max":655,"ha":719,"o":"m 358 1251 q 568 1164 481 1251 q 655 955 655 1077 l 655 281 q 568 71 655 157 q 358 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1078 q 358 1251 237 1251 m 460 959 q 429 1035 460 1004 q 353 1066 398 1066 q 277 1035 309 1066 q 246 959 246 1004 l 246 282 q 277 207 246 238 q 353 176 309 176 q 429 207 398 176 q 460 282 460 238 l 460 959 m 212 1181 l 216 1122 l 532 1122 l 527 1136 l 212 1181 "},"^":{"x_min":68,"x_max":369,"ha":526,"o":"m 68 1121 l 68 1161 l 213 1203 l 369 1163 l 369 1123 l 213 1161 l 68 1121 "},"«":{"x_min":90.875,"x_max":672.0625,"ha":772,"o":"m 230 358 l 406 49 l 307 49 l 90 358 l 307 668 l 407 668 l 230 358 m 493 358 l 672 49 l 568 49 l 356 358 l 568 668 l 672 668 l 493 358 "},"D":{"x_min":64,"x_max":650,"ha":714,"o":"m 650 295 q 563 86 650 173 q 357 0 477 0 l 64 0 l 64 1237 l 357 1237 q 564 1150 479 1237 q 650 941 650 1063 l 650 295 m 250 184 l 362 184 q 437 216 407 184 q 468 291 468 248 l 468 938 q 436 1014 468 982 q 362 1046 405 1046 l 250 1046 l 250 184 "},"ⁿ":{"x_min":56,"x_max":453,"ha":507,"o":"m 56 352 l 56 803 l 144 803 l 144 755 q 207 797 172 783 q 285 812 242 812 q 380 790 341 812 q 436 735 419 769 q 453 627 453 700 l 453 352 l 357 352 l 357 623 q 335 706 357 683 q 267 730 313 730 q 182 698 212 730 q 152 597 152 667 l 152 352 l 56 352 "},"ÿ":{"x_min":63.640625,"x_max":749.5,"ha":814,"o":"m 313 517 l 63 1237 l 268 1237 l 406 792 l 543 1237 l 749 1237 l 499 517 l 499 0 l 313 0 l 313 517 m 164 861 l 164 1000 l 292 1000 l 292 861 l 164 861 m 417 861 l 417 1000 l 544 1000 l 544 861 l 417 861 "},"￼":{"x_min":0,"x_max":1389,"ha":1389,"o":"m 1389 779 l 1321 779 l 1321 931 l 1169 931 l 1169 999 l 1389 999 l 1389 779 m 999 931 l 780 931 l 780 999 l 999 999 l 999 931 m 1389 390 l 1321 390 l 1321 609 l 1389 609 l 1389 390 m 1209 414 q 1065 251 1209 251 q 971 281 1007 251 l 1021 334 q 1065 317 1038 317 q 1130 411 1130 317 l 1130 738 l 1209 738 l 1209 414 m 609 931 l 390 931 l 390 999 l 609 999 l 609 931 m 1389 0 l 1169 0 l 1169 68 l 1321 68 l 1321 219 l 1389 219 l 1389 0 m 965 400 q 778 259 965 259 l 616 259 l 616 739 l 775 739 q 945 612 945 739 q 884 514 945 551 q 965 400 965 483 m 219 931 l 68 931 l 68 779 l 0 779 l 0 999 l 219 999 l 219 931 m 999 0 l 780 0 l 780 68 l 999 68 l 999 0 m 579 498 q 523 316 579 381 q 363 251 467 251 q 205 316 260 251 q 151 498 151 381 q 205 681 151 616 q 363 747 260 747 q 523 681 467 747 q 579 498 579 616 m 68 390 l 0 390 l 0 609 l 68 609 l 68 390 m 609 0 l 390 0 l 390 68 l 609 68 l 609 0 m 219 0 l 0 0 l 0 219 l 68 219 l 68 68 l 219 68 l 219 0 m 866 605 q 755 673 866 673 l 695 673 l 695 541 l 763 541 q 866 605 866 541 m 886 400 q 770 475 886 475 l 695 475 l 695 325 l 778 325 q 886 400 886 325 m 500 498 q 363 681 500 681 q 230 498 230 681 q 363 317 230 317 q 500 498 500 317 "},"í":{"x_min":46.515625,"x_max":374,"ha":386,"o":"m 134 0 l 134 720 l 256 720 l 256 0 l 134 0 m 50 953 l 46 939 l 369 939 l 374 998 l 50 953 "},"w":{"x_min":63.75,"x_max":1025.390625,"ha":1090,"o":"m 830 1236 l 1025 1236 l 832 0 l 653 0 l 547 674 l 448 0 l 270 0 l 63 1236 l 259 1236 l 356 574 l 446 1236 l 641 1236 l 739 574 l 830 1236 "},"$":{"x_min":67.46875,"x_max":681,"ha":745,"o":"m 681 316 q 589 67 681 156 q 452 0 534 15 l 452 -86 l 294 -86 l 294 4 q 121 137 182 33 q 67 351 67 228 l 242 351 q 299 201 253 247 q 376 167 332 167 q 473 227 437 167 q 492 308 492 255 q 423 462 492 384 q 256 618 367 514 q 132 768 170 700 q 84 952 84 853 q 129 1127 84 1048 q 294 1251 184 1225 l 294 1332 l 452 1332 l 452 1251 q 577 1188 526 1234 q 666 976 666 1107 l 492 943 q 449 1063 485 1019 q 377 1093 426 1093 q 298 1047 325 1093 q 277 956 277 1011 q 350 783 277 872 q 432 705 377 751 q 518 629 496 651 q 626 493 588 558 q 681 316 681 396 "},"\\":{"x_min":63.75,"x_max":731.0625,"ha":796,"o":"m 63 1314 l 214 1314 l 731 -37 l 579 -37 l 63 1314 "},"Ì":{"x_min":38.234375,"x_max":357.828125,"ha":315,"o":"m 250 0 l 64 0 l 64 1236 l 250 1236 l 250 0 m 38 1427 l 42 1368 l 357 1368 l 353 1382 l 38 1427 "},"µ":{"x_min":108,"x_max":690,"ha":800,"o":"m 690 720 l 690 0 l 580 0 l 580 85 q 511 10 545 31 q 400 -17 463 -17 q 300 5 344 -17 q 229 72 268 22 l 229 -276 l 108 -276 l 108 720 l 229 720 l 229 415 q 246 200 229 249 q 303 122 264 150 q 395 94 343 94 q 492 123 449 94 q 552 200 534 153 q 570 413 570 247 l 570 720 l 690 720 "},"Ç":{"x_min":64,"x_max":655,"ha":719,"o":"m 359 -16 q 150 70 236 -16 q 64 278 64 156 l 64 953 q 150 1162 64 1076 q 359 1249 237 1249 q 569 1162 483 1249 q 655 953 655 1075 l 655 812 l 462 812 l 462 957 q 430 1033 462 1001 q 353 1065 398 1065 q 278 1033 309 1065 q 247 957 247 1001 l 247 281 q 278 205 247 236 q 353 174 309 174 q 430 205 398 174 q 462 281 462 236 l 462 451 l 655 451 l 655 279 q 568 69 655 155 q 359 -16 481 -16 m 293 -99 l 317 -18 l 377 -18 l 362 -67 q 421 -90 401 -71 q 441 -133 441 -109 q 408 -193 441 -167 q 309 -220 375 -220 q 244 -214 272 -220 l 249 -162 q 291 -162 278 -162 q 352 -151 334 -162 q 365 -128 365 -142 q 359 -114 365 -120 q 340 -103 354 -107 q 293 -99 326 -99 "},"-":{"x_min":64,"x_max":616,"ha":680,"o":"m 64 712 l 616 712 l 616 524 l 64 524 l 64 712 "},"Q":{"x_min":64,"x_max":686,"ha":750,"o":"m 655 281 q 615 133 655 201 q 686 105 640 105 l 686 -69 q 495 19 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 359 1252 237 1252 q 569 1164 483 1252 q 655 955 655 1076 l 655 281 m 462 959 q 430 1035 462 1004 q 353 1066 398 1066 q 278 1035 309 1066 q 247 959 247 1004 l 247 282 q 278 207 247 238 q 353 176 309 176 q 430 207 398 176 q 462 282 462 238 l 462 959 "},"M":{"x_min":64,"x_max":928,"ha":992,"o":"m 250 0 l 64 0 l 64 1237 l 331 1237 l 504 349 l 671 1237 l 928 1237 l 928 0 l 742 0 l 742 777 l 580 0 l 430 0 l 250 775 l 250 0 "},"C":{"x_min":64,"x_max":655,"ha":719,"o":"m 359 -16 q 150 70 236 -16 q 64 278 64 156 l 64 953 q 150 1162 64 1076 q 359 1249 237 1249 q 569 1162 483 1249 q 655 953 655 1075 l 655 812 l 462 812 l 462 957 q 430 1033 462 1001 q 353 1065 398 1065 q 278 1033 309 1065 q 247 957 247 1001 l 247 281 q 278 205 247 236 q 353 174 309 174 q 430 205 398 174 q 462 281 462 236 l 462 451 l 655 451 l 655 279 q 568 69 655 155 q 359 -16 481 -16 "},"!":{"x_min":64,"x_max":250,"ha":315,"o":"m 71 544 l 71 1237 l 243 1237 l 243 544 l 243 306 l 71 306 l 71 544 m 64 -1 l 64 186 l 250 186 l 250 -1 l 64 -1 "},"ç":{"x_min":64,"x_max":655,"ha":719,"o":"m 359 -15 q 150 71 236 -15 q 64 279 64 157 l 64 954 q 150 1163 64 1077 q 359 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 353 1066 398 1066 q 278 1034 309 1066 q 247 958 247 1002 l 247 282 q 278 206 247 237 q 353 175 309 175 q 430 206 398 175 q 462 282 462 237 l 462 452 l 655 452 l 655 280 q 568 70 655 156 q 359 -15 481 -15 m 303 -99 l 327 -18 l 387 -18 l 372 -67 q 431 -90 411 -71 q 451 -133 451 -109 q 418 -193 451 -167 q 319 -220 385 -220 q 253 -214 281 -220 l 258 -162 q 301 -162 287 -162 q 362 -151 344 -162 q 375 -128 375 -142 q 369 -114 375 -120 q 350 -103 364 -107 q 303 -99 336 -99 "},"È":{"x_min":64,"x_max":642.65625,"ha":659,"o":"m 64 -1 l 64 1237 l 594 1237 l 594 1050 l 250 1050 l 250 711 l 501 711 l 501 524 l 250 524 l 250 186 l 594 186 l 594 -1 l 64 -1 m 323 1426 l 327 1367 l 642 1367 l 638 1382 l 323 1426 "},"{":{"x_min":64,"x_max":464.171875,"ha":529,"o":"m 162 1087 q 233 1278 162 1224 q 464 1331 301 1331 l 464 1202 q 347 1178 378 1202 q 317 1081 317 1154 l 317 816 q 292 725 317 769 q 224 659 266 676 q 290 597 262 644 q 317 503 317 554 l 317 238 q 347 141 317 163 q 464 119 378 119 l 464 -11 q 233 41 301 -11 q 162 232 162 95 l 162 423 q 152 551 162 525 q 64 609 132 609 l 64 707 q 152 769 132 713 q 162 896 162 792 l 162 1087 "},"X":{"x_min":63.75,"x_max":750.734375,"ha":815,"o":"m 750 0 l 550 0 l 407 392 l 263 0 l 63 0 l 305 621 l 63 1236 l 269 1236 l 407 854 l 544 1236 l 750 1236 l 508 621 l 750 0 "},"ô":{"x_min":64,"x_max":655,"ha":719,"o":"m 358 1252 q 568 1165 481 1252 q 655 955 655 1078 l 655 281 q 568 71 655 157 q 358 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 358 1252 237 1252 m 460 959 q 429 1035 460 1004 q 353 1066 398 1066 q 277 1035 309 1066 q 246 959 246 1004 l 246 282 q 277 207 246 238 q 353 176 309 176 q 429 207 398 176 q 460 282 460 238 l 460 959 m 384 924 l 308 809 l 168 809 l 314 999 l 445 999 l 597 809 l 459 809 l 384 924 "},"¼":{"x_min":72.09375,"x_max":1138,"ha":1158,"o":"m 170 -38 l 917 1011 l 1023 1011 l 276 -38 l 170 -38 m 224 497 l 224 872 q 72 795 154 817 l 72 879 q 165 928 114 892 q 249 1006 217 964 l 322 1006 l 322 497 l 224 497 m 969 -21 l 969 84 l 710 84 l 710 167 l 983 488 l 1067 488 l 1067 157 l 1138 157 l 1138 84 l 1067 84 l 1067 -21 l 969 -21 m 969 157 l 969 335 l 813 157 l 969 157 "},"#":{"x_min":63.75,"x_max":1073.546875,"ha":1138,"o":"m 850 716 l 811 480 l 1003 480 l 975 293 l 780 293 l 732 0 l 545 0 l 594 293 l 433 293 l 385 0 l 198 0 l 246 293 l 63 293 l 92 480 l 277 480 l 316 716 l 133 716 l 162 903 l 347 903 l 402 1238 l 589 1238 l 533 903 l 694 903 l 750 1238 l 936 1238 l 880 903 l 1073 903 l 1045 716 l 850 716 m 663 716 l 503 716 l 465 480 l 624 480 l 663 716 "},"Ê":{"x_min":64,"x_max":692.171875,"ha":659,"o":"m 64 -1 l 64 1237 l 594 1237 l 594 1050 l 250 1050 l 250 711 l 501 711 l 501 524 l 250 524 l 250 186 l 594 186 l 594 -1 l 64 -1 m 479 1170 l 402 1054 l 262 1054 l 409 1245 l 539 1245 l 692 1054 l 553 1054 l 479 1170 "},")":{"x_min":63.765625,"x_max":433,"ha":497,"o":"m 183 1405 q 308 1182 251 1304 q 433 676 433 911 q 308 151 433 440 q 183 -90 252 22 l 63 -29 q 159 212 118 90 q 246 561 224 402 q 255 676 255 621 q 160 1124 255 861 q 66 1350 118 1239 l 183 1405 "},"Å":{"x_min":64.234375,"x_max":737.515625,"ha":802,"o":"m 303 284 l 258 0 l 64 0 l 273 1236 l 530 1236 l 737 0 l 542 0 l 498 284 l 303 284 m 401 952 l 332 466 l 470 466 l 401 952 m 326 1085 q 362 1171 326 1135 q 448 1207 398 1207 q 534 1170 498 1207 q 570 1083 570 1134 q 534 994 570 1030 q 448 959 498 959 q 361 995 397 959 q 326 1085 326 1031 m 378 1084 q 399 1031 378 1053 q 449 1010 420 1010 q 499 1031 478 1010 q 521 1083 521 1053 q 500 1135 521 1113 q 449 1157 479 1157 q 399 1135 420 1157 q 378 1084 378 1114 "},"ø":{"x_min":87,"x_max":762,"ha":848,"o":"m 622 678 l 689 764 l 755 717 l 682 623 q 740 517 725 565 q 762 359 762 450 q 647 60 762 156 q 423 -16 554 -16 q 232 38 315 -16 l 161 -53 l 97 -5 l 170 90 q 114 182 130 136 q 87 350 87 256 q 186 645 87 554 q 420 737 286 737 q 523 722 476 737 q 622 678 569 708 m 554 588 q 424 636 492 636 q 273 566 334 636 q 212 360 212 497 q 247 189 212 258 l 554 588 m 605 522 l 300 126 q 419 84 353 84 q 575 153 514 84 q 637 361 637 222 q 628 451 637 412 q 605 522 623 479 "},"â":{"x_min":63.75,"x_max":737.171875,"ha":802,"o":"m 303 284 l 257 0 l 63 0 l 273 1236 l 530 1236 l 737 0 l 541 0 l 497 284 l 303 284 m 400 952 l 331 466 l 469 466 l 400 952 "},"}":{"x_min":63.515625,"x_max":464,"ha":528,"o":"m 388 733 q 464 698 407 703 l 464 602 q 404 585 421 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 63 -19 227 -19 l 63 109 q 180 131 150 109 q 210 228 210 154 l 210 494 q 236 587 210 539 q 303 651 262 635 q 237 713 264 666 q 210 807 210 759 l 210 1073 q 180 1170 210 1147 q 63 1193 150 1193 l 63 1322 q 294 1269 226 1322 q 369 1078 369 1215 l 369 887 q 369 807 369 822 q 388 733 369 764 "},"Ä":{"x_min":63.40625,"x_max":736.375,"ha":801,"o":"m 302 284 l 257 0 l 63 0 l 273 1236 l 529 1236 l 736 0 l 541 0 l 497 284 l 302 284 m 400 952 l 331 466 l 469 466 l 400 952 m 256 1055 l 256 1194 l 384 1194 l 384 1055 l 256 1055 m 509 1055 l 509 1194 l 636 1194 l 636 1055 l 509 1055 "},"¸":{"x_min":106.28125,"x_max":303,"ha":462,"o":"m 155 -85 l 179 -4 l 239 -4 l 224 -53 q 283 -76 263 -57 q 303 -119 303 -95 q 270 -179 303 -153 q 171 -206 237 -206 q 106 -200 134 -206 l 111 -148 q 153 -148 140 -148 q 214 -137 196 -148 q 227 -114 227 -128 q 221 -100 227 -106 q 202 -89 216 -93 q 155 -85 188 -85 "},"a":{"x_min":63.75,"x_max":737.171875,"ha":802,"o":"m 303 284 l 257 0 l 63 0 l 273 1236 l 530 1236 l 737 0 l 541 0 l 497 284 l 303 284 m 400 952 l 331 466 l 469 466 l 400 952 "},"=":{"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 520 406 l 520 1237 l 707 1237 l 707 0 l 506 0 l 250 792 l 250 0 l 64 0 l 64 1237 l 273 1237 "},"ú":{"x_min":64,"x_max":655,"ha":719,"o":"m 358 -14 q 149 71 235 -14 q 64 279 64 157 l 64 1235 l 246 1235 l 246 281 q 277 206 246 237 q 353 175 309 175 q 429 206 398 175 q 460 281 460 237 l 460 1235 l 655 1235 l 655 279 q 568 70 655 155 q 358 -14 481 -14 m 229 952 l 225 938 l 549 938 l 553 997 l 229 952 "},"2":{"x_min":64,"x_max":672,"ha":736,"o":"m 67 888 q 161 1156 67 1063 q 376 1238 243 1238 q 585 1146 499 1238 q 672 932 672 1054 q 615 688 672 806 q 472 464 585 623 q 381 329 441 421 l 347 279 q 299 201 315 229 q 291 184 291 186 l 657 184 l 657 1 l 64 1 l 64 171 q 105 239 64 177 q 147 303 123 268 l 195 373 q 329 559 238 431 q 457 777 414 680 q 492 926 492 857 q 460 1022 492 983 q 371 1064 425 1064 q 260 974 293 1064 q 250 903 250 944 l 250 855 l 67 855 l 67 888 "},"ü":{"x_min":63.859375,"x_max":655.09375,"ha":720,"o":"m 358 -14 q 149 71 235 -14 q 63 279 63 157 l 63 1236 l 246 1236 l 246 281 q 277 206 246 237 q 353 175 309 175 q 429 206 398 175 q 460 281 460 237 l 460 1236 l 655 1236 l 655 279 q 568 70 655 155 q 358 -14 481 -14 m 190 861 l 190 1000 l 317 1000 l 317 861 l 190 861 m 443 861 l 443 1000 l 571 1000 l 571 861 l 443 861 "},"¯":{"x_min":-21,"x_max":788,"ha":767,"o":"m -21 1062 l -21 1149 l 788 1149 l 788 1062 l -21 1062 "},"Z":{"x_min":64,"x_max":608,"ha":673,"o":"m 608 1237 l 608 1050 l 264 185 l 608 185 l 608 0 l 64 0 l 64 185 l 407 1050 l 64 1050 l 64 1237 l 608 1237 "},"u":{"x_min":64,"x_max":655,"ha":719,"o":"m 358 -14 q 149 71 235 -14 q 64 279 64 157 l 64 1235 l 246 1235 l 246 281 q 277 206 246 237 q 353 175 309 175 q 429 206 398 175 q 460 281 460 237 l 460 1235 l 655 1235 l 655 279 q 568 70 655 155 q 358 -14 481 -14 "},"Ó":{"x_min":64,"x_max":705.1875,"ha":719,"o":"m 358 1252 q 568 1165 481 1252 q 655 955 655 1078 l 655 281 q 568 71 655 157 q 358 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 358 1252 237 1252 m 460 959 q 429 1035 460 1004 q 353 1066 398 1066 q 277 1035 309 1066 q 246 959 246 1004 l 246 282 q 277 207 246 238 q 353 176 309 176 q 429 207 398 176 q 460 282 460 238 l 460 959 m 381 1199 l 377 1185 l 701 1185 l 705 1244 l 381 1199 "},"k":{"x_min":64,"x_max":720.296875,"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 676 1237 l 421 731 l 720 0 l 501 0 l 305 501 l 251 390 "},"Ù":{"x_min":64,"x_max":655,"ha":719,"o":"m 358 -14 q 149 71 235 -14 q 64 279 64 157 l 64 1235 l 246 1235 l 246 281 q 277 206 246 237 q 353 175 309 175 q 429 206 398 175 q 460 281 460 237 l 460 1235 l 655 1235 l 655 279 q 568 70 655 155 q 358 -14 481 -14 m 325 1426 l 329 1367 l 645 1367 l 641 1381 l 325 1426 "},"¢":{"x_min":73,"x_max":701.203125,"ha":772,"o":"m 504 605 l 353 87 q 395 81 376 81 q 517 129 465 81 q 579 263 568 177 l 701 250 q 595 52 678 124 q 397 -19 511 -19 q 327 -9 364 -19 l 247 -277 l 171 -255 l 249 14 q 122 138 171 51 q 73 356 73 225 q 112 563 73 477 q 231 693 152 650 q 391 737 310 737 q 459 731 416 737 l 536 994 l 611 972 l 535 709 q 638 631 602 680 q 688 508 674 582 l 569 490 q 504 605 552 565 m 432 636 q 398 639 410 639 q 294 608 343 639 q 222 512 246 577 q 198 362 198 448 q 219 211 198 273 q 281 120 241 150 l 432 636 "},"ß":{"x_min":104,"x_max":805,"ha":848,"o":"m 104 0 l 104 677 q 134 868 104 801 q 234 973 164 935 q 393 1011 305 1011 q 577 952 510 1011 q 645 816 645 893 q 632 745 645 781 q 589 654 620 708 q 550 578 558 599 q 542 540 542 556 q 556 497 542 518 q 638 431 571 475 q 761 334 730 371 q 805 211 805 282 q 735 50 805 117 q 557 -17 666 -17 q 407 28 472 -17 q 311 146 343 74 l 417 194 q 484 107 450 131 q 555 83 518 83 q 643 118 606 83 q 680 201 680 153 q 658 266 680 239 q 582 325 644 283 q 443 442 470 403 q 417 521 417 480 q 426 575 417 547 q 469 661 435 602 q 515 751 504 721 q 526 804 526 781 q 489 878 526 846 q 390 911 452 911 q 272 866 318 911 q 226 672 226 821 l 226 0 l 104 0 "},"é":{"x_min":64,"x_max":594.515625,"ha":654,"o":"m 64 -1 l 64 1237 l 594 1237 l 594 1050 l 250 1050 l 250 711 l 501 711 l 501 524 l 250 524 l 250 186 l 594 186 l 594 -1 l 64 -1 m 106 1386 l 99 1366 l 570 1366 l 576 1451 l 106 1386 "},"s":{"x_min":66.78125,"x_max":681,"ha":745,"o":"m 681 307 q 612 86 681 178 q 485 0 568 24 q 381 -15 440 -15 q 197 40 270 -15 q 102 163 137 85 q 66 342 66 241 l 241 342 q 299 192 253 240 q 375 158 332 158 q 473 216 436 158 q 492 298 492 245 q 422 453 492 376 q 256 609 366 505 q 125 770 163 699 q 84 943 84 850 q 197 1199 84 1112 q 370 1252 267 1252 q 541 1207 470 1252 q 630 1110 596 1172 q 672 967 664 1048 l 492 934 q 449 1052 485 1010 q 375 1084 423 1084 q 297 1038 324 1084 q 276 947 276 1002 q 349 775 276 863 q 431 696 376 741 q 517 620 496 642 q 625 484 586 551 q 654 425 643 453 q 681 307 681 360 "},"B":{"x_min":64,"x_max":692,"ha":756,"o":"m 64 0 l 64 1237 l 342 1237 q 541 1178 453 1237 q 650 1026 617 1129 q 668 894 668 970 q 602 695 668 770 q 537 647 574 664 q 642 554 598 623 q 685 431 671 506 q 692 345 692 392 q 647 145 692 227 q 550 43 613 81 q 409 0 478 0 l 64 0 m 265 184 l 342 184 q 474 281 437 184 q 487 358 487 315 q 447 510 487 462 q 342 554 411 554 l 265 554 l 265 184 m 265 732 l 342 732 q 459 816 429 732 q 470 894 470 848 q 432 1011 470 972 q 342 1048 398 1048 l 265 1048 l 265 732 "},"?":{"x_min":68.375,"x_max":652,"ha":716,"o":"m 363 1252 q 590 1144 513 1252 q 652 945 652 1060 q 479 581 652 754 q 416 441 416 520 q 416 381 416 414 l 416 308 l 226 308 l 226 381 q 311 641 226 556 q 439 830 404 733 q 459 948 459 886 q 430 1049 459 1012 q 337 1083 398 1091 q 257 1005 281 1076 q 242 936 246 975 l 68 967 q 138 1162 68 1083 q 265 1239 185 1215 q 363 1252 308 1252 m 226 178 l 413 178 l 413 -9 l 226 -9 l 226 178 "},"H":{"x_min":64,"x_max":661,"ha":725,"o":"m 251 524 l 251 0 l 64 0 l 64 1236 l 251 1236 l 251 712 l 474 712 l 474 1236 l 661 1236 l 661 0 l 474 0 l 474 524 l 251 524 "},"î":{"x_min":17.203125,"x_max":306.28125,"ha":312,"o":"m 250 0 l 64 0 l 64 1236 l 250 1236 l 250 0 m 17 1335 l 110 1483 l 223 1483 l 306 1337 l 217 1337 l 164 1411 l 116 1335 l 17 1335 "},"c":{"x_min":64,"x_max":655,"ha":719,"o":"m 359 -16 q 150 70 236 -16 q 64 278 64 156 l 64 953 q 150 1162 64 1076 q 359 1249 237 1249 q 569 1162 483 1249 q 655 953 655 1075 l 655 812 l 462 812 l 462 957 q 430 1033 462 1001 q 353 1065 398 1065 q 278 1033 309 1065 q 247 957 247 1001 l 247 281 q 278 205 247 236 q 353 174 309 174 q 430 205 398 174 q 462 281 462 236 l 462 451 l 655 451 l 655 279 q 568 69 655 155 q 359 -16 481 -16 "},"¶":{"x_min":1.015625,"x_max":751,"ha":746,"o":"m 275 -275 l 275 436 q 74 512 148 436 q 1 706 1 588 q 82 915 1 837 q 321 994 164 994 l 751 994 l 751 877 l 653 877 l 653 -275 l 538 -275 l 538 877 l 387 877 l 387 -275 l 275 -275 "},"¥":{"x_min":-2.078125,"x_max":768.390625,"ha":772,"o":"m 323 0 l 323 220 l 42 220 l 42 314 l 323 314 l 323 411 l 42 411 l 42 511 l 272 511 l -2 993 l 133 993 l 329 643 q 381 538 362 583 q 436 649 396 574 l 623 993 l 768 993 l 493 511 l 725 511 l 725 411 l 445 411 l 445 314 l 725 314 l 725 220 l 445 220 l 445 0 l 323 0 "},"(":{"x_min":64,"x_max":433.234375,"ha":498,"o":"m 430 1351 q 335 1125 376 1241 q 249 792 270 943 q 242 677 242 733 q 337 212 242 497 q 433 -29 379 88 l 313 -90 q 187 152 242 23 q 64 677 64 442 q 141 1073 64 864 q 187 1182 161 1125 q 313 1406 244 1304 l 430 1351 "},"U":{"x_min":64,"x_max":655,"ha":719,"o":"m 358 -14 q 149 71 235 -14 q 64 279 64 157 l 64 1235 l 246 1235 l 246 281 q 277 206 246 237 q 353 175 309 175 q 429 206 398 175 q 460 281 460 237 l 460 1235 l 655 1235 l 655 279 q 568 70 655 155 q 358 -14 481 -14 "},"Ñ":{"x_min":64,"x_max":743.625,"ha":771,"o":"m 273 1237 l 520 406 l 520 1237 l 707 1237 l 707 0 l 506 0 l 250 792 l 250 0 l 64 0 l 64 1237 l 273 1237 m 291 1055 q 330 1168 291 1126 q 428 1210 368 1210 q 543 1173 470 1210 q 607 1153 583 1153 q 640 1164 628 1153 q 656 1212 651 1176 l 743 1212 q 706 1095 743 1134 q 611 1057 669 1057 q 499 1095 568 1057 q 432 1120 453 1120 q 395 1103 410 1120 q 381 1055 381 1087 l 291 1055 "},"F":{"x_min":64,"x_max":594.515625,"ha":659,"o":"m 250 0 l 64 0 l 64 1237 l 594 1237 l 594 1050 l 250 1050 l 250 711 l 501 711 l 501 524 l 250 524 l 250 0 "},"­":{"x_min":64,"x_max":616,"ha":680,"o":"m 64 712 l 616 712 l 616 524 l 64 524 l 64 712 "},":":{"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 523 l 64 523 l 64 710 "},"Û":{"x_min":64,"x_max":711.96875,"ha":719,"o":"m 358 -14 q 149 71 235 -14 q 64 279 64 157 l 64 1235 l 246 1235 l 246 281 q 277 206 246 237 q 353 175 309 175 q 429 206 398 175 q 460 281 460 237 l 460 1236 l 655 1236 l 655 279 q 568 70 655 155 q 358 -14 481 -14 m 498 1170 l 422 1055 l 282 1055 l 428 1244 l 559 1244 l 711 1055 l 573 1055 l 498 1170 "},"*":{"x_min":63.75,"x_max":552.703125,"ha":617,"o":"m 552 1002 l 401 976 l 504 869 l 376 774 l 305 909 l 233 774 l 103 869 l 212 977 l 63 1002 l 114 1151 l 249 1085 l 227 1238 l 385 1238 l 363 1083 l 504 1151 l 552 1002 "},"°":{"x_min":87,"x_max":463,"ha":555,"o":"m 87 823 q 142 956 87 901 q 274 1011 197 1011 q 408 956 353 1011 q 463 823 463 901 q 407 690 463 745 q 274 635 352 635 q 142 689 197 635 q 87 823 87 744 m 161 823 q 194 742 161 776 q 275 709 227 709 q 355 742 322 709 q 389 823 389 776 q 355 904 389 870 q 275 938 322 938 q 194 904 227 938 q 161 823 161 870 "},"V":{"x_min":63.75,"x_max":765.65625,"ha":830,"o":"m 284 0 l 63 1236 l 259 1236 l 413 273 l 570 1236 l 765 1236 l 541 0 l 284 0 "},"å":{"x_min":63.6875,"x_max":736.96875,"ha":801,"o":"m 303 284 l 257 0 l 63 0 l 273 1236 l 530 1236 l 736 0 l 541 0 l 497 284 l 303 284 m 400 952 l 331 466 l 469 466 l 400 952 m 259 907 q 295 992 259 956 q 381 1029 331 1029 q 467 992 431 1029 q 503 904 503 956 q 467 816 503 852 q 381 780 431 780 q 294 816 330 780 q 259 907 259 852 m 311 906 q 332 852 311 874 q 382 831 353 831 q 432 852 411 831 q 454 905 454 874 q 433 957 454 935 q 382 979 412 979 q 332 957 353 979 q 311 906 311 936 "}," ":{"x_min":0,"x_max":0,"ha":359},"0":{"x_min":64,"x_max":655,"ha":719,"o":"m 655 281 q 568 72 655 158 q 359 -13 481 -13 q 150 73 236 -13 q 64 281 64 159 l 64 956 q 150 1165 64 1079 q 359 1252 237 1252 q 569 1165 483 1252 q 655 956 655 1078 l 655 281 m 462 960 q 430 1036 462 1004 q 353 1068 398 1068 q 278 1036 309 1068 q 247 960 247 1004 l 247 285 q 278 209 247 241 q 353 178 309 178 q 430 209 398 178 q 462 285 462 241 l 462 960 "},"¾":{"x_min":22.484375,"x_max":1138,"ha":1158,"o":"m 171 -38 l 917 1011 l 1023 1011 l 277 -38 l 171 -38 m 22 630 l 121 640 q 156 584 135 599 q 225 564 185 564 q 302 590 273 564 q 332 653 332 616 q 307 707 332 687 q 226 728 283 728 q 187 728 192 728 l 202 801 q 282 821 257 801 q 308 870 308 841 q 287 913 308 895 q 227 931 267 931 q 167 916 189 931 q 131 861 146 901 l 34 877 q 104 977 61 949 q 227 1006 146 1006 q 369 969 325 1006 q 414 879 414 933 q 389 813 414 842 q 320 771 365 784 q 409 722 380 756 q 438 641 438 687 q 384 531 438 578 q 231 485 330 485 q 86 522 137 485 q 22 630 36 560 m 969 -21 l 969 84 l 710 84 l 710 167 l 983 488 l 1067 488 l 1067 157 l 1138 157 l 1138 84 l 1067 84 l 1067 -21 l 969 -21 m 969 157 l 969 335 l 813 157 l 969 157 "},"@":{"x_min":64,"x_max":1323.5625,"ha":1389,"o":"m 1120 189 l 1323 189 l 1305 165 q 1043 -38 1201 35 q 720 -109 889 -109 q 252 79 440 -109 q 64 577 64 267 q 239 1096 64 885 q 727 1307 414 1307 q 1032 1235 915 1307 q 1310 714 1310 1065 q 1199 353 1310 516 q 884 170 1074 170 q 752 251 783 170 q 670 191 705 208 q 568 170 626 170 q 355 282 429 170 q 290 526 290 379 q 376 867 290 710 q 650 1055 479 1055 q 827 963 758 1055 l 837 1029 l 1023 1029 l 916 349 q 931 333 916 333 q 1047 395 988 333 q 1122 507 1092 442 q 1163 714 1163 594 q 1045 1035 1163 912 q 730 1158 927 1158 q 356 1002 503 1158 q 210 585 210 847 q 344 195 210 345 q 719 39 482 39 q 1116 185 936 39 l 1120 189 m 741 513 q 774 753 774 640 q 754 850 774 811 q 674 901 728 901 q 522 731 574 901 q 485 480 485 610 q 506 374 485 419 q 589 315 535 315 q 694 385 654 315 q 741 513 717 424 "},"ö":{"x_min":64.15625,"x_max":654.390625,"ha":719,"o":"m 358 1252 q 567 1165 481 1252 q 654 955 654 1078 l 654 281 q 567 71 654 157 q 358 -15 480 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 358 1252 237 1252 m 460 959 q 429 1035 460 1004 q 353 1066 398 1066 q 278 1035 309 1066 q 247 959 247 1004 l 247 282 q 278 207 247 238 q 353 176 309 176 q 429 207 398 176 q 460 282 460 238 l 460 959 m 193 861 l 193 1000 l 320 1000 l 320 861 l 193 861 m 445 861 l 445 1000 l 573 1000 l 573 861 l 445 861 "},"i":{"x_min":64,"x_max":250,"ha":315,"o":"m 250 0 l 64 0 l 64 1236 l 250 1236 l 250 0 "},"Õ":{"x_min":64,"x_max":768,"ha":719,"o":"m 358 1252 q 568 1165 481 1252 q 655 955 655 1078 l 655 281 q 568 71 655 157 q 358 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 358 1252 237 1252 m 460 959 q 429 1035 460 1004 q 353 1066 398 1066 q 277 1035 309 1066 q 246 959 246 1004 l 246 282 q 277 207 246 238 q 353 176 309 176 q 429 207 398 176 q 460 282 460 238 l 460 959 m 315 1055 q 354 1167 315 1125 q 453 1210 392 1210 q 568 1173 495 1210 q 631 1153 608 1153 q 665 1164 653 1153 q 681 1212 676 1176 l 768 1212 q 730 1095 768 1134 q 636 1057 693 1057 q 523 1095 593 1057 q 457 1120 478 1120 q 419 1103 434 1120 q 405 1055 405 1087 l 315 1055 "},"þ":{"x_min":92,"x_max":717,"ha":773,"o":"m 92 -276 l 92 994 l 214 994 l 214 644 q 301 713 263 696 q 412 737 349 737 q 574 689 504 737 q 681 555 645 642 q 717 365 717 469 q 677 166 717 254 q 562 31 637 78 q 404 -16 486 -16 q 299 6 347 -16 q 214 74 263 23 l 214 -276 l 92 -276 m 203 356 q 259 150 203 216 q 395 84 315 84 q 534 152 476 84 q 592 366 592 221 q 535 572 592 503 q 400 641 479 641 q 262 568 322 641 q 203 356 203 495 "},"]":{"x_min":63.859375,"x_max":377,"ha":441,"o":"m 63 1315 l 377 1315 l 377 -1 l 63 -1 l 63 184 l 190 184 l 190 1128 l 63 1128 l 63 1315 "},"m":{"x_min":64,"x_max":928,"ha":992,"o":"m 250 0 l 64 0 l 64 1237 l 331 1237 l 504 349 l 671 1237 l 928 1237 l 928 0 l 742 0 l 742 777 l 580 0 l 430 0 l 250 775 l 250 0 "},"8":{"x_min":64,"x_max":670,"ha":734,"o":"m 670 282 q 583 72 670 158 q 373 -13 496 -13 l 358 -13 q 149 73 235 -13 q 64 282 64 160 l 64 394 q 139 592 64 508 q 215 653 172 629 q 99 781 140 692 q 78 897 78 827 l 78 964 q 149 1163 78 1084 q 358 1252 227 1252 l 373 1252 q 583 1163 505 1252 q 655 964 655 1084 l 655 897 q 585 706 655 782 q 518 653 555 673 q 646 512 600 607 q 670 394 670 464 l 670 282 m 483 369 q 432 518 483 480 q 366 536 409 536 q 266 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 277 l 483 369 m 489 914 q 409 1073 489 1041 q 366 1082 390 1082 q 288 1054 319 1082 q 254 999 264 1033 q 244 914 244 965 q 270 798 244 833 q 366 751 299 751 q 463 801 433 751 q 489 914 489 843 "},"R":{"x_min":64,"x_max":689.65625,"ha":754,"o":"m 357 1237 q 586 1150 513 1237 q 651 941 651 1075 l 651 761 q 551 539 651 629 l 689 0 l 488 0 l 374 466 q 357 466 366 466 l 250 466 l 250 0 l 64 0 l 64 1237 l 357 1237 m 469 938 q 362 1046 469 1046 l 250 1046 l 250 650 l 362 650 q 438 681 407 650 q 469 757 469 713 l 469 938 "},"á":{"x_min":63.75,"x_max":737.171875,"ha":802,"o":"m 303 284 l 257 0 l 63 0 l 273 1236 l 530 1236 l 737 0 l 541 0 l 497 284 l 303 284 m 400 952 l 331 466 l 469 466 l 400 952 m 236 953 l 231 939 l 555 939 l 559 998 l 236 953 "},"×":{"x_min":109.1875,"x_max":700.546875,"ha":811,"o":"m 109 277 l 322 491 l 109 704 l 192 786 l 405 573 l 617 786 l 699 704 l 487 491 l 700 278 l 617 196 l 404 408 l 191 195 l 109 277 "},"o":{"x_min":64,"x_max":655,"ha":719,"o":"m 358 1252 q 568 1165 481 1252 q 655 955 655 1078 l 655 281 q 568 71 655 157 q 358 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 358 1252 237 1252 m 460 959 q 429 1035 460 1004 q 353 1066 398 1066 q 277 1035 309 1066 q 246 959 246 1004 l 246 282 q 277 207 246 238 q 353 176 309 176 q 429 207 398 176 q 460 282 460 238 l 460 959 "},"5":{"x_min":63.375,"x_max":640,"ha":705,"o":"m 270 1050 l 270 785 q 347 846 297 824 q 409 857 374 857 q 589 770 531 857 q 640 561 640 696 l 640 295 q 553 70 640 158 q 344 -14 470 -14 q 140 76 222 -14 q 63 287 63 163 l 63 318 l 242 318 l 246 282 q 305 184 253 208 q 339 176 322 176 q 454 295 454 176 l 454 598 q 414 688 454 652 q 362 705 395 705 q 289 666 313 705 q 270 595 270 633 l 270 561 l 82 561 l 82 1237 l 628 1237 l 628 1050 l 270 1050 "},"õ":{"x_min":63.453125,"x_max":654.125,"ha":719,"o":"m 357 1252 q 567 1165 481 1252 q 654 955 654 1078 l 654 281 q 567 71 654 157 q 357 -15 480 -15 q 149 71 235 -15 q 63 281 63 158 l 63 955 q 150 1165 63 1079 q 357 1252 237 1252 m 459 959 q 428 1035 459 1004 q 352 1066 397 1066 q 277 1035 308 1066 q 246 959 246 1004 l 246 282 q 277 207 246 238 q 352 176 308 176 q 428 207 397 176 q 459 282 459 238 l 459 959 m 155 826 q 194 939 155 897 q 293 981 232 981 q 407 945 335 981 q 471 925 447 925 q 504 936 493 925 q 520 984 516 948 l 608 984 q 570 867 608 906 q 476 829 533 829 q 363 866 433 829 q 297 891 318 891 q 260 874 274 891 q 245 826 245 858 l 155 826 "},"7":{"x_min":64,"x_max":624,"ha":688,"o":"m 624 1238 l 624 1051 l 362 1 l 179 1 l 441 1051 l 64 1051 l 64 1238 l 624 1238 "},"K":{"x_min":64,"x_max":720.296875,"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 676 1237 l 421 731 l 720 0 l 501 0 l 305 501 l 251 390 "},",":{"x_min":64,"x_max":251,"ha":315,"o":"m 64 0 l 64 185 l 251 185 l 251 0 l 183 -141 l 103 -141 l 148 0 l 64 0 "},"d":{"x_min":64,"x_max":650,"ha":714,"o":"m 650 295 q 563 86 650 173 q 357 0 477 0 l 64 0 l 64 1237 l 357 1237 q 564 1150 479 1237 q 650 941 650 1063 l 650 295 m 250 184 l 362 184 q 437 216 407 184 q 468 291 468 248 l 468 938 q 436 1014 468 982 q 362 1046 405 1046 l 250 1046 l 250 184 "},"¨":{"x_min":41,"x_max":422,"ha":463,"o":"m 41 861 l 41 1000 l 168 1000 l 168 861 l 41 861 m 294 861 l 294 1000 l 422 1000 l 422 861 l 294 861 "},"Ô":{"x_min":64,"x_max":754.015625,"ha":719,"o":"m 358 1252 q 568 1165 481 1252 q 655 955 655 1078 l 655 281 q 568 71 655 157 q 358 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 358 1252 237 1252 m 460 959 q 429 1035 460 1004 q 353 1066 398 1066 q 277 1035 309 1066 q 246 959 246 1004 l 246 282 q 277 207 246 238 q 353 176 309 176 q 429 207 398 176 q 460 282 460 238 l 460 959 m 540 1170 l 464 1055 l 324 1055 l 470 1244 l 601 1244 l 754 1055 l 615 1055 l 540 1170 "},"E":{"x_min":64,"x_max":594.515625,"ha":659,"o":"m 64 -1 l 64 1237 l 594 1237 l 594 1050 l 250 1050 l 250 711 l 501 711 l 501 524 l 250 524 l 250 186 l 594 186 l 594 -1 l 64 -1 "},"Y":{"x_min":63.4375,"x_max":749.9375,"ha":814,"o":"m 313 518 l 63 1237 l 268 1237 l 406 792 l 543 1237 l 749 1237 l 499 518 l 499 0 l 313 0 l 313 518 "},"\"":{"x_min":63.75,"x_max":457.09375,"ha":522,"o":"m 92 1150 l 63 1432 l 236 1432 l 207 1150 l 92 1150 m 313 1150 l 284 1432 l 457 1432 l 428 1150 l 313 1150 "},"ê":{"x_min":64,"x_max":594.515625,"ha":660,"o":"m 64 -1 l 64 1237 l 594 1237 l 594 1050 l 250 1050 l 250 711 l 501 711 l 501 524 l 250 524 l 250 186 l 594 186 l 594 -1 l 64 -1 m 100 1345 l 100 1402 l 311 1464 l 538 1406 l 538 1348 l 311 1402 l 100 1345 "},"Ï":{"x_min":2.28125,"x_max":383,"ha":315,"o":"m 250 0 l 64 0 l 64 1236 l 250 1236 l 250 0 m 2 1055 l 2 1194 l 130 1194 l 130 1055 l 2 1055 m 255 1055 l 255 1194 l 383 1194 l 383 1055 l 255 1055 "},"Â":{"x_min":63.75,"x_max":737.171875,"ha":802,"o":"m 303 284 l 257 0 l 63 0 l 273 1236 l 530 1236 l 737 0 l 541 0 l 497 284 l 303 284 m 400 952 l 331 466 l 469 466 l 400 952 m 449 1170 l 373 1055 l 233 1055 l 379 1245 l 509 1245 l 662 1055 l 524 1055 l 449 1170 "},"Í":{"x_min":13.8125,"x_max":341.5625,"ha":315,"o":"m 250 0 l 64 0 l 64 1236 l 250 1236 l 250 0 m 17 1199 l 13 1185 l 337 1185 l 341 1243 l 17 1199 "},"´":{"x_min":69.171875,"x_max":396.734375,"ha":463,"o":"m 73 953 l 69 939 l 392 939 l 396 998 l 73 953 "},"ì":{"x_min":25.484375,"x_max":344.84375,"ha":386,"o":"m 134 0 l 134 720 l 256 720 l 256 0 l 134 0 m 25 1181 l 29 1122 l 344 1122 l 340 1136 l 25 1181 "},"±":{"x_min":53,"x_max":709,"ha":762,"o":"m 324 176 l 324 450 l 53 450 l 53 563 l 324 563 l 324 833 l 439 833 l 439 563 l 709 563 l 709 450 l 439 450 l 439 176 l 324 176 m 709 0 l 53 0 l 53 114 l 709 114 l 709 0 "},"Ú":{"x_min":64,"x_max":662.453125,"ha":719,"o":"m 358 -14 q 149 71 235 -14 q 64 279 64 157 l 64 1235 l 246 1235 l 246 281 q 277 206 246 237 q 353 175 309 175 q 429 206 398 175 q 460 281 460 237 l 460 1235 l 655 1235 l 655 279 q 568 70 655 155 q 358 -14 481 -14 m 338 1198 l 334 1184 l 658 1184 l 662 1243 l 338 1198 "},"|":{"x_min":64,"x_max":241,"ha":305,"o":"m 64 1628 l 241 1628 l 241 -102 l 64 -102 l 64 1628 "},"§":{"x_min":55,"x_max":709,"ha":773,"o":"m 96 -47 l 219 -29 q 279 -153 238 -117 q 392 -189 321 -189 q 500 -153 461 -189 q 540 -71 540 -118 q 515 -7 540 -36 q 284 158 473 43 q 145 255 184 220 q 80 337 105 290 q 55 436 55 385 q 95 554 55 502 q 207 628 136 607 q 139 713 159 675 q 120 796 120 752 q 187 947 120 883 q 367 1011 255 1011 q 565 950 494 1011 q 651 776 637 890 l 524 763 q 474 878 510 845 q 378 911 438 911 q 277 877 315 911 q 239 803 239 843 q 263 738 239 767 q 471 588 301 691 q 615 493 578 523 q 686 409 663 452 q 709 314 709 365 q 659 184 709 238 q 555 120 631 152 q 636 32 609 79 q 663 -69 663 -15 q 629 -182 663 -129 q 531 -263 595 -235 q 393 -292 467 -292 q 187 -227 263 -292 q 96 -47 111 -162 m 493 165 q 569 225 544 191 q 594 292 594 259 q 558 373 594 331 q 405 488 522 416 q 266 582 312 545 q 189 519 212 550 q 166 450 166 488 q 196 369 166 407 q 336 266 227 330 q 493 165 427 212 "},"Ý":{"x_min":63.4375,"x_max":749.9375,"ha":814,"o":"m 313 518 l 63 1237 l 268 1237 l 406 792 l 543 1237 l 749 1237 l 499 518 l 499 0 l 313 0 l 313 518 m 298 1199 l 294 1185 l 617 1185 l 621 1243 l 298 1199 "},"b":{"x_min":64,"x_max":692,"ha":756,"o":"m 64 0 l 64 1237 l 342 1237 q 541 1178 453 1237 q 650 1026 617 1129 q 668 894 668 970 q 602 695 668 770 q 537 647 574 664 q 642 554 598 623 q 685 431 671 506 q 692 345 692 392 q 647 145 692 227 q 550 43 613 81 q 409 0 478 0 l 64 0 m 265 184 l 342 184 q 474 281 437 184 q 487 358 487 315 q 447 510 487 462 q 342 554 411 554 l 265 554 l 265 184 m 265 732 l 342 732 q 459 816 429 732 q 470 894 470 848 q 432 1011 470 972 q 342 1048 398 1048 l 265 1048 l 265 732 "},"q":{"x_min":64,"x_max":686,"ha":750,"o":"m 655 281 q 615 133 655 201 q 686 105 640 105 l 686 -69 q 495 19 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 359 1252 237 1252 q 569 1164 483 1252 q 655 955 655 1076 l 655 281 m 462 959 q 430 1035 462 1004 q 353 1066 398 1066 q 278 1035 309 1066 q 247 959 247 1004 l 247 282 q 278 207 247 238 q 353 176 309 176 q 430 207 398 176 q 462 282 462 238 l 462 959 "},"Ö":{"x_min":64,"x_max":730.265625,"ha":720,"o":"m 358 1251 q 568 1164 481 1251 q 655 955 655 1078 l 655 281 q 568 71 655 157 q 358 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1078 q 358 1251 237 1251 m 460 959 q 429 1034 460 1004 q 353 1065 398 1065 q 278 1034 309 1065 q 246 959 246 1004 l 246 282 q 278 207 246 238 q 353 176 309 176 q 429 207 398 176 q 460 282 460 238 l 460 959 m 349 1055 l 349 1194 l 477 1194 l 477 1055 l 349 1055 m 603 1055 l 603 1194 l 730 1194 l 730 1055 l 603 1055 "},"z":{"x_min":64,"x_max":608,"ha":673,"o":"m 608 1237 l 608 1050 l 264 185 l 608 185 l 608 0 l 64 0 l 64 185 l 407 1050 l 64 1050 l 64 1237 l 608 1237 "},"ã":{"x_min":63.8125,"x_max":737.203125,"ha":802,"o":"m 303 284 l 257 0 l 63 0 l 273 1236 l 530 1236 l 737 0 l 541 0 l 497 284 l 303 284 m 400 952 l 331 466 l 469 466 l 400 952 m 154 826 q 193 939 154 897 q 292 981 231 981 q 406 944 334 981 q 470 924 446 924 q 503 935 492 924 q 520 983 515 947 l 607 983 q 569 866 607 905 q 475 828 532 828 q 362 866 432 828 q 296 891 317 891 q 258 874 273 891 q 244 826 244 858 l 154 826 "},"æ":{"x_min":46,"x_max":1178.15625,"ha":1235,"o":"m 1176 220 q 1060 45 1142 107 q 858 -16 979 -16 q 707 16 772 -16 q 590 117 643 48 q 448 16 520 48 q 292 -16 375 -16 q 110 43 175 -16 q 46 189 46 103 q 79 299 46 248 q 173 376 113 350 q 365 420 233 403 q 536 453 466 433 q 536 481 536 470 q 500 601 536 567 q 376 636 464 636 q 276 621 317 636 q 216 581 236 607 q 184 497 197 554 l 65 511 q 120 637 84 590 q 222 710 155 683 q 377 737 288 737 q 560 703 491 737 q 627 640 600 683 q 725 712 670 687 q 858 737 780 737 q 1039 683 968 737 q 1144 542 1111 630 q 1178 370 1178 455 q 1178 329 1178 357 l 658 329 q 680 187 658 231 q 753 113 703 143 q 863 84 803 84 q 981 124 933 84 q 1048 236 1030 164 l 1176 220 m 660 429 l 1053 429 q 991 586 1043 536 q 856 636 939 636 q 715 581 770 636 q 660 429 660 527 m 538 361 q 319 312 484 338 q 216 277 245 300 q 176 193 176 245 q 211 112 176 145 q 316 80 247 80 q 452 118 394 80 q 527 214 510 157 q 538 361 538 250 "},"®":{"x_min":2,"x_max":1025,"ha":1023,"o":"m 513 1012 q 765 945 642 1012 q 956 756 888 879 q 1025 499 1025 633 q 957 245 1025 367 q 768 55 890 123 q 513 -12 646 -12 q 259 55 380 -12 q 69 245 137 123 q 2 499 2 367 q 70 756 2 633 q 262 945 139 879 q 513 1012 385 1012 m 513 927 q 304 871 406 927 q 144 713 202 816 q 87 499 87 610 q 143 287 87 389 q 301 129 200 186 q 513 73 403 73 q 725 129 624 73 q 883 287 827 186 q 940 499 940 389 q 882 713 940 610 q 723 871 825 816 q 513 927 620 927 m 289 217 l 289 767 l 478 767 q 618 751 575 767 q 688 698 662 736 q 714 616 714 659 q 671 510 714 556 q 556 465 628 465 q 603 434 586 451 q 684 324 636 401 l 751 217 l 643 217 l 594 303 q 501 432 537 406 q 430 451 477 451 l 378 451 l 378 217 l 289 217 m 378 527 l 486 527 q 591 549 563 527 q 620 610 620 572 q 606 653 620 634 q 568 682 592 673 q 479 692 544 692 l 378 692 l 378 527 "},"É":{"x_min":64,"x_max":594.515625,"ha":654,"o":"m 64 -1 l 64 1237 l 594 1237 l 594 1050 l 250 1050 l 250 711 l 501 711 l 501 524 l 250 524 l 250 186 l 594 186 l 594 -1 l 64 -1 m 106 1386 l 99 1366 l 570 1366 l 576 1451 l 106 1386 "},"~":{"x_min":63.75,"x_max":667.3125,"ha":732,"o":"m 444 1369 q 485 1360 466 1360 q 563 1417 520 1360 l 667 1340 q 480 1230 583 1230 q 330 1284 423 1230 q 240 1321 264 1321 q 166 1266 208 1321 l 63 1343 q 244 1451 144 1451 q 348 1421 291 1451 q 444 1369 396 1395 "},"³":{"x_min":22.484375,"x_max":438,"ha":462,"o":"m 22 629 l 121 640 q 156 584 135 599 q 225 564 185 564 q 302 590 273 564 q 332 654 332 616 q 307 708 332 688 q 224 729 283 729 q 202 726 216 729 q 187 726 192 726 l 202 801 q 282 821 257 801 q 308 870 308 841 q 287 913 308 895 q 227 931 267 931 q 167 916 189 931 q 131 861 146 901 l 34 877 q 104 977 61 949 q 227 1006 146 1006 q 369 969 325 1006 q 414 879 414 933 q 389 813 414 842 q 320 771 365 784 q 409 721 380 756 q 438 641 438 687 q 384 531 438 578 q 231 485 330 485 q 86 522 137 485 q 22 629 36 560 "},"¡":{"x_min":163,"x_max":303,"ha":462,"o":"m 303 720 l 303 581 l 163 581 l 163 720 l 303 720 m 290 473 l 290 -53 l 290 -274 l 175 -274 l 175 -53 l 175 473 l 290 473 "},"[":{"x_min":64,"x_max":377.140625,"ha":442,"o":"m 64 1313 l 377 1313 l 377 1126 l 251 1126 l 251 184 l 377 184 l 377 -1 l 64 -1 l 64 1313 "},"L":{"x_min":64,"x_max":572.140625,"ha":637,"o":"m 572 0 l 64 0 l 64 1236 l 250 1236 l 250 185 l 572 185 l 572 0 "}," ":{"x_min":0,"x_max":0,"ha":359},"%":{"x_min":64,"x_max":922,"ha":986,"o":"m 373 782 q 327 674 373 719 q 218 629 281 629 q 109 674 154 629 q 64 782 64 719 l 64 1135 q 109 1245 64 1200 q 218 1291 154 1291 q 327 1244 282 1291 q 373 1135 373 1198 l 373 782 m 160 784 q 176 744 160 760 q 215 728 192 728 q 254 744 238 728 q 271 784 271 760 l 271 1137 q 254 1177 271 1161 q 215 1194 238 1194 q 176 1177 192 1194 q 160 1137 160 1161 l 160 784 m 767 655 q 877 609 832 655 q 922 499 922 563 l 922 147 q 876 38 922 82 q 767 -6 831 -6 q 658 39 704 -6 q 613 147 613 84 l 613 499 q 658 609 613 564 q 767 655 704 655 m 822 501 q 805 541 822 525 q 765 558 789 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 805 109 789 93 q 822 149 822 125 l 822 501 m 231 -20 l 123 -20 l 754 1287 l 863 1287 l 231 -20 "},"P":{"x_min":64,"x_max":650,"ha":714,"o":"m 357 1237 q 574 1150 494 1237 q 650 941 650 1068 l 650 761 q 564 552 650 639 q 357 466 479 466 l 250 466 l 250 0 l 64 0 l 64 1237 l 357 1237 m 469 938 q 440 1016 469 986 q 362 1046 411 1046 l 250 1046 l 250 650 l 362 650 q 438 681 407 650 q 469 757 469 713 l 469 938 "},"À":{"x_min":63.75,"x_max":737.171875,"ha":802,"o":"m 303 284 l 257 0 l 63 0 l 273 1236 l 530 1236 l 737 0 l 541 0 l 497 284 l 303 284 m 400 952 l 331 466 l 469 466 l 400 952 m 305 1427 l 309 1368 l 624 1368 l 620 1382 l 305 1427 "},"_":{"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":707.3125,"ha":772,"o":"m 273 1237 l 521 406 l 521 1237 l 707 1237 l 707 0 l 507 0 l 250 791 l 250 0 l 64 0 l 64 1237 l 273 1237 m 177 826 q 216 939 177 897 q 315 981 254 981 q 430 945 357 981 q 493 925 470 925 q 527 936 515 925 q 543 984 538 948 l 630 984 q 592 867 630 906 q 498 829 555 829 q 385 866 455 829 q 319 891 340 891 q 281 874 296 891 q 267 826 267 858 l 177 826 "},"+":{"x_min":64,"x_max":699,"ha":763,"o":"m 450 674 l 699 674 l 699 536 l 450 536 l 450 287 l 312 287 l 312 536 l 64 536 l 64 674 l 312 674 l 312 922 l 450 922 l 450 674 "},"½":{"x_min":72.09375,"x_max":1133,"ha":1157,"o":"m 154 -38 l 900 1010 l 1007 1010 l 260 -38 l 154 -38 m 224 497 l 224 872 q 72 795 154 817 l 72 879 q 165 928 114 892 q 249 1006 217 964 l 322 1006 l 322 497 l 224 497 m 710 -21 q 743 55 714 16 q 882 184 785 114 q 998 276 980 255 q 1024 333 1024 304 q 1000 386 1024 365 q 930 407 977 407 q 863 391 885 407 q 827 330 841 375 l 724 340 q 793 452 744 416 q 932 488 842 488 q 1082 447 1034 488 q 1130 350 1130 407 q 1090 242 1130 293 q 952 126 1059 204 q 871 61 895 84 l 1133 61 l 1133 -21 l 710 -21 "},"Æ":{"x_min":1.09375,"x_max":1313.125,"ha":1389,"o":"m 1 0 l 479 994 l 1295 994 l 1295 877 l 795 877 l 795 571 l 1259 571 l 1259 454 l 795 454 l 795 117 l 1313 117 l 1313 0 l 663 0 l 663 287 l 279 287 l 143 0 l 1 0 m 334 404 l 663 404 l 663 877 l 564 877 l 334 404 "},"Ë":{"x_min":64,"x_max":668.921875,"ha":660,"o":"m 64 0 l 64 1237 l 595 1237 l 595 1050 l 250 1050 l 250 712 l 501 712 l 501 525 l 250 525 l 250 187 l 595 187 l 595 0 l 64 0 m 288 1055 l 288 1194 l 416 1194 l 416 1055 l 288 1055 m 541 1055 l 541 1194 l 668 1194 l 668 1055 l 541 1055 "},"'":{"x_min":63.75,"x_max":236,"ha":300,"o":"m 63 1432 l 236 1432 l 207 1150 l 92 1150 l 63 1432 "},"ª":{"x_min":32,"x_max":486.796875,"ha":514,"o":"m 372 578 q 198 506 289 506 q 76 547 121 506 q 32 654 32 589 q 42 711 32 687 q 75 754 53 735 q 130 785 96 773 q 197 799 154 792 l 297 814 q 361 828 345 824 q 352 891 361 875 q 319 920 344 908 q 255 932 295 932 q 175 909 202 932 q 143 847 149 887 l 50 870 q 109 970 58 930 q 257 1011 161 1011 q 414 969 368 1011 q 459 846 459 927 l 459 684 l 459 642 q 486 518 459 551 l 386 518 q 372 578 372 545 m 361 748 q 231 724 325 739 q 152 697 170 714 q 133 654 133 680 q 156 606 133 626 q 221 587 179 587 q 307 613 270 587 q 356 678 344 639 q 361 748 361 692 "},"ð":{"x_min":49,"x_max":716,"ha":772,"o":"m 208 994 l 355 994 q 440 924 404 957 l 584 994 l 615 924 l 498 868 q 716 352 716 618 q 621 82 716 181 q 381 -17 527 -17 q 112 114 208 -17 q 49 350 49 200 q 136 623 49 527 q 355 720 223 720 q 424 711 394 720 q 498 679 454 703 q 456 756 474 729 q 402 824 438 784 l 216 738 l 186 808 l 348 882 q 208 994 283 943 m 589 358 q 527 557 589 488 q 377 626 466 626 q 231 557 289 626 q 174 347 174 488 q 233 149 174 215 q 381 83 292 83 q 528 153 467 83 q 589 358 589 223 "},"T":{"x_min":64,"x_max":646,"ha":710,"o":"m 262 1050 l 64 1050 l 64 1237 l 646 1237 l 646 1050 l 449 1050 l 449 0 l 262 0 l 262 1050 "},"Þ":{"x_min":107,"x_max":866,"ha":926,"o":"m 107 0 l 107 994 l 239 994 l 239 792 l 482 792 q 633 782 581 792 q 756 735 707 769 q 836 639 806 701 q 866 503 866 577 q 785 289 866 377 q 493 202 704 202 l 239 202 l 239 0 l 107 0 m 239 319 l 495 319 q 676 366 622 319 q 730 499 730 414 q 698 606 730 561 q 616 665 667 651 q 492 675 583 675 l 239 675 l 239 319 "},"j":{"x_min":64.140625,"x_max":474.421875,"ha":539,"o":"m 474 279 q 387 71 474 156 q 179 -14 301 -14 q 64 0 108 -14 l 90 174 q 144 168 121 168 q 184 170 158 170 q 260 200 229 170 q 292 275 292 231 l 292 1234 l 474 1234 l 474 279 "},"1":{"x_min":63.671875,"x_max":409,"ha":473,"o":"m 221 0 l 221 952 l 63 952 l 63 1082 q 190 1132 130 1089 q 278 1237 251 1175 l 409 1237 l 409 0 l 221 0 "},"ä":{"x_min":63.5,"x_max":737.46875,"ha":802,"o":"m 302 284 l 257 0 l 63 0 l 272 1236 l 530 1236 l 737 0 l 542 0 l 497 284 l 302 284 m 400 952 l 330 466 l 469 466 l 400 952 m 191 861 l 191 1000 l 318 1000 l 318 861 l 191 861 m 444 861 l 444 1000 l 572 1000 l 572 861 l 444 861 "},"<":{"x_min":64,"x_max":682,"ha":746,"o":"m 682 941 l 682 784 l 257 608 l 682 429 l 682 274 l 64 541 l 64 676 l 682 941 "},"£":{"x_min":18.46875,"x_max":733.609375,"ha":772,"o":"m 268 548 l 482 548 l 482 448 l 290 448 q 303 388 303 418 q 274 263 303 329 q 182 129 246 197 q 279 144 235 144 q 406 127 336 144 q 564 100 522 100 q 694 137 614 100 l 733 25 q 636 -8 671 0 q 568 -17 602 -17 q 511 -11 540 -17 q 423 13 492 -8 q 334 38 354 34 q 270 44 302 44 q 166 27 221 44 q 65 -19 110 10 l 18 98 q 129 200 83 134 q 175 363 175 267 q 163 448 175 405 l 30 448 l 30 548 l 134 548 q 106 659 112 624 q 100 727 100 694 q 204 948 100 868 q 407 1011 288 1011 q 609 943 530 1011 q 707 753 689 876 l 586 735 q 525 864 576 817 q 404 911 475 911 q 279 862 329 911 q 230 745 230 813 q 268 548 230 669 "},"¹":{"x_min":72.09375,"x_max":322,"ha":462,"o":"m 224 497 l 224 872 q 72 795 154 817 l 72 879 q 165 928 114 892 q 249 1006 217 964 l 322 1006 l 322 497 l 224 497 "},"t":{"x_min":64,"x_max":646,"ha":710,"o":"m 262 1050 l 64 1050 l 64 1237 l 646 1237 l 646 1050 l 449 1050 l 449 0 l 262 0 l 262 1050 "},"¬":{"x_min":76.828125,"x_max":733,"ha":810,"o":"m 733 287 l 618 287 l 618 585 l 76 585 l 76 699 l 733 699 l 733 287 "},"ù":{"x_min":64,"x_max":655,"ha":719,"o":"m 358 -14 q 149 71 235 -14 q 64 279 64 157 l 64 1235 l 246 1235 l 246 281 q 277 206 246 237 q 353 175 309 175 q 429 206 398 175 q 460 281 460 237 l 460 1235 l 655 1235 l 655 279 q 568 70 655 155 q 358 -14 481 -14 m 90 1451 l 97 1365 l 606 1365 l 599 1386 l 90 1451 "},"W":{"x_min":63.75,"x_max":1025.390625,"ha":1090,"o":"m 830 1236 l 1025 1236 l 832 0 l 653 0 l 547 674 l 448 0 l 270 0 l 63 1236 l 259 1236 l 356 574 l 446 1236 l 641 1236 l 739 574 l 830 1236 "},"ï":{"x_min":6,"x_max":387,"ha":386,"o":"m 134 0 l 134 720 l 256 720 l 256 0 l 134 0 m 6 861 l 6 1000 l 133 1000 l 133 861 l 6 861 m 259 861 l 259 1000 l 387 1000 l 387 861 l 259 861 "},">":{"x_min":64,"x_max":682,"ha":746,"o":"m 64 941 l 682 673 l 682 538 l 64 274 l 64 429 l 488 607 l 64 784 l 64 941 "},"v":{"x_min":63.75,"x_max":765.65625,"ha":830,"o":"m 284 0 l 63 1236 l 259 1236 l 413 273 l 570 1236 l 765 1236 l 541 0 l 284 0 "},"û":{"x_min":64,"x_max":655,"ha":713,"o":"m 358 -14 q 149 71 235 -14 q 64 279 64 157 l 64 1235 l 246 1235 l 246 281 q 277 206 246 237 q 353 175 309 175 q 429 206 398 175 q 460 281 460 237 l 460 1235 l 655 1235 l 655 279 q 568 70 655 155 q 358 -14 481 -14 m 64 1344 l 69 1401 l 340 1463 l 636 1405 l 636 1347 l 340 1401 l 64 1344 "},"Ò":{"x_min":64,"x_max":687.546875,"ha":719,"o":"m 358 1252 q 568 1165 481 1252 q 655 955 655 1078 l 655 281 q 568 71 655 157 q 358 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 358 1252 237 1252 m 460 959 q 429 1035 460 1004 q 353 1066 398 1066 q 277 1035 309 1066 q 246 959 246 1004 l 246 282 q 277 207 246 238 q 353 176 309 176 q 429 207 398 176 q 460 282 460 238 l 460 959 m 367 1426 l 371 1367 l 687 1367 l 683 1382 l 367 1426 "},"&":{"x_min":64,"x_max":796,"ha":860,"o":"m 791 581 q 670 248 746 384 q 796 182 742 182 l 796 10 q 571 108 687 10 q 335 -8 461 -8 q 112 112 188 -8 q 64 286 64 188 q 109 485 64 381 q 162 575 117 501 q 211 651 186 615 l 172 739 q 135 826 145 800 q 107 917 115 876 q 99 1004 99 961 q 135 1156 99 1087 q 244 1265 172 1228 q 368 1296 300 1296 q 507 1258 444 1296 q 604 1152 570 1220 q 631 1035 631 1098 q 552 823 631 924 l 512 770 q 410 635 456 699 q 550 394 472 507 q 622 618 597 499 l 791 581 m 271 1005 q 327 813 271 950 q 351 843 339 828 l 376 876 l 415 928 q 459 1034 459 985 q 448 1091 459 1071 q 368 1153 424 1153 q 292 1100 320 1153 q 271 1005 271 1059 m 335 164 q 454 234 390 164 q 301 473 378 331 q 266 412 283 443 q 236 285 236 344 q 259 201 236 234 q 335 164 285 164 "},"Ð":{"x_min":-2,"x_max":929,"ha":1003,"o":"m 107 0 l 107 452 l -2 452 l -2 542 l 107 542 l 107 994 l 450 994 q 626 979 565 994 q 772 908 711 960 q 890 738 851 842 q 929 502 929 635 q 880 241 929 350 q 765 82 832 131 q 610 11 698 32 q 465 0 562 0 l 107 0 m 239 117 l 450 117 q 605 135 549 117 q 693 186 660 153 q 766 311 740 233 q 793 503 793 390 q 766 690 793 620 q 698 802 740 760 q 605 860 656 844 q 447 877 553 877 l 239 877 l 239 542 l 513 542 l 513 452 l 239 452 l 239 117 "},"I":{"x_min":64,"x_max":250,"ha":315,"o":"m 250 0 l 64 0 l 64 1236 l 250 1236 l 250 0 "},"ə":{"x_min":57.59375,"x_max":722,"ha":773,"o":"m 722 366 q 638 95 722 199 q 385 -16 548 -16 q 138 94 226 -16 q 57 358 57 195 q 57 391 57 369 l 592 391 q 540 562 592 497 q 378 637 481 637 q 187 488 240 637 l 61 504 q 378 737 124 737 q 635 633 544 737 q 722 366 722 535 m 585 291 l 186 291 q 232 154 194 200 q 385 84 291 84 q 531 143 474 84 q 585 291 585 200 "},"G":{"x_min":64,"x_max":655,"ha":719,"o":"m 359 -16 q 150 70 236 -16 q 64 278 64 157 l 64 953 q 150 1162 64 1076 q 359 1249 237 1249 q 569 1162 483 1249 q 655 953 655 1075 l 655 812 l 462 812 l 462 957 q 430 1033 462 1001 q 353 1065 398 1065 q 278 1033 309 1065 q 247 957 247 1001 l 247 281 q 278 205 247 236 q 353 174 309 174 q 430 205 398 174 q 462 280 462 236 l 462 524 l 358 524 l 358 711 l 655 711 l 655 279 q 568 69 655 155 q 359 -16 481 -16 "},"`":{"x_min":61.71875,"x_max":381.125,"ha":401,"o":"m 61 1181 l 65 1122 l 381 1122 l 377 1136 l 61 1181 "},"·":{"x_min":125,"x_max":264,"ha":385,"o":"m 125 420 l 125 559 l 264 559 l 264 420 l 125 420 "},"r":{"x_min":64,"x_max":689.65625,"ha":754,"o":"m 357 1237 q 586 1150 513 1237 q 651 941 651 1075 l 651 761 q 551 539 651 629 l 689 0 l 488 0 l 374 466 q 357 466 366 466 l 250 466 l 250 0 l 64 0 l 64 1237 l 357 1237 m 469 938 q 362 1046 469 1046 l 250 1046 l 250 650 l 362 650 q 438 681 407 650 q 469 757 469 713 l 469 938 "},"¿":{"x_min":107,"x_max":747.921875,"ha":848,"o":"m 497 720 l 497 581 l 358 581 l 358 720 l 497 720 m 489 475 q 489 440 489 451 q 468 313 489 365 q 421 234 453 274 q 333 149 396 205 q 250 60 269 93 q 232 -11 232 27 q 287 -137 232 -83 q 424 -191 343 -191 q 554 -142 501 -191 q 623 9 606 -93 l 747 -4 q 647 -216 730 -141 q 426 -291 563 -291 q 193 -211 279 -291 q 107 -19 107 -132 q 137 100 107 45 q 255 232 167 154 q 335 311 316 286 q 362 369 353 336 q 371 475 371 401 l 489 475 "},"ý":{"x_min":63.4375,"x_max":749.9375,"ha":814,"o":"m 313 517 l 63 1237 l 268 1237 l 406 792 l 543 1237 l 749 1237 l 499 517 l 499 0 l 313 0 l 313 517 m 206 953 l 202 939 l 526 939 l 530 998 l 206 953 "},"x":{"x_min":63.75,"x_max":750.734375,"ha":815,"o":"m 750 0 l 550 0 l 407 392 l 263 0 l 63 0 l 305 621 l 63 1236 l 269 1236 l 407 854 l 544 1236 l 750 1236 l 508 621 l 750 0 "},"è":{"x_min":64,"x_max":594.515625,"ha":654,"o":"m 64 -1 l 64 1237 l 594 1237 l 594 1050 l 250 1050 l 250 711 l 501 711 l 501 524 l 250 524 l 250 186 l 594 186 l 594 -1 l 64 -1 m 90 1451 l 96 1366 l 555 1366 l 549 1386 l 90 1451 "},"º":{"x_min":31,"x_max":476,"ha":508,"o":"m 253 1011 q 413 943 351 1011 q 476 756 476 875 q 413 569 476 637 q 254 502 351 502 q 93 568 155 502 q 31 753 31 634 q 93 943 31 875 q 253 1011 155 1011 m 253 921 q 164 882 198 921 q 131 756 131 843 q 165 631 131 671 q 253 592 199 592 q 341 631 307 592 q 376 759 376 671 q 341 881 376 842 q 253 921 307 921 "},"Ø":{"x_min":55.859375,"x_max":1028.5625,"ha":1080,"o":"m 847 902 l 961 1030 l 1028 973 l 908 839 q 987 687 967 752 q 1015 496 1015 601 q 953 224 1015 343 q 780 44 891 105 q 543 -17 668 -17 q 373 9 449 -17 q 237 87 315 29 l 123 -40 l 55 17 l 175 150 q 86 323 108 251 q 64 495 64 394 q 125 767 64 648 q 296 949 186 887 q 541 1011 406 1011 q 700 986 632 1011 q 847 902 768 962 m 765 811 q 654 879 702 861 q 542 898 606 898 q 296 797 393 898 q 200 497 200 696 q 214 357 200 418 q 260 245 225 312 l 765 811 m 821 741 l 317 177 q 414 118 370 135 q 538 96 471 96 q 782 200 686 96 q 879 492 879 304 q 821 741 879 633 "},"÷":{"x_min":53,"x_max":709,"ha":762,"o":"m 311 625 l 311 764 l 450 764 l 450 625 l 311 625 m 709 433 l 53 433 l 53 547 l 709 547 l 709 433 m 311 216 l 311 355 l 450 355 l 450 216 l 311 216 "},"h":{"x_min":64,"x_max":661,"ha":725,"o":"m 251 524 l 251 0 l 64 0 l 64 1236 l 251 1236 l 251 712 l 474 712 l 474 1236 l 661 1236 l 661 0 l 474 0 l 474 524 l 251 524 "},".":{"x_min":64,"x_max":250,"ha":315,"o":"m 64 184 l 250 184 l 250 -1 l 64 -1 l 64 184 "},";":{"x_min":64,"x_max":250,"ha":315,"o":"m 64 184 l 250 184 l 250 -1 l 183 -143 l 104 -143 l 147 -1 l 64 -1 l 64 184 m 64 710 l 250 710 l 250 523 l 64 523 l 64 710 "},"f":{"x_min":64,"x_max":594.515625,"ha":659,"o":"m 250 0 l 64 0 l 64 1237 l 594 1237 l 594 1050 l 250 1050 l 250 711 l 501 711 l 501 524 l 250 524 l 250 0 "},"A":{"x_min":63.75,"x_max":737.171875,"ha":802,"o":"m 303 284 l 257 0 l 63 0 l 273 1236 l 530 1236 l 737 0 l 541 0 l 497 284 l 303 284 m 400 952 l 331 466 l 469 466 l 400 952 "},"6":{"x_min":64,"x_max":626,"ha":690,"o":"m 431 930 l 431 960 q 407 1037 431 1006 q 338 1068 383 1068 q 270 1037 294 1068 q 246 960 246 1006 l 246 714 q 387 771 309 771 q 571 685 510 771 q 626 477 626 610 l 626 265 l 621 265 q 541 67 621 147 q 346 -13 461 -13 q 141 75 222 -13 q 64 281 64 159 l 64 956 q 107 1120 64 1047 q 231 1228 151 1193 q 344 1252 283 1252 q 547 1163 466 1252 q 626 956 626 1078 l 626 930 l 431 930 m 247 284 q 270 210 247 239 q 338 178 294 178 q 407 210 383 178 q 431 284 431 239 l 431 513 q 391 602 431 566 q 339 619 372 619 q 266 581 291 619 q 247 510 247 549 l 247 284 "},"O":{"x_min":64,"x_max":655,"ha":719,"o":"m 358 1252 q 568 1165 481 1252 q 655 955 655 1078 l 655 281 q 568 71 655 157 q 358 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 358 1252 237 1252 m 460 959 q 429 1035 460 1004 q 353 1066 398 1066 q 277 1035 309 1066 q 246 959 246 1004 l 246 282 q 277 207 246 238 q 353 176 309 176 q 429 207 398 176 q 460 282 460 238 l 460 959 "},"n":{"x_min":64,"x_max":707,"ha":771,"o":"m 273 1237 l 520 406 l 520 1237 l 707 1237 l 707 0 l 506 0 l 250 792 l 250 0 l 64 0 l 64 1237 l 273 1237 "},"3":{"x_min":63.25,"x_max":668,"ha":732,"o":"m 352 178 q 481 297 481 178 l 481 369 q 282 560 481 560 l 282 720 q 441 780 389 720 q 488 932 488 834 l 488 960 q 381 1082 488 1082 q 294 1036 322 1082 q 274 946 274 1001 l 274 913 l 92 913 l 92 942 q 159 1157 92 1074 q 372 1252 235 1252 q 582 1163 504 1252 q 654 964 654 1084 l 654 911 q 584 713 654 796 q 515 652 555 677 q 643 511 598 606 q 668 394 668 463 l 668 297 q 574 71 668 160 q 357 -13 484 -13 q 149 75 234 -13 q 63 288 63 164 l 63 319 l 240 319 l 244 283 q 277 207 248 237 q 352 178 306 178 "},"9":{"x_min":64,"x_max":626,"ha":690,"o":"m 343 1253 q 547 1164 466 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 281 64 159 l 64 308 l 257 308 l 257 277 q 281 201 257 232 q 349 171 305 171 q 417 201 393 171 q 442 277 442 232 l 442 525 q 301 467 376 467 q 118 553 179 467 q 64 762 64 628 l 64 975 l 66 975 q 111 1129 66 1060 q 234 1231 156 1198 q 343 1253 284 1253 m 442 955 q 417 1031 442 1000 q 349 1063 393 1063 q 281 1031 305 1063 q 257 955 257 1000 l 257 726 q 296 635 257 672 q 348 619 313 619 q 437 694 419 619 q 442 729 442 716 l 442 955 "},"l":{"x_min":64,"x_max":572.140625,"ha":637,"o":"m 572 0 l 64 0 l 64 1236 l 250 1236 l 250 185 l 572 185 l 572 0 "},"¤":{"x_min":49.890625,"x_max":717.125,"ha":773,"o":"m 144 651 l 49 743 l 128 824 l 222 730 q 383 779 294 779 q 543 730 472 779 l 638 824 l 717 743 l 622 651 q 671 492 671 577 q 622 332 671 406 l 717 240 l 638 159 l 543 254 q 383 205 472 205 q 222 254 294 205 l 128 159 l 49 240 l 144 332 q 96 492 96 406 q 144 651 96 577 m 207 492 q 258 367 207 419 q 382 316 309 316 q 506 367 455 316 q 558 492 558 419 q 506 616 558 564 q 382 668 455 668 q 258 616 309 668 q 207 492 207 564 "},"4":{"x_min":64,"x_max":699,"ha":763,"o":"m 64 455 l 393 1238 l 580 1238 l 580 455 l 699 455 l 699 267 l 580 267 l 580 1 l 393 1 l 393 267 l 64 267 l 64 455 m 393 455 l 393 840 l 239 455 l 393 455 "},"p":{"x_min":64,"x_max":650,"ha":714,"o":"m 357 1237 q 574 1150 494 1237 q 650 941 650 1068 l 650 761 q 564 552 650 639 q 357 466 479 466 l 250 466 l 250 0 l 64 0 l 64 1237 l 357 1237 m 469 938 q 440 1016 469 986 q 362 1046 411 1046 l 250 1046 l 250 650 l 362 650 q 438 681 407 650 q 469 757 469 713 l 469 938 "},"à":{"x_min":63.75,"x_max":737.171875,"ha":802,"o":"m 303 284 l 257 0 l 63 0 l 273 1236 l 530 1236 l 737 0 l 541 0 l 497 284 l 303 284 m 400 952 l 331 466 l 469 466 l 400 952 m 231 1344 l 235 1285 l 550 1285 l 546 1299 l 231 1344 "},"Ü":{"x_min":64,"x_max":688.21875,"ha":719,"o":"m 358 -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 353 175 309 175 q 429 206 398 175 q 460 281 460 237 l 460 1236 l 655 1236 l 655 279 q 568 70 655 155 q 358 -14 481 -14 m 307 1055 l 307 1194 l 435 1194 l 435 1055 l 307 1055 m 561 1055 l 561 1194 l 688 1194 l 688 1055 l 561 1055 "},"ó":{"x_min":64,"x_max":655,"ha":719,"o":"m 358 1252 q 568 1165 481 1252 q 655 955 655 1078 l 655 281 q 568 71 655 157 q 358 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 358 1252 237 1252 m 460 959 q 429 1035 460 1004 q 353 1066 398 1066 q 277 1035 309 1066 q 246 959 246 1004 l 246 282 q 277 207 246 238 q 353 176 309 176 q 429 207 398 176 q 460 282 460 238 l 460 959 m 238 953 l 234 938 l 557 938 l 561 998 l 238 953 "}},"cssFontWeight":"normal","ascender":1492,"underlinePosition":-217,"cssFontStyle":"normal","boundingBox":{"yMin":-292,"xMin":-22.125,"yMax":1628,"xMax":1389},"resolution":1000,"original_font_information":{"postscript_name":"Bebas","version_string":"Version 3.00","vendor_url":"http://www.monotype.com/html/mtname/ms_arial.html","full_font_name":"Bebas","font_family_name":"Bebas","copyright":"","description":"Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century.  The overall treatment of curves is softer and fuller than in most industrial style sans serif faces.  Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance.  Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.","trademark":"","designer":"Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982","designer_url":"http://www.monotype.com/html/mtname/ms_welcome.html","unique_font_identifier":"Macromedia Fontographer 4.1 05/07/29","license_url":"http://www.monotype.com/html/type/license.html","license_description":"NOTIFICATION OF LICENSE AGREEMENT\r\n\r\nThis typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees.\r\n\r\nThis software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software.\r\n\r\nIf you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement.\r\n\r\nMonotype can be contacted at:\r\n\r\nUSA - (847) 718-0400\t\tUK - 01144 01737 765959\r\nhttp://www.monotype.com","manufacturer_name":"Monotype Typography","font_sub_family_name":"Regular"},"descender":-295,"familyName":"Bebas","lineHeight":1832,"underlineThickness":150});


function reactionMenu(target,valNum){
$j(target).mouseover(function(){
$j(target).css("background-position",valNum);
$j(target).css("color","#c6b02f");});
$j(target).mouseout(function(){
$j(target).css("background-position","0px 0px");
$j(target).css("color","#4090c6");});}
function englPopupBlog(boxH,boxW){
$j("#englPopupBlog-top").css({"height"
:boxH+"px","width"
:boxW+"px"	});
$j("#englPopupBlog-top").css({"borderRadius":"5px"});
$j('body').append('<div id="overlay"></div>');
$j("#englPopupBlog .b-fermer").css("z-index","70");
if( $j.browser.msie &&( parseFloat($j.browser.version)< 7 ) ){
$j('#englPopupBlog').center(true);}else{$j('#englPopupBlog').center();}
$j('#overlay').css({'opacity'
:'0' ,'width'
:'100%' ,'height'
: $j(document).height()+'px','background-color'
:'#000' ,'position'
:'absolute' ,'top'
:'0' ,'left'
:'0' ,'z-index'
:'5' }).fadeTo(600, 0.5, function(){
$j('#englPopupBlog').show();
$j('#overlay, #englPopupBlog .b-fermer').click(function(){
$j('#englPopupBlog-top').html('');
$j('#englPopupBlog').hide();
$j('#overlay').fadeOut(800, function(){
$j(this).remove();});});});}
function localiserVideo(url){
var prefix="/medias/video/";
if(url.indexOf(prefix)== 0){
var h= window.location.host.split(".");
h= h[h.length- 2];
var prod= h=="artisansduchangement" || h=="architectsofchange";
var dom= prod ?"http://medias.artisansduchangement.tv/" :"http://medias.svn.versiondemo.net/adc/web/";
return dom+ url.substr(prefix.length);;}
return url;}
function playVideo(videoPath,boxH,boxW,vidDesc){
videoPath= localiserVideo(videoPath);
$j("#video-player-top").css({"height"
:boxH+"px","width"
:boxW+"px"});
$j("#video-player-top").css({"border"
:"10px #fff solid","borderRadius"
:"5px"});
$j('body').append('<div id="overlay"></div>');
$j("#video-container .b-fermer").css("z-index","70");
if( $j.browser.msie &&( parseFloat($j.browser.version)< 7 ) ){
$j('#video-container').center(true);}else{$j('#video-container').center();}
$j('#overlay').css({'opacity'
:'0' ,'width'
:'100%' ,'height'
: $j(document).height()+'px','background-color'
:'#000' ,'position'
:'absolute' ,'top'
:'0' ,'left'
:'0' ,'z-index'
:'5' }).fadeTo(600, 0.75, function(){
$j('#video-container').show();
$j('#overlay, #video-container .b-fermer').click(function(){
$j('#video-player-top').html('');
$j('#video-container').hide();
$j('#overlay').fadeOut(800, function(){
$j(this).remove();});});
if(Langue.getId()== 1){
var flowkey='#@6aaf7f47fa465214c0e';} else{
var flowkey='#@9668880d26d936155f0';}
$j("#video-player-top").flowplayer({src:"/js/flowplayer/flowplayer.commercial-3.2.5.swf"},{
key: flowkey,
clip:{
url:videoPath,
autoPlay: true,
scaling:'orig' ,
onStart: function(clip){
if( $.browser.msie &&( parseFloat($.browser.version)< 7 ) ){
boxH= parseInt(clip.metaData.height, 10);
boxW= parseInt(clip.metaData.width, 10)-44;}else{
boxH= parseInt(clip.metaData.height, 10)+15;
boxW= parseInt(clip.metaData.width, 10);}
$j("#video-player-top").css({"height"
:boxH+"px","width"
:boxW+"px"});},
onFinish: function(){
$j('#video-container .b-fermer').hide();
$j('#video-container').hide();
$j('#video-player-top').html('');
$j('#overlay').fadeOut(800, function(){
$j(this).remove();});}},
onLoad: function(){
this.setVolume(100);},
screen:{
bottom: 15},
canvas:{
backgroundColor:'#000000' ,
backgroundGradient:'none' },
plugins:{
controls:{
url:'/js/flowplayer/flowplayer.controls-3.2.3.swf' ,
backgroundColor:'#000000' ,
backgroundGradient:'none' ,
fontColor:'#ffffff' ,
timeFontColor:'#333333' ,
progressColor:'#4090C6' ,
volumeSliderColor:'#656565' ,
buttonColor:'#656565' ,
buttonOverColor:'#4090C6' ,
bufferColor:'#BAAC4B' ,
timeColor:'#ffffff' ,
autoHide:'never' ,
play:true,
volume:true,
mute:true,
time:true,
stop:false,
playlist:false,
fullscreen:true,
scrubber: true},
viral:{
url:'/js/flowplayer/flowplayer.viralvideos-3.2.3.swf' ,
email: false,
embed: false,
share:{
title:'Partagez ce vidéo' ,
description: vidDesc,
livespaces: false,
digg: false,
orkut: false,
stubmbleupon: false,
bebo: false}},
gatracker:{
url:"/js/flowplayer/flowplayer.analytics-3.2.1.swf" ,
trackingMode:"AS3" ,
debug: false,
googleId:'UA-1426284-18' }}});});}
function enableOvers(base){

base.find('.fadeMin').mouseover(function(){
this.src='/images/btns/vidMinHov.png';}).mouseout(function(){
this.src='/images/btns/vidMinLink.png';});
base.find('.fadeBig').mouseover(function(){
this.src='/images/btns/vidBigHov.png';}).mouseout(function(){
this.src='/images/btns/vidBigLink.png';});
base.find('.fadeVidEmi').mouseover(function(){
this.src='/images/btns/vidHovEmihov.png';}).mouseout(function(){
this.src='/images/btns/vidHovEmilink.png';});
base.find('.fadeJun').mouseover(function(){
this.src='/images/btns/vidJunHov.png';}).mouseout(function(){
this.src='/images/btns/vidJunLink.png';});}
$j(function(){
enableOvers($j(document.body));
reactionMenu(".page_presse","0px -84px");
reactionMenu(".page_horaire","0px -85px");
reactionMenu(".gadget","0px -85px");
reactionMenu(".mobile","0px -91px");
reactionMenu(".tele_num","0px -85px");
reactionMenu(".guide","0px -79px");
reactionMenu(".facebook","0px -65px");
if($j.browser.opera){
$j("body *").removeClass("typeface-js");
$j("h1,h2,h3,h4,h5,h6").css("font-family","Arial");}
$j('input, textarea').focus(function(){
$j(this).css('border-color','#3fa9f5');});
$j('input, textarea').blur(function(){
$j(this).css('border-color','#999595');});});
function resultTestGlobe(r){
ecrireCookie("eglobe", r?"true":"false","/" )
if(!r){
$j("#flash-globe").html("");}}
function restoreGlobe(){
var e= lireCookie("eglobe");
if(e !="false" ){
var innerFlash= generateFlashHtml("/swf/preloader.swf" , 457, 462, false,["allowfullscreen","true","allowscriptaccess"
,"always","quality"
,"high","cachebusting"
,"false","required"
,"9,0","wmode"
,"transparent","flashvars"
,"urlflash=/swf/globe.swf&pathxmlglobe=/swf/infos_globe"+((Langue.getId()==2) ?"_en" :"" )+".xml&tested="+(e=='true' ? e :'false' )]);
$j("#flash-globe").html(innerFlash);}}
function refresh_page(){
window.location= window.location;}
$j(".needFullLoading").removeClass("needFullLoading");
$j(".buttonInLoading").removeClass("buttonInLoading");
if( $j.browser.msie &&( parseFloat($j.browser.version)< 7 ) ){
document.write('<script type="text/javascript" src="/unitpng/unitpngfix.js"></script>');}
if(typeof ControlVersion=="undefined" ){
document.write('<script type="text/javascript" src="/js/ac_oetags.js" ></script>');}
