var woo_settings={idle_timeout:'300000',domain:'g-force.ca'};var _gaq=_gaq||[];_gaq.push(['_setAccount','UA-387685-1']);_gaq.push(['_trackPageview']);_gaq.push(['_trackPageLoadTime']);(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);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{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:"none",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;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'){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'){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++){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){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'){}
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';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'){}
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(){if(arguments.callee.done)
return;arguments.callee.done=true;if(window._typefaceTimer)
clearInterval(_typefaceTimer);this.renderDocument(function(e){e.style.visibility='visible'});}};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(){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?styleSheet.cssRules.length:0));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?styleSheet.cssRules.length:0));try{document.styleSheets[0].insertRule('.typeface-js-selected-text::-moz-selection { background: blue; }',(styleSheet.cssRules?styleSheet.cssRules.length:0));}
catch(e){};try{document.styleSheets[0].insertRule('.typeface-js-selected-text::selection { background: blue; }',(styleSheet.cssRules?styleSheet.cssRules.length:0));}
catch(e){};if(/WebKit/i.test(navigator.userAgent)){document.styleSheets[0].insertRule('.typeface-js-vector-container { position: relative }',(styleSheet.cssRules?styleSheet.cssRules.length:0));}}
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){};var s=document.getElementsByTagName('script')[0];var wsc=document.createElement('script');wsc.async=true;wsc.src=document.location.protocol+'//static.woopra.com/js/woopra.js';s.parentNode.insertBefore(wsc,s);var ga=document.createElement('script');ga.type='text/javascript';ga.async=true;ga.src=('https:'==document.location.protocol?'https://ssl':'http://www')+'.google-analytics.com/ga.js';s.parentNode.insertBefore(ga,s);var cm=document.createElement("script");cm.async=true;cm.src="/click/clickmap.js";s.parentNode.insertBefore(cm,s);})();if(_typeface_js&&_typeface_js.loadFace)
_typeface_js.loadFace({"glyphs":{"S":{"x_min":38.890625,"x_max":458.328125,"ha":501,"o":"m 62 123 q 195 86 118 86 q 311 130 269 86 q 352 244 352 172 q 229 438 352 345 q 52 698 52 559 q 120 875 52 805 q 300 944 190 944 q 430 909 384 944 l 405 818 q 294 850 359 850 q 191 806 229 850 q 158 716 158 769 q 194 609 158 652 q 295 523 218 579 q 458 254 458 409 q 383 62 458 134 q 195 -8 309 -8 q 38 31 93 -8 l 62 123 "},"/":{"x_min":11.109375,"x_max":390.28125,"ha":390,"o":"m 11 -55 l 309 947 l 390 947 l 91 -55 l 11 -55 "},"K":{"x_min":84.71875,"x_max":550,"ha":561,"o":"m 84 936 l 190 936 l 190 491 l 193 491 q 251 604 209 520 l 426 936 l 544 936 l 315 536 l 550 0 l 434 0 l 243 451 l 190 361 l 190 0 l 84 0 l 84 936 "},"7":{"x_min":51.390625,"x_max":486.109375,"ha":535,"o":"m 486 902 l 486 838 l 194 0 l 90 0 l 376 808 l 51 808 l 51 902 l 486 902 "},"d":{"x_min":45.828125,"x_max":484.71875,"ha":554,"o":"m 479 961 l 479 161 l 484 0 l 393 0 l 386 83 l 381 83 q 240 -11 337 -11 q 101 77 154 -11 q 45 333 45 170 q 108 597 45 501 q 247 681 163 681 q 370 602 334 681 l 373 602 l 373 961 l 479 961 m 373 415 q 372 459 373 445 q 338 551 366 513 q 272 590 309 590 q 152 333 152 590 q 180 152 152 220 q 266 77 211 77 q 369 193 341 77 q 373 237 373 212 l 373 415 "},",":{"x_min":23.609375,"x_max":225,"ha":269,"o":"m 23 -175 q 104 148 79 -19 l 225 162 q 97 -165 162 -59 l 23 -175 "},"Ô":{"x_min":44.4375,"x_max":575,"ha":619,"o":"m 319 947 q 506 823 438 947 q 575 475 575 698 q 495 100 575 225 q 304 -11 426 -11 q 116 111 184 -11 q 44 469 44 237 q 120 825 44 697 q 319 947 194 947 m 311 852 q 188 731 229 852 q 155 468 155 631 q 312 83 155 83 q 463 470 463 83 q 311 852 463 852 m 356 1122 l 477 986 l 384 986 l 312 1062 l 309 1062 l 237 986 l 145 986 l 265 1122 l 356 1122 "},"Y":{"x_min":12.5,"x_max":540.28125,"ha":547,"o":"m 219 0 l 219 395 l 12 936 l 126 936 l 209 701 q 279 490 265 537 l 281 490 q 350 705 298 556 l 429 936 l 540 936 l 326 400 l 326 0 l 219 0 "},"E":{"x_min":83.328125,"x_max":456.9375,"ha":492,"o":"m 425 444 l 190 444 l 190 93 l 456 93 l 456 0 l 83 0 l 83 936 l 440 936 l 440 843 l 190 843 l 190 534 l 425 534 l 425 444 "},"y":{"x_min":16.671875,"x_max":463.890625,"ha":481,"o":"m 129 672 l 219 286 l 247 147 l 250 147 l 358 672 l 463 672 l 354 240 q 187 -193 275 -76 q 66 -294 131 -263 l 26 -204 q 122 -119 76 -176 q 181 -5 161 -69 q 190 27 190 18 q 186 52 190 40 l 16 672 l 129 672 "},"\"":{"x_min":69.4375,"x_max":361.109375,"ha":429,"o":"m 168 948 l 148 625 l 88 625 l 69 948 l 168 948 m 361 948 l 341 625 l 281 625 l 262 948 l 361 948 "},"ê":{"x_min":44.4375,"x_max":463.890625,"ha":504,"o":"m 150 326 q 308 76 150 76 q 419 101 372 76 l 437 23 q 288 -8 376 -8 q 106 83 170 -8 q 44 329 44 172 q 108 587 44 490 q 272 681 170 681 q 419 591 368 681 q 463 387 463 511 q 461 326 463 359 l 150 326 m 361 405 q 330 552 362 500 q 261 598 302 598 q 181 536 211 598 q 151 405 155 483 l 361 405 m 305 947 l 415 759 l 334 759 l 270 880 l 268 880 l 204 759 l 123 759 l 233 947 l 305 947 "},"Ï":{"x_min":-33.328125,"x_max":311.109375,"ha":276,"o":"m 190 936 l 190 0 l 83 0 l 83 936 l 190 936 m 25 1006 q -33 1072 -33 1006 q -15 1118 -33 1098 q 26 1136 1 1136 q 86 1072 86 1136 q 25 1006 86 1006 m 250 1006 q 191 1072 191 1006 q 209 1118 191 1098 q 251 1136 226 1136 q 311 1072 311 1136 q 250 1006 311 1006 "},"g":{"x_min":45.828125,"x_max":486.109375,"ha":554,"o":"m 480 86 q 413 -206 480 -131 q 234 -277 350 -277 q 87 -244 147 -277 l 112 -161 q 237 -190 168 -190 q 375 15 375 -190 l 375 83 l 372 83 q 243 1 337 1 q 100 93 154 1 q 45 333 45 184 q 115 600 45 505 q 258 681 173 681 q 383 597 336 681 l 386 597 l 391 672 l 486 672 q 480 462 480 488 l 480 86 m 375 440 q 369 488 375 470 q 272 590 344 590 q 183 519 215 590 q 152 337 152 451 q 187 148 152 215 q 272 88 219 88 q 368 184 343 88 q 375 245 375 211 l 375 440 "},"Â":{"x_min":30.5625,"x_max":570.828125,"ha":604,"o":"m 195 280 l 134 0 l 30 0 l 244 936 l 362 936 l 570 0 l 465 0 l 404 280 l 195 280 m 388 366 l 340 604 q 302 818 326 672 l 298 818 q 259 604 277 686 l 211 366 l 388 366 m 350 1122 l 470 986 l 377 986 l 305 1062 l 302 1062 l 230 986 l 138 986 l 258 1122 l 350 1122 "},"ë":{"x_min":44.4375,"x_max":463.890625,"ha":504,"o":"m 150 326 q 308 76 150 76 q 419 101 372 76 l 437 23 q 288 -8 376 -8 q 106 83 170 -8 q 44 329 44 172 q 108 587 44 490 q 272 681 170 681 q 419 591 368 681 q 463 387 463 511 q 461 326 463 359 l 150 326 m 361 405 q 330 552 362 500 q 261 598 302 598 q 181 536 211 598 q 151 405 155 483 l 361 405 m 165 786 q 122 804 140 786 q 104 847 104 820 q 122 891 104 873 q 166 909 140 909 q 208 891 190 909 q 225 847 225 873 q 165 786 225 786 m 381 786 q 338 804 356 786 q 320 847 320 820 q 338 891 320 873 q 383 909 356 909 q 425 891 406 909 q 441 847 441 873 q 381 786 441 786 "},"Î":{"x_min":-26.390625,"x_max":305.5625,"ha":276,"o":"m 190 936 l 190 0 l 83 0 l 83 936 l 190 936 m 184 1122 l 305 986 l 212 986 l 140 1062 l 137 1062 l 65 986 l -26 986 l 93 1122 l 184 1122 "},"e":{"x_min":44.4375,"x_max":463.890625,"ha":504,"o":"m 150 326 q 308 76 150 76 q 419 101 372 76 l 437 23 q 288 -8 376 -8 q 106 83 170 -8 q 44 329 44 172 q 108 587 44 490 q 272 681 170 681 q 419 591 368 681 q 463 387 463 511 q 461 326 463 359 l 150 326 m 361 405 q 330 552 362 500 q 261 598 302 598 q 181 536 211 598 q 151 405 155 483 l 361 405 "},"J":{"x_min":4.171875,"x_max":293.0625,"ha":368,"o":"m 186 936 l 293 936 l 293 263 q 73 -11 293 -11 q 4 -1 29 -11 l 13 88 q 65 83 31 83 q 154 116 126 83 q 186 262 186 158 l 186 936 "},"ì":{"x_min":-38.890625,"x_max":181.9375,"ha":256,"o":"m 75 0 l 75 672 l 181 672 l 181 0 l 75 0 m 70 947 l 177 759 l 106 759 l -38 947 l 70 947 "},"q":{"x_min":45.828125,"x_max":484.71875,"ha":554,"o":"m 373 69 l 369 69 q 238 -11 330 -11 q 102 75 155 -11 q 45 327 45 168 q 109 594 45 497 q 256 681 166 681 q 381 594 340 681 l 384 593 l 390 672 l 484 672 q 479 462 479 488 l 479 -266 l 373 -266 l 373 69 m 373 420 q 370 465 373 437 q 336 554 363 518 q 272 590 308 590 q 152 333 152 590 q 270 77 152 77 q 368 188 341 77 q 373 245 373 212 l 373 420 "},"b":{"x_min":68.0625,"x_max":508.328125,"ha":554,"o":"m 73 961 l 179 961 l 179 591 l 181 591 q 325 681 229 681 q 456 594 406 681 q 508 341 508 502 q 445 75 508 170 q 304 -11 388 -11 q 170 87 216 -11 l 165 87 l 158 0 l 68 0 l 73 161 l 73 961 m 179 236 q 183 194 179 213 q 284 77 212 77 q 401 337 401 77 q 281 590 401 590 q 216 552 245 590 q 181 470 190 518 q 179 425 179 440 l 179 236 "},"D":{"x_min":84.71875,"x_max":573.609375,"ha":618,"o":"m 84 922 q 227 940 143 940 q 447 869 368 940 q 573 490 573 759 q 461 94 573 218 q 202 -5 370 -5 q 84 4 127 -5 l 84 922 m 190 86 q 230 83 205 83 q 462 487 462 83 q 240 852 462 852 q 190 847 208 852 l 190 86 "},"Ö":{"x_min":44.4375,"x_max":575,"ha":619,"o":"m 319 947 q 506 823 438 947 q 575 475 575 698 q 495 100 575 225 q 304 -11 426 -11 q 116 111 184 -11 q 44 469 44 237 q 120 825 44 697 q 319 947 194 947 m 311 852 q 188 731 229 852 q 155 468 155 631 q 312 83 155 83 q 463 470 463 83 q 311 852 463 852 m 195 1006 q 137 1072 137 1006 q 155 1118 137 1098 q 197 1136 172 1136 q 256 1072 256 1136 q 195 1006 256 1006 m 419 1006 q 361 1072 361 1006 q 379 1118 361 1098 q 420 1136 395 1136 q 480 1072 480 1136 q 419 1006 480 1006 "},"z":{"x_min":22.21875,"x_max":406.9375,"ha":435,"o":"m 22 65 l 234 481 l 262 533 q 287 580 280 565 l 287 583 l 48 583 l 48 672 l 406 672 l 406 601 l 197 191 q 143 91 168 141 l 143 88 l 405 88 l 405 0 l 22 0 l 22 65 "},"w":{"x_min":18.0625,"x_max":766.671875,"ha":786,"o":"m 129 672 l 194 343 q 230 129 222 198 l 236 129 q 277 340 248 218 l 355 672 l 437 672 l 511 350 q 554 129 541 211 l 559 129 q 595 345 569 216 l 659 672 l 766 672 l 597 0 l 509 0 l 431 326 q 394 527 412 401 l 391 527 q 352 322 376 423 l 272 0 l 181 0 l 18 672 l 129 672 "},"$":{"x_min":70.828125,"x_max":466.671875,"ha":535,"o":"m 223 -116 l 223 22 q 70 68 141 23 l 95 151 q 236 106 166 106 q 331 147 297 106 q 365 247 365 186 q 245 427 365 355 q 75 656 75 531 q 120 798 75 738 q 233 872 165 854 l 233 1006 l 309 1006 l 309 880 q 441 843 390 880 l 415 761 q 294 795 358 795 q 206 758 240 795 q 176 675 176 722 q 208 580 176 618 q 308 506 231 552 q 466 261 466 413 q 418 104 466 166 q 301 30 373 47 l 301 -116 l 223 -116 "},"Ç":{"x_min":44.4375,"x_max":491.671875,"ha":550,"o":"m 491 16 q 377 -6 448 -4 l 347 -68 q 409 -100 383 -73 q 437 -166 437 -129 q 397 -251 437 -222 q 311 -276 362 -276 q 218 -251 262 -276 l 240 -193 q 309 -213 273 -213 q 359 -170 359 -213 q 265 -111 359 -122 l 313 -4 q 120 123 190 13 q 44 456 44 243 q 154 838 44 709 q 375 944 244 944 q 491 920 455 944 l 468 830 q 373 850 423 850 q 227 765 287 850 q 156 468 156 663 q 223 169 156 268 q 376 87 280 87 q 475 106 430 87 l 491 16 "},"'":{"x_min":27.78125,"x_max":216.671875,"ha":246,"o":"m 216 950 q 91 630 163 755 l 27 620 q 108 936 86 781 l 216 950 "},"É":{"x_min":83.328125,"x_max":468.0625,"ha":492,"o":"m 425 444 l 190 444 l 190 93 l 456 93 l 456 0 l 83 0 l 83 936 l 440 936 l 440 843 l 190 843 l 190 534 l 425 534 l 425 444 m 468 1136 l 295 986 l 211 986 l 341 1136 l 468 1136 "},"-":{"x_min":41.671875,"x_max":345.828125,"ha":388,"o":"m 345 404 l 345 322 l 41 322 l 41 404 l 345 404 "},"Q":{"x_min":44.4375,"x_max":597.21875,"ha":619,"o":"m 556 -126 q 341 -25 430 -73 q 306 -11 316 -11 q 118 106 186 -11 q 44 469 44 231 q 120 825 44 698 q 320 947 194 947 q 508 822 440 947 q 575 475 575 697 q 415 31 575 106 l 415 27 q 597 -40 461 6 l 556 -126 m 313 83 q 463 470 463 83 q 312 852 463 852 q 188 727 229 852 q 155 469 155 627 q 187 208 154 309 q 313 83 229 83 "},"M":{"x_min":61.109375,"x_max":769.453125,"ha":832,"o":"m 650 402 q 640 769 636 655 l 634 769 q 559 444 600 595 l 445 5 l 376 5 l 268 426 q 190 769 219 611 l 186 769 q 175 395 187 687 l 156 0 l 61 0 l 116 936 l 233 936 l 341 508 q 416 186 397 294 l 420 186 q 490 508 440 301 l 595 936 l 715 936 l 769 0 l 669 0 l 650 402 "},"C":{"x_min":44.4375,"x_max":493.0625,"ha":518,"o":"m 493 16 q 358 -8 445 -8 q 133 105 215 -8 q 44 456 44 226 q 154 838 44 709 q 376 944 244 944 q 491 920 456 944 l 468 830 q 375 850 423 850 q 229 765 287 850 q 156 466 156 663 q 223 169 156 266 q 377 86 280 86 q 475 105 430 86 l 493 16 "},"L":{"x_min":83.328125,"x_max":452.78125,"ha":478,"o":"m 83 936 l 190 936 l 190 90 l 452 90 l 452 0 l 83 0 l 83 936 "},"!":{"x_min":73.609375,"x_max":208.328125,"ha":283,"o":"m 97 259 l 83 936 l 200 936 l 186 259 l 97 259 m 140 -11 q 73 63 73 -11 q 141 140 73 140 q 208 63 208 140 q 140 -11 208 -11 "},"ç":{"x_min":45.828125,"x_max":405.5625,"ha":418,"o":"m 405 18 q 298 -8 362 -5 l 266 -69 q 330 -101 304 -75 q 358 -168 358 -130 q 318 -252 358 -223 q 231 -277 283 -277 q 138 -252 183 -277 l 161 -194 q 230 -215 194 -215 q 280 -172 280 -215 q 184 -112 280 -122 l 234 -1 q 45 331 45 43 q 115 579 45 481 q 311 681 188 681 q 405 661 369 681 l 384 573 q 308 591 348 591 q 190 511 231 591 q 152 331 152 440 q 194 147 152 213 q 311 80 237 80 q 388 100 356 80 l 405 18 "},"È":{"x_min":77.78125,"x_max":456.9375,"ha":492,"o":"m 425 444 l 190 444 l 190 93 l 456 93 l 456 0 l 83 0 l 83 936 l 440 936 l 440 843 l 190 843 l 190 534 l 425 534 l 425 444 m 204 1136 l 334 986 l 250 986 l 77 1136 l 204 1136 "}," ":{"x_min":0,"x_max":0,"ha":218},"X":{"x_min":20.828125,"x_max":525,"ha":544,"o":"m 413 0 l 329 225 q 270 388 294 318 l 266 388 l 211 222 l 130 0 l 20 0 l 212 477 l 26 936 l 137 936 l 222 719 q 276 570 251 643 l 279 570 l 330 723 l 406 936 l 515 936 l 331 480 l 525 0 l 413 0 "},"ô":{"x_min":45.828125,"x_max":487.5,"ha":532,"o":"m 270 681 q 425 597 366 681 q 487 336 487 504 q 415 65 487 156 q 263 -11 354 -11 q 109 73 168 -11 q 45 334 45 165 q 115 600 45 506 q 270 681 176 681 m 266 597 q 152 336 152 597 q 269 73 152 73 q 380 336 380 73 q 266 597 380 597 m 302 947 l 412 759 l 331 759 l 268 880 l 265 880 l 201 759 l 120 759 l 230 947 l 302 947 "},"P":{"x_min":84.71875,"x_max":515.28125,"ha":554,"o":"m 84 922 q 238 940 154 940 q 447 872 377 940 q 515 677 515 804 q 458 486 515 561 q 237 381 383 381 q 190 383 205 381 l 190 0 l 84 0 l 84 922 m 190 472 q 233 469 215 469 q 359 520 313 469 q 408 670 408 573 q 250 852 408 852 q 190 845 213 852 l 190 472 "},"%":{"x_min":41.671875,"x_max":854.171875,"ha":896,"o":"m 213 913 q 336 840 290 913 q 381 641 381 765 q 329 433 381 506 q 212 366 283 366 q 90 440 136 366 q 41 638 41 513 q 91 841 41 765 q 213 913 138 913 m 209 847 q 123 640 123 847 q 212 433 123 433 q 300 638 300 433 q 209 847 300 847 m 172 -19 l 652 920 l 720 920 l 240 -19 l 172 -19 m 686 537 q 808 462 762 537 q 854 263 854 387 q 801 56 854 130 q 684 -9 755 -9 q 562 62 608 -9 q 513 262 513 137 q 563 465 513 388 q 686 537 611 537 m 681 470 q 595 263 595 470 q 684 56 595 56 q 772 262 772 56 q 681 470 772 470 "},"À":{"x_min":30.5625,"x_max":570.828125,"ha":604,"o":"m 195 280 l 134 0 l 30 0 l 244 936 l 362 936 l 570 0 l 465 0 l 404 280 l 195 280 m 388 366 l 340 604 q 302 818 326 672 l 298 818 q 259 604 277 686 l 211 366 l 388 366 m 247 1136 l 377 986 l 293 986 l 120 1136 l 247 1136 "},"Ê":{"x_min":83.328125,"x_max":456.9375,"ha":492,"o":"m 425 444 l 190 444 l 190 93 l 456 93 l 456 0 l 83 0 l 83 936 l 440 936 l 440 843 l 190 843 l 190 534 l 425 534 l 425 444 m 308 1122 l 429 986 l 336 986 l 263 1062 l 261 1062 l 188 986 l 97 986 l 216 1122 l 308 1122 "},")":{"x_min":34.71875,"x_max":269.4375,"ha":351,"o":"m 34 -166 q 179 398 179 61 q 34 961 179 733 l 118 961 q 269 398 269 745 q 118 -166 265 52 l 34 -166 "},"Ë":{"x_min":83.328125,"x_max":458.328125,"ha":492,"o":"m 425 444 l 190 444 l 190 93 l 458 93 l 458 0 l 83 0 l 83 936 l 440 936 l 440 843 l 190 843 l 190 534 l 425 534 l 425 444 m 150 1006 q 91 1072 91 1006 q 109 1118 91 1098 q 151 1136 126 1136 q 211 1072 211 1136 q 150 1006 211 1006 m 375 1006 q 316 1072 316 1006 q 334 1118 316 1098 q 376 1136 351 1136 q 436 1072 436 1136 q 375 1006 436 1006 "},"â":{"x_min":36.109375,"x_max":436.109375,"ha":506,"o":"m 429 152 q 436 0 429 54 l 340 0 l 333 70 l 329 70 q 194 -11 283 -11 q 81 41 126 -11 q 36 180 36 94 q 122 365 36 300 q 322 425 198 423 l 322 445 q 215 597 322 597 q 104 562 154 597 l 80 637 q 237 681 143 681 q 429 444 429 681 l 429 152 m 325 348 q 140 191 140 348 q 222 72 140 72 q 320 173 301 72 q 325 212 325 193 l 325 348 m 284 947 l 394 759 l 313 759 l 250 880 l 247 880 l 183 759 l 102 759 l 212 947 l 284 947 "},"T":{"x_min":22.21875,"x_max":470.828125,"ha":492,"o":"m 193 840 l 22 840 l 22 936 l 470 936 l 470 840 l 300 840 l 300 0 l 193 0 l 193 840 "},"a":{"x_min":36.109375,"x_max":436.109375,"ha":506,"o":"m 429 152 q 436 0 429 54 l 340 0 l 333 70 l 329 70 q 194 -11 283 -11 q 81 41 126 -11 q 36 180 36 94 q 122 365 36 300 q 322 425 198 423 l 322 445 q 215 597 322 597 q 104 562 154 597 l 80 637 q 237 681 143 681 q 429 444 429 681 l 429 152 m 325 348 q 140 191 140 348 q 222 72 140 72 q 320 173 301 72 q 325 212 325 193 l 325 348 "},"=":{"x_min":55.5625,"x_max":772.21875,"ha":828,"o":"m 55 466 l 55 543 l 772 543 l 772 466 l 55 466 m 55 204 l 55 280 l 772 280 l 772 204 l 55 204 "},"N":{"x_min":84.71875,"x_max":562.5,"ha":646,"o":"m 84 0 l 84 936 l 184 936 l 356 497 q 476 170 450 254 l 479 170 q 466 601 466 391 l 466 936 l 562 936 l 562 0 l 462 0 l 284 450 q 172 768 213 622 l 169 768 q 180 323 180 601 l 180 0 l 84 0 "},"2":{"x_min":45.828125,"x_max":479.171875,"ha":535,"o":"m 45 0 l 45 69 l 120 172 q 355 661 355 497 q 227 822 355 822 q 97 772 169 822 l 70 852 q 247 913 141 913 q 411 841 354 913 q 461 666 461 776 q 238 180 461 481 l 179 97 l 179 94 l 479 94 l 479 0 l 45 0 "},"j":{"x_min":-38.890625,"x_max":200,"ha":261,"o":"m -38 -193 q 51 -140 27 -175 q 83 73 83 -91 l 83 672 l 190 672 l 190 43 q 122 -213 190 -141 q -25 -277 63 -275 l -38 -193 m 137 915 q 200 845 200 915 q 136 776 200 776 q 73 845 73 776 q 137 915 73 915 "},"Z":{"x_min":27.78125,"x_max":468.0625,"ha":497,"o":"m 27 63 l 348 844 l 54 844 l 54 936 l 468 936 l 468 863 l 152 95 l 152 91 l 466 91 l 466 0 l 27 0 l 27 63 "},"u":{"x_min":72.21875,"x_max":483.328125,"ha":553,"o":"m 477 183 l 483 0 l 390 0 l 381 70 l 379 70 q 236 -11 331 -11 q 72 247 72 -11 l 72 672 l 179 672 l 179 262 q 269 79 179 79 q 365 168 348 79 q 370 229 370 191 l 370 672 l 477 672 l 477 183 "},"1":{"x_min":87.5,"x_max":365.28125,"ha":535,"o":"m 261 794 l 258 794 l 108 708 l 87 791 l 277 902 l 365 902 l 365 0 l 261 0 l 261 794 "},"k":{"x_min":73.609375,"x_max":483.328125,"ha":492,"o":"m 179 359 l 181 359 q 218 434 213 427 l 351 672 l 466 672 l 288 388 l 483 0 l 363 0 l 218 316 l 179 254 l 179 0 l 73 0 l 73 961 l 179 961 l 179 359 "},"t":{"x_min":16.671875,"x_max":334.71875,"ha":354,"o":"m 205 829 l 205 672 l 334 672 l 334 591 l 205 591 l 205 191 q 275 80 205 80 q 318 84 301 80 l 323 2 q 244 -8 293 -8 q 138 31 173 -8 q 98 201 98 76 l 98 591 l 16 591 l 16 672 l 98 672 l 98 786 l 205 829 "},"W":{"x_min":27.78125,"x_max":879.171875,"ha":908,"o":"m 206 0 l 27 936 l 137 936 l 216 484 q 263 147 244 329 l 268 147 q 325 486 279 256 l 411 936 l 501 936 l 588 495 q 643 147 631 269 l 647 147 q 695 490 659 261 l 773 936 l 879 936 l 697 0 l 591 0 l 502 455 q 454 762 473 604 l 451 762 q 400 451 433 604 l 308 0 l 206 0 "},"ï":{"x_min":-40.28125,"x_max":295.828125,"ha":256,"o":"m 75 0 l 75 672 l 181 672 l 181 0 l 75 0 m 20 786 q -22 804 -4 786 q -40 847 -40 820 q -22 891 -40 873 q 22 909 -4 909 q 63 891 45 909 q 80 847 80 873 q 20 786 80 786 m 236 786 q 193 804 211 786 q 175 847 175 820 q 193 891 175 873 q 237 909 211 909 q 279 891 261 909 q 295 847 295 873 q 236 786 295 786 "},"é":{"x_min":44.4375,"x_max":463.890625,"ha":504,"o":"m 150 326 q 308 76 150 76 q 419 101 372 76 l 437 23 q 288 -8 376 -8 q 106 83 170 -8 q 44 329 44 172 q 108 587 44 490 q 272 681 170 681 q 419 591 368 681 q 463 387 463 511 q 461 326 463 359 l 150 326 m 361 405 q 330 552 362 500 q 261 598 302 598 q 181 536 211 598 q 151 405 155 483 l 361 405 m 436 947 l 290 759 l 219 759 l 326 947 l 436 947 "},"v":{"x_min":18.0625,"x_max":463.890625,"ha":482,"o":"m 129 672 l 213 294 q 243 130 231 211 l 247 130 q 275 294 254 180 l 358 672 l 463 672 l 287 0 l 193 0 l 18 672 l 129 672 "},"s":{"x_min":30.5625,"x_max":365.28125,"ha":401,"o":"m 56 111 q 165 76 111 76 q 263 173 263 76 q 177 305 263 247 q 43 495 43 391 q 95 630 43 577 q 227 681 148 681 q 347 647 288 681 l 319 566 q 229 597 275 597 q 165 570 188 597 q 143 511 143 547 q 226 395 143 452 q 365 191 365 306 q 305 41 365 94 q 162 -8 250 -8 q 30 30 79 -8 l 56 111 "},"B":{"x_min":84.71875,"x_max":537.5,"ha":578,"o":"m 84 922 q 240 940 156 940 q 447 875 377 940 q 508 715 508 818 q 363 508 508 565 l 363 504 q 537 265 537 456 q 470 79 537 152 q 223 -5 395 -5 q 84 4 136 -5 l 84 922 m 190 538 l 238 538 q 352 584 305 538 q 401 704 401 631 q 247 856 401 856 q 190 850 211 856 l 190 538 m 190 84 q 244 79 215 79 q 376 126 327 79 q 426 265 426 176 q 369 409 426 356 q 237 456 318 455 l 190 456 l 190 84 "},"û":{"x_min":72.21875,"x_max":483.328125,"ha":553,"o":"m 477 183 l 483 0 l 390 0 l 381 70 l 379 70 q 236 -11 331 -11 q 72 247 72 -11 l 72 672 l 179 672 l 179 262 q 269 79 179 79 q 365 168 348 79 q 370 229 370 191 l 370 672 l 477 672 l 477 183 m 312 947 l 422 759 l 341 759 l 277 880 l 275 880 l 211 759 l 130 759 l 240 947 l 312 947 "},"?":{"x_min":61.109375,"x_max":391.671875,"ha":429,"o":"m 145 255 l 143 276 q 201 540 120 405 q 281 747 281 679 q 175 859 281 859 q 83 834 119 859 l 61 916 q 198 952 113 952 q 347 894 295 952 q 391 761 391 843 q 287 505 391 679 q 238 279 226 398 l 240 255 l 145 255 m 186 -11 q 137 11 156 -11 q 118 65 118 31 q 138 122 118 100 q 187 144 158 144 q 256 65 256 144 q 186 -11 256 -11 "},"H":{"x_min":83.328125,"x_max":559.71875,"ha":643,"o":"m 190 936 l 190 534 l 452 534 l 452 936 l 559 936 l 559 0 l 452 0 l 452 437 l 190 437 l 190 0 l 83 0 l 83 936 l 190 936 "},"î":{"x_min":-16.671875,"x_max":275,"ha":256,"o":"m 75 0 l 75 672 l 181 672 l 181 0 l 75 0 m 165 947 l 275 759 l 194 759 l 130 880 l 127 880 l 63 759 l -16 759 l 93 947 l 165 947 "},"c":{"x_min":45.828125,"x_max":405.5625,"ha":419,"o":"m 402 16 q 291 -8 359 -8 q 113 79 179 -8 q 45 331 45 168 q 115 579 45 481 q 311 681 188 681 q 405 661 369 681 l 384 573 q 308 591 348 591 q 190 511 231 591 q 152 331 152 440 q 194 147 152 213 q 311 80 237 80 q 387 98 352 80 l 402 16 "},"&":{"x_min":40.28125,"x_max":656.953125,"ha":682,"o":"m 538 0 l 476 87 q 273 -11 397 -11 q 98 69 163 -11 q 40 247 40 141 q 183 515 40 408 l 183 519 q 115 729 115 627 q 165 880 115 819 q 306 947 219 947 q 422 900 376 947 q 472 755 472 847 q 311 502 472 616 l 311 498 q 488 233 388 368 q 544 502 537 336 l 640 502 q 537 163 622 288 q 656 0 544 152 l 538 0 m 291 73 q 429 155 377 73 q 227 450 319 305 q 143 259 143 370 q 180 130 143 183 q 291 73 222 73 m 297 868 q 234 829 258 868 q 213 736 213 793 q 266 565 213 648 q 377 750 377 648 q 297 868 377 868 "},"I":{"x_min":83.328125,"x_max":190.28125,"ha":276,"o":"m 190 936 l 190 0 l 83 0 l 83 936 l 190 936 "},"G":{"x_min":45.8125,"x_max":544.4375,"ha":606,"o":"m 544 23 q 379 -8 470 -8 q 158 81 241 -8 q 45 455 44 204 q 161 837 47 706 q 398 944 255 944 q 530 918 483 944 l 506 826 q 400 848 462 848 q 234 765 300 848 q 156 465 156 665 q 226 166 156 265 q 379 83 284 83 q 444 94 427 83 l 444 400 l 323 400 l 323 488 l 544 488 l 544 23 "},"(":{"x_min":81.9375,"x_max":316.671875,"ha":351,"o":"m 316 961 q 172 395 172 733 q 316 -166 172 63 l 233 -166 q 81 397 81 54 q 233 961 86 748 l 316 961 "},"U":{"x_min":81.9375,"x_max":552.78125,"ha":635,"o":"m 188 936 l 188 308 q 315 83 188 83 q 445 308 445 83 l 445 936 l 552 936 l 552 325 q 313 -11 552 -11 q 81 312 81 -11 l 81 936 l 188 936 "},"F":{"x_min":83.328125,"x_max":440.28125,"ha":479,"o":"m 83 936 l 440 936 l 440 843 l 190 843 l 190 515 l 423 515 l 423 425 l 190 425 l 190 0 l 83 0 l 83 936 "},"r":{"x_min":68.0625,"x_max":336.109375,"ha":344,"o":"m 73 498 q 70 587 73 531 l 68 672 l 163 672 l 169 565 l 172 565 q 313 681 212 681 q 336 680 329 681 l 336 572 l 313 572 q 227 531 263 572 q 184 433 193 493 q 180 372 180 406 l 180 0 l 73 0 l 73 498 "},":":{"x_min":69.4375,"x_max":208.328125,"ha":269,"o":"m 137 498 q 88 520 108 498 q 69 576 69 541 q 90 633 69 611 q 138 655 109 655 q 208 576 208 655 q 137 498 208 498 m 137 -11 q 88 11 108 -11 q 69 66 69 31 q 90 123 69 101 q 138 145 109 145 q 208 66 208 145 q 137 -11 208 -11 "},"Û":{"x_min":81.9375,"x_max":552.78125,"ha":635,"o":"m 188 936 l 188 308 q 315 83 188 83 q 445 308 445 83 l 445 936 l 552 936 l 552 325 q 313 -11 552 -11 q 81 312 81 -11 l 81 936 l 188 936 m 363 1122 l 484 986 l 391 986 l 319 1062 l 316 1062 l 244 986 l 152 986 l 272 1122 l 363 1122 "},"x":{"x_min":15.28125,"x_max":458.328125,"ha":472,"o":"m 134 672 l 195 527 l 241 411 l 244 411 l 288 527 l 348 672 l 458 672 l 298 340 l 456 0 l 341 0 l 277 152 q 233 268 263 186 l 230 268 q 186 151 222 244 l 123 0 l 15 0 l 175 337 l 19 672 l 134 672 "},"è":{"x_min":44.4375,"x_max":463.890625,"ha":504,"o":"m 150 326 q 308 76 150 76 q 419 101 372 76 l 437 23 q 288 -8 376 -8 q 106 83 170 -8 q 44 329 44 172 q 108 587 44 490 q 272 681 170 681 q 419 591 368 681 q 463 387 463 511 q 461 326 463 359 l 150 326 m 361 405 q 330 552 362 500 q 261 598 302 598 q 181 536 211 598 q 151 405 155 483 l 361 405 m 212 947 l 319 759 l 248 759 l 102 947 l 212 947 "},"V":{"x_min":22.21875,"x_max":563.890625,"ha":585,"o":"m 236 0 l 22 936 l 137 936 l 227 497 q 294 137 276 265 l 298 137 q 361 500 312 255 l 450 936 l 563 936 l 345 0 l 236 0 "},"h":{"x_min":75,"x_max":487.5,"ha":563,"o":"m 75 961 l 181 961 l 181 598 l 184 598 q 241 658 205 633 q 330 681 277 681 q 440 627 400 681 q 487 445 487 565 l 487 0 l 380 0 l 380 433 q 290 591 380 591 q 186 484 211 591 q 181 434 181 463 l 181 0 l 75 0 l 75 961 "},"0":{"x_min":37.5,"x_max":497.21875,"ha":535,"o":"m 275 913 q 440 791 383 913 q 497 452 497 670 q 429 97 497 218 q 262 -11 368 -11 q 97 109 156 -11 q 37 450 37 230 q 101 795 37 675 q 275 913 162 913 m 269 822 q 144 451 144 822 q 269 80 141 80 q 390 451 390 80 q 269 822 390 822 "},".":{"x_min":68.0625,"x_max":209.71875,"ha":269,"o":"m 137 -11 q 88 11 108 -11 q 68 69 68 33 q 88 127 68 104 q 138 150 109 150 q 209 69 209 150 q 137 -11 209 -11 "},"@":{"x_min":48.609375,"x_max":777.78125,"ha":819,"o":"m 523 527 q 484 533 511 533 q 351 440 408 533 q 295 244 295 351 q 351 156 295 156 q 431 211 393 156 q 483 325 470 261 l 523 527 m 586 -87 q 380 -140 498 -140 q 145 -41 234 -140 q 48 259 48 65 q 175 658 48 493 q 487 826 301 826 q 702 731 625 826 q 777 491 777 641 q 716 193 777 300 q 563 90 659 90 q 483 201 475 90 l 479 201 q 327 90 418 90 q 215 243 215 90 q 290 476 215 373 q 512 594 376 594 q 609 575 568 594 l 554 294 q 584 148 526 148 q 675 236 636 148 q 715 465 715 329 q 477 772 715 772 q 222 629 329 772 q 111 258 111 480 q 187 2 111 91 q 397 -83 261 -83 q 568 -38 486 -83 l 586 -87 "},"f":{"x_min":12.5,"x_max":375,"ha":317,"o":"m 97 0 l 97 591 l 12 591 l 12 672 l 97 672 l 97 712 q 156 915 97 847 q 291 972 208 972 q 375 955 341 972 l 358 872 q 298 883 330 883 q 204 715 204 883 l 204 672 l 326 672 l 326 591 l 204 591 l 204 0 l 97 0 "},"ö":{"x_min":45.828125,"x_max":487.5,"ha":532,"o":"m 270 681 q 425 597 366 681 q 487 336 487 504 q 415 65 487 156 q 263 -11 354 -11 q 109 73 168 -11 q 45 334 45 165 q 115 600 45 506 q 270 681 176 681 m 266 597 q 152 336 152 597 q 269 73 152 73 q 380 336 380 73 q 266 597 380 597 m 158 786 q 115 804 133 786 q 97 847 97 820 q 115 891 97 873 q 159 909 133 909 q 201 891 183 909 q 218 847 218 873 q 158 786 218 786 m 375 786 q 331 804 350 786 q 313 847 313 820 q 331 891 313 873 q 376 909 350 909 q 418 891 400 909 q 434 847 434 873 q 375 786 434 786 "},"i":{"x_min":63.890625,"x_max":190.28125,"ha":256,"o":"m 75 0 l 75 672 l 181 672 l 181 0 l 75 0 m 126 915 q 190 845 190 915 q 125 776 190 776 q 63 845 63 776 q 126 915 63 915 "},"A":{"x_min":30.5625,"x_max":570.828125,"ha":604,"o":"m 195 280 l 134 0 l 30 0 l 244 936 l 362 936 l 570 0 l 465 0 l 404 280 l 195 280 m 388 366 l 340 604 q 302 818 326 672 l 298 818 q 259 604 277 686 l 211 366 l 388 366 "},"6":{"x_min":38.890625,"x_max":498.609375,"ha":535,"o":"m 443 823 q 379 815 416 823 q 147 488 193 768 l 151 488 q 304 575 209 575 q 444 501 390 575 q 498 297 498 425 q 441 79 498 163 q 276 -11 380 -11 q 98 94 162 -11 q 38 356 38 194 q 155 763 38 604 q 375 905 237 876 q 443 913 415 911 l 443 823 m 277 72 q 391 288 391 72 q 270 493 391 493 q 152 395 190 493 q 145 341 145 375 q 277 72 147 72 "},"n":{"x_min":69.4375,"x_max":487.5,"ha":563,"o":"m 75 498 q 72 594 75 545 l 69 672 l 162 672 l 168 590 l 170 590 q 325 681 220 681 q 487 451 487 681 l 487 0 l 380 0 l 380 431 q 287 591 380 591 q 187 483 206 591 q 181 422 181 461 l 181 0 l 75 0 l 75 498 "},"O":{"x_min":44.4375,"x_max":575,"ha":619,"o":"m 319 947 q 506 823 438 947 q 575 475 575 698 q 495 100 575 225 q 304 -11 426 -11 q 116 111 184 -11 q 44 469 44 237 q 120 825 44 697 q 319 947 194 947 m 311 852 q 188 731 229 852 q 155 468 155 631 q 312 83 155 83 q 463 470 463 83 q 311 852 463 852 "},"3":{"x_min":38.890625,"x_max":455.5625,"ha":535,"o":"m 62 115 q 191 77 125 77 q 305 126 262 77 q 348 256 348 173 q 298 395 348 345 q 166 444 250 444 l 141 444 l 141 525 l 162 525 q 268 563 219 525 q 325 686 325 609 q 205 825 325 825 q 93 781 152 825 l 69 862 q 231 913 134 913 q 380 854 325 913 q 431 705 431 795 q 297 494 431 556 l 297 491 q 455 255 455 448 q 387 66 455 141 q 197 -11 316 -11 q 38 30 98 -11 l 62 115 "},"m":{"x_min":69.4375,"x_max":786.109375,"ha":861,"o":"m 75 498 q 72 594 75 545 l 69 672 l 162 672 l 168 588 l 170 588 q 322 681 220 681 q 462 579 427 681 l 465 579 q 531 655 494 631 q 625 681 570 681 q 786 444 786 681 l 786 0 l 680 0 l 680 420 q 586 593 680 593 q 487 491 511 593 q 483 431 483 466 l 483 0 l 377 0 l 377 440 q 284 593 377 593 q 184 483 204 593 q 180 426 180 458 l 180 0 l 75 0 l 75 498 "},"9":{"x_min":41.671875,"x_max":495.828125,"ha":535,"o":"m 93 80 q 159 88 125 80 q 283 159 231 106 q 388 415 368 251 l 386 415 q 237 340 323 340 q 97 412 151 340 q 41 608 41 487 q 104 823 41 736 q 269 913 168 913 q 440 806 380 913 q 495 551 495 709 q 376 133 495 293 q 168 -2 297 25 q 93 -11 133 -11 l 93 80 m 262 830 q 184 781 215 830 q 147 616 145 723 q 269 420 147 420 q 380 501 344 420 q 388 558 388 522 q 262 830 388 830 "},"8":{"x_min":38.890625,"x_max":495.828125,"ha":535,"o":"m 186 481 q 68 688 68 562 q 131 854 68 790 q 277 913 191 913 q 423 847 369 913 q 472 701 472 786 q 351 487 472 572 l 351 484 q 495 237 495 388 q 431 61 495 130 q 263 -11 366 -11 q 95 62 158 -11 q 38 219 38 127 q 187 479 38 375 l 186 481 m 268 68 q 354 106 322 68 q 390 231 390 151 q 261 440 390 355 q 144 237 144 368 q 177 115 144 161 q 268 68 211 68 m 270 834 q 198 795 226 834 q 170 695 170 756 q 281 522 170 594 q 370 688 370 586 q 270 834 370 834 "},"l":{"x_min":75,"x_max":181.9375,"ha":265,"o":"m 75 961 l 181 961 l 181 0 l 75 0 l 75 961 "},"p":{"x_min":68.0625,"x_max":508.328125,"ha":554,"o":"m 73 462 l 68 672 l 162 672 l 168 586 l 170 586 q 313 681 222 681 q 455 593 404 681 q 508 337 508 501 q 444 69 508 162 q 300 -11 387 -11 q 181 66 219 -11 l 179 66 l 179 -266 l 73 -266 l 73 462 m 179 245 q 184 190 179 212 q 283 77 209 77 q 401 334 401 77 q 281 590 401 590 q 216 552 245 590 q 183 469 187 516 q 179 418 179 447 l 179 245 "},"4":{"x_min":25,"x_max":519.4375,"ha":535,"o":"m 325 0 l 325 250 l 25 250 l 25 322 l 318 902 l 422 902 l 422 337 l 519 337 l 519 250 l 422 250 l 422 0 l 325 0 m 325 337 l 325 591 q 333 769 325 650 l 327 769 q 251 600 294 690 l 126 340 l 126 337 l 325 337 "},"à":{"x_min":36.109375,"x_max":436.109375,"ha":506,"o":"m 429 152 q 436 0 429 54 l 340 0 l 333 70 l 329 70 q 194 -11 283 -11 q 81 41 126 -11 q 36 180 36 94 q 122 365 36 300 q 322 425 198 423 l 322 445 q 215 597 322 597 q 104 562 154 597 l 80 637 q 237 681 143 681 q 429 444 429 681 l 429 152 m 325 348 q 140 191 140 348 q 222 72 140 72 q 320 173 301 72 q 325 212 325 193 l 325 348 m 190 947 l 297 759 l 226 759 l 80 947 l 190 947 "},"R":{"x_min":84.71875,"x_max":543.0625,"ha":568,"o":"m 84 922 q 237 940 148 940 q 448 873 380 940 q 513 690 513 806 q 363 448 513 519 l 363 445 q 488 236 459 416 q 543 0 522 43 l 434 0 q 384 230 415 38 q 334 366 369 327 q 231 406 300 406 l 190 406 l 190 0 l 84 0 l 84 922 m 190 490 l 236 490 q 358 541 312 490 q 405 677 405 593 q 247 854 405 852 q 190 848 208 854 l 190 490 "},"o":{"x_min":45.828125,"x_max":487.5,"ha":532,"o":"m 270 681 q 425 597 366 681 q 487 336 487 504 q 415 65 487 156 q 263 -11 354 -11 q 109 73 168 -11 q 45 334 45 165 q 115 600 45 506 q 270 681 176 681 m 266 597 q 152 336 152 597 q 269 73 152 73 q 380 336 380 73 q 266 597 380 597 "},"5":{"x_min":36.109375,"x_max":462.5,"ha":535,"o":"m 461 808 l 219 808 l 181 568 q 215 570 193 570 q 386 502 318 570 q 462 297 462 429 q 386 75 462 161 q 190 -11 309 -11 q 36 29 94 -11 l 59 112 q 186 77 122 77 q 305 130 258 77 q 356 286 356 187 q 152 488 356 488 q 81 484 106 488 l 138 902 l 461 902 l 461 808 "}},"cssFontWeight":"normal","ascender":1258,"underlinePosition":999217,"cssFontStyle":"normal","boundingBox":{"yMin":-292,"xMin":-62.53125,"yMax":1244.75,"xMax":1332.5625},"resolution":1000,"original_font_information":{"postscript_name":"","version_string":"2.0","vendor_url":"http://www.g-force.ca/","full_font_name":"G-Force Normal","font_family_name":"G-Force","copyright":"","description":"","trademark":"","designer":"Guillaume Voyer","designer_url":"http://www.g-force.ca/","unique_font_identifier":"G-Force Normal","license_url":"","license_description":"","manufacturer_name":"L'Équipe G-Force","font_sub_family_name":"Normal"},"descender":-295,"familyName":"G-Force","lineHeight":1597,"underlineThickness":-99999});function addOnload(newOnload){if(typeof window.onload!='function'){window.onload=newOnload;}else{var oldOnload=window.onload;window.onload=function(){oldOnload();newOnload();};}}
function fixBlank(){var arrayLiens=document.getElementsByTagName("a");for(var i=0;i<arrayLiens.length;i++){if(/external/i.test(arrayLiens[i].getAttribute("rel"))){arrayLiens[i].target="_blank";}}}
addOnload(fixBlank);function prepareMenu(){var menu=document.getElementById("menu");var root_li=menu.getElementsByTagName("li");for(var i=0;i<root_li.length;i++){var li=root_li[i];var child_ul=li.getElementsByTagName("ul");if(child_ul.length>=1){li.onmouseover=function(){if(!this.getElementsByTagName("ul"))
return false;var ul=this.getElementsByTagName("ul");ul[0].style.display="block";this.getElementsByTagName("a")[0].className="hover";if(this.parentNode.id!="menu")
this.parentNode.parentNode.getElementsByTagName("a")[0].className="hover";return true;}
li.onmouseout=function(){if(!this.getElementsByTagName("ul"))
return false;var ul=this.getElementsByTagName("ul");ul[0].style.display="none";this.getElementsByTagName("a")[0].className="";if(this.parentNode.id!="menu")
this.parentNode.parentNode.getElementsByTagName("a")[0].className="";return true;}}}
return true;}
addOnload(prepareMenu);function fixPng(){if((navigator.appVersion+'').indexOf('MSIE 6')>-1){var arrayPng=document.getElementsByTagName('img');for(var i=0;i<arrayPng.length;i++){if(arrayPng[i].src.substr(arrayPng[i].src.length-3,3)=='png'){arrayPng[i].style.width=arrayPng[i].offsetWidth;arrayPng[i].style.height=arrayPng[i].offsetHeight;arrayPng[i].style.filter='progid:DXImageTransform.Microsoft.AlphaImageLoader(src="'+arrayPng[i].src+'", sizingMethod="scale")';arrayPng[i].src='/images/blank.gif';}}}}
addOnload(fixPng);function creerRequete(url,data,blnInnerHtml){var httpRequete=false;if(window.XMLHttpRequest){httpRequete=new XMLHttpRequest();}else if(window.ActiveXObject){try{httpRequete=new ActiveXObject('Msxml2.XMLHTTP');}
catch(e){try{httpRequete=new ActiveXObject('Microsoft.XMLHTTP');}
catch(e){}}}
if(!httpRequete){return false;}
httpRequete.onreadystatechange=function(){if(httpRequete.readyState==4){if(httpRequete.status==200){document.getElementById('alert').style.width=null;if(blnInnerHtml){document.getElementById('alertMessage').innerHTML=httpRequete.responseText;showAlert();}else{eval(httpRequete.responseText);}}else{alert("Erreur!\nVeuillez réessayer...");}
document.getElementById('alert').getElementsByTagName('span')[0].onclick=hideAlert;}};if(document.getElementById('alert').style.display.toString()!='block'){document.getElementById('alertMessage').innerHTML='<div style="padding:40px;width:32px;"><img src="/images/loading.gif" /></div>';showAlert();}
document.getElementById('alert').getElementsByTagName('span')[0].onclick=null;httpRequete.open('POST',url,true);httpRequete.setRequestHeader('Content-type','application/x-www-form-urlencoded');httpRequete.setRequestHeader('Content-length',data.length);httpRequete.setRequestHeader('Connection','close');httpRequete.send(data);}
function showAlert(){selects=document.getElementsByTagName('select');for(i=0;i!=selects.length;i++){selects[i].style.visibility='hidden';}
if(document.getElementById('alert').style.display.toString()!='block'){opacity("overlay",0,60,500);}
document.getElementById('overlay').style.height=document.body.offsetHeight+'px';document.getElementById('alert').style.visibility='hidden';document.getElementById('alert').style.display='block';var intWindowWidth=0,intWindowHeight=0;intWindowWidth=window.innerWidth?window.innerWidth:document.documentElement.clientWidth;intWindowHeight=window.innerHeight?window.innerHeight:document.documentElement.clientHeight;var intScrollX=0,intScrollY=00;intScrollX=window.pageXOffset?window.pageXOffset:document.documentElement.scrollLeft;intScrollY=window.pageYOffset?window.pageYOffset:document.documentElement.scrollTop;document.getElementById('alert').style.top=document.getElementById('alert').offsetHeight>intWindowHeight?(intScrollY+10)+'px':(intScrollY+((intWindowHeight-document.getElementById('alert').offsetHeight)/2))+'px';document.getElementById('alert').style.left=document.getElementById('alert').offsetWidth>intWindowWidth?(intScrollX+10)+'px':(intScrollX+((intWindowWidth-document.getElementById('alert').offsetWidth)/2))+'px';document.getElementById('alert').style.visibility='visible';document.getElementById('alert').style.width=(parseInt(document.getElementById('alertMessage').offsetWidth)+10)+'px';selects=document.getElementById('alertMessage').getElementsByTagName('select');for(i=0;i!=selects.length;i++){selects[i].style.visibility='visible';}
document.getElementById('overlay').style.height=document.body.offsetHeight+'px';}
function hideAlert(){opacity("overlay",60,0,500);document.getElementById('alert').style.display='none';document.getElementById('alert').style.width=null;selects=document.getElementsByTagName('select');for(i=0;i!=selects.length;i++){selects[i].style.visibility='visible';}}
function initLightBox(){var lightbox=document.createElement("div");lightbox.id="lightbox";lightbox.className="lightbox";lightbox.innerHTML='<div id="overlay"></div><div id="alert"><div id="alertHeader"><span onmouseover="style.cursor=\'pointer\'" onclick="hideAlert();">Fermer</span>&nbsp;&nbsp;</div><table><tr><td id="alertMessage"></td></tr></table></div>';document.getElementsByTagName("body")[0].appendChild(lightbox);}
addOnload(initLightBox);function opacity(id,opacStart,opacEnd,millisec){var speed=Math.round(millisec/100);var timer=0;if(opacStart>opacEnd){for(i=opacStart;i>=opacEnd;i--){setTimeout("changeOpac("+i+",'"+id+"')",(timer*speed));timer++;}}else if(opacStart<opacEnd){for(i=opacStart;i<=opacEnd;i++){setTimeout("changeOpac("+i+",'"+id+"')",(timer*speed));timer++;}}}
function changeOpac(opacity,id){if(opacity==0){document.getElementById(id).style.display="none";}else{document.getElementById(id).style.opacity=(opacity/100);document.getElementById(id).style.MozOpacity=(opacity/100);document.getElementById(id).style.KhtmlOpacity=(opacity/100);document.getElementById(id).style.filter="alpha(opacity="+opacity+")";document.getElementById(id).style.display="block";}}
