/* shadowbox/shadowbox.js (98%) */
(function(window,undefined){var S={version:"3.0.3"};var ua=navigator.userAgent.toLowerCase();if(ua.indexOf("windows")>-1||ua.indexOf("win32")>-1){S.isWindows=true}else{if(ua.indexOf("macintosh")>-1||ua.indexOf("mac os x")>-1){S.isMac=true}else{if(ua.indexOf("linux")>-1){S.isLinux=true}}}S.isIE=ua.indexOf("msie")>-1;S.isIE6=ua.indexOf("msie 6")>-1;S.isIE7=ua.indexOf("msie 7")>-1;S.isGecko=ua.indexOf("gecko")>-1&&ua.indexOf("safari")==-1;S.isWebKit=ua.indexOf("applewebkit/")>-1;var inlineId=/#(.+)$/,galleryName=/^(light|shadow)box\[(.*?)\]/i,inlineParam=/\s*([a-z_]*?)\s*=\s*(.+)\s*/,fileExtension=/[0-9a-z]+$/i,scriptPath=/(.+\/)shadowbox\.js/i;var open=false,initialized=false,lastOptions={},slideDelay=0,slideStart,slideTimer;S.current=-1;S.dimensions=null;S.ease=function(state){return 1+Math.pow(state-1,3)};S.errorInfo={fla:{name:"Flash",url:"http://www.adobe.com/products/flashplayer/"},qt:{name:"QuickTime",url:"http://www.apple.com/quicktime/download/"},wmp:{name:"Windows Media Player",url:"http://www.microsoft.com/windows/windowsmedia/"},f4m:{name:"Flip4Mac",url:"http://www.flip4mac.com/wmv_download.htm"}};S.gallery=[];S.onReady=noop;S.path=null;S.player=null;S.playerId="sb-player";S.options={animate:true,animateFade:true,autoplayMovies:true,continuous:false,enableKeys:true,flashParams:{bgcolor:"#000000",allowfullscreen:true},flashVars:{},flashVersion:"9.0.115",handleOversize:"resize",handleUnsupported:"link",onChange:noop,onClose:noop,onFinish:noop,onOpen:noop,showMovieControls:true,skipSetup:false,slideshowDelay:0,viewportPadding:20};S.getCurrent=function(){return S.current>-1?S.gallery[S.current]:null};S.hasNext=function(){return S.gallery.length>1&&(S.current!=S.gallery.length-1||S.options.continuous)};S.isOpen=function(){return open};S.isPaused=function(){return slideTimer=="pause"};S.applyOptions=function(options){lastOptions=apply({},S.options);apply(S.options,options)};S.revertOptions=function(){apply(S.options,lastOptions)};S.init=function(options,callback){if(initialized){return}initialized=true;if(S.skin.options){apply(S.options,S.skin.options)}if(options){apply(S.options,options)}if(!S.path){var path,scripts=document.getElementsByTagName("script");for(var i=0,len=scripts.length;i<len;++i){path=scriptPath.exec(scripts[i].src);if(path){S.path=path[1];break}}}if(callback){S.onReady=callback}bindLoad()};S.open=function(obj){if(open){return}var gc=S.makeGallery(obj);S.gallery=gc[0];S.current=gc[1];obj=S.getCurrent();if(obj==null){return}S.applyOptions(obj.options||{});filterGallery();if(S.gallery.length){obj=S.getCurrent();if(S.options.onOpen(obj)===false){return}open=true;S.skin.onOpen(obj,load)}};S.close=function(){if(!open){return}open=false;if(S.player){S.player.remove();S.player=null}if(typeof slideTimer=="number"){clearTimeout(slideTimer);slideTimer=null}slideDelay=0;listenKeys(false);S.options.onClose(S.getCurrent());S.skin.onClose();S.revertOptions()};S.play=function(){if(!S.hasNext()){return}if(!slideDelay){slideDelay=S.options.slideshowDelay*1000}if(slideDelay){slideStart=now();slideTimer=setTimeout(function(){slideDelay=slideStart=0;S.next()},slideDelay);if(S.skin.onPlay){S.skin.onPlay()}}};S.pause=function(){if(typeof slideTimer!="number"){return}slideDelay=Math.max(0,slideDelay-(now()-slideStart));if(slideDelay){clearTimeout(slideTimer);slideTimer="pause";if(S.skin.onPause){S.skin.onPause()}}};S.change=function(index){if(!(index in S.gallery)){if(S.options.continuous){index=(index<0?S.gallery.length+index:0);if(!(index in S.gallery)){return}}else{return}}S.current=index;if(typeof slideTimer=="number"){clearTimeout(slideTimer);slideTimer=null;slideDelay=slideStart=0}S.options.onChange(S.getCurrent());load(true)};S.next=function(){S.change(S.current+1)};S.previous=function(){S.change(S.current-1)};S.setDimensions=function(height,width,maxHeight,maxWidth,topBottom,leftRight,padding,preserveAspect){var originalHeight=height,originalWidth=width;var extraHeight=2*padding+topBottom;if(height+extraHeight>maxHeight){height=maxHeight-extraHeight}var extraWidth=2*padding+leftRight;if(width+extraWidth>maxWidth){width=maxWidth-extraWidth}var changeHeight=(originalHeight-height)/originalHeight,changeWidth=(originalWidth-width)/originalWidth,oversized=(changeHeight>0||changeWidth>0);if(preserveAspect&&oversized){if(changeHeight>changeWidth){width=Math.round((originalWidth/originalHeight)*height)}else{if(changeWidth>changeHeight){height=Math.round((originalHeight/originalWidth)*width)}}}S.dimensions={height:height+topBottom,width:width+leftRight,innerHeight:height,innerWidth:width,top:Math.floor((maxHeight-(height+extraHeight))/2+padding),left:Math.floor((maxWidth-(width+extraWidth))/2+padding),oversized:oversized};return S.dimensions};S.makeGallery=function(obj){var gallery=[],current=-1;if(typeof obj=="string"){obj=[obj]}if(typeof obj.length=="number"){each(obj,function(i,o){if(o.content){gallery[i]=o}else{gallery[i]={content:o}}});current=0}else{if(obj.tagName){var cacheObj=S.getCache(obj);obj=cacheObj?cacheObj:S.makeObject(obj)}if(obj.gallery){gallery=[];var o;for(var key in S.cache){o=S.cache[key];if(o.gallery&&o.gallery==obj.gallery){if(current==-1&&o.content==obj.content){current=gallery.length}gallery.push(o)}}if(current==-1){gallery.unshift(obj);current=0}}else{gallery=[obj];current=0}}each(gallery,function(i,o){gallery[i]=apply({},o)});return[gallery,current]};S.makeObject=function(link,options){var obj={content:link.href,title:link.getAttribute("title")||"",link:link};if(options){options=apply({},options);each(["player","title","height","width","gallery"],function(i,o){if(typeof options[o]!="undefined"){obj[o]=options[o];delete options[o]}});obj.options=options}else{obj.options={}}if(!obj.player){obj.player=S.getPlayer(obj.content)}var rel=link.getAttribute("rel");if(rel){var match=rel.match(galleryName);if(match){obj.gallery=escape(match[2])}each(rel.split(";"),function(i,p){match=p.match(inlineParam);if(match){obj[match[1]]=match[2]}})}return obj};S.getPlayer=function(content){if(content.indexOf("#")>-1&&content.indexOf(document.location.href)==0){return"inline"}var q=content.indexOf("?");if(q>-1){content=content.substring(0,q)}var ext,m=content.match(fileExtension);if(m){ext=m[0].toLowerCase()}if(ext){if(S.img&&S.img.ext.indexOf(ext)>-1){return"img"}if(S.swf&&S.swf.ext.indexOf(ext)>-1){return"swf"}if(S.flv&&S.flv.ext.indexOf(ext)>-1){return"flv"}if(S.qt&&S.qt.ext.indexOf(ext)>-1){if(S.wmp&&S.wmp.ext.indexOf(ext)>-1){return"qtwmp"}else{return"qt"}}if(S.wmp&&S.wmp.ext.indexOf(ext)>-1){return"wmp"}}return"iframe"};function filterGallery(){var err=S.errorInfo,plugins=S.plugins,obj,remove,needed,m,format,replace,inlineEl,flashVersion;for(var i=0;i<S.gallery.length;++i){obj=S.gallery[i];remove=false;needed=null;switch(obj.player){case"flv":case"swf":if(!plugins.fla){needed="fla"}break;case"qt":if(!plugins.qt){needed="qt"}break;case"wmp":if(S.isMac){if(plugins.qt&&plugins.f4m){obj.player="qt"}else{needed="qtf4m"}}else{if(!plugins.wmp){needed="wmp"}}break;case"qtwmp":if(plugins.qt){obj.player="qt"}else{if(plugins.wmp){obj.player="wmp"}else{needed="qtwmp"}}break}if(needed){if(S.options.handleUnsupported=="link"){switch(needed){case"qtf4m":format="shared";replace=[err.qt.url,err.qt.name,err.f4m.url,err.f4m.name];break;case"qtwmp":format="either";replace=[err.qt.url,err.qt.name,err.wmp.url,err.wmp.name];break;default:format="single";replace=[err[needed].url,err[needed].name]}obj.player="html";obj.content='<div class="sb-message">'+sprintf(S.lang.errors[format],replace)+"</div>"}else{remove=true}}else{if(obj.player=="inline"){m=inlineId.exec(obj.content);if(m){inlineEl=get(m[1]);if(inlineEl){obj.content=inlineEl.innerHTML}else{remove=true}}else{remove=true}}else{if(obj.player=="swf"||obj.player=="flv"){flashVersion=(obj.options&&obj.options.flashVersion)||S.options.flashVersion;if(S.flash&&!S.flash.hasFlashPlayerVersion(flashVersion)){obj.width=310;obj.height=177}}}}if(remove){S.gallery.splice(i,1);if(i<S.current){--S.current}else{if(i==S.current){S.current=i>0?i-1:i}}--i}}}function listenKeys(on){if(!S.options.enableKeys){return}(on?addEvent:removeEvent)(document,"keydown",handleKey)}function handleKey(e){if(e.metaKey||e.shiftKey||e.altKey||e.ctrlKey){return}var code=keyCode(e),handler;switch(code){case 81:case 88:case 27:handler=S.close;break;case 37:handler=S.previous;break;case 39:handler=S.next;break;case 32:handler=typeof slideTimer=="number"?S.pause:S.play;break}if(handler){preventDefault(e);handler()}}function load(changing){listenKeys(false);var obj=S.getCurrent();var player=(obj.player=="inline"?"html":obj.player);if(typeof S[player]!="function"){throw"unknown player "+player}if(changing){S.player.remove();S.revertOptions();S.applyOptions(obj.options||{})}S.player=new S[player](obj,S.playerId);if(S.gallery.length>1){var next=S.gallery[S.current+1]||S.gallery[0];if(next.player=="img"){var a=new Image();a.src=next.content}var prev=S.gallery[S.current-1]||S.gallery[S.gallery.length-1];if(prev.player=="img"){var b=new Image();b.src=prev.content}}S.skin.onLoad(changing,waitReady)}function waitReady(){if(!open){return}if(typeof S.player.ready!="undefined"){var timer=setInterval(function(){if(open){if(S.player.ready){clearInterval(timer);timer=null;S.skin.onReady(show)}}else{clearInterval(timer);timer=null}},10)}else{S.skin.onReady(show)}}function show(){if(!open){return}S.player.append(S.skin.body,S.dimensions);S.skin.onShow(finish)}function finish(){if(!open){return}if(S.player.onLoad){S.player.onLoad()}S.options.onFinish(S.getCurrent());if(!S.isPaused()){S.play()}listenKeys(true)}if(!Array.prototype.indexOf){Array.prototype.indexOf=function(obj,from){var len=this.length>>>0;from=from||0;if(from<0){from+=len}for(;from<len;++from){if(from in this&&this[from]===obj){return from}}return-1}}function now(){return(new Date).getTime()}function apply(original,extension){for(var property in extension){original[property]=extension[property]}return original}function each(obj,callback){var i=0,len=obj.length;for(var value=obj[0];i<len&&callback.call(value,i,value)!==false;value=obj[++i]){}}function sprintf(str,replace){return str.replace(/\{(\w+?)\}/g,function(match,i){return replace[i]})}function noop(){}function get(id){return document.getElementById(id)}function remove(el){el.parentNode.removeChild(el)}var supportsOpacity=true,supportsFixed=true;function checkSupport(){var body=document.body,div=document.createElement("div");supportsOpacity=typeof div.style.opacity==="string";div.style.position="fixed";div.style.margin=0;div.style.top="20px";body.appendChild(div,body.firstChild);supportsFixed=div.offsetTop==20;body.removeChild(div)}S.getStyle=(function(){var opacity=/opacity=([^)]*)/,getComputedStyle=document.defaultView&&document.defaultView.getComputedStyle;return function(el,style){var ret;if(!supportsOpacity&&style=="opacity"&&el.currentStyle){ret=opacity.test(el.currentStyle.filter||"")?(parseFloat(RegExp.$1)/100)+"":"";return ret===""?"1":ret}if(getComputedStyle){var computedStyle=getComputedStyle(el,null);if(computedStyle){ret=computedStyle[style]}if(style=="opacity"&&ret==""){ret="1"}}else{ret=el.currentStyle[style]}return ret}})();S.appendHTML=function(el,html){if(el.insertAdjacentHTML){el.insertAdjacentHTML("BeforeEnd",html)}else{if(el.lastChild){var range=el.ownerDocument.createRange();range.setStartAfter(el.lastChild);var frag=range.createContextualFragment(html);el.appendChild(frag)}else{el.innerHTML=html}}};S.getWindowSize=function(dimension){if(document.compatMode==="CSS1Compat"){return document.documentElement["client"+dimension]}return document.body["client"+dimension]};S.setOpacity=function(el,opacity){var style=el.style;if(supportsOpacity){style.opacity=(opacity==1?"":opacity)}else{style.zoom=1;if(opacity==1){if(typeof style.filter=="string"&&(/alpha/i).test(style.filter)){style.filter=style.filter.replace(/\s*[\w\.]*alpha\([^\)]*\);?/gi,"")}}else{style.filter=(style.filter||"").replace(/\s*[\w\.]*alpha\([^\)]*\)/gi,"")+" alpha(opacity="+(opacity*100)+")"}}};S.clearOpacity=function(el){S.setOpacity(el,1)};function getTarget(e){var target=e.target?e.target:e.srcElement;return target.nodeType==3?target.parentNode:target}function getPageXY(e){var x=e.pageX||(e.clientX+(document.documentElement.scrollLeft||document.body.scrollLeft)),y=e.pageY||(e.clientY+(document.documentElement.scrollTop||document.body.scrollTop));return[x,y]}function preventDefault(e){e.preventDefault()}function keyCode(e){return e.which?e.which:e.keyCode}function addEvent(el,type,handler){if(el.addEventListener){el.addEventListener(type,handler,false)}else{if(el.nodeType===3||el.nodeType===8){return}if(el.setInterval&&(el!==window&&!el.frameElement)){el=window}if(!handler.__guid){handler.__guid=addEvent.guid++}if(!el.events){el.events={}}var handlers=el.events[type];if(!handlers){handlers=el.events[type]={};if(el["on"+type]){handlers[0]=el["on"+type]}}handlers[handler.__guid]=handler;el["on"+type]=addEvent.handleEvent}}addEvent.guid=1;addEvent.handleEvent=function(event){var result=true;event=event||addEvent.fixEvent(((this.ownerDocument||this.document||this).parentWindow||window).event);var handlers=this.events[event.type];for(var i in handlers){this.__handleEvent=handlers[i];if(this.__handleEvent(event)===false){result=false}}return result};addEvent.preventDefault=function(){this.returnValue=false};addEvent.stopPropagation=function(){this.cancelBubble=true};addEvent.fixEvent=function(e){e.preventDefault=addEvent.preventDefault;e.stopPropagation=addEvent.stopPropagation;return e};function removeEvent(el,type,handler){if(el.removeEventListener){el.removeEventListener(type,handler,false)}else{if(el.events&&el.events[type]){delete el.events[type][handler.__guid]}}}var loaded=false,DOMContentLoaded;if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);S.load()}}else{if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);S.load()}}}}function doScrollCheck(){if(loaded){return}try{document.documentElement.doScroll("left")}catch(e){setTimeout(doScrollCheck,1);return}S.load()}function bindLoad(){if(document.readyState==="complete"){return S.load()}if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);window.addEventListener("load",S.load,false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);window.attachEvent("onload",S.load);var topLevel=false;try{topLevel=window.frameElement===null}catch(e){}if(document.documentElement.doScroll&&topLevel){doScrollCheck()}}}}S.load=function(){if(loaded){return}if(!document.body){return setTimeout(S.load,13)}loaded=true;checkSupport();S.onReady();if(!S.options.skipSetup){S.setup()}S.skin.init()};S.plugins={};if(navigator.plugins&&navigator.plugins.length){var names=[];each(navigator.plugins,function(i,p){names.push(p.name)});names=names.join(",");var f4m=names.indexOf("Flip4Mac")>-1;S.plugins={fla:names.indexOf("Shockwave Flash")>-1,qt:names.indexOf("QuickTime")>-1,wmp:!f4m&&names.indexOf("Windows Media")>-1,f4m:f4m}}else{var detectPlugin=function(name){var axo;try{axo=new ActiveXObject(name)}catch(e){}return!!axo};S.plugins={fla:detectPlugin("ShockwaveFlash.ShockwaveFlash"),qt:detectPlugin("QuickTime.QuickTime"),wmp:detectPlugin("wmplayer.ocx"),f4m:false}}var relAttr=/^(light|shadow)box/i,expando="shadowboxCacheKey",cacheKey=1;S.cache={};S.select=function(selector){var links=[];if(!selector){var rel;each(document.getElementsByTagName("a"),function(i,el){rel=el.getAttribute("rel");if(rel&&relAttr.test(rel)){links.push(el)}})}else{var length=selector.length;if(length){if(typeof selector=="string"){if(S.find){links=S.find(selector)}}else{if(length==2&&typeof selector[0]=="string"&&selector[1].nodeType){if(S.find){links=S.find(selector[0],selector[1])}}else{for(var i=0;i<length;++i){links[i]=selector[i]}}}}else{links.push(selector)}}return links};S.setup=function(selector,options){each(S.select(selector),function(i,link){S.addCache(link,options)})};S.teardown=function(selector){each(S.select(selector),function(i,link){S.removeCache(link)})};S.addCache=function(link,options){var key=link[expando];if(key==undefined){key=cacheKey++;link[expando]=key;addEvent(link,"click",handleClick)}S.cache[key]=S.makeObject(link,options)};S.removeCache=function(link){removeEvent(link,"click",handleClick);delete S.cache[link[expando]];link[expando]=null};S.getCache=function(link){var key=link[expando];return(key in S.cache&&S.cache[key])};S.clearCache=function(){for(var key in S.cache){S.removeCache(S.cache[key].link)}S.cache={}};function handleClick(e){S.open(this);if(S.gallery.length){preventDefault(e)}}
S.find=(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true;[0,0].sort(function(){baseHasDuplicate=false;return 0});var Sizzle=function(selector,context,results,seed){results=results||[];var origContext=context=context||document;if(context.nodeType!==1&&context.nodeType!==9){return[]}if(!selector||typeof selector!=="string"){return results}var parts=[],m,set,checkSet,extra,prune=true,contextXML=isXML(context),soFar=selector;while((chunker.exec(""),m=chunker.exec(soFar))!==null){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break}}if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context)}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]){selector+=parts.shift()}set=posProcess(selector,set)}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){var ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0]}if(context){var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);set=ret.expr?Sizzle.filter(ret.expr,ret.set):ret.set;if(parts.length>0){checkSet=makeArray(set)}else{prune=false}while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur=""}else{pop=parts.pop()}if(pop==null){pop=context}Expr.relative[cur](checkSet,pop,contextXML)}}else{checkSet=parts=[]}}if(!checkSet){checkSet=set}if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector)}if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet)}else{if(context&&context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i])}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i])}}}}}else{makeArray(checkSet,results)}if(extra){Sizzle(extra,origContext,results,seed);Sizzle.uniqueSort(results)}return results};Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1)}}}}return results};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set)};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[]}for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.leftMatch[type].exec(expr))){var left=match[1];match.splice(1,1);if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break}}}}if(!set){set=context.getElementsByTagName("*")}return{set:set,expr:expr}};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop===result){result=[]}if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true}else{if(match===true){continue}}}if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true}else{curLoop[i]=false}}else{if(pass){result.push(item);anyFound=true}}}}}if(found!==undefined){if(!inplace){curLoop=result}expr=expr.replace(Expr.match[type],"");if(!anyFound){return[]}break}}}if(expr===old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr}else{break}}old=expr}return curLoop};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href")}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag){part=part.toLowerCase()}for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}checkSet[i]=isPartStrNotTag||elem&&elem.nodeName.toLowerCase()===part?elem||false:elem===part}}if(isPartStrNotTag){Sizzle.filter(part,checkSet,true)}},">":function(checkSet,part){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=part.toLowerCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part}}if(isPartStr){Sizzle.filter(part,checkSet,true)}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck}checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML)},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck}checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML)}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[]}},NAME:function(match,context){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i])}}return ret.length===0?null:ret}},TAG:function(match,context){return context.getElementsByTagName(match[1])}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match}for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").replace(/[\t\n]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem)}}else{if(inplace){curLoop[i]=false}}}}return false},ID:function(match){return match[1].replace(/\\/g,"")},TAG:function(match,curLoop){return match[1].toLowerCase()},CHILD:function(match){if(match[1]==="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]==="even"&&"2n"||match[2]==="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0}match[0]=done++;return match},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name]}if(match[2]==="~="){match[4]=" "+match[4]+" "}return match},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if((chunker.exec(match[3])||"").length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop)}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret)}return false}}else{if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true}}return match},POS:function(match){match.unshift(true);return match}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden"},disabled:function(elem){return elem.disabled===true},checked:function(elem){return elem.checked===true},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true},parent:function(elem){return!!elem.firstChild},empty:function(elem){return!elem.firstChild},has:function(elem,i,match){return!!Sizzle(match[3],elem).length},header:function(elem){return/h\d/i.test(elem.nodeName)},text:function(elem){return"text"===elem.type},radio:function(elem){return"radio"===elem.type},checkbox:function(elem){return"checkbox"===elem.type},file:function(elem){return"file"===elem.type},password:function(elem){return"password"===elem.type},submit:function(elem){return"submit"===elem.type},image:function(elem){return"image"===elem.type},reset:function(elem){return"reset"===elem.type},button:function(elem){return"button"===elem.type||elem.nodeName.toLowerCase()==="button"},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName)}},setFilters:{first:function(elem,i){return i===0},last:function(elem,i,match,array){return i===array.length-1},even:function(elem,i){return i%2===0},odd:function(elem,i){return i%2===1},lt:function(elem,i,match){return i<match[3]-0},gt:function(elem,i,match){return i>match[3]-0},nth:function(elem,i,match){return match[3]-0===i},eq:function(elem,i,match){return match[3]-0===i}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array)}else{if(name==="contains"){return(elem.textContent||elem.innerText||getText([elem])||"").indexOf(match[3])>=0}else{if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false}}return true}else{throw"Syntax error, unrecognized expression: "+name}}}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case"only":case"first":while((node=node.previousSibling)){if(node.nodeType===1){return false}}if(type==="first"){return true}node=elem;case"last":while((node=node.nextSibling)){if(node.nodeType===1){return false}}return true;case"nth":var first=match[2],last=match[3];if(first===1&&last===0){return true}var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count}}parent.sizcache=doneName}var diff=elem.nodeIndex-last;if(first===0){return diff===0}else{return(diff%first===0&&diff/first>=0)}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName.toLowerCase()===match},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!==check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array)}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source)}var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results}return array};try{Array.prototype.slice.call(document.documentElement.childNodes,0)}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array)}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i])}}else{for(var i=0;array[i];i++){ret.push(array[i])}}}return ret}}var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true}return a.compareDocumentPosition?-1:1}var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true}return ret}}else{if("sourceIndex"in document.documentElement){sortOrder=function(a,b){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true}return a.sourceIndex?-1:1}var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true}return ret}}else{if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true}return a.ownerDocument?-1:1}var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.setStart(a,0);aRange.setEnd(a,0);bRange.setStart(b,0);bRange.setEnd(b,0);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true}return ret}}}}function getText(elems){var ret="",elem;for(var i=0;elems[i];i++){elem=elems[i];if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue}else{if(elem.nodeType!==8){ret+=getText(elem.childNodes)}}}return ret}(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();form.innerHTML="<a name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[]}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match}}root.removeChild(form);root=form=null})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i])}}results=tmp}return results}}div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2)}}div=null})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return}Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra)}catch(e){}}return oldSizzle(query,context,extra,seed)};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop]}div=null})()}(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(!div.getElementsByClassName||div.getElementsByClassName("e").length===0){return}div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return}Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1])}};div=null})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i}if(elem.nodeName.toLowerCase()===cur){match=elem;break}elem=elem[dir]}checkSet[i]=match}}}function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i}if(typeof cur!=="string"){if(elem===cur){match=true;break}}else{if(Sizzle.filter(cur,[elem]).length>0){match=elem;break}}}elem=elem[dir]}checkSet[i]=match}}}var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16}:function(a,b){return a!==b&&(a.contains?a.contains(b):true)};var isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"")}selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet)}return Sizzle.filter(later,tmpSet)};return Sizzle})();S.flash=(function(){var swfobject=function(){var UNDEF="undefined",OBJECT="object",SHOCKWAVE_FLASH="Shockwave Flash",SHOCKWAVE_FLASH_AX="ShockwaveFlash.ShockwaveFlash",FLASH_MIME_TYPE="application/x-shockwave-flash",EXPRESS_INSTALL_ID="SWFObjectExprInst",win=window,doc=document,nav=navigator,domLoadFnArr=[],regObjArr=[],objIdArr=[],listenersArr=[],script,timer=null,storedAltContent=null,storedAltContentId=null,isDomLoaded=false,isExpressInstallActive=false;var ua=function(){var w3cdom=typeof doc.getElementById!=UNDEF&&typeof doc.getElementsByTagName!=UNDEF&&typeof doc.createElement!=UNDEF,playerVersion=[0,0,0],d=null;if(typeof nav.plugins!=UNDEF&&typeof nav.plugins[SHOCKWAVE_FLASH]==OBJECT){d=nav.plugins[SHOCKWAVE_FLASH].description;if(d&&!(typeof nav.mimeTypes!=UNDEF&&nav.mimeTypes[FLASH_MIME_TYPE]&&!nav.mimeTypes[FLASH_MIME_TYPE].enabledPlugin)){d=d.replace(/^.*\s+(\S+\s+\S+$)/,"$1");playerVersion[0]=parseInt(d.replace(/^(.*)\..*$/,"$1"),10);playerVersion[1]=parseInt(d.replace(/^.*\.(.*)\s.*$/,"$1"),10);playerVersion[2]=/r/.test(d)?parseInt(d.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof win.ActiveXObject!=UNDEF){var a=null,fp6Crash=false;try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".7")}catch(e){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".6");playerVersion=[6,0,21];a.AllowScriptAccess="always"}catch(e){if(playerVersion[0]==6){fp6Crash=true}}if(!fp6Crash){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX)}catch(e){}}}if(!fp6Crash&&a){try{d=a.GetVariable("$version");if(d){d=d.split(" ")[1].split(",");playerVersion=[parseInt(d[0],10),parseInt(d[1],10),parseInt(d[2],10)]}}catch(e){}}}}var u=nav.userAgent.toLowerCase(),p=nav.platform.toLowerCase(),webkit=/webkit/.test(u)?parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,ie=false,windows=p?/win/.test(p):/win/.test(u),mac=p?/mac/.test(p):/mac/.test(u);return{w3cdom:w3cdom,pv:playerVersion,webkit:webkit,ie:ie,win:windows,mac:mac}}();var onDomLoad=function(){if(!ua.w3cdom){return}addDomLoadEvent(main);if(ua.ie&&ua.win){try{doc.write("<script id=__ie_ondomload defer=true src=//:><\/script>");script=getElementById("__ie_ondomload");if(script){addListener(script,"onreadystatechange",checkReadyState)}}catch(e){}}if(ua.webkit&&typeof doc.readyState!=UNDEF){timer=setInterval(function(){if(/loaded|complete/.test(doc.readyState)){callDomLoadFunctions()}},10)}if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("DOMContentLoaded",callDomLoadFunctions,null)}addLoadEvent(callDomLoadFunctions)}();function checkReadyState(){if(script.readyState=="complete"){script.parentNode.removeChild(script);callDomLoadFunctions()}}function callDomLoadFunctions(){if(isDomLoaded){return}if(ua.ie&&ua.win){var s=createElement("span");try{var t=doc.getElementsByTagName("body")[0].appendChild(s);t.parentNode.removeChild(t)}catch(e){return}}isDomLoaded=true;if(timer){clearInterval(timer);timer=null}var dl=domLoadFnArr.length;for(var i=0;i<dl;i++){domLoadFnArr[i]()}}function addDomLoadEvent(fn){if(isDomLoaded){fn()}else{domLoadFnArr[domLoadFnArr.length]=fn}}function addLoadEvent(fn){if(typeof win.addEventListener!=UNDEF){win.addEventListener("load",fn,false)}else{if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("load",fn,false)}else{if(typeof win.attachEvent!=UNDEF){addListener(win,"onload",fn)}else{if(typeof win.onload=="function"){var fnOld=win.onload;win.onload=function(){fnOld();fn()}}else{win.onload=fn}}}}}function main(){var rl=regObjArr.length;for(var i=0;i<rl;i++){var id=regObjArr[i].id;if(ua.pv[0]>0){var obj=getElementById(id);if(obj){regObjArr[i].width=obj.getAttribute("width")?obj.getAttribute("width"):"0";regObjArr[i].height=obj.getAttribute("height")?obj.getAttribute("height"):"0";if(hasPlayerVersion(regObjArr[i].swfVersion)){if(ua.webkit&&ua.webkit<312){fixParams(obj)}setVisibility(id,true)}else{if(regObjArr[i].expressInstall&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){showExpressInstall(regObjArr[i])}else{displayAltContent(obj)}}}}else{setVisibility(id,true)}}}function fixParams(obj){var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var e=createElement("embed"),a=nestedObj.attributes;if(a){var al=a.length;for(var i=0;i<al;i++){if(a[i].nodeName=="DATA"){e.setAttribute("src",a[i].nodeValue)}else{e.setAttribute(a[i].nodeName,a[i].nodeValue)}}}var c=nestedObj.childNodes;if(c){var cl=c.length;for(var j=0;j<cl;j++){if(c[j].nodeType==1&&c[j].nodeName=="PARAM"){e.setAttribute(c[j].getAttribute("name"),c[j].getAttribute("value"))}}}obj.parentNode.replaceChild(e,obj)}}function showExpressInstall(regObj){isExpressInstallActive=true;var obj=getElementById(regObj.id);if(obj){if(regObj.altContentId){var ac=getElementById(regObj.altContentId);if(ac){storedAltContent=ac;storedAltContentId=regObj.altContentId}}else{storedAltContent=abstractAltContent(obj)}if(!(/%$/.test(regObj.width))&&parseInt(regObj.width,10)<310){regObj.width="310"}if(!(/%$/.test(regObj.height))&&parseInt(regObj.height,10)<137){regObj.height="137"}doc.title=doc.title.slice(0,47)+" - Flash Player Installation";var pt=ua.ie&&ua.win?"ActiveX":"PlugIn",dt=doc.title,fv="MMredirectURL="+win.location+"&MMplayerType="+pt+"&MMdoctitle="+dt,replaceId=regObj.id;if(ua.ie&&ua.win&&obj.readyState!=4){var newObj=createElement("div");replaceId+="SWFObjectNew";newObj.setAttribute("id",replaceId);obj.parentNode.insertBefore(newObj,obj);obj.style.display="none";var fn=function(){obj.parentNode.removeChild(obj)};addListener(win,"onload",fn)}createSWF({data:regObj.expressInstall,id:EXPRESS_INSTALL_ID,width:regObj.width,height:regObj.height},{flashvars:fv},replaceId)}}function displayAltContent(obj){if(ua.ie&&ua.win&&obj.readyState!=4){var el=createElement("div");obj.parentNode.insertBefore(el,obj);el.parentNode.replaceChild(abstractAltContent(obj),el);obj.style.display="none";var fn=function(){obj.parentNode.removeChild(obj)};addListener(win,"onload",fn)}else{obj.parentNode.replaceChild(abstractAltContent(obj),obj)}}function abstractAltContent(obj){var ac=createElement("div");if(ua.win&&ua.ie){ac.innerHTML=obj.innerHTML}else{var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var c=nestedObj.childNodes;if(c){var cl=c.length;for(var i=0;i<cl;i++){if(!(c[i].nodeType==1&&c[i].nodeName=="PARAM")&&!(c[i].nodeType==8)){ac.appendChild(c[i].cloneNode(true))}}}}}return ac}function createSWF(attObj,parObj,id){var r,el=getElementById(id);if(el){if(typeof attObj.id==UNDEF){attObj.id=id}if(ua.ie&&ua.win){var att="";for(var i in attObj){if(attObj[i]!=Object.prototype[i]){if(i.toLowerCase()=="data"){parObj.movie=attObj[i]}else{if(i.toLowerCase()=="styleclass"){att+=' class="'+attObj[i]+'"'}else{if(i.toLowerCase()!="classid"){att+=" "+i+'="'+attObj[i]+'"'}}}}}var par="";for(var j in parObj){if(parObj[j]!=Object.prototype[j]){par+='<param name="'+j+'" value="'+parObj[j]+'" />'}}el.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+att+">"+par+"</object>";objIdArr[objIdArr.length]=attObj.id;r=getElementById(attObj.id)}else{if(ua.webkit&&ua.webkit<312){var e=createElement("embed");e.setAttribute("type",FLASH_MIME_TYPE);for(var k in attObj){if(attObj[k]!=Object.prototype[k]){if(k.toLowerCase()=="data"){e.setAttribute("src",attObj[k])}else{if(k.toLowerCase()=="styleclass"){e.setAttribute("class",attObj[k])}else{if(k.toLowerCase()!="classid"){e.setAttribute(k,attObj[k])}}}}}for(var l in parObj){if(parObj[l]!=Object.prototype[l]){if(l.toLowerCase()!="movie"){e.setAttribute(l,parObj[l])}}}el.parentNode.replaceChild(e,el);r=e}else{var o=createElement(OBJECT);o.setAttribute("type",FLASH_MIME_TYPE);for(var m in attObj){if(attObj[m]!=Object.prototype[m]){if(m.toLowerCase()=="styleclass"){o.setAttribute("class",attObj[m])}else{if(m.toLowerCase()!="classid"){o.setAttribute(m,attObj[m])}}}}for(var n in parObj){if(parObj[n]!=Object.prototype[n]&&n.toLowerCase()!="movie"){createObjParam(o,n,parObj[n])}}el.parentNode.replaceChild(o,el);r=o}}}return r}function createObjParam(el,pName,pValue){var p=createElement("param");p.setAttribute("name",pName);p.setAttribute("value",pValue);el.appendChild(p)}function removeSWF(id){var obj=getElementById(id);if(obj&&(obj.nodeName=="OBJECT"||obj.nodeName=="EMBED")){if(ua.ie&&ua.win){if(obj.readyState==4){removeObjectInIE(id)}else{win.attachEvent("onload",function(){removeObjectInIE(id)})}}else{obj.parentNode.removeChild(obj)}}}function removeObjectInIE(id){var obj=getElementById(id);if(obj){for(var i in obj){if(typeof obj[i]=="function"){obj[i]=null}}obj.parentNode.removeChild(obj)}}function getElementById(id){var el=null;try{el=doc.getElementById(id)}catch(e){}return el}function createElement(el){return doc.createElement(el)}function addListener(target,eventType,fn){target.attachEvent(eventType,fn);listenersArr[listenersArr.length]=[target,eventType,fn]}function hasPlayerVersion(rv){var pv=ua.pv,v=rv.split(".");v[0]=parseInt(v[0],10);v[1]=parseInt(v[1],10)||0;v[2]=parseInt(v[2],10)||0;return(pv[0]>v[0]||(pv[0]==v[0]&&pv[1]>v[1])||(pv[0]==v[0]&&pv[1]==v[1]&&pv[2]>=v[2]))?true:false}function createCSS(sel,decl){if(ua.ie&&ua.mac){return}var h=doc.getElementsByTagName("head")[0],s=createElement("style");s.setAttribute("type","text/css");s.setAttribute("media","screen");if(!(ua.ie&&ua.win)&&typeof doc.createTextNode!=UNDEF){s.appendChild(doc.createTextNode(sel+" {"+decl+"}"))}h.appendChild(s);if(ua.ie&&ua.win&&typeof doc.styleSheets!=UNDEF&&doc.styleSheets.length>0){var ls=doc.styleSheets[doc.styleSheets.length-1];if(typeof ls.addRule==OBJECT){ls.addRule(sel,decl)}}}function setVisibility(id,isVisible){var v=isVisible?"visible":"hidden";if(isDomLoaded&&getElementById(id)){getElementById(id).style.visibility=v}else{createCSS("#"+id,"visibility:"+v)}}function urlEncodeIfNecessary(s){var regex=/[\\\"<>\.;]/;var hasBadChars=regex.exec(s)!=null;return hasBadChars?encodeURIComponent(s):s}var cleanup=function(){if(ua.ie&&ua.win){window.attachEvent("onunload",function(){var ll=listenersArr.length;for(var i=0;i<ll;i++){listenersArr[i][0].detachEvent(listenersArr[i][1],listenersArr[i][2])}var il=objIdArr.length;for(var j=0;j<il;j++){removeSWF(objIdArr[j])}for(var k in ua){ua[k]=null}ua=null;for(var l in swfobject){swfobject[l]=null}swfobject=null})}}();return{registerObject:function(objectIdStr,swfVersionStr,xiSwfUrlStr){if(!ua.w3cdom||!objectIdStr||!swfVersionStr){return}var regObj={};regObj.id=objectIdStr;regObj.swfVersion=swfVersionStr;regObj.expressInstall=xiSwfUrlStr?xiSwfUrlStr:false;regObjArr[regObjArr.length]=regObj;setVisibility(objectIdStr,false)},getObjectById:function(objectIdStr){var r=null;if(ua.w3cdom){var o=getElementById(objectIdStr);if(o){var n=o.getElementsByTagName(OBJECT)[0];if(!n||(n&&typeof o.SetVariable!=UNDEF)){r=o}else{if(typeof n.SetVariable!=UNDEF){r=n}}}}return r},embedSWF:function(swfUrlStr,replaceElemIdStr,widthStr,heightStr,swfVersionStr,xiSwfUrlStr,flashvarsObj,parObj,attObj){if(!ua.w3cdom||!swfUrlStr||!replaceElemIdStr||!widthStr||!heightStr||!swfVersionStr){return}widthStr+="";heightStr+="";if(hasPlayerVersion(swfVersionStr)){setVisibility(replaceElemIdStr,false);var att={};if(attObj&&typeof attObj===OBJECT){for(var i in attObj){if(attObj[i]!=Object.prototype[i]){att[i]=attObj[i]}}}att.data=swfUrlStr;att.width=widthStr;att.height=heightStr;var par={};if(parObj&&typeof parObj===OBJECT){for(var j in parObj){if(parObj[j]!=Object.prototype[j]){par[j]=parObj[j]}}}if(flashvarsObj&&typeof flashvarsObj===OBJECT){for(var k in flashvarsObj){if(flashvarsObj[k]!=Object.prototype[k]){if(typeof par.flashvars!=UNDEF){par.flashvars+="&"+k+"="+flashvarsObj[k]}else{par.flashvars=k+"="+flashvarsObj[k]}}}}addDomLoadEvent(function(){createSWF(att,par,replaceElemIdStr);if(att.id==replaceElemIdStr){setVisibility(replaceElemIdStr,true)}})}else{if(xiSwfUrlStr&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){isExpressInstallActive=true;setVisibility(replaceElemIdStr,false);addDomLoadEvent(function(){var regObj={};regObj.id=regObj.altContentId=replaceElemIdStr;regObj.width=widthStr;regObj.height=heightStr;regObj.expressInstall=xiSwfUrlStr;showExpressInstall(regObj)})}}},getFlashPlayerVersion:function(){return{major:ua.pv[0],minor:ua.pv[1],release:ua.pv[2]}},hasFlashPlayerVersion:hasPlayerVersion,createSWF:function(attObj,parObj,replaceElemIdStr){if(ua.w3cdom){return createSWF(attObj,parObj,replaceElemIdStr)}else{return undefined}},removeSWF:function(objElemIdStr){if(ua.w3cdom){removeSWF(objElemIdStr)}},createCSS:function(sel,decl){if(ua.w3cdom){createCSS(sel,decl)}},addDomLoadEvent:addDomLoadEvent,addLoadEvent:addLoadEvent,getQueryParamValue:function(param){var q=doc.location.search||doc.location.hash;if(param==null){return urlEncodeIfNecessary(q)}if(q){var pairs=q.substring(1).split("&");for(var i=0;i<pairs.length;i++){if(pairs[i].substring(0,pairs[i].indexOf("="))==param){return urlEncodeIfNecessary(pairs[i].substring((pairs[i].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(isExpressInstallActive&&storedAltContent){var obj=getElementById(EXPRESS_INSTALL_ID);if(obj){obj.parentNode.replaceChild(storedAltContent,obj);if(storedAltContentId){setVisibility(storedAltContentId,true);if(ua.ie&&ua.win){storedAltContent.style.display="block"}}storedAltContent=null;storedAltContentId=null;isExpressInstallActive=false}}}}}();return swfobject})();S.lang={code:"en",of:"of",loading:"loading",cancel:"Cancel",next:"Next",previous:"Previous",play:"Play",pause:"Pause",close:"Close",errors:{single:'You must install the <a href="{0}">{1}</a> browser plugin to view this content.',shared:'You must install both the <a href="{0}">{1}</a> and <a href="{2}">{3}</a> browser plugins to view this content.',either:'You must install either the <a href="{0}">{1}</a> or the <a href="{2}">{3}</a> browser plugin to view this content.'}};var pre,proxyId="sb-drag-proxy",dragData,dragProxy,dragTarget;function resetDrag(){dragData={x:0,y:0,startX:null,startY:null}}function updateProxy(){var dims=S.dimensions;apply(dragProxy.style,{height:dims.innerHeight+"px",width:dims.innerWidth+"px"})}function enableDrag(){resetDrag();var style=["position:absolute","cursor:"+(S.isGecko?"-moz-grab":"move"),"background-color:"+(S.isIE?"#fff;filter:alpha(opacity=0)":"transparent")].join(";");S.appendHTML(S.skin.body,'<div id="'+proxyId+'" style="'+style+'"></div>');dragProxy=get(proxyId);updateProxy();addEvent(dragProxy,"mousedown",startDrag)}function disableDrag(){if(dragProxy){removeEvent(dragProxy,"mousedown",startDrag);remove(dragProxy);dragProxy=null}dragTarget=null}function startDrag(e){preventDefault(e);var xy=getPageXY(e);dragData.startX=xy[0];dragData.startY=xy[1];dragTarget=get(S.player.id);addEvent(document,"mousemove",positionDrag);addEvent(document,"mouseup",endDrag);if(S.isGecko){dragProxy.style.cursor="-moz-grabbing"}}function positionDrag(e){var player=S.player,dims=S.dimensions,xy=getPageXY(e);var moveX=xy[0]-dragData.startX;dragData.startX+=moveX;dragData.x=Math.max(Math.min(0,dragData.x+moveX),dims.innerWidth-player.width);var moveY=xy[1]-dragData.startY;dragData.startY+=moveY;dragData.y=Math.max(Math.min(0,dragData.y+moveY),dims.innerHeight-player.height);apply(dragTarget.style,{left:dragData.x+"px",top:dragData.y+"px"})}function endDrag(){removeEvent(document,"mousemove",positionDrag);removeEvent(document,"mouseup",endDrag);if(S.isGecko){dragProxy.style.cursor="-moz-grab"}}S.img=function(obj,id){this.obj=obj;this.id=id;this.ready=false;var self=this;pre=new Image();pre.onload=function(){self.height=obj.height?parseInt(obj.height,10):pre.height;self.width=obj.width?parseInt(obj.width,10):pre.width;self.ready=true;pre.onload=null;pre=null};pre.src=obj.content};S.img.ext=["bmp","gif","jpg","jpeg","png"];S.img.prototype={append:function(body,dims){var img=document.createElement("img");img.id=this.id;img.src=this.obj.content;img.style.position="absolute";var height,width;if(dims.oversized&&S.options.handleOversize=="resize"){height=dims.innerHeight;width=dims.innerWidth}else{height=this.height;width=this.width}img.setAttribute("height",height);img.setAttribute("width",width);body.appendChild(img)},remove:function(){var el=get(this.id);if(el){remove(el)}disableDrag();if(pre){pre.onload=null;pre=null}},onLoad:function(){var dims=S.dimensions;if(dims.oversized&&S.options.handleOversize=="drag"){enableDrag()}},onWindowResize:function(){var dims=S.dimensions;switch(S.options.handleOversize){case"resize":var el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth;break;case"drag":if(dragTarget){var top=parseInt(S.getStyle(dragTarget,"top")),left=parseInt(S.getStyle(dragTarget,"left"));if(top+this.height<dims.innerHeight){dragTarget.style.top=dims.innerHeight-this.height+"px"}if(left+this.width<dims.innerWidth){dragTarget.style.left=dims.innerWidth-this.width+"px"}updateProxy()}break}}};S.iframe=function(obj,id){this.obj=obj;this.id=id;var overlay=get("sb-overlay");this.height=obj.height?parseInt(obj.height,10):overlay.offsetHeight;this.width=obj.width?parseInt(obj.width,10):overlay.offsetWidth};S.iframe.prototype={append:function(body,dims){var html='<iframe id="'+this.id+'" name="'+this.id+'" height="100%" width="100%" frameborder="0" marginwidth="0" marginheight="0" style="visibility:hidden" onload="this.style.visibility=\'visible\'" scrolling="auto"';if(S.isIE){html+=' allowtransparency="true"';if(S.isIE6){html+=" src=\"javascript:false;document.write('');\""}}html+="></iframe>";body.innerHTML=html},remove:function(){var el=get(this.id);if(el){remove(el);if(S.isGecko){delete window.frames[this.id]}}},onLoad:function(){var win=S.isIE?get(this.id).contentWindow:window.frames[this.id];win.location.href=this.obj.content}};S.html=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;this.width=obj.width?parseInt(obj.width,10):500};S.html.prototype={append:function(body,dims){var div=document.createElement("div");div.id=this.id;div.className="html";div.innerHTML=this.obj.content;body.appendChild(div)},remove:function(){var el=get(this.id);if(el){remove(el)}}};S.swf=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;this.width=obj.width?parseInt(obj.width,10):300};S.swf.ext=["swf"];S.swf.prototype={append:function(body,dims){var tmp=document.createElement("div");tmp.id=this.id;body.appendChild(tmp);var height=dims.innerHeight,width=dims.innerWidth,swf=this.obj.content,version=S.options.flashVersion,express=S.path+"expressInstall.swf",flashvars=S.options.flashVars,params=S.options.flashParams;S.flash.embedSWF(swf,this.id,width,height,version,express,flashvars,params)},remove:function(){S.flash.expressInstallCallback();S.flash.removeSWF(this.id)},onWindowResize:function(){var dims=S.dimensions,el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth}};var jwControllerHeight=20;S.flv=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls){this.height+=jwControllerHeight}this.width=obj.width?parseInt(obj.width,10):300};S.flv.ext=["flv","m4v"];S.flv.prototype={append:function(body,dims){var tmp=document.createElement("div");tmp.id=this.id;body.appendChild(tmp);var height=dims.innerHeight,width=dims.innerWidth,swf=S.path+"player.swf",version=S.options.flashVersion,express=S.path+"expressInstall.swf",flashvars=apply({file:this.obj.content,height:height,width:width,autostart:(S.options.autoplayMovies?"true":"false"),controlbar:(S.options.showMovieControls?"bottom":"none"),backcolor:"0x000000",frontcolor:"0xCCCCCC",lightcolor:"0x557722"},S.options.flashVars),params=S.options.flashParams;S.flash.embedSWF(swf,this.id,width,height,version,express,flashvars,params)},remove:function(){S.flash.expressInstallCallback();S.flash.removeSWF(this.id)},onWindowResize:function(){var dims=S.dimensions,el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth}};var qtControllerHeight=16;S.qt=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls){this.height+=qtControllerHeight}this.width=obj.width?parseInt(obj.width,10):300};S.qt.ext=["dv","mov","moov","movie","mp4","avi","mpg","mpeg"];S.qt.prototype={append:function(body,dims){var opt=S.options,autoplay=String(opt.autoplayMovies),controls=String(opt.showMovieControls);var html="<object",movie={id:this.id,name:this.id,height:this.height,width:this.width,kioskmode:"true"};if(S.isIE){movie.classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B";movie.codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"}else{movie.type="video/quicktime";movie.data=this.obj.content}for(var m in movie){html+=" "+m+'="'+movie[m]+'"'}html+=">";var params={src:this.obj.content,scale:"aspect",controller:controls,autoplay:autoplay};for(var p in params){html+='<param name="'+p+'" value="'+params[p]+'">'}html+="</object>";body.innerHTML=html},remove:function(){try{document[this.id].Stop()}catch(e){}var el=get(this.id);if(el){remove(el)}}};var wmpControllerHeight=(S.isIE?70:45);S.wmp=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls){this.height+=wmpControllerHeight}this.width=obj.width?parseInt(obj.width,10):300};S.wmp.ext=["asf","avi","mpg","mpeg","wm","wmv"];S.wmp.prototype={append:function(body,dims){var opt=S.options,autoplay=opt.autoplayMovies?1:0;var movie='<object id="'+this.id+'" name="'+this.id+'" height="'+this.height+'" width="'+this.width+'"',params={autostart:opt.autoplayMovies?1:0};if(S.isIE){movie+=' classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6"';params.url=this.obj.content;params.uimode=opt.showMovieControls?"full":"none"}else{movie+=' type="video/x-ms-wmv"';movie+=' data="'+this.obj.content+'"';params.showcontrols=opt.showMovieControls?1:0}movie+=">";for(var p in params){movie+='<param name="'+p+'" value="'+params[p]+'">'}movie+="</object>";body.innerHTML=movie},remove:function(){if(S.isIE){try{window[this.id].controls.stop();window[this.id].URL="movie"+now()+".wmv";window[this.id]=function(){}}catch(e){}}var el=get(this.id);if(el){setTimeout(function(){remove(el)},10)}}};var overlayOn=false,visibilityCache=[],pngIds=["sb-nav-close","sb-nav-next","sb-nav-play","sb-nav-pause","sb-nav-previous"],container,overlay,wrapper,doWindowResize=true;function animate(el,property,to,duration,callback){var isOpacity=(property=="opacity"),anim=isOpacity?S.setOpacity:function(el,value){el.style[property]=""+value+"px"};if(duration==0||(!isOpacity&&!S.options.animate)||(isOpacity&&!S.options.animateFade)){anim(el,to);if(callback){callback()}return}var from=parseFloat(S.getStyle(el,property))||0;var delta=to-from;if(delta==0){if(callback){callback()}return}duration*=1000;var begin=now(),ease=S.ease,end=begin+duration,time;var interval=setInterval(function(){time=now();if(time>=end){clearInterval(interval);interval=null;anim(el,to);if(callback){callback()}}else{anim(el,from+ease((time-begin)/duration)*delta)}},10)}function setSize(){container.style.height=S.getWindowSize("Height")+"px";container.style.width=S.getWindowSize("Width")+"px"}function setPosition(){container.style.top=document.documentElement.scrollTop+"px";container.style.left=document.documentElement.scrollLeft+"px"}function toggleTroubleElements(on){if(on){each(visibilityCache,function(i,el){el[0].style.visibility=el[1]||""})}else{visibilityCache=[];each(S.options.troubleElements,function(i,tag){each(document.getElementsByTagName(tag),function(j,el){visibilityCache.push([el,el.style.visibility]);el.style.visibility="hidden"})})}}function toggleNav(id,on){var el=get("sb-nav-"+id);if(el){el.style.display=on?"":"none"}}function toggleLoading(on,callback){var loading=get("sb-loading"),playerName=S.getCurrent().player,anim=(playerName=="img"||playerName=="html");if(on){S.setOpacity(loading,0);loading.style.display="block";var wrapped=function(){S.clearOpacity(loading);if(callback){callback()}};if(anim){animate(loading,"opacity",1,S.options.fadeDuration,wrapped)}else{wrapped()}}else{var wrapped=function(){loading.style.display="none";S.clearOpacity(loading);if(callback){callback()}};if(anim){animate(loading,"opacity",0,S.options.fadeDuration,wrapped)}else{wrapped()}}}function buildBars(callback){var obj=S.getCurrent();get("sb-title-inner").innerHTML=obj.title||"";var close,next,play,pause,previous;if(S.options.displayNav){close=true;var len=S.gallery.length;if(len>1){if(S.options.continuous){next=previous=true}else{next=(len-1)>S.current;previous=S.current>0}}if(S.options.slideshowDelay>0&&S.hasNext()){pause=!S.isPaused();play=!pause}}else{close=next=play=pause=previous=false}toggleNav("close",close);toggleNav("next",next);toggleNav("play",play);toggleNav("pause",pause);toggleNav("previous",previous);var counter="";if(S.options.displayCounter&&S.gallery.length>1){var len=S.gallery.length;if(S.options.counterType=="skip"){var i=0,end=len,limit=parseInt(S.options.counterLimit)||0;if(limit<len&&limit>2){var h=Math.floor(limit/2);i=S.current-h;if(i<0){i+=len}end=S.current+(limit-h);if(end>len){end-=len}}while(i!=end){if(i==len){i=0}counter+='<a onclick="Shadowbox.change('+i+');"';if(i==S.current){counter+=' class="sb-counter-current"'}counter+=">"+(++i)+"</a>"}}else{counter=[S.current+1,S.lang.of,len].join(" ")}}get("sb-counter").innerHTML=counter;callback()}function showBars(callback){var titleInner=get("sb-title-inner"),infoInner=get("sb-info-inner"),duration=0.35;titleInner.style.visibility=infoInner.style.visibility="";if(titleInner.innerHTML!=""){animate(titleInner,"marginTop",0,duration)}animate(infoInner,"marginTop",0,duration,callback)}function hideBars(anim,callback){var title=get("sb-title"),info=get("sb-info"),titleHeight=title.offsetHeight,infoHeight=info.offsetHeight,titleInner=get("sb-title-inner"),infoInner=get("sb-info-inner"),duration=(anim?0.35:0);animate(titleInner,"marginTop",titleHeight,duration);animate(infoInner,"marginTop",infoHeight*-1,duration,function(){titleInner.style.visibility=infoInner.style.visibility="hidden";callback()})}function adjustHeight(height,top,anim,callback){var wrapperInner=get("sb-wrapper-inner"),duration=(anim?S.options.resizeDuration:0);animate(wrapper,"top",top,duration);animate(wrapperInner,"height",height,duration,callback)}function adjustWidth(width,left,anim,callback){var duration=(anim?S.options.resizeDuration:0);animate(wrapper,"left",left,duration);animate(wrapper,"width",width,duration,callback)}function setDimensions(height,width){var bodyInner=get("sb-body-inner"),height=parseInt(height),width=parseInt(width),topBottom=wrapper.offsetHeight-bodyInner.offsetHeight,leftRight=wrapper.offsetWidth-bodyInner.offsetWidth,maxHeight=overlay.offsetHeight,maxWidth=overlay.offsetWidth,padding=parseInt(S.options.viewportPadding)||20,preserveAspect=(S.player&&S.options.handleOversize!="drag");return S.setDimensions(height,width,maxHeight,maxWidth,topBottom,leftRight,padding,preserveAspect)}var K={};K.markup='<div id="sb-container"><div id="sb-overlay"></div><div id="sb-wrapper"><div id="sb-title"><div id="sb-title-inner"></div></div><div id="sb-wrapper-inner"><div id="sb-body"><div id="sb-body-inner"></div><div id="sb-loading"><div id="sb-loading-inner"><span>{loading}</span></div></div></div></div><div id="sb-info"><div id="sb-info-inner"><div id="sb-counter"></div><div id="sb-nav"><a id="sb-nav-close" title="{close}" onclick="Shadowbox.close()"></a><a id="sb-nav-next" title="{next}" onclick="Shadowbox.next()"></a><a id="sb-nav-play" title="{play}" onclick="Shadowbox.play()"></a><a id="sb-nav-pause" title="{pause}" onclick="Shadowbox.pause()"></a><a id="sb-nav-previous" title="{previous}" onclick="Shadowbox.previous()"></a></div></div></div></div></div>';K.options={animSequence:"sync",counterLimit:10,counterType:"default",displayCounter:true,displayNav:true,fadeDuration:0.35,initialHeight:160,initialWidth:320,modal:false,overlayColor:"#000",overlayOpacity:0.5,resizeDuration:0.35,showOverlay:true,troubleElements:["select","object","embed","canvas"]};K.init=function(){S.appendHTML(document.body,sprintf(K.markup,S.lang));K.body=get("sb-body-inner");container=get("sb-container");overlay=get("sb-overlay");wrapper=get("sb-wrapper");if(!supportsFixed){container.style.position="absolute"}if(!supportsOpacity){var el,m,re=/url\("(.*\.png)"\)/;each(pngIds,function(i,id){el=get(id);if(el){m=S.getStyle(el,"backgroundImage").match(re);if(m){el.style.backgroundImage="none";el.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,src="+m[1]+",sizingMethod=scale);"}}})}var timer;addEvent(window,"resize",function(){if(timer){clearTimeout(timer);timer=null}if(open){timer=setTimeout(K.onWindowResize,10)}})};K.onOpen=function(obj,callback){doWindowResize=false;container.style.display="block";setSize();var dims=setDimensions(S.options.initialHeight,S.options.initialWidth);adjustHeight(dims.innerHeight,dims.top);adjustWidth(dims.width,dims.left);if(S.options.showOverlay){overlay.style.backgroundColor=S.options.overlayColor;S.setOpacity(overlay,0);if(!S.options.modal){addEvent(overlay,"click",S.close)}overlayOn=true}if(!supportsFixed){setPosition();addEvent(window,"scroll",setPosition)}toggleTroubleElements();container.style.visibility="visible";if(overlayOn){animate(overlay,"opacity",S.options.overlayOpacity,S.options.fadeDuration,callback)}else{callback()}};K.onLoad=function(changing,callback){toggleLoading(true);while(K.body.firstChild){remove(K.body.firstChild)}hideBars(changing,function(){if(!open){return}if(!changing){wrapper.style.visibility="visible"}buildBars(callback)})};K.onReady=function(callback){if(!open){return}var player=S.player,dims=setDimensions(player.height,player.width);var wrapped=function(){showBars(callback)};switch(S.options.animSequence){case"hw":adjustHeight(dims.innerHeight,dims.top,true,function(){adjustWidth(dims.width,dims.left,true,wrapped)});break;case"wh":adjustWidth(dims.width,dims.left,true,function(){adjustHeight(dims.innerHeight,dims.top,true,wrapped)});break;default:adjustWidth(dims.width,dims.left,true);adjustHeight(dims.innerHeight,dims.top,true,wrapped)}};K.onShow=function(callback){toggleLoading(false,callback);doWindowResize=true};K.onClose=function(){if(!supportsFixed){removeEvent(window,"scroll",setPosition)}removeEvent(overlay,"click",S.close);wrapper.style.visibility="hidden";var callback=function(){container.style.visibility="hidden";container.style.display="none";toggleTroubleElements(true)};if(overlayOn){animate(overlay,"opacity",0,S.options.fadeDuration,callback)}else{callback()}};K.onPlay=function(){toggleNav("play",false);toggleNav("pause",true)};K.onPause=function(){toggleNav("pause",false);toggleNav("play",true)};K.onWindowResize=function(){if(!doWindowResize){return}setSize();var player=S.player,dims=setDimensions(player.height,player.width);adjustWidth(dims.width,dims.left);adjustHeight(dims.innerHeight,dims.top);if(player.onWindowResize){player.onWindowResize()}};S.skin=K;window.Shadowbox=S})(window);

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

/* italic_200.font.js (99%) */
Cufon.registerFont({"w":194,"face":{"font-family":"www.centerforleadershipstudies.com","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-27 -316 360 95","underline-thickness":"7.2","underline-position":"-54","stemh":"18","stemv":"23","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":78},"!":{"d":"67,-252r-4,197r-18,0r-5,-197r27,0xm54,-31v10,0,17,8,17,17v0,10,-7,17,-17,17v-9,0,-17,-7,-17,-17v0,-9,8,-17,17,-17","w":107},"\"":{"d":"46,-264r-4,77r-17,0r-4,-77r25,0xm101,-264r-5,77r-16,0r-4,-77r25,0","w":121},"#":{"d":"221,-72r-57,0r-8,72r-19,0r8,-72r-59,0r-8,72r-19,0r8,-72r-56,0r0,-16r58,0r8,-76r-56,0r0,-16r57,0r7,-63r19,0r-6,63r58,0r7,-63r19,0r-7,63r55,0r0,16r-56,0r-8,76r55,0r0,16xm147,-88r7,-76r-58,0r-8,76r59,0","w":241},"$":{"d":"29,-3r0,-52r14,0v2,13,4,24,5,34v37,10,82,4,82,-37v0,-55,-106,-36,-106,-107v0,-31,23,-54,59,-58r0,-39r17,0r0,38v15,1,29,2,40,5r0,50r-14,0v-3,-13,-4,-24,-5,-33v-35,-11,-82,8,-75,34v0,53,107,37,107,106v0,33,-21,58,-60,64r0,49r-18,0r0,-48v-18,0,-32,-2,-46,-6","w":175},"%":{"d":"127,-192v3,73,-111,88,-110,6v-3,-76,111,-87,110,-6xm105,-189v0,-27,-10,-40,-33,-40v-19,0,-33,16,-33,40v0,27,9,41,32,41v21,0,34,-15,34,-41xm231,-239r-169,247r-16,-12r169,-247xm261,-57v3,75,-111,86,-110,5v-3,-74,112,-86,110,-5xm240,-55v0,-27,-11,-40,-34,-40v-19,0,-33,16,-33,40v0,27,10,41,32,41v21,0,35,-15,35,-41","w":284},"&":{"d":"211,-50v23,18,36,35,69,38r0,12r-42,0v-15,-10,-29,-21,-43,-33v-41,49,-173,53,-173,-33v0,-35,22,-58,54,-82v-28,-32,-36,-48,-36,-67v0,-28,21,-51,59,-51v78,0,63,82,6,118v23,25,59,59,90,85v14,-19,25,-46,26,-79v-10,-1,-21,-3,-30,-5r0,-12r84,0r0,12v-9,3,-21,4,-31,5v-2,36,-14,68,-33,92xm129,-217v0,-17,-10,-31,-33,-31v-20,0,-33,12,-33,32v0,13,7,28,30,54v23,-19,36,-34,36,-55xm180,-46v-33,-27,-70,-63,-92,-89v-30,24,-43,43,-43,66v0,67,108,62,135,23","w":292},"'":{"d":"46,-264r-4,77r-17,0r-4,-77r25,0","w":67},"(":{"d":"101,69r-21,0v-41,-66,-50,-122,-50,-171v0,-49,11,-111,50,-174r21,0v-64,103,-67,243,0,345","w":108},")":{"d":"81,-102v0,50,-8,105,-49,171r-22,0v67,-102,64,-241,0,-345r22,0v39,63,49,125,49,174","w":108},"*":{"d":"113,-194r-9,16r-33,-23r2,41r-18,0r3,-41r-34,23r-9,-15r38,-18r-38,-18r9,-16r35,23r-3,-41r18,0r-3,41r34,-23r8,16r-37,17","w":131},"+":{"d":"192,-83r-81,0r0,83r-21,0r0,-83r-80,0r0,-19r80,0r0,-83r21,0r0,83r81,0r0,19","w":201},",":{"d":"19,51r-10,-9v22,-24,22,-42,16,-50v-8,-10,-1,-24,11,-24v21,0,31,37,-17,83","w":74},"-":{"d":"100,-80r-82,0r0,-19r82,0r0,19","w":117},".":{"d":"37,-32v10,0,18,8,18,17v0,10,-8,18,-18,18v-10,0,-17,-8,-17,-18v0,-9,7,-17,17,-17","w":74},"\/":{"d":"133,-243r-93,243r-21,0r93,-243r21,0","w":149},"0":{"d":"201,-96v0,61,-43,99,-94,99v-51,0,-86,-31,-86,-94v0,-59,43,-97,93,-97v56,0,87,36,87,92xm178,-93v0,-43,-21,-76,-66,-76v-38,0,-68,29,-68,75v0,43,20,78,66,78v36,0,68,-31,68,-77","w":222},"1":{"d":"116,0r-97,0r0,-13v13,-3,26,-4,40,-5r0,-145r-43,18r-5,-20v24,-7,40,-22,72,-20r0,167v10,1,21,2,33,5r0,13","w":129},"2":{"d":"154,0r-133,0r0,-18v30,-31,95,-66,99,-111v3,-37,-43,-49,-75,-34v-1,10,-2,22,-4,33r-14,0r0,-48v44,-21,126,-8,118,46v3,43,-63,85,-94,113v15,-1,61,-2,103,-2r0,21","w":173},"3":{"d":"24,-178v46,-24,115,-3,115,48v0,29,-20,53,-48,63v31,5,53,29,53,60v2,58,-62,92,-125,76r3,-21v44,15,98,-5,98,-51v0,-41,-34,-55,-88,-50r0,-18v49,0,83,-20,83,-56v0,-39,-41,-50,-72,-36v-1,11,-3,22,-5,33r-14,0r0,-48","w":167},"4":{"d":"188,0r-47,0r0,54v11,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-54r-109,0r-4,-19r106,-166r30,0r0,164r47,0r0,21xm119,-21r-1,-141r-90,142v24,-1,77,-1,91,-1","w":193},"5":{"d":"149,-12v1,55,-56,95,-125,83r3,-22v51,13,97,-16,97,-57v0,-38,-38,-67,-92,-59r0,-118r109,0r0,22r-87,0r0,75v63,0,95,33,95,76","w":169},"6":{"d":"189,-82v0,49,-34,85,-84,85v-51,0,-78,-40,-78,-101v0,-113,56,-163,139,-156r0,20v-75,-11,-110,44,-115,111v12,-21,34,-35,65,-35v46,0,73,31,73,76xm166,-78v0,-36,-22,-60,-55,-60v-78,-1,-74,121,-2,122v34,0,57,-27,57,-62","w":209},"7":{"d":"154,-166v-32,69,-59,149,-80,237r-26,0v23,-91,51,-169,81,-235v-8,1,-84,1,-99,1v-1,11,-3,22,-6,34r-14,0r0,-56r144,0r0,19","w":165},"8":{"d":"173,-62v0,42,-36,65,-78,65v-48,0,-71,-26,-71,-60v0,-34,27,-55,53,-72v-73,-28,-64,-126,23,-126v42,0,68,23,68,56v0,26,-16,45,-51,67v27,16,56,34,56,70xm144,-196v0,-22,-16,-41,-46,-41v-30,0,-47,18,-47,41v0,23,18,37,48,54v32,-20,45,-33,45,-54xm149,-58v0,-27,-22,-42,-54,-60v-28,17,-47,34,-47,58v0,26,19,44,51,44v27,0,50,-15,50,-42","w":196},"9":{"d":"183,-84v0,114,-59,166,-148,155r0,-22v75,17,118,-36,122,-108v-33,55,-137,36,-137,-44v0,-48,33,-85,83,-85v46,0,80,31,80,104xm156,-100v0,-41,-20,-69,-56,-69v-33,0,-55,27,-55,62v0,38,20,59,54,59v34,0,57,-25,57,-52","w":209},":":{"d":"44,-140v10,0,17,8,17,18v0,10,-7,17,-17,17v-9,0,-17,-7,-17,-17v0,-10,8,-18,17,-18xm44,-32v10,0,17,8,17,17v0,10,-7,18,-17,18v-9,0,-17,-8,-17,-18v0,-9,8,-17,17,-17","w":88},";":{"d":"61,-122v0,10,-7,17,-17,17v-9,0,-17,-7,-17,-17v0,-10,8,-18,17,-18v10,0,17,8,17,18xm44,-32v21,0,30,37,-18,83r-10,-9v22,-24,22,-42,16,-50v-8,-10,0,-24,12,-24","w":88},"<":{"d":"23,-90r113,-102r15,15r-99,87r99,84r-15,15","w":179},"=":{"d":"186,-110r-158,0r0,-19r158,0r0,19xm186,-54r-158,0r0,-19r158,0r0,19","w":214},">":{"d":"156,-93r-113,102r-15,-15r99,-87r-99,-83r15,-16","w":179},"?":{"d":"125,-187v0,54,-76,59,-52,132r-22,0v-26,-74,49,-86,49,-129v0,-26,-29,-45,-69,-49r2,-21v53,4,92,32,92,67xm81,-14v0,10,-8,17,-18,17v-9,0,-17,-7,-17,-17v0,-9,8,-17,17,-17v10,0,18,8,18,17","w":149},"@":{"d":"276,-141v0,54,-27,79,-66,79v-30,1,-35,-21,-35,-37v-5,17,-24,37,-48,37v-23,0,-32,-15,-32,-40v-1,-60,45,-98,110,-81v-2,31,-32,102,10,103v25,0,40,-18,40,-60v0,-46,-28,-90,-93,-90v-62,0,-111,49,-111,116v0,77,70,121,149,95r0,19v-90,27,-170,-24,-170,-112v0,-78,62,-136,133,-136v74,0,113,50,113,107xm182,-167v-42,-13,-67,28,-65,60v0,17,5,26,15,26v24,2,44,-46,50,-86","w":305},"A":{"d":"245,0r-80,0r0,-12v9,-3,19,-4,30,-5r-17,-46r-111,0r-17,46v10,1,22,2,31,5r0,12r-79,0r0,-12v6,-2,17,-4,24,-5r85,-226r25,0r85,226v7,1,18,3,24,5r0,12xm172,-82r-50,-137v-13,49,-33,91,-49,137r99,0","w":247},"B":{"d":"190,-71v0,25,-14,72,-92,72r-86,-1r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12v70,-2,172,-12,172,56v0,28,-22,49,-48,59v38,5,54,31,54,57xm160,-183v9,-36,-46,-47,-94,-42r0,90v51,3,97,-9,94,-48xm166,-70v1,-45,-50,-49,-100,-47r0,97v7,1,18,2,35,2v46,0,65,-22,65,-52","w":210},"C":{"d":"193,-186r-14,0v-3,-13,-4,-24,-5,-34v-78,-25,-130,25,-130,100v0,91,77,122,151,89r2,21v-19,8,-43,13,-69,13v-72,0,-109,-43,-109,-119v0,-73,33,-129,117,-129v19,0,39,3,57,7r0,52","w":215},"D":{"d":"237,-123v0,117,-105,132,-225,123r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r99,-1v80,0,126,39,126,121xm212,-122v0,-85,-58,-112,-146,-102r0,203v81,13,146,-15,146,-101","w":255},"E":{"d":"163,0r-151,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r150,0r0,52r-14,0v-2,-13,-5,-25,-6,-34r-76,0r0,91r60,0v1,-10,3,-20,6,-28r13,0r0,73r-13,0v-3,-8,-5,-18,-6,-27r-60,0r0,97r77,0v1,-10,3,-22,5,-34r15,0r0,53","w":189},"F":{"d":"163,-191r-15,0v-3,-13,-4,-24,-5,-34r-77,0r0,93r62,0v1,-10,3,-20,6,-28r13,0r0,74r-13,0v-3,-8,-5,-18,-6,-28r-62,0r0,97v11,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r151,0r0,52","w":178},"G":{"d":"241,-109v-8,2,-17,4,-26,5r0,94v-94,35,-198,1,-198,-107v0,-96,91,-153,192,-120r0,51r-15,0v-3,-13,-4,-24,-5,-34v-77,-22,-145,8,-147,99v-2,88,72,120,150,97r0,-80v-11,-1,-22,-3,-31,-5r0,-12r80,0r0,12","w":252},"H":{"d":"259,0r-85,0r0,-12v9,-3,20,-4,30,-5r0,-100r-138,0r0,100v10,1,21,2,30,5r0,12r-84,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r84,0r0,12v-9,3,-20,4,-30,5r0,90r138,0r0,-90v-10,-1,-21,-2,-30,-5r0,-12r85,0r0,12v-9,3,-20,4,-31,5r0,209v11,1,22,2,31,5r0,12","w":270},"I":{"d":"97,0r-85,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r85,0r0,12v-9,3,-20,4,-31,5r0,209v11,1,22,2,31,5r0,12","w":108},"J":{"d":"109,-231v-8,2,-17,4,-26,5r0,166v4,51,-34,70,-82,59r0,-21v31,10,59,10,59,-40r0,-164v-11,-1,-22,-2,-31,-5r0,-12r80,0r0,12","w":120},"K":{"d":"224,0r-85,0r0,-12v8,-2,17,-4,26,-5r-99,-106r0,106v8,1,20,2,29,5r0,12r-83,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r83,0r0,12v-9,3,-21,4,-29,5r0,101r97,-101v-9,-1,-21,-2,-29,-5r0,-12r84,0r0,12v-8,2,-18,4,-27,5r-98,100r103,109v9,1,20,3,28,5r0,12","w":232},"L":{"d":"159,0r-147,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r85,0r0,12v-9,3,-20,4,-31,5r0,207r73,0v1,-10,3,-23,6,-35r14,0r0,54","w":163},"M":{"d":"238,-243r66,0r0,12v-9,3,-20,4,-31,5r30,209v7,1,18,3,24,5r0,12r-79,0r0,-12v9,-3,21,-4,31,-5r-29,-202r-73,219r-27,0r-74,-219r-23,202v10,1,22,2,31,5r0,12r-79,0r0,-12v6,-2,17,-4,24,-5r30,-209v-11,-1,-23,-2,-32,-5r0,-12r65,0r73,219","w":331},"N":{"d":"257,-231v-8,2,-17,5,-26,6r0,225r-31,0r-109,-170v-11,-17,-20,-33,-28,-49v3,45,3,120,3,201v10,1,21,3,30,6r0,12r-84,0r0,-12v9,-3,20,-5,31,-6r0,-208v-11,-1,-22,-2,-31,-5r0,-12r62,0r137,218v-3,-44,-3,-119,-3,-200v-11,-1,-22,-3,-31,-6r0,-12r80,0r0,12","w":268},"O":{"d":"237,-124v0,81,-51,127,-113,127v-72,0,-107,-49,-107,-122v0,-82,51,-127,113,-127v67,0,107,45,107,122xm212,-120v0,-68,-32,-106,-85,-106v-45,0,-85,36,-85,102v0,63,28,107,85,107v45,0,85,-37,85,-103","w":254},"P":{"d":"181,-176v0,55,-52,86,-115,78r0,81v11,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r86,-1v53,0,83,28,83,68xm157,-172v0,-45,-42,-58,-91,-52r0,106v48,10,91,-13,91,-54","w":188},"Q":{"d":"237,-124v0,81,-51,127,-113,127v-72,0,-107,-49,-107,-122v0,-82,51,-127,113,-127v67,0,107,45,107,122xm253,62v-59,8,-85,-20,-133,-13r0,-21v55,-7,79,20,133,13r0,21xm212,-120v0,-68,-32,-106,-85,-106v-45,0,-85,36,-85,102v0,63,28,107,85,107v45,0,85,-37,85,-103","w":253},"R":{"d":"198,0r-48,0r-79,-115r-5,0r0,98v10,1,21,2,30,5r0,12r-84,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12v71,1,164,-17,163,59v0,43,-34,66,-78,68r70,98v9,1,19,2,31,5r0,13xm152,-180v3,-43,-42,-49,-86,-45r0,92v42,6,91,-11,86,-47","w":205},"S":{"d":"160,-69v0,59,-74,86,-136,66r0,-53r15,0v2,13,4,25,5,35v42,10,92,1,92,-45v0,-60,-114,-38,-114,-114v0,-53,67,-78,125,-61r0,51r-15,0v-3,-13,-4,-24,-5,-34v-38,-10,-82,5,-82,41v0,59,115,38,115,114","w":181},"T":{"d":"188,-243r0,55r-14,0v-3,-15,-5,-27,-6,-36r-59,0r0,207v11,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-207r-59,0v-1,9,-2,21,-5,36r-15,0r0,-55r181,0","w":195},"U":{"d":"247,-231v-8,2,-17,4,-26,5r0,134v0,62,-32,95,-95,95v-75,0,-88,-42,-88,-83r0,-146v-9,-1,-18,-3,-26,-5r0,-12r79,0r0,12v-9,3,-20,4,-30,5r0,144v0,36,13,66,68,66v46,0,69,-20,69,-74r0,-136v-10,-1,-21,-2,-30,-5r0,-12r79,0r0,12","w":258},"V":{"d":"52,-226r69,202r72,-202v-10,-1,-21,-2,-30,-5r0,-12r79,0r0,12v-6,2,-17,4,-24,5r-85,226r-25,0r-82,-226v-7,-1,-18,-3,-24,-5r0,-12r81,0r0,12v-9,3,-21,4,-31,5","w":243},"W":{"d":"350,-231v-6,2,-16,4,-23,5r-59,226r-29,0r-64,-221v-16,77,-41,147,-61,221r-29,0r-59,-226v-7,-1,-18,-3,-24,-5r0,-12r79,0r0,12v-9,3,-20,4,-30,5r51,203v17,-76,40,-147,60,-220r29,0r63,220r50,-203v-10,-1,-22,-2,-31,-5r0,-12r77,0r0,12","w":352},"X":{"d":"232,0r-85,0r0,-12v9,-3,19,-4,29,-5r-59,-90r-59,90v9,1,21,2,30,5r0,12r-84,0r0,-12v8,-2,18,-4,28,-5r73,-108r-69,-101v-9,-1,-19,-3,-27,-5r0,-12r85,0r0,12v-9,3,-20,4,-30,5r54,82r55,-82v-11,-1,-21,-2,-30,-5r0,-12r84,0r0,12v-8,2,-18,4,-28,5r-69,100r76,109v9,1,18,3,26,5r0,12","w":235},"Y":{"d":"208,-231v-6,2,-17,4,-24,5r-68,138r0,71v11,1,22,2,31,5r0,12r-86,0r0,-12v9,-3,21,-4,32,-5r0,-71r-67,-138v-7,-1,-18,-3,-24,-5r0,-12r80,0r0,12v-9,3,-20,4,-30,5r53,118r55,-118v-10,-1,-21,-2,-30,-5r0,-12r78,0r0,12","w":209},"Z":{"d":"179,0r-162,0r0,-16r135,-208r-112,1v-1,9,-2,21,-5,34r-14,0r0,-54r156,0r0,17r-135,206r117,-1v1,-10,3,-21,5,-34r15,0r0,55"},"[":{"d":"100,70r-65,0r0,-346r65,0r0,17r-44,0r0,312r44,0r0,17","w":114},"\\":{"d":"129,0r-21,0r-92,-243r20,0","w":146},"]":{"d":"80,70r-66,0r0,-17r45,0r0,-312r-45,0r0,-17r66,0r0,346","w":114},"^":{"d":"167,-134r-18,9r-55,-100r-53,100r-16,-9r60,-109r19,0","w":192},"_":{"d":"180,91r-180,0r0,-18r180,0r0,18","w":180},"`":{"d":"95,-222r-12,12r-46,-37r14,-15","w":131},"a":{"d":"183,-3v-14,2,-37,4,-53,3v-1,-14,2,-31,1,-40v-9,47,-110,65,-112,0v0,-36,38,-62,110,-62v2,-37,-4,-62,-42,-61v-12,0,-26,1,-38,5v-1,10,-3,21,-5,33r-14,0r0,-47v16,-6,37,-10,61,-10v90,-1,53,90,61,164v9,1,21,2,31,3r0,12xm73,-16v35,-1,57,-34,56,-69v-71,0,-87,23,-87,41v0,18,12,28,31,28","w":190},"b":{"d":"61,-263v-1,43,3,89,-3,127v10,-29,35,-46,63,-46v42,0,66,28,66,84v0,89,-71,114,-149,94r0,-240v-9,-1,-21,-3,-31,-4r0,-12v14,-2,37,-4,54,-3xm163,-95v0,-42,-14,-68,-46,-68v-62,0,-57,77,-56,142v56,15,102,-2,102,-74","w":204},"c":{"d":"148,-8v-56,19,-131,20,-131,-75v0,-76,56,-114,130,-92r0,48r-13,0v-3,-11,-5,-23,-6,-33v-52,-13,-88,16,-88,72v0,39,13,71,59,71v17,0,35,-5,48,-11","w":160},"d":{"d":"197,-3v-14,2,-37,4,-54,3v-1,-12,3,-32,2,-41v-10,27,-33,44,-62,44v-45,0,-66,-32,-66,-84v0,-79,50,-110,126,-98r0,-65v-9,-1,-21,-3,-31,-4r0,-12v15,-2,37,-4,54,-3r0,245v9,1,21,2,31,3r0,12xm86,-15v62,0,59,-77,57,-143v-58,-15,-103,1,-102,74v0,42,14,69,45,69","w":204},"e":{"d":"94,-182v53,1,73,38,68,84r-121,0v-9,85,58,95,113,70r2,20v-65,25,-139,9,-139,-81v0,-53,28,-93,77,-93xm139,-116v1,-29,-17,-49,-46,-49v-27,0,-46,19,-51,49r97,0","w":181},"f":{"d":"141,-261r-3,19v-46,-14,-78,6,-71,63r55,0r0,18r-55,0r0,144v11,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144r-41,0r0,-18r41,0v-5,-68,37,-98,97,-82","w":125},"g":{"d":"184,28v0,38,-40,67,-94,67v-77,0,-96,-76,-42,-101v-25,-9,-23,-45,1,-55v-59,-41,-9,-145,77,-118r60,0r0,18r-33,0v39,39,13,116,-59,111v-9,0,-20,-1,-27,-4v-24,14,-17,36,19,34v50,-3,98,6,98,48xm148,-116v0,-31,-18,-48,-50,-48v-33,0,-52,20,-52,48v0,31,19,48,51,48v31,0,51,-17,51,-48xm160,31v0,-36,-54,-32,-94,-31v-17,8,-27,22,-27,38v0,25,24,38,55,38v41,0,66,-18,66,-45","w":200},"h":{"d":"210,0r-54,0r0,-116v0,-30,-8,-48,-36,-48v-57,-2,-62,80,-58,147v11,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-227v-9,-1,-21,-3,-31,-4r0,-12v15,-2,37,-4,54,-3r-2,126v10,-28,33,-45,65,-45v81,0,47,96,54,165v11,1,22,2,31,5r0,12","w":217},"i":{"d":"71,-229v0,9,-8,16,-17,16v-9,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,17,8,17,17xm96,0r-84,0r0,-12v9,-3,20,-4,31,-5r0,-144v-9,-1,-21,-2,-31,-3r0,-12v15,-2,37,-4,54,-3r0,162v11,1,21,2,30,5r0,12","w":104},"j":{"d":"72,-229v0,9,-8,16,-17,16v-9,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,17,8,17,17xm67,24v4,58,-30,77,-81,66r2,-21v32,9,56,7,56,-43r0,-187v-9,-1,-21,-2,-31,-3r0,-12v15,-2,37,-4,54,-3r0,203","w":101},"k":{"d":"181,0r-47,0r-72,-95r0,78v10,1,21,2,30,5r0,12r-84,0r0,-12v9,-3,20,-4,31,-5r0,-227v-9,-1,-21,-3,-31,-4r0,-12v15,-2,37,-4,54,-3r0,166r60,-65v-12,-2,-28,1,-24,-17r77,0r0,12v-8,2,-17,4,-27,5r-60,64r62,80v9,1,20,3,31,5r0,13","w":187},"l":{"d":"62,-17v11,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-227v-9,-1,-21,-3,-31,-4r0,-12v15,-2,37,-4,54,-3r0,246","w":101},"m":{"d":"271,0r0,-116v0,-29,-7,-48,-35,-48v-30,0,-57,30,-57,79r0,68v11,1,22,2,31,5r0,12r-53,0r0,-117v0,-26,-5,-47,-35,-47v-53,0,-61,81,-56,147v10,1,21,2,30,5r0,12r-84,0r0,-12v9,-3,20,-4,31,-5r0,-144v-9,-1,-21,-2,-31,-3r0,-12v15,-2,37,-4,54,-3v0,12,-1,29,-3,42v10,-27,34,-45,64,-45v42,0,50,31,50,44v6,-17,26,-44,63,-44v72,0,50,99,53,165v11,1,22,2,31,5r0,12r-53,0","w":331},"n":{"d":"159,0r0,-116v0,-30,-8,-48,-36,-48v-57,-2,-61,80,-57,147v10,1,21,2,30,5r0,12r-84,0r0,-12v9,-3,20,-4,31,-5r0,-144v-9,-1,-21,-2,-31,-3r0,-12v15,-2,37,-4,54,-3v0,13,-1,30,-3,42v10,-27,33,-45,65,-45v81,0,47,96,54,165v11,1,22,2,31,5r0,12r-54,0","w":220},"o":{"d":"178,-92v0,52,-31,95,-84,95v-48,0,-78,-29,-78,-92v0,-50,30,-93,84,-93v42,0,78,23,78,90xm154,-91v0,-45,-19,-72,-57,-72v-30,0,-57,22,-57,72v0,48,21,75,58,75v30,0,56,-22,56,-75"},"p":{"d":"192,-98v0,79,-51,110,-126,98r0,73v11,1,22,3,31,5r0,12r-85,0r0,-12v9,-2,20,-4,31,-5r0,-234v-9,-1,-21,-2,-31,-3r0,-12v14,-2,38,-4,54,-3v0,12,-1,30,-3,41v10,-27,34,-44,63,-44v42,0,66,28,66,84xm168,-95v0,-42,-15,-68,-46,-68v-62,0,-57,77,-56,142v56,15,102,-2,102,-74","w":208},"q":{"d":"198,90r-86,0r0,-12v9,-2,21,-4,32,-5r1,-114v-10,27,-33,44,-61,44v-42,0,-67,-28,-67,-84v0,-89,67,-113,149,-95r0,249v11,1,23,3,32,5r0,12xm87,-15v61,0,59,-78,57,-144v-60,-13,-103,2,-103,75v0,42,15,69,46,69","w":200},"r":{"d":"130,-182r-1,22v-62,-14,-66,71,-63,143v11,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144v-9,-1,-21,-2,-31,-3r0,-12v15,-2,37,-4,54,-3v1,12,-4,34,-4,47v7,-27,25,-55,68,-50","w":136},"s":{"d":"135,-53v0,44,-61,67,-112,52r0,-49r13,0v3,10,4,22,5,32v32,6,71,-2,71,-31v0,-46,-92,-18,-92,-82v0,-42,59,-61,106,-46r0,47r-13,0v-2,-10,-4,-22,-5,-32v-28,-6,-65,2,-65,28v0,47,92,19,92,81","w":156},"t":{"d":"119,-1v-41,10,-78,4,-78,-48r0,-112r-41,0r0,-18r41,0r0,-60r23,-7r0,67r55,0r0,18r-55,0r0,101v-4,48,23,44,55,39r0,20","w":132},"u":{"d":"210,-3v-14,2,-37,4,-54,3v-1,-12,3,-32,2,-42v-10,27,-33,45,-65,45v-81,0,-47,-95,-54,-164v-9,-1,-21,-2,-31,-3r0,-12v14,-2,37,-4,54,-3r0,116v0,30,8,48,36,48v57,2,62,-79,58,-146v-9,-1,-21,-2,-31,-3r0,-12v14,-2,37,-4,54,-3r0,161v9,1,21,2,31,3r0,12","w":217},"v":{"d":"198,-167v-8,2,-16,4,-25,5r-61,162r-25,0r-59,-162v-9,-1,-18,-3,-26,-5r0,-12r81,0r0,12v-9,3,-20,4,-30,5r47,140r49,-140v-10,-1,-21,-2,-30,-5r0,-12r79,0r0,12","w":199},"w":{"d":"309,-167v-8,2,-16,4,-25,5r-52,162r-27,0r-53,-157r-48,157r-28,0r-49,-162v-9,-1,-17,-3,-25,-5r0,-12r80,0r0,12v-9,3,-19,4,-29,5r38,140r50,-157r27,0r51,158r41,-141v-10,-1,-21,-2,-30,-5r0,-12r79,0r0,12","w":311},"x":{"d":"193,0r-51,0r-45,-73r-46,73r-48,0r0,-13v11,-3,23,-4,33,-5r49,-71r-46,-72v-11,-1,-22,-2,-33,-5r0,-13r50,0r43,71r44,-71r47,0r0,13v-11,3,-23,4,-33,5r-46,70r49,73v10,1,22,2,33,5r0,13","w":196},"y":{"d":"199,-167v-8,2,-17,4,-26,5r-68,182v-25,63,-39,79,-97,71r3,-21v48,20,63,-26,80,-70r-5,0r-59,-162v-9,-1,-17,-3,-25,-5r0,-12r79,0r0,12v-8,3,-18,4,-28,5r48,139r48,-139v-10,-1,-19,-2,-27,-5r0,-12r77,0r0,12","w":200},"z":{"d":"142,0r-125,0r0,-16r98,-144r-77,1v-1,10,-2,19,-5,29r-13,0r0,-49r120,0r0,16r-97,144r80,-1v1,-9,3,-21,6,-31r13,0r0,51","w":160},"{":{"d":"106,53v-1,6,4,20,-6,17v-63,4,-48,-76,-50,-136v0,-27,-8,-37,-39,-39r0,-19v89,5,-14,-157,95,-152r0,17v-71,-8,0,134,-68,144v45,6,33,74,33,123v0,33,9,45,35,45","w":117},"|":{"d":"59,90r-18,0r0,-360r18,0r0,360","w":101},"}":{"d":"109,-105v-92,-6,19,182,-95,175r0,-17v76,5,-6,-153,68,-168v-40,-4,-33,-56,-33,-100v0,-33,-9,-44,-35,-44v1,-6,-4,-20,6,-17v57,1,50,57,50,111v0,30,8,39,39,41r0,19","w":115},"~":{"d":"190,-97v-13,12,-29,21,-47,21v-37,0,-51,-25,-79,-25v-15,0,-28,9,-36,16r-7,-16v10,-9,26,-19,45,-19v37,0,47,25,79,25v12,0,26,-9,36,-18","w":210},"\u00c4":{"d":"245,0r-80,0r0,-12v9,-3,19,-4,30,-5r-17,-46r-111,0r-17,46v10,1,22,2,31,5r0,12r-79,0r0,-12v6,-2,17,-4,24,-5r85,-226r25,0r85,226v7,1,18,3,24,5r0,12xm172,-82r-50,-137v-13,49,-33,91,-49,137r99,0xm172,-285v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm106,-285v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15","w":247},"\u00c5":{"d":"245,0r-80,0r0,-12v9,-3,19,-4,30,-5r-17,-46r-111,0r-17,46v10,1,22,2,31,5r0,12r-79,0r0,-12v6,-2,17,-4,24,-5r85,-226r25,0r85,226v7,1,18,3,24,5r0,12xm172,-82r-50,-137v-13,49,-33,91,-49,137r99,0xm161,-276v0,19,-16,36,-37,36v-21,0,-37,-15,-37,-36v0,-21,17,-37,37,-37v21,0,37,16,37,37xm145,-276v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21","w":247},"\u00c7":{"d":"193,-186r-14,0v-3,-13,-4,-24,-5,-34v-78,-25,-130,25,-130,100v0,91,77,122,151,89r2,21v-19,8,-43,13,-69,13v-72,0,-109,-43,-109,-119v0,-73,33,-129,117,-129v19,0,39,3,57,7r0,52xm136,18v10,21,7,44,-29,67r-10,-10v24,-18,26,-38,16,-57r23,0","w":215},"\u00c9":{"d":"163,0r-151,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r150,0r0,52r-14,0v-2,-13,-5,-25,-6,-34r-76,0r0,91r60,0v1,-10,3,-20,6,-28r13,0r0,73r-13,0v-3,-8,-5,-18,-6,-27r-60,0r0,97r77,0v1,-10,3,-22,5,-34r15,0r0,53xm140,-301r-46,37r-11,-12r43,-40","w":189},"\u00d1":{"d":"257,-231v-8,2,-17,5,-26,6r0,225r-31,0r-109,-170v-11,-17,-20,-33,-28,-49v3,45,3,120,3,201v10,1,21,3,30,6r0,12r-84,0r0,-12v9,-3,20,-5,31,-6r0,-208v-11,-1,-22,-2,-31,-5r0,-12r62,0r137,218v-3,-44,-3,-119,-3,-200v-11,-1,-22,-3,-31,-6r0,-12r80,0r0,12xm194,-287v-7,7,-20,14,-33,14v-31,0,-51,-30,-75,-5r-7,-15v31,-39,81,26,108,-9","w":268},"\u00d6":{"d":"237,-124v0,81,-51,127,-113,127v-72,0,-107,-49,-107,-122v0,-82,51,-127,113,-127v67,0,107,45,107,122xm212,-120v0,-68,-32,-106,-85,-106v-45,0,-85,36,-85,102v0,63,28,107,85,107v45,0,85,-37,85,-103xm174,-285v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm108,-285v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15","w":254},"\u00dc":{"d":"247,-231v-8,2,-17,4,-26,5r0,134v0,62,-32,95,-95,95v-75,0,-88,-42,-88,-83r0,-146v-9,-1,-18,-3,-26,-5r0,-12r79,0r0,12v-9,3,-20,4,-30,5r0,144v0,36,13,66,68,66v46,0,69,-20,69,-74r0,-136v-10,-1,-21,-2,-30,-5r0,-12r79,0r0,12xm179,-285v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm113,-285v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15","w":258},"\u00e1":{"d":"183,-3v-14,2,-37,4,-53,3v-1,-14,2,-31,1,-40v-9,47,-110,65,-112,0v0,-36,38,-62,110,-62v2,-37,-4,-62,-42,-61v-12,0,-26,1,-38,5v-1,10,-3,21,-5,33r-14,0r0,-47v16,-6,37,-10,61,-10v90,-1,53,90,61,164v9,1,21,2,31,3r0,12xm73,-16v35,-1,57,-34,56,-69v-71,0,-87,23,-87,41v0,18,12,28,31,28xm132,-247r-46,37r-11,-12r43,-40","w":190},"\u00e0":{"d":"183,-3v-14,2,-37,4,-53,3v-1,-14,2,-31,1,-40v-9,47,-110,65,-112,0v0,-36,38,-62,110,-62v2,-37,-4,-62,-42,-61v-12,0,-26,1,-38,5v-1,10,-3,21,-5,33r-14,0r0,-47v16,-6,37,-10,61,-10v90,-1,53,90,61,164v9,1,21,2,31,3r0,12xm73,-16v35,-1,57,-34,56,-69v-71,0,-87,23,-87,41v0,18,12,28,31,28xm103,-222r-12,12r-46,-37r14,-15","w":190},"\u00e2":{"d":"183,-3v-14,2,-37,4,-53,3v-1,-14,2,-31,1,-40v-9,47,-110,65,-112,0v0,-36,38,-62,110,-62v2,-37,-4,-62,-42,-61v-12,0,-26,1,-38,5v-1,10,-3,21,-5,33r-14,0r0,-47v16,-6,37,-10,61,-10v90,-1,53,90,61,164v9,1,21,2,31,3r0,12xm73,-16v35,-1,57,-34,56,-69v-71,0,-87,23,-87,41v0,18,12,28,31,28xm139,-225r-13,14r-36,-26r-34,26r-11,-13r46,-35","w":190},"\u00e4":{"d":"183,-3v-14,2,-37,4,-53,3v-1,-14,2,-31,1,-40v-9,47,-110,65,-112,0v0,-36,38,-62,110,-62v2,-37,-4,-62,-42,-61v-12,0,-26,1,-38,5v-1,10,-3,21,-5,33r-14,0r0,-47v16,-6,37,-10,61,-10v90,-1,53,90,61,164v9,1,21,2,31,3r0,12xm73,-16v35,-1,57,-34,56,-69v-71,0,-87,23,-87,41v0,18,12,28,31,28xm140,-237v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm74,-237v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15","w":190},"\u00e3":{"d":"183,-3v-14,2,-37,4,-53,3v-1,-14,2,-31,1,-40v-9,47,-110,65,-112,0v0,-36,38,-62,110,-62v2,-37,-4,-62,-42,-61v-12,0,-26,1,-38,5v-1,10,-3,21,-5,33r-14,0r0,-47v16,-6,37,-10,61,-10v90,-1,53,90,61,164v9,1,21,2,31,3r0,12xm73,-16v35,-1,57,-34,56,-69v-71,0,-87,23,-87,41v0,18,12,28,31,28xm148,-233v-7,7,-20,14,-33,14v-31,0,-51,-30,-75,-5r-7,-15v31,-39,81,26,108,-9","w":190},"\u00e5":{"d":"183,-3v-14,2,-37,4,-53,3v-1,-14,2,-31,1,-40v-9,47,-110,65,-112,0v0,-36,38,-62,110,-62v2,-37,-4,-62,-42,-61v-12,0,-26,1,-38,5v-1,10,-3,21,-5,33r-14,0r0,-47v16,-6,37,-10,61,-10v90,-1,53,90,61,164v9,1,21,2,31,3r0,12xm73,-16v35,-1,57,-34,56,-69v-71,0,-87,23,-87,41v0,18,12,28,31,28xm128,-237v0,19,-16,36,-37,36v-21,0,-37,-15,-37,-36v0,-21,17,-37,37,-37v21,0,37,16,37,37xm112,-237v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21","w":190},"\u00e7":{"d":"148,-8v-56,19,-131,20,-131,-75v0,-76,56,-114,130,-92r0,48r-13,0v-3,-11,-5,-23,-6,-33v-52,-13,-88,16,-88,72v0,39,13,71,59,71v17,0,35,-5,48,-11xm102,18v10,21,7,44,-29,67r-10,-10v24,-18,26,-38,16,-57r23,0","w":160},"\u00e9":{"d":"94,-182v53,1,73,38,68,84r-121,0v-9,85,58,95,113,70r2,20v-65,25,-139,9,-139,-81v0,-53,28,-93,77,-93xm139,-116v1,-29,-17,-49,-46,-49v-27,0,-46,19,-51,49r97,0xm133,-247r-46,37r-11,-12r43,-40","w":181},"\u00e8":{"d":"94,-182v53,1,73,38,68,84r-121,0v-9,85,58,95,113,70r2,20v-65,25,-139,9,-139,-81v0,-53,28,-93,77,-93xm139,-116v1,-29,-17,-49,-46,-49v-27,0,-46,19,-51,49r97,0xm108,-222r-12,12r-46,-37r14,-15","w":181},"\u00ea":{"d":"94,-182v53,1,73,38,68,84r-121,0v-9,85,58,95,113,70r2,20v-65,25,-139,9,-139,-81v0,-53,28,-93,77,-93xm139,-116v1,-29,-17,-49,-46,-49v-27,0,-46,19,-51,49r97,0xm141,-225r-13,14r-36,-26r-34,26r-11,-13r46,-35","w":181},"\u00eb":{"d":"94,-182v53,1,73,38,68,84r-121,0v-9,85,58,95,113,70r2,20v-65,25,-139,9,-139,-81v0,-53,28,-93,77,-93xm139,-116v1,-29,-17,-49,-46,-49v-27,0,-46,19,-51,49r97,0xm142,-237v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm76,-237v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15","w":181},"\u00ed":{"d":"95,-247r-46,37r-11,-12r43,-40xm96,0r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144v-9,-1,-21,-2,-31,-3r0,-12v15,-2,37,-4,54,-3r0,162v11,1,22,2,31,5r0,12","w":104},"\u00ec":{"d":"65,-222r-11,12r-46,-37r14,-15xm96,0r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144v-9,-1,-21,-2,-31,-3r0,-12v15,-2,37,-4,54,-3r0,162v11,1,22,2,31,5r0,12","w":104},"\u00ee":{"d":"101,-225r-12,14r-36,-26r-35,26r-10,-13r45,-35xm96,0r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144v-9,-1,-21,-2,-31,-3r0,-12v15,-2,37,-4,54,-3r0,162v11,1,22,2,31,5r0,12","w":104},"\u00ef":{"d":"102,-237v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm36,-237v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15xm96,0r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144v-9,-1,-21,-2,-31,-3r0,-12v15,-2,37,-4,54,-3r0,162v11,1,22,2,31,5r0,12","w":104},"\u00f1":{"d":"159,0r0,-116v0,-30,-8,-48,-36,-48v-57,-2,-61,80,-57,147v10,1,21,2,30,5r0,12r-84,0r0,-12v9,-3,20,-4,31,-5r0,-144v-9,-1,-21,-2,-31,-3r0,-12v15,-2,37,-4,54,-3v0,13,-1,30,-3,42v10,-27,33,-45,65,-45v81,0,47,96,54,165v11,1,22,2,31,5r0,12r-54,0xm169,-233v-7,7,-20,14,-33,14v-31,0,-51,-30,-75,-5r-7,-15v31,-39,81,26,108,-9","w":220},"\u00f3":{"d":"178,-92v0,52,-31,95,-84,95v-48,0,-78,-29,-78,-92v0,-50,30,-93,84,-93v42,0,78,23,78,90xm154,-91v0,-45,-19,-72,-57,-72v-30,0,-57,22,-57,72v0,48,21,75,58,75v30,0,56,-22,56,-75xm138,-247r-46,37r-11,-12r43,-40"},"\u00f2":{"d":"178,-92v0,52,-31,95,-84,95v-48,0,-78,-29,-78,-92v0,-50,30,-93,84,-93v42,0,78,23,78,90xm154,-91v0,-45,-19,-72,-57,-72v-30,0,-57,22,-57,72v0,48,21,75,58,75v30,0,56,-22,56,-75xm118,-222r-12,12r-46,-37r14,-15"},"\u00f4":{"d":"178,-92v0,52,-31,95,-84,95v-48,0,-78,-29,-78,-92v0,-50,30,-93,84,-93v42,0,78,23,78,90xm154,-91v0,-45,-19,-72,-57,-72v-30,0,-57,22,-57,72v0,48,21,75,58,75v30,0,56,-22,56,-75xm144,-225r-13,14r-36,-26r-34,26r-11,-13r46,-35"},"\u00f6":{"d":"178,-92v0,52,-31,95,-84,95v-48,0,-78,-29,-78,-92v0,-50,30,-93,84,-93v42,0,78,23,78,90xm154,-91v0,-45,-19,-72,-57,-72v-30,0,-57,22,-57,72v0,48,21,75,58,75v30,0,56,-22,56,-75xm145,-237v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm79,-237v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15"},"\u00f5":{"d":"178,-92v0,52,-31,95,-84,95v-48,0,-78,-29,-78,-92v0,-50,30,-93,84,-93v42,0,78,23,78,90xm154,-91v0,-45,-19,-72,-57,-72v-30,0,-57,22,-57,72v0,48,21,75,58,75v30,0,56,-22,56,-75xm155,-233v-7,7,-20,14,-33,14v-31,0,-51,-30,-75,-5r-7,-15v31,-39,81,26,108,-9"},"\u00fa":{"d":"210,-3v-14,2,-37,4,-54,3v-1,-12,3,-32,2,-42v-10,27,-33,45,-65,45v-81,0,-47,-95,-54,-164v-9,-1,-21,-2,-31,-3r0,-12v14,-2,37,-4,54,-3r0,116v0,30,8,48,36,48v57,2,62,-79,58,-146v-9,-1,-21,-2,-31,-3r0,-12v14,-2,37,-4,54,-3r0,161v9,1,21,2,31,3r0,12xm150,-247r-46,37r-11,-12r43,-40","w":217},"\u00f9":{"d":"210,-3v-14,2,-37,4,-54,3v-1,-12,3,-32,2,-42v-10,27,-33,45,-65,45v-81,0,-47,-95,-54,-164v-9,-1,-21,-2,-31,-3r0,-12v14,-2,37,-4,54,-3r0,116v0,30,8,48,36,48v57,2,62,-79,58,-146v-9,-1,-21,-2,-31,-3r0,-12v14,-2,37,-4,54,-3r0,161v9,1,21,2,31,3r0,12xm128,-222r-12,12r-46,-37r14,-15","w":217},"\u00fb":{"d":"210,-3v-14,2,-37,4,-54,3v-1,-12,3,-32,2,-42v-10,27,-33,45,-65,45v-81,0,-47,-95,-54,-164v-9,-1,-21,-2,-31,-3r0,-12v14,-2,37,-4,54,-3r0,116v0,30,8,48,36,48v57,2,62,-79,58,-146v-9,-1,-21,-2,-31,-3r0,-12v14,-2,37,-4,54,-3r0,161v9,1,21,2,31,3r0,12xm153,-225r-13,14r-36,-26r-34,26r-11,-13r46,-35","w":217},"\u00fc":{"d":"210,-3v-14,2,-37,4,-54,3v-1,-12,3,-32,2,-42v-10,27,-33,45,-65,45v-81,0,-47,-95,-54,-164v-9,-1,-21,-2,-31,-3r0,-12v14,-2,37,-4,54,-3r0,116v0,30,8,48,36,48v57,2,62,-79,58,-146v-9,-1,-21,-2,-31,-3r0,-12v14,-2,37,-4,54,-3r0,161v9,1,21,2,31,3r0,12xm155,-237v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm89,-237v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15","w":217},"\u2020":{"d":"150,-181r-58,0v10,58,1,120,-2,181r-13,0v-3,-61,-12,-123,-2,-181r-59,0r0,-18r59,0r-6,-64r29,0r-6,64r58,0r0,18","w":166},"\u00b0":{"d":"109,-222v0,26,-22,43,-45,43v-26,0,-42,-17,-42,-42v0,-27,22,-43,44,-43v29,0,43,19,43,42xm90,-221v0,-12,-5,-28,-24,-28v-14,0,-25,11,-25,27v0,17,10,27,24,27v14,0,25,-11,25,-26","w":132},"\u00a2":{"d":"107,-186v14,0,30,2,42,6r0,49r-14,0v-3,-12,-4,-23,-5,-34v-50,-12,-90,12,-90,65v0,35,15,66,62,66v16,0,35,-5,47,-12r1,20v-12,5,-26,10,-43,11r0,39r-18,0r0,-39v-46,-4,-73,-33,-73,-85v0,-46,28,-81,73,-86r0,-33r18,0r0,33","w":168},"\u00a3":{"d":"165,0r-143,0r0,-17v40,-33,50,-50,43,-107r-43,0r0,-17r41,0v-11,-58,-3,-121,57,-114v8,0,21,2,31,4r0,48r-13,0v-3,-11,-5,-22,-6,-32v-56,-9,-56,41,-46,94r55,0r0,17r-54,0v7,52,-2,76,-37,106v26,-3,65,-2,95,-2v1,-10,3,-22,6,-33r14,0r0,53","w":187},"\u00a7":{"d":"143,-75v0,19,-9,36,-22,47v30,45,-10,104,-74,86r2,-21v26,11,59,1,59,-29v0,-41,-79,-86,-79,-140v0,-20,10,-39,23,-49v-29,-44,9,-102,70,-83r-2,19v-27,-8,-55,-1,-55,30v0,40,78,86,78,140xm109,-43v34,-45,-14,-77,-46,-122v-32,45,6,69,46,122","w":173},"\u2022":{"d":"75,-141v20,0,37,17,37,37v0,20,-17,36,-37,36v-20,0,-36,-16,-36,-36v0,-20,16,-37,36,-37","w":155},"\u00b6":{"d":"130,18r0,-261r48,0r0,17r-26,0r0,261r-50,0r0,-17r28,0xm103,-243r0,149v-51,0,-76,-34,-76,-75v0,-41,30,-74,76,-74","w":202},"\u00df":{"d":"211,-54v0,42,-48,67,-99,54r0,-49r13,0v2,10,4,22,5,31v30,8,63,-10,58,-32v0,-44,-79,-32,-79,-90v0,-43,53,-42,53,-77v0,-21,-19,-30,-42,-30v-35,0,-54,20,-54,70r0,160v12,2,30,-1,26,17r-80,0r0,-12v9,-3,20,-4,31,-5r0,-144v-9,-1,-23,-2,-33,-3r0,-12v9,-1,21,-3,33,-3v0,-52,24,-87,79,-87v41,0,63,21,63,46v0,49,-53,42,-53,77v0,41,79,33,79,89","w":224},"\u00ae":{"d":"177,-191v0,41,-35,76,-76,76v-43,0,-76,-34,-76,-76v0,-42,34,-75,76,-75v43,0,76,32,76,75xm159,-190v0,-33,-25,-61,-58,-61v-32,0,-59,27,-59,59v0,32,27,61,59,61v33,0,58,-27,58,-59xm136,-150r-21,0r-17,-35r-5,0v0,12,-3,27,9,28r0,7r-34,0v-2,-9,5,-9,11,-11r0,-61v-7,-2,-13,-1,-11,-11v26,-2,63,-5,63,21v0,13,-7,21,-18,24v7,11,9,27,23,31r0,7xm93,-196v24,5,35,-25,9,-25r-9,0r0,25","w":201},"\u00a9":{"d":"135,-239v66,0,119,52,119,118v0,66,-53,119,-119,119v-68,0,-120,-53,-120,-119v0,-66,54,-118,120,-118xm135,-222v-55,0,-100,45,-100,101v0,56,45,101,100,101v55,0,100,-45,100,-101v0,-55,-45,-101,-100,-101xm170,-63v-47,19,-99,-7,-92,-56v-5,-43,37,-77,90,-63r0,42r-11,0v-2,-9,-4,-19,-5,-28v-36,-7,-53,16,-53,48v0,42,33,54,69,41","w":270},"\u2122":{"d":"275,-141r-51,0r0,-10v5,-1,10,-2,16,-3r-10,-68r-25,81r-21,0r-24,-81v-2,24,-7,45,-10,68v6,1,12,2,17,3r0,10r-51,0r0,-10v5,-1,11,-2,17,-3r12,-75v-6,-1,-12,-3,-17,-4r0,-10r45,0r23,82v5,-30,16,-55,24,-82r44,0r0,10v-5,1,-11,3,-17,4r12,75v6,1,11,2,16,3r0,10xm111,-204r-12,0v-1,-9,-3,-19,-4,-25r-21,0r0,74v9,2,25,-1,21,14r-60,0r0,-10v6,-2,13,-3,20,-4r0,-74r-21,0v-1,7,-2,16,-4,25r-11,0r0,-39r92,0r0,39","w":293},"\u00b4":{"d":"95,-247r-46,37r-11,-12r43,-40","w":138},"\u00a8":{"d":"144,-237v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm78,-237v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15","w":196},"\u2260":{"d":"251,-261r-2,19v-46,-14,-79,5,-72,63r56,0r0,18r-56,0r0,144v11,1,22,2,31,5r0,12r-84,0r0,-12v9,-3,20,-4,30,-5r0,-144r-87,0r0,144v10,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144r-41,0r0,-18r41,0v-1,-45,11,-81,75,-83v20,0,40,4,58,11v16,-15,48,-17,74,-10xm164,-234v-47,-20,-109,-9,-97,55r87,0v-1,-22,2,-42,10,-55","w":235},"\u00c6":{"d":"273,0r-153,0r0,-12v9,-3,20,-4,30,-5r0,-46r-88,0r-25,46v10,1,21,2,30,5r0,12r-79,0r0,-12v6,-2,17,-4,24,-5r118,-209v-11,-1,-23,-2,-32,-5r0,-12r171,0r0,52r-15,0v-3,-13,-5,-25,-6,-34r-74,0r0,91r60,0v1,-10,3,-20,6,-28r13,0r0,73r-13,0v-3,-8,-5,-18,-6,-27r-60,0r0,97r78,0v1,-10,3,-22,6,-34r15,0r0,53xm150,-82r-1,-142v-19,40,-54,100,-77,142r78,0","w":300},"\u00d8":{"d":"236,-122v-1,93,-63,139,-146,121r-14,38r-18,-6r14,-38v-39,-19,-55,-62,-55,-113v0,-92,60,-138,142,-123r13,-35r18,6r-13,35v37,16,59,56,59,115xm212,-119v0,-45,-15,-81,-43,-96r-72,194v66,17,114,-22,115,-98xm152,-223v-65,-14,-111,22,-111,100v0,42,11,77,39,94","w":254},"\u221e":{"d":"325,-99v0,31,-23,57,-62,57v-30,0,-59,-19,-89,-42v-28,21,-59,42,-90,42v-41,0,-60,-24,-60,-54v0,-31,23,-58,61,-58v31,0,61,21,90,43v29,-22,60,-43,90,-43v40,0,60,25,60,55xm301,-97v0,-60,-74,-34,-108,-1v26,19,49,36,72,36v23,0,36,-16,36,-35xm156,-97v-26,-19,-50,-37,-72,-37v-23,0,-36,17,-36,36v0,58,74,34,108,1","w":348},"\u00b1":{"d":"186,-100r-74,0r0,76r-21,0r0,-76r-75,0r0,-19r75,0r0,-75r21,0r0,75r74,0r0,19xm185,18r-167,0r0,-19r167,0r0,19","w":203},"\u2264":{"d":"320,0r-84,0r0,-12v9,-3,20,-4,30,-5r0,-144r-89,0r0,144v10,1,22,2,31,5r0,12r-84,0r0,-12v9,-3,20,-4,30,-5r0,-144r-87,0r0,144v10,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144r-41,0r0,-18r41,0v-1,-45,11,-81,75,-83v23,0,44,5,61,13v18,-18,72,-20,103,-9r-5,19v-52,-17,-112,-4,-101,60r112,0r0,162v11,1,22,2,31,5r0,12xm166,-233v-48,-21,-110,-11,-99,54r87,0v0,-21,1,-37,12,-54","w":328},"\u2265":{"d":"320,0r-84,0r0,-12v9,-3,20,-4,30,-5r0,-226v-53,-10,-100,1,-89,64r56,0r0,18r-56,0r0,144v10,1,22,2,31,5r0,12r-84,0r0,-12v9,-3,20,-4,30,-5r0,-144r-87,0r0,144v10,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144r-41,0r0,-18r41,0v-1,-45,11,-81,75,-83v23,0,41,4,58,12v23,-19,75,-17,112,-10r0,243v11,1,22,2,31,5r0,12xm163,-234v-47,-21,-107,-9,-96,55r87,0v0,-22,-1,-42,9,-55","w":328},"\u00a5":{"d":"209,-231v-6,2,-17,4,-24,5r-62,125r56,0r0,16r-62,0r0,28r62,0r0,16r-62,0r0,24v11,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-24r-62,0r0,-16r62,0r0,-28r-62,0r0,-16r56,0r-61,-125v-7,-1,-18,-3,-24,-5r0,-12r80,0r0,12v-9,3,-20,4,-30,5r54,117r54,-117v-10,-1,-21,-2,-30,-5r0,-12r78,0r0,12","w":211},"\u03bc":{"d":"189,0r-23,0v-1,-12,3,-32,2,-43v-6,18,-23,46,-68,46v-23,0,-36,-9,-44,-17v2,21,1,76,1,104r-22,0r0,-269r22,0v6,65,-25,166,49,164v69,-2,61,-91,60,-164r23,0r0,179","w":223},"\u2202":{"d":"67,-17v10,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144r-41,0r0,-18r41,0v-15,-80,60,-96,135,-81v-1,42,3,87,-3,124v10,-29,35,-46,63,-46v42,0,66,28,66,84v0,89,-71,114,-149,94r0,-239v-52,-10,-101,1,-89,64r55,0r0,18r-55,0r0,144xm281,-95v0,-42,-15,-68,-46,-68v-62,0,-57,77,-56,142v56,15,102,-2,102,-74","w":322},"\u2211":{"d":"327,0r-53,0r0,-116v0,-30,-9,-48,-37,-48v-57,-2,-61,80,-57,147v10,1,21,2,30,5r0,12r-84,0r0,-12v9,-3,20,-4,31,-5r0,-226v-53,-10,-102,1,-90,64r55,0r0,18r-55,0r0,144v10,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144r-41,0r0,-18r41,0v-15,-80,60,-96,136,-81v-1,41,4,88,-4,123v12,-26,33,-45,66,-45v81,0,47,96,54,165v10,1,22,2,31,5r0,12","w":334},"\u220f":{"d":"179,24v4,58,-30,77,-81,66r3,-21v33,9,55,7,55,-43r0,-187r-89,0r0,144v10,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144r-41,0r0,-18r41,0v-10,-74,61,-100,128,-79r-5,19v-52,-17,-111,-4,-100,60r112,0r0,203","w":213},"\u03c0":{"d":"222,0v-39,9,-67,2,-67,-48r0,-113r-76,0r0,161r-22,0r0,-161r-42,0r0,-18r205,0r0,18r-43,0r0,90v-2,62,10,60,44,52","w":242},"\u222b":{"d":"299,0r-48,0r-71,-95r0,78v10,1,21,2,30,5r0,12r-84,0r0,-12v9,-3,20,-4,31,-5r0,-226v-53,-10,-102,1,-90,64r55,0r0,18r-55,0r0,144v10,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144r-41,0r0,-18r41,0v-15,-80,60,-96,136,-81r0,163r59,-65v-13,-2,-27,1,-24,-17r78,0r0,12v-8,2,-17,4,-27,5r-60,64r62,80v9,1,20,3,31,5r0,13","w":305},"\u00aa":{"d":"132,-130v-11,2,-29,2,-43,2v-1,-5,3,-16,1,-21v-5,28,-71,32,-71,-5v0,-24,25,-42,71,-42v8,-27,-24,-40,-48,-29v-1,8,-2,15,-3,21r-12,0r0,-34v6,-3,22,-8,40,-8v58,0,39,53,42,101v7,1,17,2,23,3r0,12xm57,-143v24,-2,34,-25,33,-39v-36,0,-50,10,-50,24v0,9,6,15,17,15","w":140},"\u00ba":{"d":"128,-189v0,38,-23,63,-57,63v-31,0,-51,-17,-51,-59v0,-36,22,-61,55,-61v23,0,53,11,53,57xm106,-186v0,-21,-8,-42,-32,-42v-16,0,-33,12,-33,41v0,21,7,43,32,43v19,0,33,-14,33,-42","w":149},"\u03a9":{"d":"243,0r-78,0r0,-19v33,-23,54,-55,54,-106v0,-57,-28,-104,-83,-104v-53,0,-86,42,-86,102v0,48,15,81,54,108r0,19r-79,0r0,-17r56,0v-35,-22,-54,-62,-54,-109v0,-72,43,-121,109,-121v62,0,106,41,106,118v0,51,-23,91,-56,112r57,0r0,17","w":269},"\u00e6":{"d":"205,-182v53,1,73,38,68,84r-121,0v-8,85,58,95,113,70r2,20v-43,21,-125,9,-130,-33v-9,43,-118,70,-118,1v0,-36,38,-62,110,-62v2,-36,-5,-61,-42,-61v-12,0,-26,1,-38,5v-1,10,-3,21,-5,33r-14,0r0,-47v36,-14,104,-18,116,22v10,-18,32,-32,59,-32xm249,-116v1,-29,-17,-49,-46,-49v-26,0,-45,19,-50,49r96,0xm73,-16v35,-1,57,-34,56,-69v-71,0,-87,23,-87,41v0,18,12,28,31,28","w":291},"\u00f8":{"d":"176,-92v1,62,-45,109,-109,91r-14,38r-17,-6r14,-38v-68,-45,-37,-198,66,-173r13,-34r17,6r-12,33v24,11,42,36,42,83xm153,-91v0,-31,-9,-54,-27,-65r-52,137v44,14,77,-9,79,-72xm109,-162v-40,-8,-72,11,-72,71v0,27,8,50,22,62"},"\u00bf":{"d":"103,-165v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17v0,-9,7,-17,17,-17v10,0,17,8,17,17xm119,54r-3,21v-53,-4,-91,-33,-91,-68v0,-54,75,-58,51,-131r23,0v25,74,-49,86,-49,129v0,26,29,46,69,49","w":149},"\u00a1":{"d":"71,-165v0,10,-7,17,-17,17v-10,0,-18,-7,-18,-17v0,-9,8,-17,18,-17v10,0,17,8,17,17xm67,73r-27,0r4,-197r19,0","w":107},"\u00ac":{"d":"165,-27r-20,0r0,-58r-131,0r0,-19r151,0r0,77","w":182},"\u221a":{"d":"202,-273r-85,273r-26,0r-57,-161r-34,0r0,-18r52,0r53,157r73,-251r24,0","w":216},"\u0192":{"d":"75,-134r-14,142v-5,61,-34,75,-88,67r1,-19v36,9,60,-2,64,-43r14,-147r-38,0r0,-18r40,0v3,-57,9,-113,68,-113v7,0,16,1,25,2r-2,19v-35,-9,-61,0,-64,42r-4,50r51,0r0,18r-53,0","w":154},"\u2248":{"d":"188,-117v-10,9,-24,18,-43,18v-36,0,-44,-22,-75,-22v-15,0,-28,10,-35,16r-7,-17v10,-9,24,-18,43,-18v44,0,75,42,110,6xm188,-59v-10,8,-24,17,-43,17v-36,0,-44,-22,-75,-22v-15,0,-28,9,-35,15r-7,-16v9,-9,24,-19,43,-19v44,0,73,43,110,8","w":216},"\u0394":{"d":"244,0r-231,0r102,-252r26,0xm211,-20r-84,-209r-82,209r166,0","w":257},"\u00ab":{"d":"82,-139r-36,51r35,49r-17,12r-41,-61r42,-62xm147,-138r-39,50r39,49r-17,12r-45,-61r46,-62","w":177},"\u00bb":{"d":"95,-39r36,-50r-35,-49r17,-12r41,61r-42,62xm30,-39r38,-50r-38,-49r17,-12r44,61r-45,62","w":177},"\u2026":{"d":"37,-32v10,0,18,8,18,17v0,10,-8,18,-18,18v-10,0,-17,-8,-17,-18v0,-9,7,-17,17,-17xm111,-32v10,0,17,8,17,17v0,10,-7,18,-17,18v-10,0,-18,-8,-18,-18v0,-9,8,-17,18,-17xm184,-32v9,0,17,8,17,17v0,10,-8,18,-17,18v-10,0,-18,-8,-18,-18v0,-9,8,-17,18,-17","w":225},"\u00a0":{"w":144},"\u00c0":{"d":"245,0r-80,0r0,-12v9,-3,19,-4,30,-5r-17,-46r-111,0r-17,46v10,1,22,2,31,5r0,12r-79,0r0,-12v6,-2,17,-4,24,-5r85,-226r25,0r85,226v7,1,18,3,24,5r0,12xm172,-82r-50,-137v-13,49,-33,91,-49,137r99,0xm136,-276r-12,12r-46,-37r14,-15","w":247},"\u00c3":{"d":"245,0r-80,0r0,-12v9,-3,19,-4,30,-5r-17,-46r-111,0r-17,46v10,1,22,2,31,5r0,12r-79,0r0,-12v6,-2,17,-4,24,-5r85,-226r25,0r85,226v7,1,18,3,24,5r0,12xm172,-82r-50,-137v-13,49,-33,91,-49,137r99,0xm180,-287v-7,7,-20,14,-33,14v-31,0,-51,-30,-75,-5r-7,-15v31,-39,81,26,108,-9","w":247},"\u00d5":{"d":"237,-124v0,81,-51,127,-113,127v-72,0,-107,-49,-107,-122v0,-82,51,-127,113,-127v67,0,107,45,107,122xm212,-120v0,-68,-32,-106,-85,-106v-45,0,-85,36,-85,102v0,63,28,107,85,107v45,0,85,-37,85,-103xm182,-287v-7,7,-20,14,-33,14v-31,0,-51,-30,-75,-5r-7,-15v31,-39,81,26,108,-9","w":254},"\u0152":{"d":"276,0r-153,2v-75,0,-106,-52,-106,-122v0,-97,64,-123,158,-123r99,0r0,52r-15,0v-3,-13,-5,-25,-6,-34r-75,0r0,91r60,0v1,-10,3,-20,6,-28r13,0r0,73r-13,0v-3,-8,-5,-18,-6,-27r-60,0r0,97r77,0v1,-10,4,-22,6,-34r15,0r0,53xm155,-21r0,-203v-68,-12,-109,25,-113,101v-3,65,37,119,113,102","w":303},"\u0153":{"d":"230,-182v53,1,73,38,68,84r-122,0v-9,85,60,94,115,70r1,20v-43,19,-121,14,-129,-31v-13,24,-34,42,-69,42v-57,0,-78,-42,-78,-92v0,-50,30,-93,84,-93v28,0,54,12,66,39v12,-23,34,-39,64,-39xm274,-116v1,-29,-16,-49,-45,-49v-27,0,-46,20,-51,49r96,0xm154,-91v0,-46,-19,-73,-58,-73v-27,0,-57,19,-57,73v0,42,17,76,59,76v30,0,56,-23,56,-76","w":317},"\u2013":{"d":"180,-94r-180,0r0,-20r180,0r0,20","w":180},"\u2014":{"d":"360,-94r-360,0r0,-20r360,0r0,20","w":360},"\u201c":{"d":"127,-259v-22,24,-22,41,-16,49v8,11,0,24,-12,24v-21,0,-30,-37,18,-83xm66,-259v-22,24,-22,41,-16,49v8,11,1,24,-11,24v-21,0,-31,-37,17,-83","w":142},"\u201d":{"d":"26,-184r-11,-9v22,-24,22,-41,16,-49v-8,-10,0,-24,12,-24v21,0,31,37,-17,82xm86,-184r-10,-9v22,-24,22,-41,16,-49v-8,-10,0,-24,12,-24v21,0,30,37,-18,82","w":142},"\u2018":{"d":"56,-269r10,10v-22,24,-22,41,-16,49v8,11,1,24,-11,24v-21,0,-31,-37,17,-83","w":81},"\u2019":{"d":"26,-184r-11,-9v22,-24,22,-41,16,-49v-8,-10,0,-24,12,-24v21,0,31,37,-17,82","w":81},"\u00f7":{"d":"121,-165v0,10,-8,17,-18,17v-9,0,-17,-7,-17,-17v0,-9,8,-18,17,-18v10,0,18,9,18,18xm190,-83r-174,0r0,-20r174,0r0,20xm121,-20v0,9,-8,17,-18,17v-9,0,-17,-8,-17,-17v0,-10,8,-17,17,-17v10,0,18,7,18,17","w":207},"\u25ca":{"d":"206,-120r-87,123r-14,0r-90,-126r88,-123r13,0xm181,-118r-72,-103r-69,97r73,101","w":221},"\u00ff":{"d":"199,-167v-8,2,-17,4,-26,5r-68,182v-25,63,-39,79,-97,71r3,-21v48,20,63,-26,80,-70r-5,0r-59,-162v-9,-1,-17,-3,-25,-5r0,-12r79,0r0,12v-8,3,-18,4,-28,5r48,139r48,-139v-10,-1,-19,-2,-27,-5r0,-12r77,0r0,12xm147,-237v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm81,-237v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15","w":200},"\u0178":{"d":"208,-231v-6,2,-17,4,-24,5r-68,138r0,71v11,1,22,2,31,5r0,12r-86,0r0,-12v9,-3,21,-4,32,-5r0,-71r-67,-138v-7,-1,-18,-3,-24,-5r0,-12r80,0r0,12v-9,3,-20,4,-30,5r53,118r55,-118v-10,-1,-21,-2,-30,-5r0,-12r78,0r0,12xm153,-285v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm87,-285v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15","w":209},"\u2044":{"d":"173,-261r-157,303r-18,-9r158,-303","w":146},"\u00a4":{"d":"166,19v0,28,-13,74,-89,74v-20,0,-37,-2,-51,-6r2,-24v55,21,115,13,115,-69v0,-14,0,-25,2,-35v-10,27,-34,44,-62,44v-42,0,-66,-28,-66,-84v0,-89,67,-113,149,-95r0,195xm86,-15v62,0,59,-78,57,-144v-60,-13,-102,2,-102,75v0,42,14,69,45,69","w":200},"\u2039":{"d":"83,-139r-37,51r37,49r-17,12r-43,-61r44,-62","w":113},"\u203a":{"d":"90,-89r-44,62r-16,-12r37,-50r-37,-49r17,-12","w":113},"\ufb01":{"d":"211,0r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144r-90,0r0,144v10,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144r-41,0r0,-18r41,0v-10,-75,62,-100,129,-79r-5,19v-51,-17,-113,-4,-101,60r113,0r0,162v10,1,22,2,31,5r0,12","w":218},"\ufb02":{"d":"211,0r-85,0r0,-12v9,-3,20,-4,31,-5r0,-226v-53,-10,-102,1,-90,64r55,0r0,18r-55,0r0,144v10,1,22,2,31,5r0,12r-85,0r0,-12v9,-3,20,-4,31,-5r0,-144r-41,0r0,-18r41,0v-15,-80,60,-96,136,-81r0,243v10,1,22,2,31,5r0,12","w":218},"\u2021":{"d":"150,-69r-58,0r6,69r-29,0r6,-69r-59,0r0,-18r59,0v-6,-31,-6,-63,0,-94r-59,0r0,-18r59,0r-6,-64r29,0r-6,64r58,0r0,18r-58,0v6,31,6,63,0,94r58,0r0,18","w":166},"\u00b7":{"d":"38,-122v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18v0,-10,9,-18,19,-18","w":75},"\u201a":{"d":"26,51r-11,-9v22,-24,22,-42,16,-50v-8,-10,0,-24,12,-24v21,0,31,37,-17,83","w":81},"\u201e":{"d":"26,51r-11,-9v22,-24,22,-42,16,-50v-8,-10,0,-24,12,-24v21,0,31,37,-17,83xm86,51r-10,-9v22,-24,22,-42,16,-50v-8,-10,0,-24,12,-24v21,0,30,37,-18,83","w":142},"\u2030":{"d":"117,-192v0,37,-24,60,-53,60v-28,0,-47,-15,-47,-55v0,-73,102,-86,100,-5xm96,-190v0,-27,-7,-39,-29,-39v-18,0,-29,16,-29,39v0,26,7,41,28,41v20,0,30,-16,30,-41xm226,-57v0,37,-23,61,-52,61v-28,0,-48,-15,-48,-55v0,-72,100,-86,100,-6xm204,-54v0,-27,-6,-40,-28,-40v-18,0,-29,17,-29,40v0,25,7,40,28,40v20,0,29,-15,29,-40xm343,-57v0,37,-24,61,-53,61v-28,0,-47,-15,-47,-55v0,-37,23,-60,51,-60v28,0,49,14,49,54xm321,-54v0,-27,-7,-40,-29,-40v-18,0,-28,17,-28,40v0,25,7,40,28,40v20,0,29,-15,29,-40xm212,-239r-166,247r-16,-12r167,-247","w":365},"\u00c2":{"d":"245,0r-80,0r0,-12v9,-3,19,-4,30,-5r-17,-46r-111,0r-17,46v10,1,22,2,31,5r0,12r-79,0r0,-12v6,-2,17,-4,24,-5r85,-226r25,0r85,226v7,1,18,3,24,5r0,12xm172,-82r-50,-137v-13,49,-33,91,-49,137r99,0xm170,-279r-13,14r-36,-26r-34,26r-11,-13r46,-35","w":247},"\u00ca":{"d":"163,0r-151,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r150,0r0,52r-14,0v-2,-13,-5,-25,-6,-34r-76,0r0,91r60,0v1,-10,3,-20,6,-28r13,0r0,73r-13,0v-3,-8,-5,-18,-6,-27r-60,0r0,97r77,0v1,-10,3,-22,5,-34r15,0r0,53xm142,-279r-13,14r-36,-26r-34,26r-11,-13r46,-35","w":189},"\u00c1":{"d":"245,0r-80,0r0,-12v9,-3,19,-4,30,-5r-17,-46r-111,0r-17,46v10,1,22,2,31,5r0,12r-79,0r0,-12v6,-2,17,-4,24,-5r85,-226r25,0r85,226v7,1,18,3,24,5r0,12xm172,-82r-50,-137v-13,49,-33,91,-49,137r99,0xm164,-301r-46,37r-11,-12r43,-40","w":247},"\u00cb":{"d":"163,0r-151,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r150,0r0,52r-14,0v-2,-13,-5,-25,-6,-34r-76,0r0,91r60,0v1,-10,3,-20,6,-28r13,0r0,73r-13,0v-3,-8,-5,-18,-6,-27r-60,0r0,97r77,0v1,-10,3,-22,5,-34r15,0r0,53xm143,-285v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm77,-285v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15","w":189},"\u00c8":{"d":"163,0r-151,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r150,0r0,52r-14,0v-2,-13,-5,-25,-6,-34r-76,0r0,91r60,0v1,-10,3,-20,6,-28r13,0r0,73r-13,0v-3,-8,-5,-18,-6,-27r-60,0r0,97r77,0v1,-10,3,-22,5,-34r15,0r0,53xm112,-276r-12,12r-46,-37r14,-15","w":189},"\u00cd":{"d":"97,-301r-46,37r-11,-13r43,-39xm97,0r-86,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r86,0r0,12v-9,3,-20,4,-31,5r0,209v11,1,22,2,31,5r0,12","w":108},"\u00ce":{"d":"101,-279r-12,13r-36,-25r-35,25r-10,-12r46,-35xm97,0r-86,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r86,0r0,12v-9,3,-20,4,-31,5r0,209v11,1,22,2,31,5r0,12","w":108},"\u00cf":{"d":"101,-285v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-15,16,-15v9,0,15,6,15,15xm35,-285v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-15,15,-15v9,0,16,6,16,15xm97,0r-86,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r86,0r0,12v-9,3,-20,4,-31,5r0,209v11,1,22,2,31,5r0,12","w":108},"\u00cc":{"d":"65,-277r-11,13r-46,-37r14,-15xm97,0r-86,0r0,-12v9,-3,20,-4,31,-5r0,-209v-11,-1,-22,-2,-31,-5r0,-12r86,0r0,12v-9,3,-20,4,-31,5r0,209v11,1,22,2,31,5r0,12","w":108},"\u00d3":{"d":"237,-124v0,81,-51,127,-113,127v-72,0,-107,-49,-107,-122v0,-82,51,-127,113,-127v67,0,107,45,107,122xm212,-120v0,-68,-32,-106,-85,-106v-45,0,-85,36,-85,102v0,63,28,107,85,107v45,0,85,-37,85,-103xm170,-301r-46,37r-11,-12r43,-40","w":254},"\u00d4":{"d":"237,-124v0,81,-51,127,-113,127v-72,0,-107,-49,-107,-122v0,-82,51,-127,113,-127v67,0,107,45,107,122xm212,-120v0,-68,-32,-106,-85,-106v-45,0,-85,36,-85,102v0,63,28,107,85,107v45,0,85,-37,85,-103xm176,-279r-13,14r-36,-26r-34,26r-11,-13r46,-35","w":254},"\u00d2":{"d":"237,-124v0,81,-51,127,-113,127v-72,0,-107,-49,-107,-122v0,-82,51,-127,113,-127v67,0,107,45,107,122xm212,-120v0,-68,-32,-106,-85,-106v-45,0,-85,36,-85,102v0,63,28,107,85,107v45,0,85,-37,85,-103xm146,-276r-12,12r-46,-37r14,-15","w":254},"\u00da":{"d":"247,-231v-8,2,-17,4,-26,5r0,134v0,62,-32,95,-95,95v-75,0,-88,-42,-88,-83r0,-146v-9,-1,-18,-3,-26,-5r0,-12r79,0r0,12v-9,3,-20,4,-30,5r0,144v0,36,13,66,68,66v46,0,69,-20,69,-74r0,-136v-10,-1,-21,-2,-30,-5r0,-12r79,0r0,12xm173,-301r-46,37r-11,-12r43,-40","w":258},"\u00db":{"d":"247,-231v-8,2,-17,4,-26,5r0,134v0,62,-32,95,-95,95v-75,0,-88,-42,-88,-83r0,-146v-9,-1,-18,-3,-26,-5r0,-12r79,0r0,12v-9,3,-20,4,-30,5r0,144v0,36,13,66,68,66v46,0,69,-20,69,-74r0,-136v-10,-1,-21,-2,-30,-5r0,-12r79,0r0,12xm177,-279r-13,14r-36,-26r-34,26r-11,-13r46,-35","w":258},"\u00d9":{"d":"247,-231v-8,2,-17,4,-26,5r0,134v0,62,-32,95,-95,95v-75,0,-88,-42,-88,-83r0,-146v-9,-1,-18,-3,-26,-5r0,-12r79,0r0,12v-9,3,-20,4,-30,5r0,144v0,36,13,66,68,66v46,0,69,-20,69,-74r0,-136v-10,-1,-21,-2,-30,-5r0,-12r79,0r0,12xm144,-276r-12,12r-46,-37r14,-15","w":258},"\u0131":{"d":"96,0r-84,0r0,-12v9,-3,20,-4,31,-5r0,-144v-9,-1,-21,-2,-31,-3r0,-12v15,-2,37,-4,54,-3r0,162v11,1,21,2,30,5r0,12","w":104},"\u02c6":{"d":"126,-225r-13,14r-36,-26r-34,26r-11,-13r46,-35","w":157},"\u02dc":{"d":"154,-233v-7,7,-20,14,-33,14v-31,0,-51,-30,-75,-5r-7,-15v31,-39,81,26,108,-9","w":185},"\u00af":{"d":"114,-226r-80,0r0,-18r80,0r0,18","w":149},"\u02d8":{"d":"117,-258v0,23,-12,44,-42,44v-29,0,-42,-22,-42,-44r17,0v0,13,8,26,25,26v16,0,25,-10,25,-26r17,0","w":151},"\u02d9":{"d":"67,-237v0,9,-8,17,-17,17v-9,0,-16,-8,-16,-17v0,-9,7,-16,16,-16v9,0,17,7,17,16","w":101},"\u02da":{"d":"108,-236v0,19,-16,36,-37,36v-21,0,-37,-15,-37,-36v0,-21,17,-37,37,-37v21,0,37,16,37,37xm92,-236v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21","w":142},"\u00b8":{"d":"101,18v10,21,7,44,-29,67r-10,-10v24,-18,26,-38,16,-57r23,0","w":144},"\u02dd":{"d":"148,-247r-48,37r-12,-12r45,-41xm85,-249r-41,39r-12,-11r38,-43","w":175},"\u02db":{"d":"77,76v-26,6,-58,-3,-53,-27v0,-15,8,-34,17,-49r17,0v-7,13,-14,32,-14,43v0,14,5,22,33,17r0,16","w":95},"\u02c7":{"d":"122,-246r-45,34r-48,-33r12,-14r36,26r35,-26","w":157}}});Cufon.registerFont({"w":192,"face":{"font-family":"www.centerforleadershipstudies.com","font-weight":200,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-67 -316 374 93.097","underline-thickness":"7.2","underline-position":"-54","stemh":"19","stemv":"24","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":78},"!":{"d":"97,-252r-41,197r-18,0r33,-197r26,0xm56,-14v0,10,-7,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-17,17,-17v10,0,17,8,17,17","w":105},"\"":{"d":"130,-264r-14,77r-16,0r4,-77r26,0xm75,-264r-13,77r-17,0r4,-77r26,0","w":121},"#":{"d":"214,-72r-55,0r-22,72r-19,0r22,-72r-58,0r-21,72r-19,0r22,-72r-55,0r3,-16r57,0r22,-76r-55,0r3,-16r56,0r19,-63r18,0r-18,63r58,0r18,-63r19,0r-19,63r54,0r-3,16r-56,0r-22,76r54,0xm145,-88r22,-76r-58,0r-22,76r58,0","w":237},"$":{"d":"159,-220r-10,49r-13,0v0,-12,1,-23,2,-32v-38,-11,-77,8,-77,39v0,45,78,39,78,97v0,30,-23,63,-69,69r-9,49r-18,0r9,-48v-15,0,-30,-3,-43,-7r10,-50r14,0v0,12,-1,23,-2,33v38,14,84,-9,84,-40v0,-50,-77,-41,-77,-98v0,-32,24,-59,66,-64r7,-39r18,0r-7,38v14,0,27,2,37,4","w":167},"%":{"d":"139,-198v0,33,-21,67,-62,67v-30,0,-47,-15,-47,-49v0,-40,27,-67,60,-67v27,0,49,13,49,49xm245,-239r-192,247r-15,-12r192,-247xm257,-64v0,33,-22,68,-63,68v-29,0,-47,-15,-47,-49v0,-40,28,-67,61,-67v27,0,49,12,49,48xm81,-148v42,1,53,-82,7,-81v-39,-3,-56,84,-7,81xm198,-14v42,1,54,-82,7,-81v-23,0,-36,24,-36,48v0,23,9,33,29,33","w":278},"&":{"d":"283,-159r-3,12v-9,3,-21,4,-31,5v-8,39,-25,70,-48,93v12,12,24,22,34,31v11,1,20,4,28,6r-3,12r-39,0v-13,-11,-24,-21,-37,-33v-31,25,-68,36,-101,36v-46,0,-66,-26,-66,-55v0,-46,34,-72,69,-96v-40,-49,-26,-118,43,-118v33,0,47,17,47,39v0,34,-30,58,-62,81v19,28,46,57,73,84v17,-17,33,-45,40,-80v-10,-1,-21,-3,-29,-5r3,-12r82,0xm153,-223v0,-15,-9,-25,-27,-25v-49,0,-48,52,-22,87v26,-18,49,-36,49,-62xm170,-47v-24,-25,-53,-56,-74,-86v-29,20,-55,41,-55,74v0,59,91,50,129,12","w":290},"'":{"d":"78,-264r-14,77r-16,0r5,-77r25,0","w":66},"(":{"d":"135,-276v-73,90,-115,218,-66,345r-21,0v-50,-126,-10,-253,65,-345r22,0","w":106},")":{"d":"66,-276v49,126,16,246,-64,345r-23,0v81,-101,113,-217,67,-345r20,0","w":106},"*":{"d":"139,-229r-40,17r32,19r-10,16r-30,-24r-5,42r-18,-3r10,-39r-34,23r-8,-16r39,-17r-33,-19r10,-15r30,24r6,-43r18,3r-11,39r36,-22","w":129},"+":{"d":"192,-83r-81,0r0,83r-21,0r0,-83r-80,0r0,-19r80,0r0,-83r21,0r0,83r81,0r0,19","w":201},",":{"d":"22,-32v22,0,29,40,-29,82r-8,-10v26,-22,29,-39,24,-50v-5,-10,1,-22,13,-22","w":73},"-":{"d":"99,-80r-82,0r0,-19r82,0r0,19","w":117},".":{"d":"40,-15v0,10,-8,18,-18,18v-9,0,-17,-8,-17,-17v0,-22,35,-23,35,-1","w":73},"\/":{"d":"163,-243r-137,243r-22,0r137,-243r22,0","w":146},"0":{"d":"201,-118v0,71,-53,121,-113,121v-46,0,-69,-25,-69,-67v0,-72,49,-124,111,-124v46,0,71,28,71,70xm177,-114v0,-32,-16,-55,-52,-55v-49,0,-83,47,-83,100v0,31,16,53,51,53v45,0,84,-44,84,-98","w":217},"1":{"d":"100,-13r-2,13r-96,0r2,-13v13,-3,28,-5,41,-5r28,-145r-47,19r0,-22v25,-6,41,-21,74,-19r-32,167v10,1,22,2,32,5","w":127},"2":{"d":"149,-142v5,52,-75,91,-111,123v13,-1,57,-2,98,-2r-4,21r-129,0r3,-18v34,-30,123,-77,119,-120v6,-27,-42,-39,-68,-25v-3,10,-6,21,-11,33r-13,0r9,-48v39,-19,112,-10,107,36","w":169},"3":{"d":"145,-142v-3,36,-22,60,-58,73v21,2,41,22,41,49v1,60,-68,107,-138,89r5,-21v53,18,108,-17,108,-65v0,-33,-30,-45,-78,-40r4,-18v54,0,92,-24,92,-64v0,-31,-41,-35,-65,-24v-3,11,-7,22,-11,33r-13,0r9,-48v41,-21,107,-9,104,36","w":164},"4":{"d":"113,54v10,1,22,2,30,5r-2,12r-84,0r3,-12v10,-3,21,-4,31,-5r11,-54r-110,0r0,-19r135,-166r32,0r-31,164r43,0r-4,21r-43,0xm106,-21r26,-142r-117,143v24,-1,76,-1,91,-1","w":190},"5":{"d":"154,-185r-4,22r-83,0r-14,73v48,3,76,30,76,69v-1,67,-66,103,-135,92r4,-22v54,12,107,-14,107,-65v0,-28,-18,-54,-77,-54r22,-115r104,0","w":163},"6":{"d":"195,-254r-4,20v-75,-10,-113,44,-134,111v14,-22,40,-35,68,-35v44,0,62,29,62,58v0,63,-47,103,-98,103v-45,0,-62,-29,-62,-69v-1,-70,44,-200,168,-188xm162,-96v0,-23,-13,-43,-43,-43v-37,0,-69,35,-69,76v0,17,7,48,41,48v40,0,71,-31,71,-81","w":206},"7":{"d":"29,-185r141,0r-4,19v-46,69,-87,149,-122,237r-28,0v40,-92,82,-169,124,-235v-7,1,-81,1,-97,1v-3,11,-7,21,-11,31r-14,0","w":162},"8":{"d":"186,-207v0,36,-29,57,-63,76v22,15,43,34,43,63v0,42,-39,71,-86,71v-45,0,-63,-19,-63,-50v0,-40,33,-64,68,-83v-21,-14,-39,-31,-39,-59v0,-38,35,-66,81,-66v39,0,59,19,59,48xm163,-203v0,-18,-12,-34,-39,-34v-33,0,-54,23,-54,47v0,21,18,34,37,48v31,-17,56,-34,56,-61xm141,-63v0,-26,-19,-40,-40,-55v-32,17,-60,37,-60,69v0,16,11,33,43,33v30,0,57,-21,57,-47","w":193},"9":{"d":"181,-118v0,68,-48,208,-177,189r4,-21v78,14,117,-40,142,-109v-30,49,-129,43,-129,-25v0,-54,38,-104,95,-104v46,0,65,28,65,70xm157,-121v0,-27,-14,-48,-44,-48v-39,0,-68,39,-68,82v0,24,16,40,41,40v37,0,71,-25,71,-74","w":205},":":{"d":"67,-122v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18v9,0,17,8,17,18xm46,-15v0,10,-8,18,-17,18v-10,0,-17,-8,-17,-17v0,-10,7,-18,17,-18v10,0,17,8,17,17","w":86},";":{"d":"67,-122v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18v9,0,17,8,17,18xm30,-32v23,0,29,40,-29,82r-9,-10v27,-22,31,-39,25,-50v-5,-10,1,-22,13,-22","w":86},"<":{"d":"23,-90r113,-102r15,15r-99,87r99,84r-15,15","w":179},"=":{"d":"186,-110r-158,0r0,-19r158,0r0,19xm186,-54r-158,0r0,-19r158,0r0,19","w":214},">":{"d":"156,-93r-113,102r-15,-15r99,-87r-99,-83r15,-16","w":179},"?":{"d":"137,-190v0,58,-85,62,-75,135r-23,0v-10,-78,73,-86,73,-133v0,-23,-25,-40,-60,-45r7,-21v49,6,78,33,78,64xm63,-14v0,10,-7,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-17,17,-17v10,0,17,8,17,17","w":146},"@":{"d":"276,-141v0,54,-27,79,-66,79v-28,0,-38,-19,-34,-37v-5,17,-26,37,-49,37v-24,0,-31,-15,-31,-40v-2,-61,45,-98,110,-81v-3,31,-32,102,9,103v26,0,41,-18,41,-60v0,-46,-29,-90,-94,-90v-62,0,-111,49,-111,116v0,77,71,121,150,95r0,19v-90,27,-170,-23,-170,-112v0,-78,61,-136,132,-136v74,0,113,50,113,107xm183,-167v-42,-13,-65,27,-65,60v0,17,5,26,15,26v24,2,44,-46,50,-86","w":305},"A":{"d":"226,-12r-2,12r-78,0r2,-12v9,-3,20,-4,31,-5r-7,-46r-110,0r-25,46v9,1,20,2,28,5r-2,12r-78,0r2,-12v7,-2,18,-4,25,-5r126,-226r25,0r40,226v7,1,17,3,23,5xm168,-82r-22,-137r-74,137r96,0","w":244},"B":{"d":"201,-199v0,40,-31,61,-56,72v25,4,39,23,39,45v0,45,-35,83,-104,83r-85,-1r2,-12v9,-3,22,-4,33,-5r39,-209v-10,-1,-21,-2,-30,-5r3,-12v60,-1,159,-12,159,44xm177,-194v8,-30,-48,-34,-86,-31r-17,90v55,4,103,-12,103,-59xm161,-80v5,-33,-46,-40,-90,-37r-18,97v52,11,115,-16,108,-60","w":206},"C":{"d":"214,-238r-10,52r-14,0v0,-13,0,-24,1,-34v-93,-30,-145,52,-145,137v0,38,15,66,67,66v22,0,43,-6,61,-14r0,21v-20,8,-43,13,-67,13v-67,0,-86,-38,-86,-83v0,-107,76,-193,193,-158","w":205},"D":{"d":"242,-156v0,79,-49,157,-160,157r-87,-1r2,-12v9,-3,21,-4,32,-5r39,-209v-10,-1,-20,-2,-29,-5r2,-12r96,-1v79,0,105,38,105,88xm219,-153v0,-41,-19,-72,-85,-72v-15,0,-33,1,-43,1r-39,203v106,20,167,-56,167,-132","w":250},"E":{"d":"189,-243r-10,52r-15,0v0,-13,0,-25,1,-34r-75,0r-17,91r60,0v6,-12,3,-32,24,-28r-14,73r-13,0v-1,-8,-2,-17,-1,-27r-59,0r-19,97r75,0v3,-10,8,-22,13,-34r14,0r-10,53r-149,0r3,-12v9,-3,21,-4,32,-5r39,-209v-10,-1,-21,-2,-30,-5r3,-12r148,0","w":187},"F":{"d":"189,-243r-10,52r-14,0v0,-13,0,-24,1,-34r-75,0r-18,93r61,0v6,-12,3,-32,24,-28r-14,74r-13,0v-1,-8,-1,-18,-1,-28r-61,0r-18,97v10,1,21,2,30,5r-3,12r-84,0r3,-12v10,-3,21,-4,31,-5r40,-209v-10,-1,-20,-2,-29,-5r2,-12r148,0","w":174},"G":{"d":"242,-121r-2,12v-8,2,-18,4,-27,5r-18,94v-26,9,-55,13,-78,13v-66,0,-98,-39,-98,-93v0,-116,103,-181,214,-147r-10,51r-14,0v0,-13,0,-24,1,-34v-91,-29,-166,38,-166,129v0,36,20,74,77,74v21,0,38,-3,55,-8r14,-79v-10,-1,-20,-3,-29,-5r2,-12r79,0","w":245},"H":{"d":"283,-243r-2,12v-10,3,-21,4,-32,5r-39,209v10,1,21,2,30,5r-3,12r-83,0r2,-12v9,-3,21,-4,31,-5r19,-100r-136,0r-19,100v10,1,20,2,29,5r-2,12r-84,0r3,-12v10,-3,21,-4,31,-5r40,-209v-10,-1,-20,-2,-29,-5r2,-12r83,0r-2,12v-9,3,-21,4,-31,5r-17,90r136,0r17,-90v-10,-1,-21,-2,-29,-5r2,-12r83,0","w":266},"I":{"d":"125,-243r-3,12v-10,3,-20,4,-31,5r-40,209v10,1,21,2,30,5r-3,12r-84,0r3,-12v10,-3,21,-4,31,-5r40,-209v-10,-1,-20,-2,-29,-5r2,-12r84,0","w":107},"J":{"d":"137,-243r-3,12v-8,2,-18,4,-27,5r-31,166v-7,50,-42,70,-92,59r4,-21v32,11,57,5,65,-38r32,-166v-10,-1,-21,-2,-30,-5r3,-12r79,0","w":117},"K":{"d":"243,-243r-2,12v-8,2,-17,4,-26,5r-116,103r78,106v9,1,19,3,27,5r-2,12r-82,0r2,-12v8,-2,17,-4,26,-5r-77,-106r-20,106v8,1,19,2,28,5r-3,12r-82,0r3,-12v10,-3,21,-4,31,-5r40,-209v-10,-1,-20,-2,-29,-5r2,-12r81,0r-2,12v-9,3,-20,4,-29,5r-19,101r113,-101v-9,-1,-19,-2,-27,-5r2,-12r83,0","w":227},"L":{"d":"150,-54r-10,54r-146,0r3,-12v10,-3,21,-4,31,-5r40,-209v-10,-1,-20,-2,-29,-5r2,-12r84,0r-3,12v-10,3,-20,4,-31,5r-40,207r72,0v3,-10,8,-23,13,-35r14,0","w":159},"M":{"d":"325,-243r-2,12v-10,3,-21,4,-32,5r-10,209v7,1,17,3,23,5r-2,12r-77,0r3,-12v9,-3,20,-4,30,-5r11,-202r-113,219r-27,0r-30,-219r-61,202v10,1,20,2,28,5r-2,12r-77,0r2,-12v7,-2,18,-4,25,-5r68,-209v-10,-1,-20,-2,-29,-5r2,-12r62,0r30,219v33,-75,76,-146,112,-219r66,0","w":322},"N":{"d":"279,-243r-3,12v-8,2,-18,4,-27,5r-42,226r-28,0r-73,-168v-8,-18,-14,-35,-19,-51r-36,202v10,1,21,2,29,5r-2,12r-83,0r2,-12v10,-3,22,-4,32,-5r39,-209v-10,-1,-20,-2,-29,-5r2,-12r58,0r93,218r35,-201v-10,-1,-20,-2,-29,-5r3,-12r78,0","w":261},"O":{"d":"242,-158v0,92,-62,161,-138,161v-57,0,-85,-32,-85,-88v0,-89,60,-161,138,-161v55,0,85,33,85,88xm217,-156v0,-44,-20,-70,-64,-70v-62,0,-109,62,-109,138v0,43,22,71,63,71v60,0,110,-60,110,-139","w":249},"P":{"d":"195,-188v-2,62,-61,97,-128,89r-16,82v10,1,21,2,30,5r-2,12r-84,0r2,-12v10,-3,22,-4,32,-5r39,-209v-10,-1,-20,-2,-29,-5r2,-12r84,-1v48,0,70,23,70,56xm171,-184v3,-35,-41,-46,-80,-40r-20,105v50,10,96,-18,100,-65","w":191},"Q":{"d":"243,-158v0,92,-62,161,-139,161v-57,0,-85,-32,-85,-88v0,-89,60,-161,138,-161v55,0,86,33,86,88xm224,41r-4,20v-59,8,-80,-20,-128,-13r3,-20v55,-7,75,20,129,13xm217,-156v0,-44,-20,-70,-64,-70v-62,0,-109,62,-109,138v0,43,22,71,63,71v59,0,110,-60,110,-139","w":249},"R":{"d":"192,-193v0,48,-44,78,-96,78r51,98v9,1,19,3,27,5r-3,12r-43,0r-56,-115r-3,0r-18,98v10,1,21,2,29,5r-2,12r-83,0r2,-12v10,-3,22,-4,32,-5r39,-209v-10,-1,-20,-2,-29,-5r2,-12v62,-2,151,-11,151,50xm168,-190v6,-34,-41,-40,-77,-35r-18,92v46,6,97,-10,95,-57","w":200},"S":{"d":"157,-243r-10,51r-14,0v0,-13,1,-24,2,-33v-40,-10,-75,17,-75,44v0,49,78,51,78,108v0,55,-67,90,-130,71r9,-52r15,0v0,13,-1,24,-2,34v43,12,84,-13,84,-50v0,-47,-77,-47,-77,-106v0,-47,57,-82,120,-67","w":162},"T":{"d":"213,-243r-10,55r-14,0v1,-15,0,-27,1,-36r-58,0r-39,207v10,1,21,2,30,5r-2,12r-84,0r2,-12v10,-3,21,-4,32,-5r39,-207r-58,0r-12,36r-14,0r10,-55r177,0","w":191},"U":{"d":"272,-243r-3,12v-8,2,-17,4,-26,5r-26,137v-12,63,-49,92,-109,92v-70,0,-81,-37,-72,-84r27,-145v-9,-1,-18,-3,-25,-5r2,-12r79,0r-3,12v-9,3,-20,4,-30,5r-28,144v-8,43,5,66,54,66v45,0,72,-19,83,-76r25,-134v-10,-1,-20,-2,-29,-5r3,-12r78,0","w":254},"V":{"d":"268,-243r-2,12v-7,2,-17,4,-24,5r-126,226r-25,0r-37,-226v-7,-1,-17,-3,-23,-5r3,-12r78,0r-3,12v-9,3,-21,4,-31,5r30,202r109,-202v-10,-1,-21,-2,-29,-5r2,-12r78,0","w":241},"W":{"d":"374,-243r-2,12v-6,2,-18,4,-25,5r-101,226r-29,0r-20,-221v-30,76,-68,147,-101,221r-29,0r-16,-226v-7,-1,-16,-3,-22,-5r2,-12r78,0r-2,12v-10,3,-20,4,-32,5r11,204r18,-44r83,-177r29,0r21,221v25,-71,59,-136,87,-204v-9,-1,-19,-2,-28,-5r2,-12r76,0","w":347},"X":{"d":"253,-243r-3,12v-9,2,-18,4,-28,5r-86,101r53,108v9,1,17,3,25,5r-3,12r-82,0r2,-12v9,-3,20,-4,30,-5r-40,-91r-75,91v9,1,19,2,27,5r-2,12r-83,0r3,-12v9,-2,18,-4,28,-5r92,-110r-48,-99v-9,-1,-18,-3,-26,-5r3,-12r83,0r-3,12v-9,3,-21,4,-31,5r38,83r68,-83v-10,-1,-19,-2,-27,-5r2,-12r83,0","w":236},"Y":{"d":"235,-243r-2,12v-7,2,-18,4,-25,5r-93,138r-13,71v10,1,20,2,29,5r-2,12r-84,0r2,-12v9,-3,21,-4,32,-5r13,-71r-39,-138v-7,-1,-17,-3,-23,-5r2,-12r78,0r-2,12v-9,3,-19,4,-31,5r30,118r76,-118v-9,-1,-19,-2,-27,-5r2,-12r77,0","w":211},"Z":{"d":"153,0r-154,0r3,-16r167,-208r-104,1v-3,9,-6,21,-11,34r-15,0r10,-54r150,0r-4,17r-165,206r108,-1v3,-10,7,-21,12,-34r14,0","w":186},"[":{"d":"134,-276r-4,17r-43,0r-59,312r43,0r-3,17r-64,0r66,-346r64,0","w":111},"\\":{"d":"109,0r-20,0r-44,-243r19,0","w":143},"]":{"d":"114,-276r-66,346r-64,0r3,-17r43,0r60,-312r-44,0r4,-17r64,0","w":111},"^":{"d":"168,-134r-18,9r-54,-100r-54,100r-16,-9r61,-109r20,0"},"_":{"d":"180,91r-180,0r0,-18r180,0r0,18","w":180},"`":{"d":"110,-222r-12,12r-43,-37r16,-15","w":129},"a":{"d":"176,-176r-31,158v8,1,20,2,30,3r-2,12v-15,2,-37,4,-54,3v2,-16,15,-47,23,-84v-12,28,-40,87,-89,87v-25,0,-39,-16,-39,-53v0,-65,33,-131,111,-131v19,0,36,2,51,5xm150,-159v-73,-22,-113,46,-113,105v0,27,8,38,21,38v44,-3,85,-88,92,-143","w":200},"b":{"d":"183,-129v0,65,-33,131,-111,131v-20,0,-37,-2,-51,-5r46,-241v-8,-1,-20,-3,-30,-4r2,-12v15,-2,38,-4,54,-3v-14,69,-13,92,-38,167v19,-47,49,-86,89,-86v25,0,39,16,39,53xm159,-125v0,-27,-8,-38,-21,-38v-45,3,-84,90,-92,144v74,23,113,-47,113,-106","w":196},"c":{"d":"155,-175r-9,49r-13,0v0,-12,0,-23,1,-33v-61,-21,-97,46,-96,99v0,21,6,43,42,43v16,0,33,-5,46,-11r-1,20v-13,5,-31,10,-51,10v-46,0,-60,-25,-60,-57v-1,-83,57,-147,141,-120","w":151},"d":{"d":"192,-263r-47,245v8,1,20,2,30,3r-2,12v-15,2,-36,4,-53,3v2,-16,14,-47,22,-84v-12,28,-40,87,-89,87v-25,0,-39,-16,-39,-53v-2,-74,46,-146,140,-129r12,-65v-8,-1,-20,-3,-30,-4r3,-12v14,-2,37,-4,53,-3xm150,-159v-73,-22,-113,46,-113,105v0,27,8,38,21,38v44,-3,85,-88,92,-143","w":200},"e":{"d":"160,-143v0,35,-38,57,-119,60v-5,36,-3,67,41,67v17,0,34,-5,49,-11r0,19v-41,17,-116,22,-116,-45v0,-66,34,-129,96,-129v33,0,49,18,49,39xm136,-141v0,-15,-11,-23,-28,-23v-32,0,-54,27,-63,62v65,-3,91,-16,91,-39","w":169},"f":{"d":"170,-261r-6,19v-49,-15,-81,8,-84,63r54,0r-3,18r-54,0r-33,172v-15,71,-47,90,-111,79r5,-20v49,11,71,1,83,-58r33,-173r-40,0r4,-18r40,0v7,-65,47,-99,112,-82","w":121},"g":{"d":"174,-176r-37,196v-8,39,-32,73,-98,73v-17,0,-35,-2,-47,-6r6,-24v55,19,107,13,118,-52v5,-32,10,-48,24,-93v-11,26,-40,85,-89,85v-25,0,-38,-16,-38,-53v0,-65,32,-131,110,-131v19,0,37,2,51,5xm149,-159v-73,-22,-113,46,-113,105v0,27,8,38,21,38v44,-3,85,-88,92,-143"},"h":{"d":"190,-15r-2,12v-14,2,-37,4,-53,3r22,-116v6,-32,0,-47,-19,-47v-49,0,-90,100,-95,163r-22,0r46,-244v-8,-1,-20,-3,-30,-4r2,-12v14,-2,37,-4,54,-3v-15,70,-12,87,-38,165v17,-42,48,-84,88,-84v32,0,45,22,37,61r-20,103v8,1,20,2,30,3","w":212},"i":{"d":"96,-231v2,22,-32,23,-32,3v-2,-22,32,-23,32,-3xm81,-15r-3,12v-15,2,-37,4,-53,3r30,-161v-8,-1,-19,-2,-29,-3r2,-12v14,-2,37,-4,54,-3r-31,161v8,1,20,2,30,3","w":102},"j":{"d":"97,-231v2,22,-32,23,-32,3v-2,-22,32,-23,32,-3xm82,-179r-39,207v-7,53,-39,73,-91,62r7,-21v38,11,53,1,63,-49r35,-181v-8,-1,-20,-2,-30,-3r2,-12v15,-2,37,-4,53,-3","w":98},"k":{"d":"172,-145v0,28,-24,51,-81,62r37,65v10,1,20,3,29,5r-3,13r-44,0r-50,-91r-17,91r-22,0r46,-244v-8,-1,-20,-3,-30,-4r2,-12v14,-2,37,-4,54,-3v-9,49,-15,85,-31,132v13,-30,34,-51,66,-51v26,0,44,15,44,37xm148,-140v0,-13,-9,-23,-24,-23v-33,0,-56,45,-62,68v62,-10,86,-23,86,-45","w":184},"l":{"d":"93,-263r-47,245v8,1,20,2,30,3r-2,12v-15,2,-37,4,-53,3r46,-244v-8,-1,-20,-3,-30,-4r2,-12v14,-2,37,-4,54,-3","w":98},"m":{"d":"303,-15r-2,12v-14,2,-37,4,-53,3r22,-116v6,-33,0,-47,-18,-47v-41,1,-87,96,-93,163r-23,0r23,-116v6,-33,0,-47,-18,-47v-41,2,-88,94,-93,163r-23,0r31,-161v-8,-1,-20,-2,-30,-3r2,-12v14,-2,37,-4,54,-3v-5,26,-17,56,-22,81v17,-42,48,-84,87,-84v48,0,35,48,25,84v17,-42,47,-84,86,-84v31,0,43,22,35,61r-19,103v8,1,19,2,29,3","w":324},"n":{"d":"194,-15r-2,12v-14,2,-37,4,-53,3r23,-116v6,-32,-1,-47,-20,-47v-51,0,-89,99,-95,163r-22,0r30,-161v-8,-1,-19,-2,-29,-3r2,-12v14,-2,37,-4,54,-3v-1,12,-12,39,-22,81v17,-42,48,-84,88,-84v32,0,45,22,37,61r-20,103v8,1,19,2,29,3","w":217},"o":{"d":"180,-118v0,74,-51,121,-103,121v-41,0,-62,-22,-62,-63v0,-69,42,-122,101,-122v44,0,64,26,64,64xm156,-116v0,-30,-14,-47,-44,-47v-44,0,-74,47,-74,99v0,31,13,48,44,48v38,0,74,-39,74,-100"},"p":{"d":"12,73r44,-234v-8,-1,-20,-2,-30,-3r2,-12v15,-2,38,-4,54,-3v-3,17,-8,37,-22,83v18,-47,49,-86,89,-86v25,0,39,16,39,53v2,74,-46,146,-140,129r-14,73v10,1,20,3,29,5r-2,12r-84,0r3,-12v10,-2,22,-4,32,-5xm165,-125v0,-27,-9,-38,-22,-38v-45,3,-83,90,-92,142v73,25,114,-45,114,-104","w":201},"q":{"d":"176,-176r-48,249v10,1,21,3,30,5r-3,12r-83,0r3,-12v9,-2,20,-4,31,-5v13,-64,14,-86,37,-157v-15,26,-40,88,-90,87v-25,0,-39,-16,-39,-53v0,-65,33,-131,111,-131v19,0,36,2,51,5xm150,-159v-73,-22,-113,46,-113,105v0,27,9,38,22,38v44,-3,84,-88,91,-143"},"r":{"d":"145,-181r-4,22v-52,-8,-87,95,-93,159r-23,0r31,-161v-8,-1,-20,-2,-30,-3r2,-12v14,-2,38,-4,54,-3v-1,16,-12,41,-20,75v21,-48,42,-86,83,-77","w":136},"s":{"d":"126,-179r-9,48r-13,0v0,-11,1,-22,2,-32v-29,-5,-56,7,-56,30v0,33,62,37,62,79v0,40,-52,66,-105,55r9,-50r13,0v0,11,0,21,-1,31v28,7,61,-5,61,-32v0,-32,-62,-35,-62,-80v0,-40,52,-61,99,-49","w":140},"t":{"d":"134,-179r-4,18r-53,0r-20,103v-13,47,16,42,45,37r-1,20v-43,11,-79,3,-68,-52r21,-108r-40,0r4,-18r40,0r11,-60r24,-6r-13,66r54,0","w":130},"u":{"d":"167,-161v-8,-1,-20,-2,-30,-3r2,-12v15,-2,37,-4,53,-3r-31,161v8,1,21,2,31,3r-3,12v-14,2,-37,4,-54,3v1,-12,12,-39,22,-81v-17,42,-48,84,-88,84v-32,0,-44,-22,-36,-61r19,-103v-8,-1,-20,-2,-30,-3r2,-12v14,-2,38,-4,54,-3r-22,116v-6,32,0,47,19,47v46,0,84,-91,92,-145","w":213},"v":{"d":"190,-178r-97,178r-24,0r-29,-161v-8,-1,-20,-2,-30,-3r3,-12v14,-2,34,-4,49,-3r23,154r85,-161","w":182},"w":{"d":"269,-178r-90,178r-27,0r-12,-107r-55,107r-26,0r-18,-161v-8,-1,-20,-2,-30,-3r2,-12v14,-2,34,-4,50,-3r14,156r58,-115r-2,-23v-8,-1,-20,-2,-30,-3r2,-12v13,-2,33,-4,49,-3r16,156r79,-163","w":260},"x":{"d":"190,-175r-81,86r31,71v9,1,24,4,32,6r-2,12r-48,0r-30,-72r-75,82r-16,-14r83,-87r-29,-71v-9,-1,-23,-3,-31,-5r2,-12r47,0r27,71r74,-80","w":194},"y":{"d":"-28,69v110,15,100,-127,70,-230v-8,-1,-20,-2,-30,-3r2,-12v14,-2,33,-4,49,-3v15,66,25,125,18,177v32,-54,58,-108,90,-184r21,7v-44,104,-91,196,-139,241v-27,26,-49,37,-85,28","w":185},"z":{"d":"151,-179r-3,16r-117,144r73,-1v3,-9,7,-20,11,-30r13,0r-10,50r-118,0r3,-16r118,-145r-70,1v-3,10,-7,20,-11,30r-13,0r10,-49r114,0","w":153},"{":{"d":"140,-276r-3,17v-69,-5,-27,142,-95,145v47,10,15,84,9,122v-5,33,0,45,25,45v-3,6,2,17,-9,17v-67,-3,-28,-91,-22,-136v4,-28,-3,-37,-31,-39r4,-19v52,3,46,-49,55,-89v8,-35,24,-66,67,-63","w":115},"|":{"d":"59,90r-18,0r0,-360r18,0r0,360","w":101},"}":{"d":"114,-124r-4,19v-60,-2,-48,67,-60,111v-12,43,-24,66,-66,64r3,-18v75,0,25,-159,99,-168v-41,-4,-19,-66,-14,-99v5,-33,1,-45,-24,-45v3,-5,-1,-16,7,-16v60,0,36,72,28,113v-6,28,3,37,31,39","w":115},"~":{"d":"190,-97v-13,12,-29,21,-47,21v-37,0,-51,-25,-79,-25v-15,0,-28,9,-36,16r-7,-16v10,-9,27,-19,46,-19v37,0,47,25,79,25v11,0,26,-9,36,-18","w":209},"\u00c4":{"d":"226,-12r-2,12r-78,0r2,-12v9,-3,20,-4,31,-5r-7,-46r-110,0r-25,46v9,1,20,2,28,5r-2,12r-78,0r2,-12v7,-2,18,-4,25,-5r126,-226r25,0r40,226v7,1,17,3,23,5xm168,-82r-22,-137r-74,137r96,0xm205,-286v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm138,-286v0,10,-6,17,-15,17v-9,0,-15,-7,-15,-15v0,-10,6,-16,15,-16v9,0,15,6,15,14","w":244},"\u00c5":{"d":"226,-12r-2,12r-78,0r2,-12v9,-3,20,-4,31,-5r-7,-46r-110,0r-25,46v9,1,20,2,28,5r-2,12r-78,0r2,-12v7,-2,18,-4,25,-5r126,-226r25,0r40,226v7,1,17,3,23,5xm168,-82r-22,-137r-74,137r96,0xm190,-277v-1,20,-19,37,-39,37v-21,0,-35,-15,-34,-36v1,-21,19,-37,39,-37v21,0,35,16,34,36xm174,-276v1,-12,-7,-21,-19,-21v-12,0,-21,9,-22,21v-1,12,7,21,19,21v11,0,21,-9,22,-21","w":244},"\u00c7":{"d":"214,-238r-10,52r-14,0v0,-13,0,-24,1,-34v-93,-30,-145,52,-145,137v0,38,15,66,67,66v22,0,43,-6,61,-14r0,21v-20,8,-43,13,-67,13v-67,0,-86,-38,-86,-83v0,-107,76,-193,193,-158xm114,18v5,21,-1,44,-41,67r-8,-11v27,-18,32,-37,26,-56r23,0","w":205},"\u00c9":{"d":"189,-243r-10,52r-15,0v0,-13,0,-25,1,-34r-75,0r-17,91r60,0v6,-12,3,-32,24,-28r-14,73r-13,0v-1,-8,-2,-17,-1,-27r-59,0r-19,97r75,0v3,-10,8,-22,13,-34r14,0r-10,53r-149,0r3,-12v9,-3,21,-4,32,-5r39,-209v-10,-1,-21,-2,-30,-5r3,-12r148,0xm176,-301r-49,37r-10,-12r47,-40","w":187},"\u00d1":{"d":"279,-243r-3,12v-8,2,-18,4,-27,5r-42,226r-28,0r-73,-168v-8,-18,-14,-35,-19,-51r-36,202v10,1,21,2,29,5r-2,12r-83,0r2,-12v10,-3,22,-4,32,-5r39,-209v-10,-1,-20,-2,-29,-5r2,-12r58,0r93,218r35,-201v-10,-1,-20,-2,-29,-5r3,-12r78,0xm226,-285v-31,34,-80,-24,-109,6r-6,-14v32,-39,78,25,109,-8","w":261},"\u00d6":{"d":"242,-158v0,92,-62,161,-138,161v-57,0,-85,-32,-85,-88v0,-89,60,-161,138,-161v55,0,85,33,85,88xm217,-156v0,-44,-20,-70,-64,-70v-62,0,-109,62,-109,138v0,43,22,71,63,71v60,0,110,-60,110,-139xm216,-286v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm149,-286v0,10,-6,17,-15,17v-9,0,-15,-7,-15,-15v0,-10,6,-16,15,-16v9,0,15,6,15,14","w":249},"\u00dc":{"d":"272,-243r-3,12v-8,2,-17,4,-26,5r-26,137v-12,63,-49,92,-109,92v-70,0,-81,-37,-72,-84r27,-145v-9,-1,-18,-3,-25,-5r2,-12r79,0r-3,12v-9,3,-20,4,-30,5r-28,144v-8,43,5,66,54,66v45,0,72,-19,83,-76r25,-134v-10,-1,-20,-2,-29,-5r3,-12r78,0xm210,-286v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm143,-286v0,10,-6,17,-15,17v-9,0,-15,-7,-15,-15v0,-10,6,-16,15,-16v9,0,15,6,15,14","w":254},"\u00e1":{"d":"176,-176r-31,158v8,1,20,2,30,3r-2,12v-15,2,-37,4,-54,3v2,-16,15,-47,23,-84v-12,28,-40,87,-89,87v-25,0,-39,-16,-39,-53v0,-65,33,-131,111,-131v19,0,36,2,51,5xm150,-159v-73,-22,-113,46,-113,105v0,27,8,38,21,38v44,-3,85,-88,92,-143xm178,-247r-49,37r-10,-12r47,-40","w":200},"\u00e0":{"d":"176,-176r-31,158v8,1,20,2,30,3r-2,12v-15,2,-37,4,-54,3v2,-16,15,-47,23,-84v-12,28,-40,87,-89,87v-25,0,-39,-16,-39,-53v0,-65,33,-131,111,-131v19,0,36,2,51,5xm150,-159v-73,-22,-113,46,-113,105v0,27,8,38,21,38v44,-3,85,-88,92,-143xm148,-222r-12,12r-43,-37r16,-15","w":200},"\u00e2":{"d":"176,-176r-31,158v8,1,20,2,30,3r-2,12v-15,2,-37,4,-54,3v2,-16,15,-47,23,-84v-12,28,-40,87,-89,87v-25,0,-39,-16,-39,-53v0,-65,33,-131,111,-131v19,0,36,2,51,5xm150,-159v-73,-22,-113,46,-113,105v0,27,8,38,21,38v44,-3,85,-88,92,-143xm178,-225r-13,13r-34,-25r-37,25r-10,-12r49,-35","w":200},"\u00e4":{"d":"176,-176r-31,158v8,1,20,2,30,3r-2,12v-15,2,-37,4,-54,3v2,-16,15,-47,23,-84v-12,28,-40,87,-89,87v-25,0,-39,-16,-39,-53v0,-65,33,-131,111,-131v19,0,36,2,51,5xm150,-159v-73,-22,-113,46,-113,105v0,27,8,38,21,38v44,-3,85,-88,92,-143xm175,-238v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm108,-238v0,10,-6,17,-15,17v-9,0,-15,-7,-15,-15v0,-10,6,-16,15,-16v9,0,15,6,15,14","w":200},"\u00e3":{"d":"176,-176r-31,158v8,1,20,2,30,3r-2,12v-15,2,-37,4,-54,3v2,-16,15,-47,23,-84v-12,28,-40,87,-89,87v-25,0,-39,-16,-39,-53v0,-65,33,-131,111,-131v19,0,36,2,51,5xm150,-159v-73,-22,-113,46,-113,105v0,27,8,38,21,38v44,-3,85,-88,92,-143xm189,-231v-31,34,-80,-24,-109,6r-6,-14v32,-39,78,25,109,-8","w":200},"\u00e5":{"d":"176,-176r-31,158v8,1,20,2,30,3r-2,12v-15,2,-37,4,-54,3v2,-16,15,-47,23,-84v-12,28,-40,87,-89,87v-25,0,-39,-16,-39,-53v0,-65,33,-131,111,-131v19,0,36,2,51,5xm150,-159v-73,-22,-113,46,-113,105v0,27,8,38,21,38v44,-3,85,-88,92,-143xm174,-238v-1,20,-19,37,-39,37v-21,0,-35,-15,-34,-36v1,-21,19,-37,39,-37v21,0,35,16,34,36xm158,-237v1,-12,-7,-21,-19,-21v-12,0,-21,9,-22,21v-1,12,7,21,19,21v11,0,21,-9,22,-21","w":200},"\u00e7":{"d":"155,-175r-9,49r-13,0v0,-12,0,-23,1,-33v-61,-21,-97,46,-96,99v0,21,6,43,42,43v16,0,33,-5,46,-11r-1,20v-13,5,-31,10,-51,10v-46,0,-60,-25,-60,-57v-1,-83,57,-147,141,-120xm80,18v5,21,-1,44,-41,67r-8,-11v27,-18,32,-37,26,-56r23,0","w":151},"\u00e9":{"d":"160,-143v0,35,-38,57,-119,60v-5,36,-3,67,41,67v17,0,34,-5,49,-11r0,19v-41,17,-116,22,-116,-45v0,-66,34,-129,96,-129v33,0,49,18,49,39xm136,-141v0,-15,-11,-23,-28,-23v-32,0,-54,27,-63,62v65,-3,91,-16,91,-39xm162,-247r-49,37r-10,-12r47,-40","w":169},"\u00e8":{"d":"160,-143v0,35,-38,57,-119,60v-5,36,-3,67,41,67v17,0,34,-5,49,-11r0,19v-41,17,-116,22,-116,-45v0,-66,34,-129,96,-129v33,0,49,18,49,39xm136,-141v0,-15,-11,-23,-28,-23v-32,0,-54,27,-63,62v65,-3,91,-16,91,-39xm137,-222r-12,12r-43,-37r16,-15","w":169},"\u00ea":{"d":"160,-143v0,35,-38,57,-119,60v-5,36,-3,67,41,67v17,0,34,-5,49,-11r0,19v-41,17,-116,22,-116,-45v0,-66,34,-129,96,-129v33,0,49,18,49,39xm136,-141v0,-15,-11,-23,-28,-23v-32,0,-54,27,-63,62v65,-3,91,-16,91,-39xm163,-225r-13,13r-34,-25r-37,25r-10,-12r49,-35","w":169},"\u00eb":{"d":"160,-143v0,35,-38,57,-119,60v-5,36,-3,67,41,67v17,0,34,-5,49,-11r0,19v-41,17,-116,22,-116,-45v0,-66,34,-129,96,-129v33,0,49,18,49,39xm136,-141v0,-15,-11,-23,-28,-23v-32,0,-54,27,-63,62v65,-3,91,-16,91,-39xm170,-238v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm103,-238v0,10,-6,17,-15,17v-9,0,-15,-7,-15,-15v0,-10,6,-16,15,-16v9,0,15,6,15,14","w":169},"\u00ed":{"d":"109,-247r-49,37r-10,-12r46,-40xm81,-15r-3,12v-15,2,-37,4,-53,3r30,-161v-8,-1,-19,-2,-29,-3r2,-12v14,-2,37,-4,54,-3r-31,161v8,1,20,2,30,3","w":102},"\u00ec":{"d":"91,-222r-12,12r-43,-37r16,-15xm81,-15r-3,12v-15,2,-37,4,-53,3r30,-161v-8,-1,-19,-2,-29,-3r2,-12v14,-2,37,-4,54,-3r-31,161v8,1,20,2,30,3","w":102},"\u00ee":{"d":"121,-225r-13,13r-33,-25r-37,25r-10,-12r49,-35xm81,-15r-3,12v-15,2,-37,4,-53,3r30,-161v-8,-1,-19,-2,-29,-3r2,-12v14,-2,37,-4,54,-3r-31,161v8,1,20,2,30,3","w":102},"\u00ef":{"d":"124,-238v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm58,-238v0,10,-8,17,-17,17v-9,0,-14,-7,-14,-15v0,-10,6,-16,15,-16v9,0,16,6,16,14xm81,-15r-3,12v-15,2,-37,4,-53,3r30,-161v-8,-1,-19,-2,-29,-3r2,-12v14,-2,37,-4,54,-3r-31,161v8,1,20,2,30,3","w":102},"\u00f1":{"d":"194,-15r-2,12v-14,2,-37,4,-53,3r23,-116v6,-32,-1,-47,-20,-47v-51,0,-89,99,-95,163r-22,0r30,-161v-8,-1,-19,-2,-29,-3r2,-12v14,-2,37,-4,54,-3v-1,12,-12,39,-22,81v17,-42,48,-84,88,-84v32,0,45,22,37,61r-20,103v8,1,19,2,29,3xm189,-231v-31,34,-80,-24,-109,6r-6,-14v32,-39,78,25,109,-8","w":217},"\u00f3":{"d":"180,-118v0,74,-51,121,-103,121v-41,0,-62,-22,-62,-63v0,-69,42,-122,101,-122v44,0,64,26,64,64xm156,-116v0,-30,-14,-47,-44,-47v-44,0,-74,47,-74,99v0,31,13,48,44,48v38,0,74,-39,74,-100xm169,-247r-49,37r-10,-12r47,-40"},"\u00f2":{"d":"180,-118v0,74,-51,121,-103,121v-41,0,-62,-22,-62,-63v0,-69,42,-122,101,-122v44,0,64,26,64,64xm156,-116v0,-30,-14,-47,-44,-47v-44,0,-74,47,-74,99v0,31,13,48,44,48v38,0,74,-39,74,-100xm143,-222r-12,12r-43,-37r16,-15"},"\u00f4":{"d":"180,-118v0,74,-51,121,-103,121v-41,0,-62,-22,-62,-63v0,-69,42,-122,101,-122v44,0,64,26,64,64xm156,-116v0,-30,-14,-47,-44,-47v-44,0,-74,47,-74,99v0,31,13,48,44,48v38,0,74,-39,74,-100xm175,-225r-13,13r-34,-25r-37,25r-10,-12r49,-35"},"\u00f6":{"d":"180,-118v0,74,-51,121,-103,121v-41,0,-62,-22,-62,-63v0,-69,42,-122,101,-122v44,0,64,26,64,64xm156,-116v0,-30,-14,-47,-44,-47v-44,0,-74,47,-74,99v0,31,13,48,44,48v38,0,74,-39,74,-100xm176,-238v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm109,-238v0,10,-6,17,-15,17v-9,0,-15,-7,-15,-15v0,-10,6,-16,15,-16v9,0,15,6,15,14"},"\u00f5":{"d":"180,-118v0,74,-51,121,-103,121v-41,0,-62,-22,-62,-63v0,-69,42,-122,101,-122v44,0,64,26,64,64xm156,-116v0,-30,-14,-47,-44,-47v-44,0,-74,47,-74,99v0,31,13,48,44,48v38,0,74,-39,74,-100xm184,-231v-31,34,-80,-24,-109,6r-6,-14v32,-39,78,25,109,-8"},"\u00fa":{"d":"167,-161v-8,-1,-20,-2,-30,-3r2,-12v15,-2,37,-4,53,-3r-31,161v8,1,21,2,31,3r-3,12v-14,2,-37,4,-54,3v1,-12,12,-39,22,-81v-17,42,-48,84,-88,84v-32,0,-44,-22,-36,-61r19,-103v-8,-1,-20,-2,-30,-3r2,-12v14,-2,38,-4,54,-3r-22,116v-6,32,0,47,19,47v46,0,84,-91,92,-145xm168,-247r-49,37r-10,-12r47,-40","w":213},"\u00f9":{"d":"167,-161v-8,-1,-20,-2,-30,-3r2,-12v15,-2,37,-4,53,-3r-31,161v8,1,21,2,31,3r-3,12v-14,2,-37,4,-54,3v1,-12,12,-39,22,-81v-17,42,-48,84,-88,84v-32,0,-44,-22,-36,-61r19,-103v-8,-1,-20,-2,-30,-3r2,-12v14,-2,38,-4,54,-3r-22,116v-6,32,0,47,19,47v46,0,84,-91,92,-145xm143,-222r-12,12r-43,-37r16,-15","w":213},"\u00fb":{"d":"167,-161v-8,-1,-20,-2,-30,-3r2,-12v15,-2,37,-4,53,-3r-31,161v8,1,21,2,31,3r-3,12v-14,2,-37,4,-54,3v1,-12,12,-39,22,-81v-17,42,-48,84,-88,84v-32,0,-44,-22,-36,-61r19,-103v-8,-1,-20,-2,-30,-3r2,-12v14,-2,38,-4,54,-3r-22,116v-6,32,0,47,19,47v46,0,84,-91,92,-145xm174,-225r-13,13r-34,-25r-37,25r-10,-12r49,-35","w":213},"\u00fc":{"d":"167,-161v-8,-1,-20,-2,-30,-3r2,-12v15,-2,37,-4,53,-3r-31,161v8,1,21,2,31,3r-3,12v-14,2,-37,4,-54,3v1,-12,12,-39,22,-81v-17,42,-48,84,-88,84v-32,0,-44,-22,-36,-61r19,-103v-8,-1,-20,-2,-30,-3r2,-12v14,-2,38,-4,54,-3r-22,116v-6,32,0,47,19,47v46,0,84,-91,92,-145xm177,-238v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm110,-238v0,10,-6,17,-15,17v-9,0,-15,-7,-15,-15v0,-10,6,-16,15,-16v9,0,15,6,15,14","w":213},"\u2020":{"d":"165,-181r-57,0v-3,69,-23,122,-37,181r-13,0v9,-62,14,-129,33,-181r-58,0r4,-18r57,0r7,-64r28,0r-18,64r57,0","w":163},"\u00b0":{"d":"136,-224v0,28,-24,45,-47,45v-26,0,-40,-17,-40,-40v0,-30,23,-45,46,-45v29,0,41,19,41,40xm117,-223v0,-10,-4,-26,-24,-26v-13,0,-25,11,-25,29v0,15,9,25,23,25v14,0,26,-11,26,-28","w":129},"\u00a2":{"d":"163,-179r-9,45r-13,0v0,-10,1,-20,2,-30v-59,-18,-104,25,-104,84v0,47,63,55,97,34r-1,20v-13,6,-27,10,-44,11r-8,39r-18,0r7,-39v-35,-3,-56,-24,-56,-61v0,-66,41,-104,89,-110r6,-33r19,0r-7,33v13,0,28,3,40,7","w":163},"\u00a3":{"d":"72,-141v-3,-75,29,-133,107,-110r-9,48r-13,0v0,-11,0,-22,1,-32v-56,-8,-63,35,-64,94r55,0r-3,17r-53,0v-4,48,-11,73,-55,105v27,-2,62,-1,92,-1v3,-9,6,-21,11,-33r14,0r-10,53r-140,0r3,-17v54,-42,58,-54,62,-107r-42,0r4,-17r40,0","w":180},"\u00a7":{"d":"153,-266r-4,20v-33,-9,-61,9,-61,38v0,38,50,76,50,122v0,23,-11,44,-31,59v22,50,-29,103,-88,84r4,-21v29,15,65,-5,65,-36v0,-36,-51,-76,-51,-121v0,-22,11,-45,32,-60v-18,-49,19,-96,84,-85xm98,-44v38,-35,4,-77,-20,-120v-39,37,-10,69,20,120","w":169},"\u2022":{"d":"112,-106v0,22,-16,38,-37,38v-19,0,-35,-16,-35,-35v0,-22,16,-38,37,-38v19,0,35,16,35,35","w":152},"\u00b6":{"d":"130,-243r-28,149v-43,0,-62,-25,-62,-58v0,-42,31,-91,90,-91xm204,-243r-3,17r-26,0r-50,261r-48,0r3,-17r27,0r49,-261r48,0","w":198},"\u00df":{"d":"194,-227v0,56,-65,49,-65,90v0,34,49,42,49,83v0,42,-51,65,-102,55r10,-50r13,0v0,12,-1,21,-2,31v30,7,57,-7,57,-32v0,-34,-48,-42,-48,-83v0,-53,65,-48,65,-90v0,-15,-11,-25,-30,-25v-31,0,-52,20,-61,65r-38,195v-15,73,-45,88,-104,78r5,-20v44,11,67,2,77,-58r33,-173v-8,-1,-21,-2,-31,-3r2,-12v9,-1,21,-3,32,-3v10,-59,41,-87,88,-87v32,0,50,17,50,39","w":204},"\u00ae":{"d":"193,-191v-1,41,-36,76,-77,76v-43,0,-76,-33,-75,-75v0,-42,35,-76,77,-76v42,0,76,33,75,75xm175,-190v0,-32,-24,-61,-57,-61v-32,0,-60,27,-60,59v0,32,26,61,58,61v32,0,59,-26,59,-59xm152,-150r-22,0r-16,-35r-6,0r0,24v5,1,12,2,10,11r-34,0v-2,-9,4,-10,10,-11r0,-61v-7,-1,-12,-2,-10,-11v26,0,63,-4,63,21v0,13,-8,21,-19,24v10,11,8,28,24,31r0,7xm108,-196v23,5,35,-25,10,-25r-10,0r0,25","w":198},"\u00a9":{"d":"257,-121v-1,66,-56,119,-122,119v-68,0,-118,-53,-117,-119v1,-66,56,-118,122,-118v66,0,118,52,117,118xm238,-121v1,-55,-43,-101,-98,-101v-55,0,-101,45,-102,101v-1,56,43,101,98,101v55,0,101,-45,102,-101xm173,-63v-47,19,-99,-7,-92,-56v-6,-43,39,-79,90,-62r0,38r-11,0v-1,-6,-3,-15,-4,-24v-35,-9,-54,14,-54,47v0,43,35,54,70,41","w":265},"\u2122":{"d":"277,-243r-2,10v-5,1,-11,3,-17,4r-3,75v5,1,11,3,16,4r-2,9r-49,0r1,-9v5,-1,11,-3,17,-4r2,-68v-11,29,-27,54,-40,81r-20,0r-8,-81r-23,68v6,1,12,3,16,4r-2,9r-50,0v1,-10,9,-11,19,-13r26,-75v-6,-1,-11,-3,-16,-4r2,-10r44,0r7,82r39,-82r43,0xm129,-243r-7,35r-9,0v-1,-7,0,-15,0,-21r-18,0r-14,75v10,2,25,1,18,13r-59,0v-1,-13,13,-11,23,-13r14,-75r-18,0v-4,8,-1,24,-17,21r7,-35r80,0","w":277},"\u00b4":{"d":"110,-247r-49,37r-10,-12r47,-40","w":135},"\u00a8":{"d":"154,-238v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm87,-238v0,10,-6,17,-15,17v-9,0,-15,-7,-15,-15v0,-10,6,-16,15,-16v9,0,15,6,15,14"},"\u2260":{"d":"278,-261r-6,19v-49,-15,-80,9,-83,63r54,0r-4,18r-54,0r-33,175v-14,82,-78,92,-144,67v-19,14,-48,14,-75,9r5,-20v49,11,71,1,83,-58r33,-173r-40,0r4,-18r40,0v5,-75,76,-104,145,-73v18,-13,49,-16,75,-9xm187,-237v-51,-24,-106,0,-107,58r86,0v3,-23,10,-45,21,-58xm163,-161r-86,0v-18,74,-21,167,-54,225v48,21,95,10,106,-49","w":228},"\u00c6":{"d":"293,-243r-10,52r-14,0v0,-13,-1,-25,0,-34r-73,0r-17,91r59,0v6,-12,3,-32,24,-28r-14,73r-13,0v-1,-8,-2,-18,-1,-27r-59,0r-18,97r76,0v3,-10,8,-22,13,-34r14,0r-10,53r-150,0r3,-12v9,-3,21,-4,31,-5r8,-46r-85,0r-34,46v10,1,19,2,28,5r-2,12r-78,0r2,-12v6,-2,17,-4,24,-5r155,-209v-10,-1,-21,-2,-30,-5r2,-12r169,0xm146,-82r26,-142r-103,142r77,0","w":290},"\u00d8":{"d":"242,-158v-2,103,-73,178,-170,157r-20,36r-17,-8r20,-35v-24,-14,-36,-41,-36,-77v1,-98,69,-178,166,-157r19,-34r17,8r-18,32v26,13,39,41,39,78xm217,-156v0,-27,-8,-48,-25,-60r-109,195v78,20,131,-49,134,-135xm175,-224v-80,-14,-128,52,-131,136v0,26,7,46,23,58","w":249},"\u221e":{"d":"325,-99v0,31,-23,57,-62,57v-30,0,-59,-19,-89,-42v-28,21,-59,42,-90,42v-41,0,-60,-24,-60,-54v0,-31,23,-58,61,-58v31,0,61,21,90,43v29,-22,60,-43,90,-43v40,0,60,25,60,55xm301,-97v0,-60,-74,-34,-108,-1v26,19,49,36,72,36v23,0,36,-16,36,-35xm156,-97v-26,-19,-50,-37,-72,-37v-23,0,-36,17,-36,36v0,58,74,34,108,1","w":348},"\u00b1":{"d":"185,18r-167,0r0,-19r167,0r0,19xm186,-100r-74,0r0,76r-21,0r0,-76r-75,0r0,-19r75,0r0,-75r21,0r0,75r74,0r0,19","w":203},"\u2264":{"d":"297,-15r-3,12v-15,2,-37,4,-53,3r31,-161r-87,0r-33,175v-14,82,-78,92,-144,67v-19,14,-48,14,-75,9r6,-20v48,12,71,0,83,-58r33,-173r-41,0r4,-18r40,0v5,-76,79,-104,148,-72v24,-17,70,-17,100,-7r-9,19v-54,-19,-105,0,-108,60r108,0r-30,161v8,1,20,2,30,3xm189,-235v-51,-27,-107,-3,-109,56r87,0v1,-24,10,-43,22,-56xm163,-161r-86,0v-18,73,-22,166,-53,225v48,21,95,9,106,-49","w":318},"\u2265":{"d":"313,-260r-46,242v8,1,20,2,30,3r-3,12v-15,2,-37,4,-53,3r46,-243v-57,-13,-96,9,-98,64r54,0r-4,18r-53,0r-34,175v-14,82,-78,92,-144,67v-19,14,-48,14,-75,9r6,-20v48,12,71,0,83,-58r33,-173r-41,0r4,-18r40,0v5,-75,78,-104,146,-73v24,-17,75,-14,109,-8xm187,-237v-52,-23,-106,-2,-106,58r86,0v4,-22,8,-44,20,-58xm163,-161r-86,0v-18,73,-22,166,-53,225v48,21,95,9,106,-49","w":318},"\u00a5":{"d":"243,-243r-2,12v-7,2,-18,4,-25,5r-85,125r55,0r-3,16r-61,0r-5,28r61,0r-3,16r-61,0r-4,24v10,1,20,2,29,5r-2,12r-84,0r2,-12v9,-3,21,-4,32,-5r4,-24r-60,0r3,-16r61,0r5,-28r-61,0r3,-16r56,0r-36,-125v-7,-1,-17,-3,-24,-5r3,-12r77,0r-2,12v-9,3,-19,4,-31,5r31,117r75,-117v-9,-1,-19,-2,-27,-5r2,-12r77,0","w":228},"\u03bc":{"d":"199,-179r-34,179r-23,0v1,-12,12,-39,22,-81v-17,42,-48,84,-87,84v-22,1,-30,-9,-36,-17r-18,104r-23,0r52,-269r22,0r-22,116v-6,32,4,47,30,47v51,0,88,-101,95,-163r22,0","w":215},"\u2202":{"d":"294,-129v0,65,-32,131,-110,131v-20,0,-37,-2,-51,-5r46,-240v-57,-12,-98,7,-98,64r53,0r-4,18r-53,0r-33,172v-15,71,-47,90,-111,79r6,-20v48,12,71,0,83,-58r33,-173r-41,0r4,-18r40,0v6,-52,31,-87,90,-86v21,0,40,2,56,5v-14,71,-11,83,-37,164v19,-47,49,-86,89,-86v25,0,38,16,38,53xm271,-125v0,-27,-8,-38,-21,-38v-45,3,-84,90,-92,144v74,23,113,-47,113,-106","w":308},"\u2211":{"d":"272,-18v8,1,20,2,30,3r-2,12v-14,2,-37,4,-53,3r22,-116v6,-32,0,-47,-19,-47v-51,0,-88,101,-95,163r-23,0r47,-243v-57,-12,-98,7,-98,64r53,0r-4,18r-53,0r-33,172v-15,71,-47,90,-111,79r6,-20v48,12,71,0,83,-58r33,-173r-41,0r4,-18r40,0v6,-52,31,-87,90,-86v21,0,40,2,56,5v-13,69,-14,86,-36,162v17,-42,47,-84,87,-84v32,0,45,22,37,61","w":324},"\u220f":{"d":"197,-258r-8,19v-54,-19,-109,1,-108,60r109,0r-40,207v-8,54,-38,73,-90,62r5,-20v39,11,54,0,64,-50r35,-181r-87,0r-33,172v-15,71,-47,90,-111,79r6,-20v48,12,71,0,83,-58r33,-173r-41,0r4,-18r41,0v1,-73,70,-100,138,-79","w":206},"\u03c0":{"d":"225,-179r-3,18r-42,0r-17,90v-13,61,-3,59,31,53r0,18v-38,8,-67,5,-57,-48r21,-113r-74,0r-31,161r-22,0r31,-161r-41,0r3,-18r201,0","w":237},"\u222b":{"d":"284,-145v0,28,-23,51,-81,62r37,65v10,1,20,3,29,5r-2,13r-45,0r-50,-91r-17,91r-23,0r47,-243v-57,-12,-98,7,-98,64r53,0r-4,18r-53,0r-33,172v-15,71,-47,90,-111,79r6,-20v48,12,71,0,83,-58r33,-173r-41,0r4,-18r40,0v6,-52,31,-87,90,-86v21,0,40,2,56,5v-9,47,-15,83,-30,129v13,-30,34,-51,66,-51v27,0,44,15,44,37xm260,-140v0,-13,-9,-23,-24,-23v-33,0,-56,45,-62,68v62,-10,86,-23,86,-45","w":296},"\u00aa":{"d":"143,-142r-2,12v-12,1,-29,3,-41,2v2,-8,6,-22,12,-39v-12,25,-31,41,-52,41v-20,0,-29,-12,-29,-35v-1,-56,43,-96,110,-81r-18,97v6,1,15,3,20,3xm120,-226v-42,-14,-69,22,-69,60v0,17,5,22,14,22v27,0,50,-43,55,-82","w":139},"\u00ba":{"d":"147,-204v0,53,-36,78,-69,78v-27,0,-43,-13,-43,-41v0,-41,26,-79,67,-79v32,0,45,16,45,42xm124,-201v0,-14,-5,-27,-24,-27v-31,0,-42,35,-42,57v0,17,8,26,23,26v26,0,43,-24,43,-56","w":146},"\u03a9":{"d":"243,0r-78,0r0,-19v33,-23,54,-55,54,-106v0,-57,-28,-104,-83,-104v-53,0,-86,42,-86,102v0,48,15,81,54,108r0,19r-79,0r0,-17r56,0v-35,-22,-54,-62,-54,-109v0,-72,43,-121,109,-121v62,0,106,41,106,118v0,51,-23,91,-56,112r57,0r0,17","w":269},"\u00e6":{"d":"45,-172v33,-15,109,-15,108,22v12,-15,35,-32,64,-32v33,0,49,18,49,39v0,31,-23,54,-119,60v-6,36,-2,67,41,67v17,0,34,-5,49,-11r0,19v-15,6,-35,11,-58,11v-39,0,-51,-19,-55,-44v-11,21,-40,44,-73,44v-29,0,-43,-14,-43,-35v0,-52,55,-63,120,-68v8,-31,11,-63,-28,-63v-12,0,-26,2,-39,5v-3,10,-7,21,-11,33r-13,0xm243,-141v0,-15,-11,-23,-28,-23v-32,0,-54,27,-64,62v55,-4,92,-11,92,-39xm124,-82v-53,4,-92,11,-92,44v0,13,10,22,24,22v34,0,61,-31,68,-66","w":275},"\u00f8":{"d":"181,-118v-3,82,-57,133,-127,118r-21,36r-15,-8r20,-36v-15,-10,-23,-28,-23,-52v1,-74,48,-133,120,-120r20,-35r15,8r-18,33v19,10,29,30,29,56xm64,-19v68,28,119,-85,77,-137xm125,-162v-54,-9,-84,41,-86,97v0,16,3,29,11,37"},"\u00bf":{"d":"116,-166v0,10,-8,18,-18,18v-9,0,-16,-8,-16,-17v0,-10,8,-17,17,-17v10,0,17,7,17,16xm105,-124v10,78,-72,86,-72,133v0,22,24,40,59,45r-7,21v-49,-6,-77,-34,-77,-65v0,-58,85,-61,75,-134r22,0","w":146},"\u00a1":{"d":"84,-166v0,10,-8,18,-18,18v-9,0,-16,-8,-16,-17v0,-10,8,-17,17,-17v10,0,17,7,17,16xm68,-124r-33,197r-27,0r42,-197r18,0","w":105},"\u00ac":{"d":"165,-27r-19,0r0,-58r-131,0r0,-19r150,0r0,77","w":183},"\u221a":{"d":"202,-273r-85,273r-26,0r-57,-161r-34,0r0,-18r52,0r53,157r73,-251r24,0","w":216},"\u0192":{"d":"176,-263r-4,19v-38,-9,-58,2,-70,42r-15,50r51,0r-4,18r-52,0r-42,148v-15,53,-43,69,-97,61r4,-19v38,10,60,-3,71,-43r42,-147r-37,0r3,-18r39,0v15,-61,34,-132,111,-111","w":151},"\u2248":{"d":"188,-117v-10,9,-25,18,-44,18v-36,0,-44,-22,-75,-22v-15,0,-27,10,-34,16r-8,-17v10,-9,25,-18,44,-18v46,0,74,43,109,6xm188,-59v-10,8,-25,17,-44,17v-36,0,-44,-22,-75,-22v-15,0,-27,9,-34,15r-8,-16v10,-9,25,-19,44,-19v43,0,73,43,109,8","w":215},"\u0394":{"d":"244,0r-231,0r102,-252r26,0xm211,-20r-84,-209r-82,209r166,0","w":257},"\u00ab":{"d":"153,-138r-45,50r33,49r-17,12r-39,-61r53,-62xm87,-138r-42,50r31,49r-18,12r-36,-61r50,-62","w":171},"\u00bb":{"d":"152,-89r-49,62r-16,-12r43,-50r-31,-49r18,-11xm90,-89r-53,62r-15,-12r45,-50r-34,-49r18,-11","w":171},"\u2026":{"d":"186,-15v0,10,-8,18,-18,18v-9,0,-17,-8,-16,-17v0,-22,36,-23,34,-1xm114,-15v-1,10,-8,18,-18,18v-10,0,-15,-8,-15,-17v0,-10,8,-18,18,-18v10,0,16,8,15,17xm43,-15v0,22,-35,24,-34,1v0,-22,36,-23,34,-1","w":221},"\u00a0":{"w":144},"\u00c0":{"d":"226,-12r-2,12r-78,0r2,-12v9,-3,20,-4,31,-5r-7,-46r-110,0r-25,46v9,1,20,2,28,5r-2,12r-78,0r2,-12v7,-2,18,-4,25,-5r126,-226r25,0r40,226v7,1,17,3,23,5xm168,-82r-22,-137r-74,137r96,0xm161,-276r-12,12r-43,-37r16,-15","w":244},"\u00c3":{"d":"226,-12r-2,12r-78,0r2,-12v9,-3,20,-4,31,-5r-7,-46r-110,0r-25,46v9,1,20,2,28,5r-2,12r-78,0r2,-12v7,-2,18,-4,25,-5r126,-226r25,0r40,226v7,1,17,3,23,5xm168,-82r-22,-137r-74,137r96,0xm210,-285v-31,34,-80,-24,-109,6r-6,-14v32,-39,78,25,109,-8","w":244},"\u00d5":{"d":"242,-158v0,92,-62,161,-138,161v-57,0,-85,-32,-85,-88v0,-89,60,-161,138,-161v55,0,85,33,85,88xm217,-156v0,-44,-20,-70,-64,-70v-62,0,-109,62,-109,138v0,43,22,71,63,71v60,0,110,-60,110,-139xm225,-285v-31,34,-80,-24,-109,6r-6,-14v32,-39,78,25,109,-8","w":249},"\u0152":{"d":"298,-243r-10,52r-14,0v0,-13,0,-25,1,-34r-75,0r-17,91r59,0v6,-11,4,-31,24,-28r-14,73r-13,0v-1,-8,-1,-17,0,-27r-59,0r-19,97r75,0v3,-10,7,-22,12,-34r15,0r-10,53r-147,2v-61,0,-87,-33,-87,-86v0,-106,69,-175,182,-159r97,0xm177,-224v-83,-15,-129,51,-133,135v-3,57,40,80,95,68","w":297},"\u0153":{"d":"294,-143v0,35,-38,57,-119,60v-6,36,-2,67,41,67v17,0,34,-5,49,-11r0,19v-35,14,-111,24,-113,-28v-31,54,-137,57,-137,-24v0,-68,41,-122,101,-122v32,0,51,15,59,39v16,-24,40,-39,70,-39v33,0,49,18,49,39xm270,-141v0,-15,-11,-23,-28,-23v-32,0,-53,27,-63,62v65,-3,91,-16,91,-39xm156,-116v0,-30,-14,-47,-44,-47v-44,0,-74,47,-74,99v0,31,13,48,44,48v38,0,74,-39,74,-100","w":303},"\u2013":{"d":"180,-94r-180,0r0,-20r180,0r0,20","w":180},"\u2014":{"d":"360,-94r-360,0r0,-20r360,0r0,20","w":360},"\u201c":{"d":"157,-258v-26,22,-31,39,-25,50v5,10,0,22,-12,22v-23,0,-29,-40,29,-82xm97,-258v-26,22,-31,39,-25,50v5,10,-1,22,-13,22v-22,0,-28,-40,30,-82","w":139},"\u201d":{"d":"132,-266v22,0,29,40,-29,82r-8,-10v26,-22,31,-39,25,-50v-5,-10,0,-22,12,-22xm72,-266v23,0,30,40,-28,82r-9,-10v26,-22,30,-39,24,-50v-5,-10,1,-22,13,-22","w":139},"\u2018":{"d":"97,-258v-26,22,-31,39,-25,50v5,10,-1,22,-13,22v-22,0,-28,-40,30,-82","w":80},"\u2019":{"d":"72,-266v23,0,30,40,-28,82r-9,-10v26,-22,30,-39,24,-50v-5,-10,1,-22,13,-22","w":80},"\u00f7":{"d":"121,-165v0,10,-7,17,-17,17v-9,0,-18,-7,-18,-17v0,-9,9,-18,18,-18v10,0,17,9,17,18xm191,-83r-174,0r0,-20r174,0r0,20xm121,-20v0,9,-7,17,-17,17v-9,0,-18,-8,-18,-17v0,-10,9,-17,18,-17v10,0,17,7,17,17","w":207},"\u25ca":{"d":"206,-120r-86,123r-15,0r-90,-126r88,-123r14,0xm182,-118r-73,-103r-68,97r72,101","w":221},"\u00ff":{"d":"-28,69v110,15,100,-127,70,-230v-8,-1,-20,-2,-30,-3r2,-12v14,-2,33,-4,49,-3v15,66,25,125,18,177v32,-54,58,-108,90,-184r21,7v-44,104,-91,196,-139,241v-27,26,-49,37,-85,28xm151,-238v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm84,-238v0,10,-6,17,-15,17v-9,0,-15,-7,-15,-15v0,-10,6,-16,15,-16v9,0,15,6,15,14","w":185},"\u0178":{"d":"235,-243r-2,12v-7,2,-18,4,-25,5r-93,138r-13,71v10,1,20,2,29,5r-2,12r-84,0r2,-12v9,-3,21,-4,32,-5r13,-71r-39,-138v-7,-1,-17,-3,-23,-5r2,-12r78,0r-2,12v-9,3,-19,4,-31,5r30,118r76,-118v-9,-1,-19,-2,-27,-5r2,-12r77,0xm186,-286v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm119,-286v0,10,-6,17,-15,17v-9,0,-15,-7,-15,-15v0,-10,6,-16,15,-16v9,0,15,6,15,14","w":211},"\u2044":{"d":"206,-260r-212,303r-17,-10r212,-304","w":143},"\u00a4":{"d":"193,-179r-39,200v-7,38,-32,72,-99,72v-20,0,-35,-2,-47,-6r5,-24v53,20,113,13,121,-52v4,-33,13,-50,23,-92v-17,42,-48,84,-88,84v-32,0,-44,-22,-36,-61r20,-103v-8,-1,-21,-2,-31,-3r3,-12v15,-2,37,-4,53,-3r-22,116v-6,32,0,47,19,47v46,0,84,-91,92,-145v-8,-1,-20,-2,-30,-3r3,-12v14,-2,37,-4,53,-3","w":209},"\u2039":{"d":"89,-138r-44,50r32,49r-18,12r-37,-61r51,-62","w":111},"\u203a":{"d":"89,-89r-52,62r-15,-12r44,-50r-32,-49r17,-11","w":111},"\ufb01":{"d":"188,-15r-2,12v-14,2,-37,4,-54,3r31,-161r-86,0r-33,172v-15,71,-47,90,-111,79r6,-20v48,12,71,0,83,-58r33,-173r-41,0r4,-18r41,0v1,-73,70,-100,138,-79r-8,19v-55,-20,-108,3,-109,60r109,0r-30,161v8,1,19,2,29,3","w":209},"\ufb02":{"d":"204,-260r-45,242v8,1,19,2,29,3r-2,12v-15,2,-37,4,-53,3r46,-243v-58,-13,-97,9,-99,64r54,0r-4,18r-53,0r-33,172v-15,71,-47,90,-111,79r6,-20v48,12,71,0,83,-58r33,-173r-41,0r4,-18r40,0v6,-52,31,-87,90,-86v21,0,39,2,56,5","w":210},"\u2021":{"d":"168,-199r-2,18r-58,0v-1,36,-8,66,-18,94r58,0r-4,18r-58,0r-7,69r-28,0r18,-69r-57,0r3,-18r58,0v0,-37,8,-67,18,-94r-58,0r4,-18r57,0r7,-64r28,0r-18,64r57,0","w":163},"\u00b7":{"d":"57,-104v0,22,-38,24,-36,0v0,-22,39,-24,36,0","w":73},"\u201a":{"d":"25,-32v23,0,29,40,-29,82r-9,-10v27,-22,31,-39,25,-50v-5,-10,1,-22,13,-22","w":80},"\u201e":{"d":"85,-32v23,0,30,40,-28,82r-9,-10v26,-22,30,-39,24,-50v-5,-10,1,-22,13,-22xm25,-32v23,0,29,40,-29,82r-9,-10v27,-22,31,-39,25,-50v-5,-10,1,-22,13,-22","w":139},"\u2030":{"d":"342,-71v0,44,-24,75,-62,75v-23,0,-39,-13,-39,-43v0,-44,23,-73,61,-73v24,0,40,12,40,41xm138,-205v0,44,-23,74,-61,74v-23,0,-40,-12,-40,-42v0,-44,23,-74,61,-74v24,0,40,13,40,42xm244,-238r-210,246r-14,-12r210,-247xm227,-71v0,44,-23,75,-61,75v-23,0,-40,-13,-40,-43v0,-44,24,-73,62,-73v24,0,39,12,39,41xm320,-68v0,-16,-3,-27,-22,-27v-23,0,-36,28,-36,54v0,16,4,27,22,27v24,0,36,-27,36,-54xm117,-202v0,-16,-5,-27,-23,-27v-24,0,-36,27,-36,53v0,16,4,28,22,28v24,0,37,-27,37,-54xm206,-68v0,-16,-4,-27,-22,-27v-24,0,-36,28,-36,54v0,16,4,27,22,27v24,0,36,-27,36,-54","w":358},"\u00c2":{"d":"226,-12r-2,12r-78,0r2,-12v9,-3,20,-4,31,-5r-7,-46r-110,0r-25,46v9,1,20,2,28,5r-2,12r-78,0r2,-12v7,-2,18,-4,25,-5r126,-226r25,0r40,226v7,1,17,3,23,5xm168,-82r-22,-137r-74,137r96,0xm200,-279r-13,13r-34,-25r-37,25r-10,-12r49,-35","w":244},"\u00ca":{"d":"189,-243r-10,52r-15,0v0,-13,0,-25,1,-34r-75,0r-17,91r60,0v6,-12,3,-32,24,-28r-14,73r-13,0v-1,-8,-2,-17,-1,-27r-59,0r-19,97r75,0v3,-10,8,-22,13,-34r14,0r-10,53r-149,0r3,-12v9,-3,21,-4,32,-5r39,-209v-10,-1,-21,-2,-30,-5r3,-12r148,0xm175,-279r-13,13r-34,-25r-37,25r-10,-12r49,-35","w":187},"\u00c1":{"d":"226,-12r-2,12r-78,0r2,-12v9,-3,20,-4,31,-5r-7,-46r-110,0r-25,46v9,1,20,2,28,5r-2,12r-78,0r2,-12v7,-2,18,-4,25,-5r126,-226r25,0r40,226v7,1,17,3,23,5xm168,-82r-22,-137r-74,137r96,0xm192,-301r-49,37r-10,-12r47,-40","w":244},"\u00cb":{"d":"189,-243r-10,52r-15,0v0,-13,0,-25,1,-34r-75,0r-17,91r60,0v6,-12,3,-32,24,-28r-14,73r-13,0v-1,-8,-2,-17,-1,-27r-59,0r-19,97r75,0v3,-10,8,-22,13,-34r14,0r-10,53r-149,0r3,-12v9,-3,21,-4,32,-5r39,-209v-10,-1,-21,-2,-30,-5r3,-12r148,0xm178,-286v0,10,-7,17,-16,17v-9,0,-15,-8,-15,-16v0,-9,7,-15,16,-15v9,0,15,6,15,14xm111,-286v0,10,-6,17,-15,17v-9,0,-15,-7,-15,-15v0,-10,6,-16,15,-16v9,0,15,6,15,14","w":187},"\u00c8":{"d":"189,-243r-10,52r-15,0v0,-13,0,-25,1,-34r-75,0r-17,91r60,0v6,-12,3,-32,24,-28r-14,73r-13,0v-1,-8,-2,-17,-1,-27r-59,0r-19,97r75,0v3,-10,8,-22,13,-34r14,0r-10,53r-149,0r3,-12v9,-3,21,-4,32,-5r39,-209v-10,-1,-21,-2,-30,-5r3,-12r148,0xm145,-276r-12,12r-43,-37r16,-15","w":187},"\u00cd":{"d":"128,-301r-49,37r-11,-13r47,-39xm125,-243r-3,12v-10,3,-20,4,-31,5r-40,209v10,1,21,2,30,5r-3,12r-84,0r3,-12v10,-3,21,-4,31,-5r40,-209v-10,-1,-20,-2,-29,-5r2,-12r84,0","w":107},"\u00ce":{"d":"135,-279r-13,13r-33,-26r-37,26r-10,-12r49,-35xm125,-243r-3,12v-10,3,-20,4,-31,5r-40,209v10,1,21,2,30,5r-3,12r-84,0r3,-12v10,-3,21,-4,31,-5r40,-209v-10,-1,-20,-2,-29,-5r2,-12r84,0","w":107},"\u00cf":{"d":"139,-285v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-15v0,-9,7,-16,16,-16v9,0,15,7,15,15xm73,-285v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-15v0,-9,7,-16,16,-16v9,0,15,7,15,15xm125,-243r-3,12v-10,3,-20,4,-31,5r-40,209v10,1,21,2,30,5r-3,12r-84,0r3,-12v10,-3,21,-4,31,-5r40,-209v-10,-1,-20,-2,-29,-5r2,-12r84,0","w":107},"\u00cc":{"d":"101,-277r-12,13r-43,-37r16,-15xm125,-243r-3,12v-10,3,-20,4,-31,5r-40,209v10,1,21,2,30,5r-3,12r-84,0r3,-12v10,-3,21,-4,31,-5r40,-209v-10,-1,-20,-2,-29,-5r2,-12r84,0","w":107},"\u00d3":{"d":"242,-158v0,92,-62,161,-138,161v-57,0,-85,-32,-85,-88v0,-89,60,-161,138,-161v55,0,85,33,85,88xm217,-156v0,-44,-20,-70,-64,-70v-62,0,-109,62,-109,138v0,43,22,71,63,71v60,0,110,-60,110,-139xm208,-301r-49,37r-10,-12r47,-40","w":249},"\u00d4":{"d":"242,-158v0,92,-62,161,-138,161v-57,0,-85,-32,-85,-88v0,-89,60,-161,138,-161v55,0,85,33,85,88xm217,-156v0,-44,-20,-70,-64,-70v-62,0,-109,62,-109,138v0,43,22,71,63,71v60,0,110,-60,110,-139xm218,-279r-13,13r-34,-25r-37,25r-10,-12r49,-35","w":249},"\u00d2":{"d":"242,-158v0,92,-62,161,-138,161v-57,0,-85,-32,-85,-88v0,-89,60,-161,138,-161v55,0,85,33,85,88xm217,-156v0,-44,-20,-70,-64,-70v-62,0,-109,62,-109,138v0,43,22,71,63,71v60,0,110,-60,110,-139xm182,-276r-12,12r-43,-37r16,-15","w":249},"\u00da":{"d":"272,-243r-3,12v-8,2,-17,4,-26,5r-26,137v-12,63,-49,92,-109,92v-70,0,-81,-37,-72,-84r27,-145v-9,-1,-18,-3,-25,-5r2,-12r79,0r-3,12v-9,3,-20,4,-30,5r-28,144v-8,43,5,66,54,66v45,0,72,-19,83,-76r25,-134v-10,-1,-20,-2,-29,-5r3,-12r78,0xm201,-301r-49,37r-10,-12r47,-40","w":254},"\u00db":{"d":"272,-243r-3,12v-8,2,-17,4,-26,5r-26,137v-12,63,-49,92,-109,92v-70,0,-81,-37,-72,-84r27,-145v-9,-1,-18,-3,-25,-5r2,-12r79,0r-3,12v-9,3,-20,4,-30,5r-28,144v-8,43,5,66,54,66v45,0,72,-19,83,-76r25,-134v-10,-1,-20,-2,-29,-5r3,-12r78,0xm210,-279r-13,13r-34,-25r-37,25r-10,-12r49,-35","w":254},"\u00d9":{"d":"272,-243r-3,12v-8,2,-17,4,-26,5r-26,137v-12,63,-49,92,-109,92v-70,0,-81,-37,-72,-84r27,-145v-9,-1,-18,-3,-25,-5r2,-12r79,0r-3,12v-9,3,-20,4,-30,5r-28,144v-8,43,5,66,54,66v45,0,72,-19,83,-76r25,-134v-10,-1,-20,-2,-29,-5r3,-12r78,0xm178,-276r-12,12r-43,-37r16,-15","w":254},"\u0131":{"d":"81,-15r-3,12v-15,2,-37,4,-53,3r30,-161v-8,-1,-19,-2,-29,-3r2,-12v14,-2,37,-4,54,-3r-31,161v8,1,20,2,30,3","w":78},"\u02c6":{"d":"139,-225r-13,13r-34,-25r-37,25r-10,-12r49,-35","w":154},"\u02dc":{"d":"163,-231v-31,34,-80,-24,-109,6r-6,-14v32,-39,78,25,109,-8","w":182},"\u00af":{"d":"142,-244r0,18r-80,0r0,-18r80,0","w":145},"\u02d8":{"d":"150,-258v-4,23,-21,44,-50,44v-28,0,-36,-22,-32,-44r15,0v-2,13,4,26,20,26v15,0,27,-10,30,-26r17,0","w":147},"\u02d9":{"d":"96,-237v0,9,-7,17,-16,17v-9,0,-16,-8,-15,-17v0,-20,31,-22,31,0","w":99},"\u02da":{"d":"137,-237v-1,20,-19,37,-39,37v-21,0,-35,-15,-34,-36v1,-21,19,-37,39,-37v21,0,35,16,34,36xm121,-236v1,-12,-7,-21,-19,-21v-12,0,-21,9,-22,21v-1,12,7,21,19,21v11,0,21,-9,22,-21","w":139},"\u00b8":{"d":"81,18v5,21,-1,44,-41,67r-8,-11v27,-18,32,-37,26,-56r23,0","w":141},"\u02dd":{"d":"177,-247r-51,37r-10,-12r48,-41xm115,-249r-45,39r-11,-11r42,-43","w":174},"\u02db":{"d":"49,76v-22,8,-54,0,-50,-22v0,-16,11,-36,26,-54r18,0v-10,13,-22,33,-22,49v0,17,15,15,28,11r0,16","w":101},"\u02c7":{"d":"152,-247r-49,35r-45,-34r13,-13r33,26r37,-26","w":154}}});

/* api.js (69%) */
jQuery.noConflict();(function($,window,document,undefined){$(function(){if($.fn.slideshowFade)
{$('#slideshow1').slideshowFade({auto:6000});$('#tibdits').slideshowFade({speed:1200,buttons:false});}
if($.fn.jCarouselLite)
{var slideshow1=$('#commentsShort');if(slideshow1.length)
{slideshow1.find('.slider').jCarouselLite({visible:5,scroll:1,speed:2000,auto:5000,vertical:true,circular:true});}}
Shadowbox.init({players:["iframe"]});Cufon.replace('h4');if(window['DD_belatedPNG']!==undefined)
DD_belatedPNG.fix('img, #logo a');});$.fn.slideshowFade=function(args)
{if(!this.length)
return this;var opts=$.extend({slides:'> ul > li',buttons:true,speed:600,auto:3000},args);this.each(function(){var parent=$(this),slides=parent.find(opts.slides),buttons=$(),timer=null,n=0;slides.each(function(){this.id=parent[0].id+'-'+(++n);});if(opts.buttons)
{buttons=parent.find('.nav a').click(function(){var hash=this.hash.substr(1);parent.triggerHandler('slideChange',[slides.filter('#'+hash)]);return false;});}
if(!slides.filter('.active').length)
{slides.eq(0).addClass('active');buttons.eq(0).addClass('active');}
function change(next)
{var active=slides.filter('.active');if(!next||!next.jquery)
next=active.next();if(!next.length)
next=slides.eq(0);parent.trigger('slideChanging',[parent,slides,active,next]);next.addClass('next');active.fadeOut(opts.speed,function(){next.addClass('active').removeClass('next');active.removeClass('active').show();buttons.removeClass('active').filter('[href="#'+next[0].id+'"]').addClass('active');});parent.trigger('slideChanged',[parent,slides,active,next]);}
function auto()
{if(opts.auto)
timer=setInterval(change,opts.speed+opts.auto);}
parent.bind('slideChange',function(ev,slide){clearInterval(timer);change(slide);auto();});auto();});return this;};})(jQuery,window,document);
