/*!
 * Copyright (c) 2010 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})(),root:function(){return document.documentElement||document.body;}};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},addClass:function(el,className){var current=el.className;el.className=current+(current&&' ')+className;return el;},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),fontStretch:cached(function(value){if(typeof value=='number')return value;if(/%$/.test(value))return parseFloat(value)/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}[value]||1;}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]]);}
return gradient;}),quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list;}),recognizesMedia:cached(function(media){var el=document.createElement('style'),sheet,container,supported;el.type='text/css';el.media=media;try{el.appendChild(document.createTextNode('/**/'));}catch(e){}
container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported;}),removeClass:function(el,className){var re=RegExp('(?:^|\\s+)'+className+'(?=\\s|$)','g');el.className=el.className.replace(re,'');return el;},supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={};offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),textTransform:(function(){var map={uppercase:function(s){return s.toUpperCase();},lowercase:function(s){return s.toLowerCase();},capitalize:function(s){return s.replace(/(?:^|\s)./g,function($0){return $0.toUpperCase();});}};return function(text,style){var transform=map[style.get('textTransform')];return transform?transform(text):text;};})(),whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};var wsStart=/^\s+/,wsEnd=/\s+$/;return function(text,style,node,previousElement,simple){if(simple)return text.replace(wsStart,'').replace(wsEnd,'');if(previousElement){if(previousElement.nodeName.toLowerCase()=='br'){text=text.replace(wsStart,'');}}
if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(wsStart,'');if(!node.nextSibling)text=text.replace(wsEnd,'');return text;};})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var links=elementsByTagName('link'),styles=elementsByTagName('style');function isContainerReady(el){return el.disabled||isSheetReady(el.sheet,el.media||'screen');}
function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||'all'))return true;if(!sheet||sheet.disabled)return false;try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText))return false;break;default:break search;}}}}
catch(e){}
return true;}
function allStylesLoaded(){if(document.createStyleSheet)return true;var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=='stylesheet'&&!isContainerReady(el))return false;}
for(i=0;el=styles[i];++i){if(!isContainerReady(el))return false;}
return true;}
DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})();function Font(data){var face=this.face=data.face,wordSeparators={'\u0020':1,'\u00a0':1,'\u3000':1};this.glyphs=(function(glyphs){var key,fallbacks={'\u2011':'\u002d','\u00ad':'\u2011'};for(key in fallbacks){if(!hasOwnProperty(fallbacks,key))continue;if(!glyphs[key])glyphs[key]=glyphs[fallbacks[key]];}
return glyphs;})(data.glyphs);this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ');};return box;})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(chars,letterSpacing,wordSpacing){var glyphs=this.glyphs,glyph,kerning,k,jumps=[],width=0,w,i=-1,j=-1,chr;while(chr=chars[++i]){glyph=glyphs[chr]||this.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j]-=k;}
w=glyph.w;if(isNaN(w))w=+this.w;if(w>0){w+=letterSpacing;if(wordSeparators[chr])w+=wordSpacing;}
width+=jumps[++j]=~~w;kerning=glyph.k;}
jumps.total=width;return jumps;};}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>=weight&&b>=weight)?a<b:a>b:(a<=weight&&b<=weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){try{if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
catch(e){}
return false;}
function onOverOut(e){var related=e.relatedTarget;if(related&&contains(this,related))return;trigger(this,e.type=='mouseover');}
function onEnterLeave(e){trigger(this,e.type=='mouseenter');}
function trigger(el,hoverState){setTimeout(function(){var options=sharedStorage.get(el).options;api.replace(el,hoverState?merge(options,options.hover):options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};}
function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values;}
this.add=function(key,args){map[key]=list.push(args)-1;};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true);};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property];}
return this;};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.isUsable=function(){return!!style;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,function(){return listener.call(el,window.event);});}}
function attach(el,options){var storage=sharedStorage.get(el);if(storage.options)return el;if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0;family=families[i];++i){if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function hasOwnProperty(obj,property){return obj.hasOwnProperty(property);}
function merge(){var merged={},arg,key;for(var i=0,l=arguments.length;arg=arguments[i],i<l;++i){for(key in arg){if(hasOwnProperty(arg,key))merged[key]=arg[key];}}
return merged;}
function process(font,text,style,options,node,el){var fragment=document.createDocumentFragment(),processed;if(text==='')return fragment;var separate=options.separate;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function replaceElement(el,options){var name=el.nodeName.toLowerCase();if(options.ignore[name])return;if(options.onBeforeReplace)options.onBeforeReplace(el,options);var replace=!options.textless[name],simple=(options.trim==='simple');var style=CSS.getStyle(attach(el,options)).extend(options);if(parseFloat(style.get('fontSize'))===0)return;var font=getFont(el,style),node,type,next,anchor,text,lastElement;var isShy=options.softHyphens,anyShy=false,pos,shy,reShy=/\u00ad/g;var modifyText=options.modifyText;if(!font)return;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(replace&&type==3){if(isShy&&el.nodeName.toLowerCase()!=TAG_SHY){pos=node.data.indexOf('\u00ad');if(pos>=0){node.splitText(pos);next=node.nextSibling;next.deleteData(0,1);shy=document.createElement(TAG_SHY);shy.appendChild(document.createTextNode('\u00ad'));el.insertBefore(shy,next);next=shy;anyShy=true;}}
if(anchor){anchor.appendData(node.data);el.removeChild(node);}
else anchor=node;if(next)continue;}
if(anchor){text=anchor.data;if(!isShy)text=text.replace(reShy,'');text=CSS.whiteSpace(text,style,anchor,lastElement,simple);if(modifyText)text=modifyText(text,anchor,el,options);el.replaceChild(process(font,text,style,options,node,el),anchor);anchor=null;}
if(type==1){if(node.firstChild){if(node.nodeName.toLowerCase()=='cufon'){engines[options.engine](font,null,style,options,node,el);}
else arguments.callee(node,options);}
lastElement=node;}}
if(isShy&&anyShy){updateShy(el);if(!trackingShy)addEvent(window,'resize',updateShyOnResize);trackingShy=true;}
if(options.onAfterReplace)options.onAfterReplace(el,options);}
function updateShy(context){var shys,shy,parent,glue,newGlue,next,prev,i;shys=context.getElementsByTagName(TAG_SHY);for(i=0;shy=shys[i];++i){shy.className=C_SHY_DISABLED;glue=parent=shy.parentNode;if(glue.nodeName.toLowerCase()!=TAG_GLUE){newGlue=document.createElement(TAG_GLUE);newGlue.appendChild(shy.previousSibling);parent.insertBefore(newGlue,shy);newGlue.appendChild(shy);}
else{glue=glue.parentNode;if(glue.nodeName.toLowerCase()==TAG_GLUE){parent=glue.parentNode;while(glue.firstChild){parent.insertBefore(glue.firstChild,glue);}
parent.removeChild(glue);}}}
for(i=0;shy=shys[i];++i){shy.className='';glue=shy.parentNode;parent=glue.parentNode;next=glue.nextSibling||parent.nextSibling;prev=(next.nodeName.toLowerCase()==TAG_GLUE)?glue:shy.previousSibling;if(prev.offsetTop>=next.offsetTop){shy.className=C_SHY_DISABLED;if(prev.offsetTop<next.offsetTop){newGlue=document.createElement(TAG_GLUE);parent.insertBefore(newGlue,glue);newGlue.appendChild(glue);newGlue.appendChild(next);}}}}
function updateShyOnResize(){if(ignoreResize)return;CSS.addClass(DOM.root(),C_VIEWPORT_RESIZING);clearTimeout(shyTimer);shyTimer=setTimeout(function(){ignoreResize=true;CSS.removeClass(DOM.root(),C_VIEWPORT_RESIZING);updateShy(document);ignoreResize=false;},100);}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var TAG_GLUE='cufonglue';var TAG_SHY='cufonshy';var C_SHY_DISABLED='cufon-shy-disabled';var C_VIEWPORT_RESIZING='cufon-viewport-resizing';var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var trackingShy=false;var shyTimer;var ignoreResize=false;var engines={},fonts={},defaultOptions={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,noscript:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},modifyText:null,onAfterReplace:null,onBeforeReplace:null,printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.glow&&glow.dom&&glow.dom.get)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',softHyphens:true,textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:'none',trim:'advanced'};var separators={words:/\s/.test('\u00a0')?/[^\S\u00a0]+/:/\s+/,characters:'',none:/^/};api.now=function(){DOM.ready();return api;};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){if(!data)return api;var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"');};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(!initialized){CSS.addClass(DOM.root(),'cufon-active cufon-loading');CSS.ready(function(){CSS.addClass(CSS.removeClass(DOM.root(),'cufon-loading'),'cufon-ready');});initialized=true;}
if(options.hover)options.forceHitArea=true;if(options.autoDetect)delete options.fontFamily;if(typeof options.textShadow=='string'){options.textShadow=CSS.textShadow(options.textShadow);}
if(typeof options.color=='string'&&/^-/.test(options.color)){options.textGradient=CSS.gradient(options.color);}
else delete options.textGradient;if(!ignoreHistory)replaceHistory.add(elements,arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('vml',(function(){var ns=document.namespaces;if(!ns)return;ns.add('cvml','urn:schemas-microsoft-com:vml');ns=null;var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;var HAS_BROKEN_LINEHEIGHT=(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:'+
(HAS_BROKEN_LINEHEIGHT?'middle':'text-bottom')+';}'+'cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}'+'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}'+'cufonglue{white-space:nowrap;display:inline-block;}'+'.cufon-viewport-resizing cufonglue{white-space:normal;}'+'a cufon{cursor:pointer}'+'}'+'@media print{'+'cufon cufoncanvas{display:none;}'+'}'+'</style>').replace(/;/g,'!important;'));function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$|^[a-z-]+$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(!isNaN(value)||/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace('%','em');var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
function getSpacingValue(el,style,size,property){var key='computed'+property,value=style[key];if(isNaN(value)){value=style.get(property);style[key]=value=(value=='normal')?0:~~size.convertFrom(getSizeInPixels(el,value));}
return value;}
var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='none';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1]);}
fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill;}
return fills[id];}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('cufoncanvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,getSpacingValue(el,style,size,'letterSpacing'),getSpacingValue(el,style,size,'wordSpacing'));if(!jumps.length)return null;var width=jumps.total;var fullWidth=-minX+width+(viewBox.width-jumps[jumps.length-1]);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);var glyphs=font.glyphs,offsetX=0;var shadows=options.textShadow;var i=-1,j=0,chr;while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph,shape;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild);}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY;}
shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow);}
offsetX+=jumps[j++];}
var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement('cvml:rect');cover.stroked='f';cover.className='cufon-vml-cover';coverFill=document.createElement('cvml:fill');coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover);}
vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight;}
else if(cover)canvas.removeChild(cover);wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get('lineHeight');if(lineHeight=='normal')lineHeight='1em';else if(!isNaN(lineHeight))lineHeight+='em';style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height));}
if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+'px';wStyle.marginBottom=yAdjust+'px';}}
return wrapper;};})());Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('cufon{text-indent:0;}'+'@media screen,projection{'+'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;'+
(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'cufon canvas{position:relative;}':'cufon canvas{position:absolute;}')+'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}'+'cufonglue{white-space:nowrap;display:inline-block;}'+'.cufon-viewport-resizing cufonglue{white-space:normal;}'+'}'+'@media print{'+'cufon{padding:0;}'+'cufon canvas{display:none;}'+'}').replace(/;/g,'!important;')));document.getElementsByTagName('head')[0].appendChild(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.getAttribute('alt');var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,~~size.convertFrom(parseFloat(style.get('letterSpacing'))||0),~~size.convertFrom(parseFloat(style.get('wordSpacing'))||0));if(!jumps.length)return null;var width=jumps.total;expandRight+=viewBox.width-jumps[jumps.length-1];expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-canvas';wrapper.setAttribute('alt',text);canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+'px';cStyle.height=canvasHeight+'px';expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.max(Math.ceil(size.convert(stretchedWidth)),0)+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.save();function renderText(){var glyphs=font.glyphs,glyph,i=-1,j=-1,chr;g.scale(stretchFactor,1);while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill();}
g.translate(jumps[++j],0);}
g.restore();}
if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();}}
var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i]);}
g.fillStyle=fill;}
else g.fillStyle=style.get('color');renderText();return wrapper;};})());


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1993, 1994, 2001 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Trademark:
 * ITC Avant Garde Gothic is a trademark of International Typeface Corporation.
 * 
 * Full name:
 * ITCAvantGardeStd-BkCn
 * 
 * Designer:
 * Herb Lubalin, Tom Carnase, Ed Benguiat, Adobe Type Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":187,"face":{"font-family":"itcavant","font-weight":300,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 4 6 2 2 2 2 2 4","ascent":"266","descent":"-94","x-height":"5","bbox":"-18 -285 281 90.8808","underline-thickness":"18","underline-position":"-18","stemh":"23","stemv":"24","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":86,"k":{"T":28,"V":15,"W":12,"Y":26,"A":14}},"!":{"d":"58,-266r0,201r-27,0r0,-201r27,0xm58,-39r0,39r-27,0r0,-39r27,0","w":89},"\"":{"d":"35,-167r-23,0r0,-99r23,0r0,99xm86,-167r-23,0r0,-99r23,0r0,99","w":98},"#":{"d":"130,-89r-10,75r-20,0r11,-75r-45,0r-11,75r-19,0r10,-75r-41,0r0,-19r44,0r7,-48r-42,0r0,-18r44,0r10,-70r19,0r-10,70r45,0r10,-70r19,0r-10,70r41,0r0,18r-43,0r-7,48r41,0r0,19r-43,0xm113,-108r7,-48r-45,0r-7,48r45,0"},"$":{"d":"139,-75v-3,-72,-111,-32,-110,-118v0,-34,22,-61,55,-65r0,-27r22,0r0,27v37,5,52,35,54,63r-26,0v-4,-28,-25,-40,-40,-40v-19,0,-39,16,-39,41v0,67,113,28,112,119v0,35,-24,67,-61,69r0,33r-22,0r0,-33v-37,-3,-62,-33,-63,-71r27,0v3,65,93,62,91,2"},"%":{"d":"11,-209v0,-37,25,-62,60,-62v35,0,61,25,61,62v0,37,-26,62,-61,62v-35,0,-60,-25,-60,-62xm71,-252v-23,0,-40,17,-40,44v0,25,17,42,40,42v23,0,41,-17,41,-43v0,-26,-18,-43,-41,-43xm150,-58v0,-37,25,-62,60,-62v35,0,61,25,61,62v0,37,-26,63,-61,63v-35,0,-60,-26,-60,-63xm210,-101v-23,0,-40,17,-40,44v0,26,17,43,40,43v23,0,41,-18,41,-44v0,-26,-18,-43,-41,-43xm228,-268r-152,269r-23,0r153,-269r22,0","w":281},"&":{"d":"186,-162r27,0r-43,88r51,60r-18,17r-46,-54v-13,21,-33,56,-72,56v-44,0,-71,-37,-71,-76v0,-45,30,-70,57,-83v-15,-18,-29,-32,-29,-58v0,-34,25,-59,57,-59v33,0,56,27,56,57v0,31,-24,53,-48,66r46,54xm99,-249v-48,0,-34,63,-6,83v25,-14,37,-28,37,-48v0,-17,-12,-35,-31,-35xm140,-71r-52,-63v-37,18,-47,40,-47,61v0,27,17,52,46,52v30,0,45,-34,53,-50","w":229},"(":{"d":"109,-270r0,27v-35,29,-61,83,-61,153v0,70,25,121,61,154r0,26v-48,-34,-85,-99,-85,-180v0,-80,38,-149,85,-180","w":119},")":{"d":"10,90r0,-26v35,-29,62,-84,62,-153v0,-70,-26,-121,-62,-154r0,-27v48,34,86,100,86,181v0,80,-39,148,-86,179","w":119},"*":{"d":"75,-266r-4,48r40,-28r10,18r-43,20r43,21r-10,18r-40,-28r4,48r-21,0r5,-48r-40,28r-10,-19r43,-20r-43,-20r10,-18r40,28r-5,-48r21,0","w":129},"+":{"d":"108,-181r0,79r73,0r0,23r-73,0r0,79r-23,0r0,-79r-73,0r0,-23r73,0r0,-79r23,0","w":193},",":{"d":"64,-38r-27,68r-21,0r24,-68r24,0","w":92,"k":{" ":36}},"-":{"d":"9,-113r76,0r0,24r-76,0r0,-24","w":94},".":{"d":"59,-38r0,38r-25,0r0,-38r25,0","w":92,"k":{" ":36}},"\/":{"d":"-18,24r111,-292r25,0r-110,292r-26,0","w":100},"0":{"d":"15,-82r0,-102v0,-54,35,-87,79,-87v44,0,78,33,78,87r0,102v0,54,-34,87,-78,87v-44,0,-79,-33,-79,-87xm41,-183r0,99v0,48,31,64,53,64v22,0,52,-16,52,-64r0,-99v0,-48,-30,-64,-52,-64v-22,0,-53,16,-53,64"},"1":{"d":"84,0r0,-242r-43,0r0,-24r69,0r0,266r-26,0"},"2":{"d":"163,-194v0,65,-72,120,-114,169r115,0r0,25r-149,0r0,-26r74,-83v28,-31,47,-53,47,-85v0,-33,-19,-50,-45,-50v-26,0,-47,16,-49,61r-26,0v0,-54,29,-88,76,-88v42,0,71,32,71,77"},"3":{"d":"55,-203r-27,0v1,-45,30,-68,68,-68v70,0,91,104,25,121v84,26,59,155,-27,155v-44,0,-78,-35,-79,-84r27,0v1,40,26,59,53,59v31,0,49,-22,49,-58v0,-36,-26,-63,-71,-59r0,-24v38,3,62,-14,61,-43v0,-24,-13,-42,-39,-42v-27,0,-39,18,-40,43"},"4":{"d":"119,0r0,-52r-105,0r0,-24r103,-190r28,0r0,190r22,0r0,24r-22,0r0,52r-26,0xm39,-76r80,0r0,-153"},"5":{"d":"44,-266r115,0r0,23r-92,0r-11,82v8,-10,22,-20,46,-20v42,0,70,38,70,90v0,57,-28,96,-77,96v-41,0,-73,-28,-78,-83r27,0v3,36,25,58,51,58v33,0,49,-28,49,-69v0,-67,-58,-94,-91,-40r-25,-1"},"6":{"d":"94,5v-90,1,-87,-118,-49,-174r67,-97r29,0r-73,103v50,-32,103,8,104,75v0,54,-31,93,-78,93xm44,-82v0,40,22,63,50,63v31,0,50,-25,50,-67v0,-38,-18,-64,-50,-64v-30,0,-50,25,-50,68"},"7":{"d":"23,-266r142,0r0,22r-97,244r-28,0r97,-242r-114,0r0,-24"},"8":{"d":"60,-149v-57,-26,-33,-122,34,-122v67,0,89,97,33,122v27,10,46,39,46,72v0,49,-34,82,-79,82v-45,0,-80,-33,-80,-82v0,-35,20,-62,46,-72xm54,-201v0,24,18,43,40,43v21,0,39,-19,39,-43v0,-26,-17,-45,-40,-45v-21,0,-39,19,-39,45xm42,-77v0,31,23,57,52,57v29,0,51,-25,51,-57v0,-31,-22,-57,-51,-57v-29,0,-52,26,-52,57"},"9":{"d":"94,-271v90,0,87,119,49,174r-67,97r-30,0r74,-103v-52,30,-104,-9,-105,-76v0,-54,32,-92,79,-92xm144,-184v0,-40,-23,-64,-51,-64v-31,0,-50,26,-50,68v0,38,18,64,50,64v30,0,51,-25,51,-68"},":":{"d":"59,-185r0,38r-25,0r0,-38r25,0xm59,-38r0,38r-25,0r0,-38r25,0","w":92,"k":{" ":36}},";":{"d":"62,-185r0,38r-25,0r0,-38r25,0xm64,-38r-27,68r-21,0r24,-68r24,0","w":92,"k":{" ":23}},"<":{"d":"12,-102r169,-81r0,25r-140,68r140,66r0,25r-169,-80r0,-23","w":193},"=":{"d":"12,-138r169,0r0,22r-169,0r0,-22xm12,-65r169,0r0,23r-169,0r0,-23","w":193},">":{"d":"12,-24r140,-66r-140,-68r0,-25r169,81r0,23r-169,80r0,-25","w":193},"?":{"d":"97,-64r-26,0v0,-25,0,-48,23,-76v17,-19,35,-33,36,-57v3,-56,-84,-69,-90,-5r0,10r-27,0v-2,-55,38,-80,73,-79v38,0,72,31,72,76v0,29,-19,48,-36,65v-26,26,-25,41,-25,66xm97,-39r0,39r-26,0r0,-39r26,0","w":171},"@":{"d":"228,-62r19,0v-22,45,-66,67,-105,67v-73,0,-127,-60,-127,-137v0,-79,55,-139,128,-139v56,0,114,40,114,112v0,76,-58,103,-80,103v-8,0,-23,-3,-24,-24v-18,31,-81,36,-81,-31v0,-66,72,-132,106,-69r6,-21r18,0r-28,111v0,12,7,14,12,14v20,0,54,-25,54,-78v0,-66,-48,-99,-97,-99v-59,0,-107,49,-107,121v0,116,136,161,192,70xm118,-78v41,0,45,-41,52,-76v0,-23,-16,-31,-28,-31v-23,0,-49,33,-49,72v0,25,13,35,25,35","w":272},"A":{"d":"49,-79r-22,79r-28,0r76,-266r27,0r77,266r-27,0r-23,-79r-80,0xm122,-103r-33,-128r-33,128r66,0","w":178},"B":{"d":"115,-143v82,26,58,148,-26,143r-65,0r0,-266r56,0v84,-15,90,109,35,123xm125,-197v-2,-43,-27,-47,-74,-45r0,91v44,6,76,-9,74,-46xm138,-75v-1,-47,-35,-56,-87,-52r0,103v50,3,88,-2,87,-51","w":179,"k":{"U":3,",":8,".":8,"A":4}},"C":{"d":"162,-87r27,0v0,46,-27,92,-83,92v-57,0,-93,-48,-93,-138v0,-84,32,-138,93,-138v56,0,83,47,83,97r-27,0v-1,-35,-14,-72,-55,-72v-46,0,-66,45,-66,115v0,76,28,110,66,110v41,0,54,-34,55,-66","w":199,"k":{",":12,".":12,"A":7}},"D":{"d":"85,-266v74,-3,114,51,111,133v-4,131,-65,138,-172,133r0,-266r61,0xm168,-133v0,-84,-31,-117,-117,-109r0,217v83,8,117,-26,117,-108","w":209,"k":{"V":10,"Y":13,",":21,".":21,"A":10}},"E":{"d":"25,0r0,-266r125,0r0,24r-98,0r0,93r98,0r0,25r-98,0r0,99r98,0r0,25r-125,0","w":171},"F":{"d":"24,0r0,-266r115,0r0,24r-88,0r0,93r88,0r0,25r-88,0r0,124r-27,0","w":152,"k":{",":45,".":45,"A":12,"a":5,"e":5,"o":5}},"G":{"d":"205,-136v2,72,-10,141,-91,141v-68,0,-101,-58,-101,-138v0,-83,39,-138,101,-138v56,0,84,43,87,93r-27,0v-3,-35,-19,-69,-60,-69v-44,0,-73,39,-73,114v0,79,32,113,73,113v43,0,67,-47,63,-92r-74,0r0,-24r102,0","w":220,"k":{",":13,".":13,"A":5}},"H":{"d":"51,0r-27,0r0,-266r27,0r0,117r95,0r0,-117r27,0r0,266r-27,0r0,-124r-95,0r0,124","w":197},"I":{"d":"24,0r0,-266r27,0r0,266r-27,0","w":75},"J":{"d":"67,-20v28,0,36,-24,36,-57r0,-189r27,0r0,193v13,86,-118,109,-127,20v0,-3,-1,-6,-1,-10v9,2,25,-5,27,5v5,32,24,38,38,38","w":153,"k":{",":9,".":9,"A":6}},"K":{"d":"24,0r0,-266r27,0r0,128r84,-128r30,0r-87,131r94,135r-32,0r-89,-129r0,129r-27,0","w":167,"k":{"O":9,"u":8,"y":4,"a":8,"e":8,"o":8}},"L":{"d":"25,0r0,-266r27,0r0,241r85,0r0,25r-112,0","w":142,"k":{"O":14,"T":25,"V":17,"W":13,"y":12,"Y":23,"o":11}},"M":{"d":"49,0r-24,0r0,-266r42,0r62,227r59,-227r42,0r0,266r-25,0r0,-242r-63,242r-25,0r-68,-242r0,242","w":254},"N":{"d":"57,-266r108,222r0,-222r25,0r0,266r-31,0r-110,-228r0,228r-24,0r0,-266r32,0","w":214},"O":{"d":"110,5v-64,0,-97,-61,-97,-139v0,-78,33,-137,97,-137v64,0,97,60,97,138v0,68,-27,138,-97,138xm41,-133v0,73,26,113,69,113v43,0,70,-40,70,-113v0,-73,-27,-114,-70,-114v-43,0,-69,41,-69,114","w":220,"k":{"l":15,"d":6,"q":3,"s":8,"-":14,":":14,";":8}},"P":{"d":"168,-187v-1,62,-45,87,-116,80r0,107r-27,0r0,-266v80,-6,144,7,143,79xm141,-186v0,-48,-35,-60,-89,-56r0,110v53,3,90,-5,89,-54","w":176,"k":{",":50,".":50,"A":23,"a":12,"e":12,"o":12}},"Q":{"d":"211,-21r0,25v-20,3,-34,-2,-48,-18v-12,10,-32,19,-53,19v-64,0,-97,-60,-97,-138v0,-78,33,-138,97,-138v101,0,120,173,70,238v9,11,19,13,31,12xm48,-84v39,-30,93,-4,112,31v8,-11,20,-40,20,-80v0,-73,-27,-114,-70,-114v-42,0,-69,41,-69,114v0,24,5,42,7,49xm148,-34v-15,-29,-62,-58,-96,-28v14,36,60,59,96,28","w":222},"R":{"d":"141,-184v0,-43,-35,-67,-90,-58r0,242r-27,0r0,-266r51,0v76,-1,87,24,93,80v4,40,-22,75,-57,79r53,107r-30,0r-60,-124v44,4,67,-21,67,-60","w":180,"k":{"T":7,"V":5,"W":3,"y":-2,"Y":5}},"S":{"d":"45,-201v0,77,120,29,120,129v0,47,-34,77,-77,77v-42,0,-74,-25,-75,-78r26,0v5,78,99,67,99,2v0,-82,-121,-31,-121,-126v0,-47,29,-74,70,-74v40,0,66,20,72,67r-26,0v-3,-20,-12,-44,-45,-44v-27,0,-43,19,-43,47","w":177,"k":{",":9,".":9}},"T":{"d":"61,0r0,-242r-54,0r0,-24r135,0r0,24r-54,0r0,242r-27,0","w":148,"k":{"O":15,"u":28,"w":20,"y":19,",":33,".":33,"A":26,"a":30,"e":28,"i":6,"o":28,"c":24,"r":25,"s":21,"-":25,":":21,";":21}},"U":{"d":"100,5v-50,0,-77,-24,-77,-75r0,-196r27,0r0,194v-3,29,19,52,49,52v30,0,50,-22,50,-52r0,-194r27,0r0,196v0,50,-26,75,-76,75","w":199,"k":{",":6,".":6,"A":7}},"V":{"d":"78,0r-77,-266r27,0r63,229r63,-229r27,0r-77,266r-26,0","w":181,"k":{"G":6,"O":6,"u":8,"y":3,",":36,".":36,"A":13,"a":14,"e":14,"o":14,"r":7,"-":14,":":17,";":17}},"W":{"d":"65,0r-64,-266r27,0r52,225r48,-225r27,0r48,225r52,-225r26,0r-64,266r-28,0r-48,-229r-48,229r-28,0","w":281,"k":{"O":3,"u":3,",":22,".":22,"A":6,"a":7,"e":7,"o":7,"-":8,":":13,";":13}},"X":{"d":"1,0r68,-142r-59,-124r28,0r45,101r46,-101r28,0r-59,124r67,142r-29,0r-53,-117r-53,117r-29,0","w":166,"k":{"C":6,"O":6,"a":7,"e":7,"o":7}},"Y":{"d":"67,0r0,-97r-68,-169r28,0r54,143r54,-143r28,0r-69,169r0,97r-27,0","w":161,"k":{"O":8,"u":12,"v":5,",":35,".":35,"A":13,"a":20,"e":20,"i":4,"o":20,"q":20,"-":17,":":24,";":24,"p":12,"S":5}},"Z":{"d":"160,-244r-116,219r121,0r0,25r-153,0r0,-22r117,-220r-117,0r0,-24r148,0r0,22","w":174},"[":{"d":"103,64r0,21r-73,0r0,-351r73,0r0,20r-50,0r0,310r50,0","w":119},"\\":{"d":"93,24r-110,-292r24,0r110,292r-24,0","w":100},"]":{"d":"16,85r0,-21r51,0r0,-310r-51,0r0,-20r73,0r0,351r-73,0","w":119},"^":{"d":"24,-137r61,-129r23,0r62,129r-25,0r-49,-106r-48,106r-24,0","w":193},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"153,-196r0,196r-23,0v0,-17,1,-28,1,-37v-9,27,-27,42,-52,42v-39,0,-66,-42,-66,-103v0,-94,85,-145,118,-60v0,-12,-1,-23,-1,-38r23,0xm83,-19v63,-2,63,-156,0,-158v-30,0,-46,34,-46,79v0,44,16,79,46,79","w":176},"b":{"d":"24,0r0,-266r24,0r-1,108v7,-25,25,-43,50,-43v41,0,66,43,66,103v0,96,-84,144,-117,60r0,38r-22,0xm139,-98v0,-42,-14,-79,-45,-79v-63,1,-63,157,0,158v31,0,45,-37,45,-79","w":176,"k":{"v":3,"y":3,",":14,".":14}},"c":{"d":"86,-178v-34,0,-48,38,-48,80v0,89,80,108,90,31r25,0v-4,40,-26,72,-65,72v-52,0,-76,-50,-76,-103v0,-64,31,-103,75,-103v40,0,63,32,65,73r-25,0v-4,-39,-23,-50,-41,-50","w":160,"k":{"y":-3,",":6,".":6}},"d":{"d":"153,-266r0,266r-23,0v0,-18,1,-29,1,-39v-7,27,-27,44,-52,44v-39,0,-66,-42,-66,-103v0,-93,83,-145,116,-61r0,-107r24,0xm83,-19v63,-2,64,-157,0,-158v-30,0,-46,34,-46,79v0,44,16,79,46,79","w":176},"e":{"d":"157,-57v-7,36,-30,62,-68,62v-54,0,-75,-53,-75,-103v0,-90,81,-136,127,-75v17,22,18,54,18,82r-120,0v0,41,17,73,50,73v24,0,39,-16,44,-39r24,0xm39,-112r95,0v-1,-41,-17,-68,-47,-68v-28,0,-47,29,-48,68","w":172,"k":{"v":3,"w":3,"y":3,",":6,".":6,"x":4}},"f":{"d":"29,0r0,-173r-22,0r0,-23r22,0r0,-15v0,-59,46,-60,58,-60r0,21v-22,-2,-37,19,-34,54r34,0r0,23r-34,0r0,173r-24,0","w":90,"k":{",":11,".":13,"a":8,"e":8,"f":8,"i":5,"l":5,"o":8}},"g":{"d":"42,15v0,25,21,39,43,39v21,0,44,-9,44,-56r0,-35v-7,26,-25,42,-50,42v-42,0,-66,-43,-66,-103v0,-95,84,-145,119,-60v0,-12,-1,-23,-1,-38r22,0r0,192v0,53,-22,81,-69,81v-23,0,-63,-14,-66,-62r24,0xm83,-19v63,-2,63,-156,0,-158v-30,0,-46,34,-46,79v0,44,16,79,46,79","w":176,"k":{",":7,".":7}},"h":{"d":"95,-177v-26,-1,-47,23,-47,66r0,111r-24,0r0,-266r24,0r-1,101v8,-25,29,-36,53,-36v83,-1,50,122,56,201r-24,0v-7,-64,23,-174,-37,-177","w":178,"k":{"u":2,"y":4}},"i":{"d":"27,-231r0,-35r24,0r0,35r-24,0xm27,0r0,-196r24,0r0,196r-24,0","w":77},"j":{"d":"26,-231r0,-35r24,0r0,35r-24,0xm50,-196r0,199v1,35,-10,70,-50,71r0,-24v23,-2,25,-21,26,-50r0,-196r24,0","w":76},"k":{"d":"23,0r0,-266r24,0r0,154r63,-84r27,0r-68,87r73,109r-27,0r-68,-101r0,101r-24,0","w":141,"k":{"y":3,"a":6,"e":6,"o":6}},"l":{"d":"27,0r0,-266r24,0r0,266r-24,0","w":77,"k":{"y":2}},"m":{"d":"91,-177v-64,2,-36,109,-42,177r-25,0r0,-196r24,0v0,10,0,20,-1,32v16,-55,86,-46,94,0v8,-23,26,-37,53,-37v82,0,47,123,54,201r-24,0r0,-120v1,-32,-6,-57,-34,-57v-62,0,-38,109,-42,177r-24,0r0,-119v2,-31,-5,-58,-33,-58","w":271,"k":{"u":2,"y":4}},"n":{"d":"24,0r0,-196r21,0v0,11,1,22,0,34v22,-60,111,-53,111,28r0,134r-24,0r0,-126v0,-20,-2,-51,-37,-51v-66,0,-44,112,-47,177r-24,0","w":178,"k":{"u":2,"y":4}},"o":{"d":"13,-98v0,-56,23,-103,76,-103v52,0,75,47,75,103v0,56,-23,103,-75,103v-53,0,-76,-47,-76,-103xm39,-98v0,52,16,80,50,80v33,0,50,-28,50,-80v0,-52,-17,-80,-50,-80v-33,0,-50,28,-50,80","w":177,"k":{"c":4,"g":2,"r":3,"-":14,":":14,"p":4}},"p":{"d":"24,72r0,-268r22,0r0,38v10,-30,28,-43,51,-43v39,0,66,41,66,103v0,95,-85,141,-116,62v2,29,1,75,1,108r-24,0xm93,-177v-62,0,-62,158,0,158v30,0,46,-34,46,-79v0,-44,-16,-79,-46,-79","w":176,"k":{"T":6,"r":3,"-":13,":":12}},"q":{"d":"153,-196r0,268r-24,0r0,-109v-8,26,-26,42,-50,42v-41,0,-66,-43,-66,-103v0,-62,27,-103,66,-103v23,0,42,13,51,43r0,-38r23,0xm83,-19v63,-2,63,-156,0,-158v-30,0,-46,34,-46,79v0,44,16,79,46,79","w":176},"r":{"d":"24,0r0,-196r22,0v0,18,0,29,-1,41v10,-38,36,-45,53,-46r0,29v-26,-11,-50,14,-50,67r0,105r-24,0","w":99,"k":{"v":-5,"w":-3,"y":-3,",":14,".":14,"x":-2,"a":4,"e":4,"o":4,"c":4,"d":4,"g":4,"q":4,"r":-3,"s":-3,"t":-2,"z":-2,"-":2}},"s":{"d":"106,-52v-1,-53,-89,-30,-89,-97v0,-31,23,-52,55,-52v33,0,53,20,54,56r-23,0v0,-25,-13,-34,-32,-34v-17,0,-29,12,-29,29v0,52,89,23,89,96v0,35,-25,59,-58,59v-36,0,-59,-22,-61,-63r24,0v0,27,15,40,37,40v21,0,33,-14,33,-34","w":145,"k":{"w":3,",":6,".":6}},"t":{"d":"33,0r0,-173r-27,0r0,-23r27,0r0,-62r24,0r0,62r27,0r0,23r-27,0r0,173r-24,0","w":90,"k":{"a":5,"e":5,"o":5}},"u":{"d":"155,-196r0,196r-22,0v0,-11,0,-22,1,-34v-22,60,-111,53,-111,-28r0,-134r24,0r0,126v0,20,2,51,37,51v66,0,44,-112,47,-177r24,0","w":178},"v":{"d":"140,-196r-56,196r-25,0r-59,-196r25,0r46,164r45,-164r24,0","w":140,"k":{",":22,".":22,"a":3,"e":3,"o":3}},"w":{"d":"54,0r-53,-196r25,0r40,161r35,-144r22,0r35,144r40,-161r24,0r-52,196r-24,0r-34,-143r-34,143r-24,0","w":223,"k":{",":20,".":20,"a":3,"e":3,"o":3}},"x":{"d":"2,0r52,-100r-50,-96r27,0r38,77r38,-77r27,0r-51,96r53,100r-28,0r-39,-80r-40,80r-27,0","w":137,"k":{"a":5,"e":5,"o":5}},"y":{"d":"33,72r26,-77r-57,-191r25,0r44,156r46,-156r25,0r-84,268r-25,0","w":143,"k":{",":22,".":22,"a":4,"e":4,"o":4}},"z":{"d":"7,0r0,-22r94,-151r-88,0r0,-23r117,0r0,23r-94,150r97,0r0,23r-126,0","w":142},"{":{"d":"99,-266r0,19v-54,-14,-37,60,-37,102v0,28,-17,50,-30,57v35,6,31,76,30,123v-1,37,10,34,37,34r0,20v-40,4,-60,-6,-60,-47v0,-46,11,-108,-26,-120r0,-20v33,-6,26,-79,26,-123v0,-41,21,-48,60,-45","w":119},"|":{"d":"60,-270r23,0r0,360r-23,0r0,-360","w":142},"}":{"d":"20,-247r0,-19v40,-3,61,5,61,46v0,47,-11,109,26,121r0,19v-64,13,29,191,-87,169r0,-20v27,1,39,1,38,-34v-2,-50,-2,-112,29,-125v-34,-6,-30,-75,-29,-122v1,-38,-10,-35,-38,-35","w":119},"~":{"d":"63,-114v35,2,81,49,99,2r9,18v-8,15,-20,27,-36,27v-37,-2,-80,-51,-104,-2r-9,-18v9,-16,23,-28,41,-27","w":193},"'":{"d":"51,-167r-23,0r0,-99r23,0r0,99","w":79},"`":{"d":"35,-277r79,46r-9,16r-80,-42","w":150},"\u00a0":{"w":86,"k":{"T":28,"V":15,"W":12,"Y":26,"A":14}}}});

 
Cufon.replace('.itc_avant', { fontFamily: 'itcavant', hover:true }); 
