/*
 * 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(/\b./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=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;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;if(!font)return;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(replace&&type==3){if(anchor){anchor.appendData(node.data);el.removeChild(node);}
else anchor=node;if(next)continue;}
if(anchor){el.replaceChild(process(font,CSS.whiteSpace(anchor.data,style,anchor,lastElement,simple),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;}}}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=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},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',textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:'none',trim:'simple'};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('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-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'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(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;};})());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;}'+'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;};})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1995 Image Club Graphics, Inc.
 */
Cufon.registerFont({"w":445,"face":{"font-family":"Lemonade ICG","font-weight":700,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 7 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"21","cap-height":"15","bbox":"-121.376 -923.087 898.314 299.003","underline-thickness":"20","underline-position":"-123","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":211},"!":{"d":"20,-38v-1,-28,25,-48,53,-48v26,0,51,20,51,46v0,32,-30,55,-62,54v-28,0,-42,-17,-42,-52xm111,-208v6,57,3,93,-39,93v-20,0,-36,-25,-33,-46r48,-406v6,-23,-4,-132,34,-135v45,-5,57,42,41,77r-13,119v-2,19,-14,103,-37,251v-2,11,-2,26,-1,47","w":192},"\"":{"d":"59,-502v0,-59,-35,-182,37,-182v25,0,38,14,38,43v0,61,-5,120,-16,176v-2,10,-12,12,-31,7v-22,-6,-28,-17,-28,-44xm180,-656v0,-22,17,-44,40,-43v25,0,38,14,38,43v0,68,-4,122,-12,163v-2,16,-16,24,-34,20v-48,-12,-22,-64,-28,-116v-4,-37,-4,-60,-4,-67","w":315},"#":{"d":"126,-571v0,-30,-26,-104,18,-102v39,1,32,22,38,61v2,11,1,20,-3,28r53,-9v5,-34,-23,-96,23,-94v34,1,31,46,30,83v24,-6,67,-4,64,22v-4,24,-18,33,-58,31r0,50v47,-20,66,19,42,48v-3,10,-38,10,-44,12v5,30,12,96,-24,96v-37,0,-37,-42,-31,-81r-55,7v-4,26,19,107,-27,107v-20,0,-31,-15,-32,-44v-1,-29,-2,-45,-1,-48v-20,6,-64,3,-61,-23v-8,-34,38,-38,67,-41r4,-47v-22,5,-94,42,-93,-11v1,-49,44,-30,90,-45xm229,-538r-47,6r-3,57r52,-10","w":394},"$":{"d":"346,-418v-40,0,-42,-39,-14,-74v44,-54,-1,-145,-64,-126r-15,286v82,36,117,163,69,248v-12,22,-51,46,-91,65v-1,25,-9,160,-39,148v-32,-4,-61,-44,-34,-79v16,-21,15,-37,13,-67v-103,6,-178,-106,-124,-197v22,-37,76,-34,77,12v4,15,-38,29,-36,42v4,44,27,91,85,78r18,-220v-90,-47,-136,-40,-136,-149v0,-106,64,-198,150,-220v4,-41,-11,-109,32,-110v43,-1,35,57,38,99v110,-8,157,132,112,228v-11,24,-25,36,-41,36xm241,-94v51,-26,53,-96,15,-146xm199,-602v-49,20,-86,87,-86,157v0,37,25,65,76,82","w":438},"%":{"d":"372,-237v64,-2,111,66,110,129v-2,62,-33,103,-86,101v-77,-3,-117,-46,-117,-122v0,-63,34,-106,93,-108xm27,-555v0,-53,43,-92,95,-92v59,0,114,69,114,130v0,63,-31,95,-93,95v-72,0,-116,-59,-116,-133xm375,-663v-9,74,-89,314,-101,370v-15,70,-40,165,-66,287v-4,19,-17,28,-40,28v-52,0,-32,-43,-20,-77v46,-132,53,-233,100,-371v28,-82,37,-138,51,-223v7,-45,38,-66,67,-39v8,7,10,16,9,25xm102,-544v0,44,63,97,71,30v-1,1,-2,-6,-4,-22v-23,-7,-24,-42,-50,-49v-11,1,-17,14,-17,41xm353,-124v0,51,51,83,65,29v0,-5,0,-12,1,-22v-22,-5,-18,-48,-42,-57v-16,-1,-24,16,-24,50","w":511},"&":{"d":"57,-582v0,-65,52,-115,118,-115v154,0,230,109,153,205r-106,131r137,183r24,-20v3,-19,14,-28,33,-28v29,0,47,52,21,72v-1,1,-13,9,-37,25v21,20,62,38,64,73v2,32,-52,55,-72,24v-19,-30,-17,-26,-35,-42v-44,34,-92,97,-161,97v-128,0,-223,-156,-140,-272r81,-113v-50,-60,-80,-139,-80,-220xm117,-220v-62,68,-5,178,79,175v25,5,81,-45,118,-87r-137,-180xm183,-639v-73,5,-72,124,-39,180r29,55v33,-48,103,-111,114,-167v6,-29,-74,-71,-104,-68","w":498},"'":{"d":"65,-477v16,-72,-36,-201,39,-201v25,0,38,14,38,43v0,61,-7,120,-16,176v-3,18,-51,6,-60,-3v-2,-4,-2,-8,-1,-15","w":200},"(":{"d":"169,-681v31,-36,108,2,72,40v-81,88,-156,230,-138,399v12,109,36,161,90,236v2,9,64,37,56,62v0,44,-45,61,-71,32v-72,-80,-149,-222,-149,-370v0,-147,70,-318,140,-399","w":273},")":{"d":"96,112v-35,32,-100,-6,-68,-47v124,-88,215,-311,156,-512v-15,-51,-33,-110,-86,-147v-34,-24,-11,-78,21,-78v34,0,33,13,57,47v47,67,97,198,97,303v0,162,-89,352,-177,434","w":292},"*":{"d":"179,-493v-6,23,-22,116,-71,92v-12,-6,-19,-14,-19,-28v9,-30,25,-47,49,-83v-41,-12,-97,21,-100,-31v-3,-45,39,-33,76,-34v0,-3,-38,-29,-33,-44v-2,-40,53,-49,71,-21v8,11,15,25,22,41v13,-15,13,-87,67,-78v58,10,10,69,-10,84v31,-11,75,1,73,24v9,43,-67,28,-88,33v6,20,66,51,68,75v1,19,-20,36,-41,34v-34,-3,-42,-31,-64,-64","w":334},"+":{"d":"244,-352v-5,23,-6,94,-3,113v60,12,80,-14,131,-16v15,-1,31,18,30,33v-2,60,-99,41,-164,54v-5,36,-12,131,-11,155v0,27,-13,41,-38,41v-24,0,-36,-15,-36,-46v0,-46,23,-102,20,-150v-21,-1,-86,20,-116,25v-31,4,-39,-58,-11,-65v34,-8,70,-12,128,-19v2,-62,-35,-159,34,-159v24,0,36,11,36,34","w":429},",":{"d":"22,-44v0,-29,30,-50,59,-50v54,0,63,91,32,130v-16,21,-34,32,-57,32v-40,0,-51,-39,-11,-42v13,-1,18,-7,17,-18v-27,-3,-40,-20,-40,-52","w":154},"-":{"d":"328,-196v-79,0,-156,9,-234,9v-43,0,-65,-14,-65,-42v0,-35,72,-51,116,-37v40,2,141,-20,177,-19v41,0,62,15,62,44v0,30,-19,45,-56,45","w":407},"\u2010":{"d":"328,-196v-79,0,-156,9,-234,9v-43,0,-65,-14,-65,-42v0,-35,72,-51,116,-37v40,2,141,-20,177,-19v41,0,62,15,62,44v0,30,-19,45,-56,45","w":407},".":{"d":"73,5v-68,-11,-39,-127,23,-127v22,0,33,21,33,62v1,33,-24,70,-56,65","w":164},"\/":{"d":"280,-659v-48,139,-82,334,-130,481v-20,63,-32,136,-47,194v-8,32,-73,29,-69,-9v12,-97,75,-260,92,-342v5,-21,28,-129,69,-325v3,-20,24,-40,47,-38v25,2,38,15,38,39","w":303},"0":{"d":"453,-377v-1,208,-13,398,-188,400v-158,2,-229,-130,-229,-301v0,-189,79,-396,242,-393v141,2,177,125,175,294xm265,-598v-91,-5,-159,215,-159,323v0,115,57,231,162,231v57,0,118,-70,116,-126v6,-26,-25,-35,-27,-54v-2,-31,29,-101,29,-133v0,-30,-23,-95,-20,-126v20,-60,-51,-112,-101,-115","w":484},"1":{"d":"209,-679v28,-30,87,-18,85,27v0,13,-4,25,-13,34v-1,47,-2,123,2,230v3,95,2,206,-8,332v0,0,105,-17,105,19v0,51,-46,43,-105,43v-10,6,-36,23,-57,10v-35,-22,-110,30,-112,-27v-1,-43,62,-46,105,-35v3,-47,6,-118,10,-211v6,-121,-6,-136,-5,-236v1,-90,2,-128,2,-128v-19,6,-106,42,-103,-12v3,-47,45,-25,94,-46","w":484},"2":{"d":"408,-20v-71,11,-128,7,-192,32v-28,10,-66,22,-115,22v-36,0,-30,-47,-11,-74v28,-39,75,-90,101,-126v100,-137,144,-178,153,-340v8,-139,-79,-172,-152,-98v-36,36,-57,59,-38,108v16,41,12,96,-29,96v-34,0,-33,-35,-39,-83v-18,-148,140,-275,272,-183v59,41,64,122,43,200v-27,51,20,91,-15,127v-60,62,-89,128,-139,195r-71,98v35,-11,92,-26,171,-37v50,-7,77,6,79,31v2,19,-4,30,-18,32","w":484},"3":{"d":"100,-548v0,-83,84,-153,168,-146v77,6,143,71,143,152v0,96,-64,170,-128,203v42,21,115,105,115,164v0,103,-93,189,-196,189v-71,0,-144,-46,-144,-112v0,-40,39,-88,78,-85v34,3,37,41,4,59v-36,19,-25,55,7,66v45,16,110,12,143,-26v66,-76,42,-159,-47,-217v-16,-11,-63,8,-61,-25v2,-39,62,-54,91,-73v50,-34,74,-83,74,-144v0,-77,-87,-113,-152,-75v-23,13,-34,28,-34,47v0,53,-11,78,-32,74v-19,-4,-29,-21,-29,-51","w":484},"4":{"d":"154,-269v-33,32,-77,-11,-73,-50v4,-44,23,-138,27,-179v7,-84,13,-139,11,-164v-1,-17,18,-36,34,-36v80,0,22,162,18,200v-5,57,-15,107,-20,152v26,-13,63,-32,113,-38v21,-93,39,-209,72,-284v11,-26,25,-39,44,-39v25,0,33,19,25,39v-21,58,-58,157,-78,259v4,-2,26,-21,37,-20v17,0,31,9,33,28v4,31,-16,51,-68,57v-23,96,-13,212,-14,332v0,33,-15,50,-40,50v-27,0,-39,-17,-34,-52v13,-89,19,-191,19,-305v-37,10,-76,21,-106,50","w":484},"5":{"d":"387,-232v19,145,-76,260,-208,250v-75,-6,-137,-12,-137,-69v0,-61,48,-55,72,-19v27,41,62,20,123,23v53,-16,98,-113,89,-188v-5,-45,-42,-67,-115,-67v-50,0,-107,40,-119,-15v24,-95,35,-206,54,-308v-28,-16,-24,-58,18,-62v10,-8,42,3,49,2v52,-1,125,-20,192,-34v14,-3,32,13,34,26v9,61,-153,59,-227,66r-45,263v56,2,136,9,158,22v34,20,55,55,62,110","w":484},"6":{"d":"136,-383v46,-31,38,-33,95,-35v121,-5,202,110,201,235v-1,150,-70,206,-221,208v-84,-24,-117,-182,-136,-282v-37,-2,-38,-57,-2,-67v-2,-72,-10,-141,12,-200v37,-97,69,-169,169,-177v75,-6,170,88,170,160v0,51,1,61,-36,61v-31,0,-46,-22,-46,-65v0,-107,-121,-109,-158,-39v-16,30,-57,133,-48,201xm365,-177v0,-79,-54,-174,-130,-172v-37,0,-68,14,-93,42v-1,69,23,150,41,211v12,41,35,61,61,61v56,0,121,-82,121,-142","w":484},"7":{"d":"411,-662v-66,218,-107,334,-159,640v-7,43,-26,64,-52,63v-21,-1,-30,-19,-27,-55v2,-28,8,-62,19,-103r128,-501v-60,19,-113,50,-181,59v-57,7,-83,-55,-37,-69v63,-19,168,-25,223,-62v38,-26,85,-3,86,28","w":484},"8":{"d":"291,-696v60,0,113,74,113,135v0,45,-43,133,-82,186v48,52,94,90,98,174v6,119,-114,214,-237,214v-65,0,-120,-78,-120,-146v0,-79,71,-174,157,-240v-42,-42,-89,-114,-89,-158v0,-85,74,-165,160,-165xm344,-584v0,-54,-98,-55,-130,-17v-54,64,-7,135,51,175v34,-33,79,-100,79,-158xm200,-46v53,-5,137,-53,147,-92v-6,-38,25,-74,5,-100v-25,-32,-41,-83,-92,-85v-63,53,-140,139,-131,180v-2,67,15,92,71,97","w":484},"9":{"d":"62,-484v0,-99,90,-207,183,-207v38,0,93,47,124,85v12,-7,45,-14,49,11v4,9,5,17,4,24r-20,151v-17,139,-60,265,-113,365v-34,64,-61,97,-82,97v-72,0,3,-91,17,-120v57,-120,45,-101,108,-276v-29,16,-71,29,-108,26v-108,-7,-162,-59,-162,-156xm233,-632v-51,0,-110,99,-108,154v3,60,22,88,84,89v68,1,138,-41,142,-99v3,-51,-72,-144,-118,-144","w":484},":":{"d":"134,-60v0,44,-56,91,-85,48v-29,-44,3,-110,51,-110v23,0,34,21,34,62xm137,-272v0,47,-58,93,-86,47v-27,-44,5,-109,52,-109v23,0,34,21,34,62","w":170},";":{"d":"32,-44v-1,-30,29,-50,59,-50v55,0,62,91,31,130v-16,20,-34,32,-57,32v-41,0,-51,-40,-10,-42v12,-1,18,-7,17,-18v-27,-3,-40,-20,-40,-52xm133,-272v0,46,-58,93,-86,47v-27,-44,5,-109,52,-109v23,0,34,21,34,62","w":170},"<":{"d":"262,-416v39,1,35,67,8,81v-59,31,-105,123,-153,182v48,36,59,39,166,93v34,17,45,40,22,65v-34,24,-65,1,-102,-22v-46,-29,-89,-62,-142,-85v-34,-15,-46,-50,-18,-73v41,-34,47,-63,77,-102v24,-20,91,-142,142,-139","w":350},"=":{"d":"332,-211v-79,0,-156,9,-234,9v-43,0,-64,-14,-64,-42v0,-35,71,-51,115,-37v40,2,141,-20,177,-19v41,0,62,15,62,44v0,30,-19,45,-56,45xm94,-149v75,0,147,-9,221,-9v41,0,62,14,62,41v0,34,-69,48,-111,35v-37,-2,-133,19,-167,18v-39,0,-59,-14,-59,-42v0,-29,18,-43,54,-43","w":423},">":{"d":"85,11v-38,-2,-33,-67,-8,-81v59,-32,105,-123,154,-183v-49,-35,-61,-38,-167,-92v-33,-17,-43,-40,-21,-65v34,-24,65,-2,103,21v47,28,89,63,142,87v32,15,43,48,16,71v-41,34,-47,64,-77,103v-22,19,-92,142,-142,139","w":356},"?":{"d":"31,-575v0,-116,224,-176,279,-68v24,49,37,151,6,216v-26,56,-68,73,-136,114v-50,30,-53,17,-36,79v10,37,71,106,33,145v-18,12,-47,5,-54,-14v-17,-47,-20,-83,-45,-135v-40,-84,35,-122,101,-139v65,-48,98,-101,98,-159v1,-46,-18,-96,-56,-97v-37,-1,-117,23,-117,53v0,34,48,119,-19,117v-36,0,-54,-37,-54,-112xm140,-26v-4,-37,47,-67,79,-38v46,40,-16,109,-61,70v-11,-8,-16,-19,-18,-32","w":369},"@":{"d":"316,-524v-106,0,-213,107,-211,211v3,114,55,192,164,193v0,0,109,-9,111,21v3,48,-72,36,-119,36v-138,0,-220,-118,-220,-262v0,-131,131,-261,262,-261v114,0,250,94,250,203v0,90,-68,216,-154,214v-32,-1,-37,-14,-68,-31v-61,58,-173,17,-173,-72v0,-116,100,-242,215,-176v24,-21,58,-8,56,27v-13,40,-50,143,-50,175v0,18,7,27,22,27v41,0,87,-104,81,-156v-10,-88,-70,-149,-166,-149xm326,-297v-5,-24,13,-39,13,-57v0,-85,-75,-58,-101,-4v7,19,-13,35,-19,46v-26,47,8,83,55,80v31,-2,48,-24,52,-65","w":587},"A":{"d":"146,-384v39,-106,51,-143,79,-268v-37,-26,-30,-77,11,-83v19,-3,35,14,46,48r57,170r44,121v32,0,61,-9,66,25v9,25,-20,51,-46,46v6,79,76,210,95,293v9,37,0,62,-31,62v-53,0,-43,-71,-64,-119v-16,-38,-23,-67,-28,-85v-7,-22,-18,-58,-32,-109v-3,-9,-6,-24,-10,-44v-164,3,-38,-8,-138,8v-14,37,-46,170,-56,202v-9,30,-25,76,-46,139v-12,36,-68,21,-67,-13v15,-62,36,-111,58,-186r40,-136v-26,6,-45,8,-48,-29v-2,-27,36,-56,70,-42xm263,-521v-11,29,-26,74,-45,134v47,0,31,1,96,-4v-12,-29,-29,-72,-51,-130","w":527,"k":{"\u2019":101,"\u201d":101,"w":52,"v":52,"t":62,"s":13,"q":28,"o":23,"g":22,"f":43,"e":17,"Y":87,"W":82,"V":45,"T":134,"Q":34,"P":52,"O":22,"G":43,"C":26,"'":76,"\"":86}},"B":{"d":"67,-665v-9,-52,67,-69,79,-26v157,-16,274,52,274,197v0,59,-37,119,-92,159v50,66,95,106,95,196v0,105,-77,160,-188,152v-13,-1,-43,-3,-89,-4v-4,15,-35,40,-46,37v-26,4,-40,-41,-32,-75v-13,-7,-45,-30,-42,-44v6,-27,7,-34,40,-30r3,-175v-17,-16,-10,-40,0,-55r-2,-261v-28,-13,-28,-57,0,-71xm263,-614v-37,2,-36,-20,-86,-9r-35,3r-1,265v8,-2,20,-5,37,-8v93,4,168,-49,168,-140v0,-52,-42,-103,-83,-111xm137,-74v13,26,143,26,175,8v33,-19,51,-54,34,-112v-34,-117,-97,-157,-206,-115","w":457,"k":{"z":28,"x":33,"v":23,"t":28,"j":28,"f":28,"Y":34,"X":26,"W":34,"V":30,"T":60,"P":16,"N":34,"M":21,"L":26,"I":33,"G":16,"A":30}},"C":{"d":"341,-688v82,0,154,46,173,126v5,25,-42,38,-60,20v-17,-17,-28,-40,-43,-59v-12,-14,-37,-20,-74,-20v-123,0,-240,176,-236,309v4,146,23,252,143,252v121,0,202,-64,225,-195v8,-45,68,-44,68,-5v1,145,-140,278,-290,271v-174,-8,-208,-120,-213,-327v-5,-186,129,-372,307,-372","w":568,"k":{"z":43,"x":63,"w":52,"v":43,"t":62,"j":37,"f":33,"Z":34,"Y":52,"X":47,"W":21,"V":21,"T":43,"P":12,"O":-26,"N":26,"M":12,"L":21,"J":21,"I":65,"A":34}},"D":{"d":"81,-625v-25,0,-58,-34,-27,-50v24,-6,29,-27,52,-29v27,-3,27,13,61,13v8,0,35,7,80,20v145,43,238,127,241,297v2,152,-63,277,-159,336v-41,25,-120,42,-209,45v-23,30,-69,18,-63,-38v-30,-6,-27,-47,5,-54v0,-97,-3,-186,3,-266v6,-77,13,-161,16,-274xm416,-356v0,-177,-99,-242,-267,-268r-20,352r-4,161v3,46,13,50,70,49v33,0,66,-12,101,-36v80,-55,120,-141,120,-258","w":530,"k":{"x":57,"j":43,"Z":43,"Y":55,"X":73,"W":30,"V":34,"T":82,"S":16,"R":21,"P":21,"N":30,"M":26,"L":21,"J":43,"I":61,"A":47,".":37,",":28}},"E":{"d":"111,-707v18,-5,42,36,45,36v59,-2,161,-43,229,-43v35,0,54,38,29,63v-34,33,-88,17,-147,28r-109,20v-8,73,-12,141,-12,203v56,-3,150,16,208,16v31,0,61,42,30,60v-58,34,-161,-33,-240,-2v-6,18,-13,56,-16,114v-1,25,8,105,-8,146v68,10,165,-4,228,-12v66,-7,59,69,9,71v-83,5,-177,-10,-245,11v-1,21,-11,31,-30,31v-17,1,-34,-15,-33,-32v-34,-6,-22,-61,5,-67r23,-267v-31,-13,-29,-55,6,-67r2,-195v-35,-13,-26,-57,7,-69v-8,-22,1,-46,19,-45","w":438,"k":{"z":23,"x":33,"w":62,"v":47,"t":47,"j":43,"g":28,"f":23,"X":26,"S":21,"R":26,"N":26,"J":34}},"F":{"d":"106,-84v-1,23,9,119,-44,110v-47,10,-31,-64,-29,-90v6,-62,11,-150,23,-261v-31,-9,-30,-57,6,-68r2,-204v-35,-13,-26,-57,7,-69v-7,-24,5,-38,28,-38v21,0,33,10,36,29v115,7,136,-30,227,-30v35,0,52,38,29,63v-22,22,-38,12,-86,17v-55,5,-100,19,-168,18v-10,87,-12,132,-12,212v56,4,150,-2,206,-6v32,-3,59,43,29,60v-46,26,-126,-4,-189,12v-11,0,-27,3,-48,8v-17,48,-12,141,-17,237","w":413,"k":{"z":62,"y":52,"x":120,"w":62,"v":67,"u":56,"t":72,"s":33,"r":28,"q":52,"p":33,"o":47,"n":33,"m":43,"l":28,"j":67,"g":66,"f":33,"e":76,"d":37,"c":52,"a":67,"X":70,"U":34,"S":56,"R":47,"Q":30,"P":30,"O":21,"N":69,"M":70,"J":95,"G":26,"F":16,"E":16,"C":26,"A":78,";":47,":":37,".":173,",":184}},"G":{"d":"28,-322v0,-190,123,-389,301,-376v61,4,98,6,110,9v61,12,110,38,113,100v2,38,-45,49,-68,16v-26,-38,-44,-32,-78,-52v-101,-26,-190,6,-246,85v-99,140,-81,487,115,479v134,-5,194,-75,233,-191v-47,13,-101,44,-135,49v-42,6,-58,-67,-16,-79v72,-21,236,-75,290,-74v20,0,43,37,24,56v-14,13,-58,21,-86,26v-16,144,-152,287,-309,287v-169,0,-248,-150,-248,-335","w":701,"k":{"\u2019":67,"\u201d":57,"z":86,"x":105,"w":52,"v":28,"t":67,"j":71,"Z":105,"Y":112,"X":121,"W":82,"V":56,"T":130,"S":56,"R":34,"P":56,"N":47,"M":43,"L":52,"J":78,"I":117,"A":56,".":100,",":85,"'":67,"\"":71}},"H":{"d":"501,-401v13,10,23,52,0,64v8,69,13,211,5,322v-1,20,-17,30,-38,34v-43,8,-42,-55,-40,-97r7,-177r-3,-84r-210,-2v-28,1,-58,2,-91,4v-8,71,-6,116,-6,286v0,68,-44,93,-71,50v-8,-13,-10,-29,-8,-45v18,-144,19,-163,7,-279v-21,-4,-31,-18,-30,-41v1,-21,12,-33,32,-35v0,-31,-1,-82,-1,-151v0,-56,-14,-151,44,-151v57,0,33,93,30,136v-5,60,-5,113,-4,159v111,4,192,-10,312,0r-2,-183v-1,-67,3,-116,52,-116v21,0,31,13,31,40v0,-7,-3,16,-8,68v-5,57,-8,123,-8,198","w":540},"I":{"d":"157,-627v-43,8,-139,38,-135,-25v2,-29,4,-29,44,-29v52,0,82,-1,89,0v10,-25,53,-27,69,-6v45,3,114,-12,114,39v-9,28,-57,42,-110,25v-29,154,3,266,0,415r0,140v5,0,37,-13,51,-10v33,7,50,18,50,37v-7,34,-34,46,-90,30v-3,1,-31,29,-46,26v-15,0,-28,-5,-39,-15v-33,18,-120,33,-126,-15v-6,-50,95,-37,127,-41v14,-187,2,-377,2,-571","w":360,"k":{"w":67,"v":62,"t":81,"s":37,"q":57,"o":57,"j":33,"g":62,"f":62,"e":57,"d":57,"c":47,"a":47,"U":21,"S":26,"Q":56,"O":43,"G":34,"C":38}},"J":{"d":"445,-680v0,45,-26,47,-82,49v-51,2,-41,24,-43,104r-9,347v-14,102,-62,196,-160,200v-56,2,-132,-68,-129,-122v-8,-46,69,-149,105,-137v17,6,26,20,27,41v7,24,-59,73,-59,92v0,35,19,53,57,53v71,1,89,-132,94,-221r16,-334r-101,10v-16,1,-29,-20,-27,-37v4,-42,55,-21,90,-22r47,-14v-6,-17,8,-34,23,-35v18,-1,28,5,30,22v31,-4,57,-23,91,-20v20,2,30,11,30,24","w":470,"k":{"z":91,"y":92,"x":125,"w":91,"v":95,"u":91,"t":91,"s":86,"r":76,"q":81,"p":86,"o":95,"n":86,"m":81,"j":120,"g":91,"f":52,"e":86,"d":96,"c":95,"a":110,"X":30,"U":44,"S":78,"R":34,"Q":78,"O":69,"N":83,"M":91,"J":95,"G":69,"C":69,"A":100,";":71,":":57,".":101,",":100}},"K":{"d":"53,-311v-27,0,-44,-32,-18,-50r21,-18r1,-288v0,-30,12,-45,34,-49v58,-10,34,107,30,149v-1,16,-3,65,-6,146r19,-14v-15,-21,14,-43,34,-42v9,0,14,3,17,10v32,-43,91,-140,110,-198v10,-32,71,-26,69,9v-3,50,-97,198,-152,241v33,57,81,171,131,251v29,46,49,79,60,123v0,17,-16,35,-34,34v-21,-1,-43,-30,-73,-81v-20,-35,-68,-157,-104,-219v-25,-43,-37,-65,-37,-66v-11,12,-26,24,-43,36r10,314v0,30,-10,45,-30,45v-29,0,-44,-13,-44,-40","w":423,"k":{"w":81,"v":94,"u":33,"t":67,"s":37,"q":47,"o":47,"g":43,"f":62,"e":52,"d":47,"c":47,"a":37,"U":12,"Q":26,"O":40,"J":30,"G":34,"C":33}},"L":{"d":"457,12v-83,0,-233,-66,-331,-48v-2,30,-17,45,-44,45v-14,0,-21,-10,-21,-29v-31,4,-56,-43,-21,-58v10,-4,20,-8,29,-11v37,-189,25,-382,-6,-563v-4,-24,20,-57,44,-53v29,-2,42,51,34,88v0,6,19,215,19,264v0,61,-19,212,-21,247v78,15,180,25,303,41v42,6,60,22,53,45v-6,21,-19,32,-38,32","w":517,"k":{"\u2019":134,"\u201d":120,"y":43,"w":188,"v":173,"u":37,"t":105,"s":82,"q":87,"o":91,"j":47,"g":86,"f":76,"e":86,"d":101,"c":71,"a":75,"Z":47,"Y":178,"W":178,"V":114,"U":34,"T":197,"S":34,"Q":100,"P":65,"O":95,"G":73,"C":55,"'":101,"\"":140}},"M":{"d":"137,-595v-8,-26,-46,-113,3,-123v22,-4,39,10,50,41v3,7,8,34,17,80v23,30,28,80,50,121v51,94,69,176,109,274v39,-123,112,-310,158,-398v0,-14,0,-36,2,-65v2,-32,17,-47,42,-50v38,-4,60,36,43,72v-19,26,-9,44,-25,75r36,283v7,48,14,130,22,247v5,72,-36,79,-66,33v-25,-39,-7,-92,-7,-134v0,-50,-13,-96,-25,-136v19,-58,-11,-107,-13,-170v-57,107,-87,215,-134,346v20,26,10,78,-25,81v-33,3,-48,-24,-54,-69v-18,-138,-95,-270,-139,-394r-28,160v-5,28,-40,169,-42,223v-1,30,6,128,-40,117v-42,1,-53,-51,-32,-81r53,-264v17,-82,46,-174,45,-269","w":672,"k":{"w":43,"v":43,"t":28,"f":33,"T":38,"G":17}},"N":{"d":"403,-621v-2,-43,-4,-93,37,-88v42,5,47,57,34,103v-27,98,-14,182,-29,302v-8,65,-12,115,-12,152v0,21,-13,62,-12,83v28,26,32,100,-14,100v-23,0,-38,-10,-46,-28v-37,-80,-70,-184,-102,-270r-78,-187r-64,354v-1,56,1,129,-51,129v-18,0,-37,-25,-33,-45v-4,-6,16,-29,16,-31v-3,-60,34,-205,37,-233r33,-248v5,-13,11,-32,17,-57v-12,-25,-35,-54,-37,-85v-4,-49,42,-48,59,-23v10,-12,56,-22,56,9v7,23,3,57,-12,102r161,407v-2,-58,27,-187,24,-246v-2,-45,18,-157,16,-200","w":508,"k":{"f":33}},"O":{"d":"74,-107v-133,-232,44,-594,281,-594v92,0,198,102,218,174v7,23,11,76,18,158v12,133,-85,316,-169,360v-80,42,-156,36,-249,-12v-41,-21,-84,-38,-99,-86xm487,-205v75,-171,49,-415,-151,-423v-119,-5,-235,193,-240,316v-5,123,38,219,144,235v42,-4,73,-4,79,36v24,-1,41,-5,52,-11v47,-25,83,-77,116,-153","w":628,"k":{"j":33,"g":23,"Z":26,"Y":38,"X":66,"W":21,"T":43,"R":26,"Q":-16,"O":-16,"N":21,"M":16,"K":-21,"J":30,"I":43,"G":-12,"C":-16,"A":38,".":67,",":62}},"P":{"d":"133,26v-73,-7,-30,-146,-27,-203r5,-104v-21,-3,-31,-16,-30,-39v1,-17,12,-28,31,-32v3,-80,-17,-155,-34,-219v-23,17,-65,6,-62,-24v3,-23,14,-37,46,-45v-19,-28,-5,-77,27,-77v24,0,40,20,49,38v33,-8,78,-16,98,-16v103,0,232,92,229,193v-4,159,-139,188,-284,220r-7,162v3,48,12,151,-41,146xm182,-353v109,-1,220,-50,214,-149v-7,-104,-145,-152,-249,-103v15,77,27,161,35,252","w":502,"k":{"x":76,"u":57,"q":23,"o":47,"j":57,"g":47,"e":47,"d":37,"c":47,"a":57,"Z":52,"Y":16,"X":87,"T":30,"S":21,"R":22,"N":43,"M":34,"J":90,"I":30,"A":60,";":71,":":86,".":95,",":115}},"Q":{"d":"32,-282v0,-167,125,-429,274,-415v77,8,72,47,152,69v54,15,101,65,122,100v15,25,22,59,22,100v1,148,-37,267,-103,357v24,10,45,30,69,48v25,20,9,71,-23,66v-45,-5,-72,-45,-109,-62v-43,23,-87,35,-133,35v-164,3,-271,-129,-271,-298xm426,-115v76,-58,102,-186,101,-323v-1,-67,-33,-108,-86,-126v-12,-8,-140,-22,-156,-55v-55,3,-100,51,-121,96v-44,92,-66,180,-66,263v0,128,126,243,259,192v-21,-20,-58,-33,-57,-72v1,-54,50,-43,82,-14","w":641,"k":{"Z":43,"Y":30,"W":26,"T":77,"J":43,"I":40,"A":26}},"R":{"d":"473,-472v0,104,-64,156,-160,178v38,113,66,188,115,292v36,47,-2,105,-45,76v-15,-10,-10,-20,-15,-42v-14,-24,-57,-145,-64,-160r-66,-155v-30,0,-57,3,-85,4r-35,158v-4,31,-15,157,-66,137v-21,-3,-31,-17,-31,-42v0,-78,35,-123,62,-265v-35,-8,-29,-75,14,-69v18,-80,10,-143,4,-221v-23,10,-59,-5,-57,-24v-8,-22,23,-45,54,-48v-14,-35,7,-73,40,-70v20,-3,40,25,41,45v111,-9,170,14,231,73v42,41,63,85,63,133xm289,-355v117,-18,147,-129,75,-204v-40,-43,-111,-60,-188,-44v-1,112,4,119,-10,255r52,2v-4,-19,-4,-36,22,-36v21,0,38,9,49,27","w":505,"k":{"z":18,"y":18,"x":67,"u":37,"s":13,"q":33,"o":43,"j":71,"g":47,"f":23,"e":28,"d":33,"c":43,"a":57,"Z":61,"Y":43,"X":38,"W":16,"V":8,"T":43,"S":16,"R":30,"N":38,"M":30,"L":30,"J":47,"I":38,"A":30,".":47,",":57}},"S":{"d":"60,-460v-10,-94,111,-239,196,-236v69,1,119,45,152,131v1,6,29,39,25,54v0,45,-64,67,-87,24v-8,-14,-9,-63,-18,-78v-23,-37,-45,-58,-71,-58v-48,-2,-130,100,-120,156v7,39,40,87,109,142v63,50,106,71,112,142v9,107,-70,198,-175,198v-89,0,-160,-53,-160,-138v0,-81,27,-146,81,-97v36,32,-10,68,-7,99v6,66,116,84,157,31v32,-41,33,-101,-3,-137v-6,-7,-23,-21,-50,-44v-70,-59,-132,-105,-141,-189","w":457,"k":{"z":43,"y":33,"x":86,"w":105,"v":113,"u":37,"t":37,"s":28,"r":23,"q":28,"p":37,"o":33,"n":37,"m":33,"j":43,"g":37,"f":37,"e":33,"d":37,"c":37,"a":37,"Z":26,"X":65,"N":26,"M":26,"J":38,"I":17,"A":47,";":62,":":47,".":62,",":57}},"T":{"d":"22,-642v2,-51,81,-31,121,-27v24,2,79,-7,96,-8v6,-35,53,-31,66,-6v66,8,130,-10,189,-10v39,0,59,12,55,36v-12,72,-152,29,-241,39v3,46,-6,82,-5,136r5,266v1,25,-10,97,-6,128v13,34,1,112,-34,104v-38,0,-55,-42,-37,-76v12,-149,7,-290,7,-420v0,-37,8,-95,1,-135r-170,14v-22,1,-48,-18,-47,-41","w":581,"k":{"z":207,"y":197,"x":211,"w":207,"v":216,"u":187,"t":134,"s":207,"r":183,"q":192,"p":163,"o":202,"n":183,"m":197,"j":207,"i":37,"g":177,"f":57,"e":177,"d":182,"c":196,"a":192,"Z":21,"X":74,"U":47,"S":87,"R":43,"Q":140,"O":134,"N":100,"M":87,"J":126,"G":135,"F":21,"E":21,"C":157,"A":131,";":115,":":120,".":120,",":129}},"U":{"d":"343,-629v-1,-45,6,-63,40,-66v19,-1,39,17,38,36v-4,71,8,281,8,345v0,139,-31,233,-88,289v-63,63,-184,44,-243,-2v-80,-62,-79,-234,-43,-356v17,-59,50,-198,63,-286v6,-39,85,-43,88,-6v-48,137,-90,293,-98,467v-5,98,37,147,126,147v76,0,122,-120,122,-202v0,-85,-8,-266,-13,-366","w":467,"k":{"x":47,"J":16,"I":22,"A":30}},"V":{"d":"458,-681v32,0,43,34,22,67v-56,88,-93,191,-141,286r-140,269v5,17,20,88,-21,84v-11,2,-20,0,-29,-6v-28,18,-62,-13,-48,-42r20,-35v-51,-220,-49,-396,-91,-603v0,-23,10,-38,31,-38v50,0,62,66,62,125v0,125,21,318,52,430v23,-50,64,-159,114,-232v37,-55,29,-90,63,-146v18,-30,44,-71,63,-122v10,-25,24,-37,43,-37","w":524,"k":{"z":91,"y":101,"x":148,"w":81,"v":76,"u":120,"t":91,"s":91,"r":81,"q":106,"p":95,"o":115,"n":91,"m":100,"j":111,"g":120,"f":57,"e":129,"d":120,"c":115,"a":115,"X":30,"U":52,"S":65,"R":26,"Q":73,"O":69,"N":64,"M":73,"J":96,"G":69,"C":64,"A":100,";":105,":":120,".":149,",":149}},"W":{"d":"44,-572v-18,-38,-12,-86,29,-86v17,0,33,10,41,31v16,40,47,176,64,235v16,56,42,133,77,230v5,-91,8,-196,26,-312v7,-43,0,-195,73,-199v43,-3,55,82,65,122r49,189v10,30,25,79,46,147v7,-36,17,-95,35,-176v10,-45,47,-131,56,-226v4,-35,17,-57,34,-78v24,-30,58,-9,50,41v-19,119,-52,197,-89,350r-51,212v18,39,0,112,-33,107v-45,7,-54,-68,-33,-100v-46,-80,-94,-294,-130,-429v-3,22,-8,56,-14,103v-2,15,-12,129,-31,343v16,31,2,86,-28,89v-31,3,-56,-32,-60,-86r-157,-460v-1,-3,-6,-19,-19,-47","w":720,"k":{"z":62,"y":67,"x":120,"w":52,"v":47,"u":67,"t":52,"s":57,"r":43,"q":57,"p":57,"o":62,"n":48,"m":52,"j":91,"i":28,"g":71,"f":47,"e":62,"d":71,"c":76,"a":81,"Z":34,"X":38,"U":34,"S":47,"R":30,"Q":52,"O":43,"N":56,"M":56,"J":100,"G":52,"C":55,"A":95,";":67,":":71,".":76,",":95}},"X":{"d":"517,-699v20,3,33,43,15,65v-35,43,-96,110,-127,151r-66,89r52,121r54,116v9,19,52,96,52,141v0,48,-48,47,-69,19v-39,-52,-44,-140,-73,-198r-61,-124v-55,68,-74,104,-156,234v-6,9,-9,38,-15,48v-29,50,-44,77,-79,48v-36,-72,36,-147,67,-195v41,-63,117,-140,151,-209r-145,-219v-15,-22,-23,-36,-23,-43v-2,-44,52,-50,75,-18v30,43,96,151,133,211r67,-86v21,-29,55,-74,105,-130v16,-18,31,-24,43,-21","w":568,"k":{"z":62,"y":52,"x":52,"w":125,"v":125,"u":71,"t":105,"s":70,"r":33,"q":47,"p":33,"o":86,"n":37,"m":43,"j":52,"i":52,"h":4,"g":62,"f":57,"e":77,"d":76,"c":71,"a":71,"X":47,"U":52,"S":52,"R":43,"Q":82,"O":70,"N":43,"M":43,"G":78,"C":78,"A":38}},"Y":{"d":"306,-63v7,21,10,59,-4,77v-9,11,-64,17,-78,0v-7,-7,-8,-26,-5,-56v2,-15,3,-114,4,-296v-34,-67,-87,-140,-149,-248v-15,-15,-45,-34,-45,-58v-11,-57,40,-65,69,-44v33,23,71,119,90,157v18,36,44,77,77,126r72,-123v38,-65,72,-116,99,-157v17,-25,47,-36,71,-21v7,16,18,47,-1,65v-47,46,-71,95,-107,148v-54,79,-92,114,-92,212v0,58,0,131,-1,218","w":549,"k":{"z":145,"y":144,"x":163,"w":120,"v":130,"u":140,"t":140,"s":134,"r":121,"q":120,"p":110,"o":158,"n":120,"m":144,"j":149,"i":37,"g":168,"f":71,"e":168,"d":158,"c":153,"a":153,"Z":26,"X":52,"U":52,"S":77,"R":30,"Q":100,"O":86,"N":77,"M":73,"J":109,"G":87,"C":90,"A":118,";":120,":":125,".":149,",":149}},"Z":{"d":"54,-661v5,-41,21,-34,80,-34v73,0,178,7,279,28v52,11,79,39,53,79v-59,90,-111,188,-168,281v-24,39,-62,104,-114,196v76,30,97,36,189,36v29,0,67,23,73,27v32,22,2,79,-38,59v-58,-30,-159,-15,-215,-40v-2,-2,-14,-10,-36,-23v-3,21,-17,31,-40,31v-27,-1,-42,-27,-33,-51v-25,2,-69,-22,-58,-49v15,-36,32,-28,93,-13r120,-213r146,-242v-62,-35,-188,-45,-291,-34v-26,3,-43,-12,-40,-38","w":511,"k":{"z":28,"y":23,"w":62,"v":76,"u":47,"t":68,"s":52,"q":76,"o":47,"g":76,"f":53,"e":62,"d":67,"c":62,"a":57,"S":30,"Q":30,"P":-21,"O":16,"J":30,"G":38,"C":38}},"[":{"d":"75,-741v61,0,148,-18,147,42v0,20,-21,31,-64,32v-21,0,-38,-4,-50,-12v-7,13,-8,41,-1,86v6,37,39,381,39,532v0,67,49,33,82,27v55,3,84,63,29,81v-10,3,-68,9,-95,9v-96,0,-94,-91,-90,-187v6,-135,-46,-439,-32,-573v2,-21,14,-37,35,-37","w":309},"\\":{"d":"35,-648v-20,-43,34,-73,65,-46v9,8,14,17,17,28v13,67,36,175,68,325v17,82,81,244,92,342v4,38,-60,41,-69,9v-1,-3,-4,-17,-9,-42v-18,-98,-54,-201,-79,-296v-26,-100,-49,-242,-85,-320","w":306},"]":{"d":"234,-25v1,69,-44,92,-116,84v-56,-5,-95,-4,-95,-44v0,-32,47,-56,85,-37v21,11,31,10,49,1v7,-86,-10,-214,-4,-318v7,-107,23,-233,0,-334v-25,22,-122,13,-116,-20v-6,-60,85,-42,144,-42v35,0,39,43,44,78v18,122,-10,290,-2,433","w":274},"^":{"d":"263,-637v-28,18,-33,80,-77,82v-41,2,-45,-46,-15,-71v36,-29,30,-28,73,-77v22,-25,27,-32,44,-4v26,44,71,59,80,108v7,35,-62,57,-74,25v-9,-25,-16,-47,-31,-63","w":527},"_":{"d":"434,118r-435,-5v-17,-8,-15,-55,18,-46v75,3,143,5,204,5v98,0,168,2,210,-3v37,-4,43,34,23,47v-3,1,-9,2,-20,2","w":447},"`":{"d":"141,-672v-18,-26,1,-66,27,-69v16,-2,65,37,70,37v41,19,70,35,87,48v15,21,-1,63,-27,56v-16,-4,-65,-34,-81,-38v-43,-10,-68,-23,-76,-34","w":471},"a":{"d":"423,-373v-3,-40,-7,-83,37,-85v17,-1,45,8,43,24v-4,37,-29,88,-11,132v21,54,-6,124,-6,177v-6,18,36,149,-19,151v-31,1,-44,-20,-41,-63v-51,25,-95,55,-175,51v-121,-6,-217,-68,-217,-178v0,-148,79,-284,217,-284v69,0,126,24,172,75xm293,-387v-129,-4,-180,67,-188,205v-6,95,47,126,146,130v100,4,168,-64,168,-184v0,-47,0,-63,1,-47v-7,-91,-129,-19,-127,-104","w":543},"b":{"d":"102,-463v0,24,-14,78,20,74v21,-2,95,-32,126,-32v142,0,253,111,253,253v0,115,-99,179,-222,179v-63,0,-117,-12,-163,-36v2,22,-16,44,-38,43v-56,-1,-27,-107,-27,-154v0,-98,-17,-160,-8,-272v8,-104,1,-175,-19,-244v-1,-37,55,-49,65,-2v7,35,13,133,13,191xm113,-219v-1,113,36,165,160,165v105,0,158,-38,158,-114v0,-88,-77,-190,-152,-196v-10,2,-14,13,-17,19v-35,29,-153,-29,-151,44","w":540,"k":{"z":27,"x":37,"w":54,"v":49,"t":49,".":32,",":32}},"c":{"d":"257,-444v91,0,206,51,206,131v0,64,-61,60,-77,25r-19,-45v-24,-30,-60,-45,-108,-46v-101,-1,-161,88,-160,194v1,82,54,132,138,131v68,-1,88,-20,107,-74v10,-29,24,-43,43,-43v22,-1,45,23,45,45v0,74,-115,142,-195,142v-129,0,-208,-76,-208,-203v0,-145,87,-257,228,-257","w":492,"k":{"z":49,"x":66,"w":37,"v":32,"t":32,".":27,",":49}},"d":{"d":"264,-419v13,-5,97,26,162,27r0,-132v-1,-26,10,-99,11,-112v3,-30,15,-47,36,-50v28,3,40,14,35,33v-44,159,2,360,-27,537r-4,119v-15,33,-72,6,-61,-26v-84,59,-240,41,-314,-1v-49,-29,-74,-77,-74,-142v0,-130,106,-257,236,-253xm252,-371v-83,-3,-167,116,-167,205v0,84,89,122,183,122v104,0,157,-49,158,-148r2,-115v-3,-59,-109,-34,-141,-21v-20,-6,-17,1,-16,-28v0,-10,-6,-15,-19,-15","w":533},"e":{"d":"26,-195v0,-123,107,-264,228,-264v96,0,160,101,164,199v1,20,-12,47,-32,44v-71,-12,-225,5,-284,2v-23,86,72,173,145,173v44,0,82,-24,114,-72v24,-37,50,-45,75,-19v8,8,9,18,7,28v-7,68,-123,130,-204,130v-107,0,-213,-111,-213,-221xm117,-281v77,6,126,0,215,-8v4,-94,-102,-138,-170,-71v-25,25,-42,50,-45,79","w":470,"k":{"w":43,"v":43,"t":32,"f":21}},"f":{"d":"19,-300v4,-21,53,-55,79,-51v-9,-71,-29,-141,-29,-217v0,-88,87,-193,174,-193v62,0,108,81,108,145v0,51,-38,111,-80,74v-15,-14,-20,-35,1,-49v39,-25,-9,-96,-32,-101v-38,-8,-92,70,-97,108v-10,78,17,165,26,221v48,-14,93,-39,147,-44v23,5,32,45,11,61v-42,33,-74,21,-158,45v2,107,28,251,28,347v0,25,-12,37,-36,37v-50,0,-49,-48,-46,-99v2,-39,-11,-136,-11,-177v0,-38,3,-52,-9,-87v-17,12,-82,9,-76,-20","w":375,"k":{"x":60,"o":37,"g":37,"e":27,"d":27,"c":37,"a":48,";":65,":":93,".":113,",":104}},"g":{"d":"25,-177v0,-163,127,-317,303,-257r87,32v12,-38,43,-62,69,-38v8,34,-10,48,-20,111v7,24,11,47,11,70v0,100,-15,235,11,283v0,1,0,22,-1,63v0,118,-109,208,-233,208v-99,0,-149,-30,-152,-90v-3,-50,21,-142,65,-138v41,4,48,42,18,77v-43,50,-11,89,52,89v172,0,208,-135,168,-298v-53,39,-123,70,-185,70v-100,0,-193,-82,-193,-182xm409,-287v1,-51,-12,-61,-57,-66v-54,-6,-57,2,-73,-28v-77,-7,-109,15,-147,68v-27,38,-38,83,-38,132v0,110,127,133,219,94v81,-34,94,-86,96,-200","w":521,"k":{"j":-131}},"h":{"d":"46,-384v0,-88,-24,-244,3,-313v19,-48,78,-20,73,29v-6,79,-20,163,6,244v34,-22,74,-32,120,-31v106,2,170,91,167,233v-2,71,17,222,-38,225v-42,2,-48,-41,-44,-90v12,-129,15,-173,-8,-249v-11,-35,-38,-52,-74,-52v-76,1,-123,10,-136,65v-14,58,-1,194,-1,269v0,35,-15,74,-47,72v-22,-2,-44,-25,-42,-49r16,-141v5,-48,7,-91,7,-128v0,-11,-17,-35,-16,-46v-1,-10,14,-29,14,-38","w":451,"k":{"w":15,"v":21,"t":15}},"i":{"d":"140,-562v-28,22,-85,6,-85,-36v0,-41,49,-58,79,-29v24,14,19,50,6,65xm104,-463v42,1,31,56,30,99r-5,250v0,12,14,40,14,54v0,64,-43,102,-77,64v-24,-26,-6,-45,-6,-95r-1,-312v3,-42,18,-61,45,-60","w":189,"k":{"t":21,"f":21}},"j":{"d":"189,-596v32,29,2,82,-37,82v-54,0,-74,-50,-41,-81v22,-20,57,-20,78,-1xm157,-452v22,-2,34,34,31,56r-63,558v-25,90,-52,118,-158,121v-51,1,-86,-31,-82,-79v5,-61,-36,-160,42,-166v26,5,53,69,34,118v-9,24,-6,59,21,55v60,-8,70,-68,80,-144r42,-361v-15,-63,0,-152,53,-158","w":224,"k":{"j":-21,"f":21,"e":21,".":25,",":30}},"k":{"d":"100,-739v43,-4,38,44,35,82v10,11,8,119,1,117v-1,-1,-1,-4,-1,-9r3,205r38,-10v-2,-30,34,-37,57,-25v37,-39,71,-76,103,-131v21,-36,75,-7,69,28v-11,63,-90,111,-138,166v42,61,86,163,114,232v6,12,34,24,30,45v1,27,-23,54,-49,55v-27,1,-40,-33,-38,-73v-23,-57,-86,-170,-123,-234v-15,5,-37,11,-67,19v-11,106,1,128,1,259v0,36,-7,47,-38,49v-64,6,-40,-89,-37,-134v3,-54,3,-109,2,-164v-18,0,-31,-19,-31,-38v0,-11,12,-22,37,-32r-4,-255v1,-33,-28,-162,36,-152","w":438,"k":{"v":37,"t":32,"q":21,"o":37,"f":32,"e":21}},"l":{"d":"45,-551v0,-27,1,-161,48,-151v23,0,34,22,34,65v0,41,-16,175,-15,217r6,291v0,30,0,67,-1,111v-1,24,-10,36,-29,36v-26,0,-42,-17,-42,-51v0,-16,-4,-192,-4,-180","w":161},"m":{"d":"116,-97v1,60,7,132,-49,130v-19,-1,-41,-24,-38,-46v24,-59,33,-170,25,-284v-32,-10,-24,-67,11,-66v-12,-34,-5,-78,34,-78v25,0,39,11,42,33v33,-17,65,-47,111,-47v39,0,67,24,83,71v19,-36,34,-56,82,-56v105,0,139,132,104,240v0,30,2,63,-14,93v-11,20,-6,64,-4,74v7,47,-80,66,-84,16v-6,-84,36,-98,36,-202v0,-67,5,-93,5,-93v1,-19,-18,-54,-35,-53v-54,13,-63,88,-59,179v-10,43,-12,78,-20,147v-5,44,-44,58,-72,33v-8,-8,-13,-19,-11,-29v11,-47,34,-129,34,-221v-14,-7,-21,-22,-21,-43v-2,-10,16,-33,17,-34v-14,-14,-32,-47,-53,-45v-27,3,-78,36,-105,52v-11,51,-20,190,-19,229","w":565,"k":{"w":21,"t":21}},"n":{"d":"69,-444v19,-1,42,21,38,40v56,-64,186,-74,249,-14v23,22,56,74,48,131v-14,102,-5,192,0,258v-5,39,-56,59,-71,17v-6,-15,-15,-59,-7,-90v18,-68,8,-138,7,-218v0,-42,-33,-80,-81,-77v-30,3,-95,27,-117,60v-24,9,-31,49,-32,93r-4,215v2,24,-2,72,-34,65v-40,5,-31,-40,-31,-72r2,-303v2,-25,-8,-113,33,-105","w":442},"o":{"d":"538,-263v0,158,-107,291,-269,288v-153,-3,-237,-76,-240,-236v-3,-135,48,-206,144,-244v72,-29,148,-29,195,15v10,4,98,23,110,42v34,30,60,74,60,135xm356,-379v-41,9,-78,-1,-99,-27v-48,13,-98,43,-123,97v-35,77,-43,169,19,223v91,77,204,50,268,-59v21,-35,34,-82,35,-143v1,-47,-33,-77,-100,-91","w":568,"k":{"z":43,"x":64,"v":10,"t":15,".":43,",":49}},"p":{"d":"492,-249v0,175,-138,293,-306,229v-27,-10,-44,-16,-51,-16v-35,-5,-20,53,-20,77v0,74,5,118,-13,197v-8,35,-33,45,-56,24v-22,-19,-2,-60,-3,-88v-6,-126,5,-215,11,-335v4,-80,9,-162,2,-240v-3,-38,4,-56,35,-58v22,-1,40,22,37,44v46,-25,101,-37,164,-37v125,0,200,82,200,203xm187,-81v54,0,76,2,105,22v82,-2,129,-96,129,-190v0,-91,-45,-136,-136,-136v-140,-1,-167,63,-161,208v4,82,-5,96,63,96","w":524,"k":{"z":54,"x":71,"w":48,"v":49,"t":60,"f":32,".":32,",":37}},"q":{"d":"448,280v-31,28,-62,-7,-60,-40v0,-13,4,-23,13,-31v-8,-73,1,-152,1,-223v-1,-9,-3,-15,-7,-18v-99,46,-230,51,-299,-36v-41,-51,-64,-114,-64,-195v0,-119,81,-190,205,-188v61,0,114,12,159,36v-3,-22,16,-45,38,-44v53,3,28,109,27,159v0,75,0,122,1,140v5,84,-13,244,-2,324v54,-20,110,-129,170,-135v50,-5,49,44,21,69v-12,11,-72,46,-85,62r-63,79v-13,9,-33,21,-55,41xm245,-82v29,-22,107,13,135,-13v29,-50,27,-227,-18,-256v-23,-22,-62,-33,-119,-33v-104,0,-156,40,-156,119v0,90,67,197,141,204v13,-4,13,-11,17,-21","w":505,"k":{"y":-87,"p":-160,"j":-247,"f":-37}},"r":{"d":"251,-455v83,-3,131,104,123,196v-1,21,-16,44,-38,44v-64,0,-26,-86,-51,-128v-10,-29,-24,-43,-42,-43v-64,-2,-128,78,-128,146r1,178v1,62,0,73,-44,80v-38,-7,-36,-17,-36,-75r0,-287v5,-56,5,-95,53,-92v27,1,28,4,32,32v50,-32,67,-49,130,-51","w":407,"k":{"z":37,"x":82,"v":21,"t":15,"j":32,".":121,",":129}},"s":{"d":"272,-375v-44,-31,-156,-17,-160,42v-2,33,188,27,192,41v58,26,102,101,102,183v0,88,-56,132,-169,132v-103,0,-204,-53,-203,-148v-1,-21,15,-45,35,-44v20,0,33,15,39,45v11,53,53,79,126,79v64,0,103,-10,103,-66v0,-62,-51,-129,-132,-129v-105,0,-156,-24,-165,-100v-7,-65,92,-116,163,-116v73,0,159,28,162,89v2,37,-49,46,-67,20v-11,-15,-20,-24,-26,-28","w":442,"k":{"\u2019":49,"\u201d":32,"w":43,"v":43,"t":37,"f":49,"'":37,"\"":49}},"t":{"d":"402,-447v0,45,-61,37,-95,28r-71,-3v0,23,-3,54,-3,91v0,37,2,88,2,153v0,13,-4,60,6,139v6,52,-61,63,-78,29v-11,-89,4,-255,0,-406v-52,-1,-127,18,-132,-38v-4,-48,89,-30,135,-28r7,-177v4,-24,19,-37,44,-40v65,-5,22,100,22,138r0,73v42,5,85,7,125,0v31,1,38,8,38,41","w":423,"k":{"y":43,"x":105,"u":49,"s":32,"q":27,"o":60,"k":27,"j":60,"g":60,"f":54,"e":65,"d":54,"c":65,"a":71,";":104,":":109,".":149,",":149}},"u":{"d":"193,25v-119,-1,-166,-54,-166,-177v0,-110,34,-163,73,-250v14,-30,50,-76,86,-40v42,42,-45,105,-52,144v-30,67,-42,148,-25,222v11,20,37,30,80,30v171,-2,153,-175,135,-355v1,-4,-12,-41,-6,-54v8,-57,74,-58,80,-6v0,4,3,73,8,208v13,17,20,28,19,35v-4,19,-10,51,-16,95v5,38,12,81,-3,116v-11,25,-71,22,-69,-15v-35,31,-83,47,-144,47","w":457,"k":{"t":27}},"v":{"d":"107,-425r141,290r91,-221v5,-12,4,-50,15,-59v27,-45,80,-21,80,26v0,15,-34,66,-34,71r-114,263v11,39,-19,83,-50,76v-29,0,-45,-41,-36,-78r-149,-316v1,0,-30,-34,-24,-48v5,-45,71,-48,80,-4","w":461,"k":{"x":71,"u":32,"q":21,"o":27,"j":37,"g":32,"f":15,"e":37,"d":43,"c":32,"a":32,";":43,":":37,".":96,",":107}},"w":{"d":"239,24v-43,0,-44,-55,-47,-97r-133,-293v-51,-7,-45,-97,5,-101v33,-3,37,30,45,53v17,13,73,143,73,142r70,136r92,-246v2,-25,22,-54,47,-54v30,0,46,43,28,70v11,19,30,54,57,107v15,27,37,72,66,133r98,-259v7,-13,5,-37,16,-48v27,-28,78,-19,75,29v0,9,-2,18,-6,25v-18,36,-44,90,-76,164r-72,168v9,30,-14,66,-44,66v-28,0,-52,-34,-41,-70v-28,-65,-64,-140,-108,-224r-98,221v6,39,-17,78,-47,78","w":761,"k":{"y":27,"x":76,"u":32,"s":27,"q":21,"o":37,"j":54,"g":49,"f":32,"e":43,"d":44,"c":43,"a":37,";":60,":":49,".":107,",":118}},"x":{"d":"126,-385v-19,-31,5,-72,36,-72v11,1,23,14,34,40r55,126r37,-58v23,-25,77,-151,132,-97v22,36,-7,55,-39,93v-53,62,-63,71,-95,119r57,74v13,20,81,96,88,145v-13,46,-56,49,-83,4v-20,-33,-36,-79,-57,-105r-49,-61r-118,137v4,38,-33,69,-71,61v-24,-5,-27,-38,-11,-63v2,-4,13,-14,33,-29v24,-36,48,-54,84,-107r39,-58v-19,-56,-41,-99,-72,-149","w":467,"k":{"o":27,"f":27,"e":27}},"y":{"d":"375,-453v57,0,40,91,38,146v-1,36,-5,129,-17,187v19,18,5,51,-4,61v-6,184,-84,320,-243,320v-72,0,-140,-45,-140,-112v0,-47,20,-102,63,-98v42,4,10,65,6,86v3,37,24,57,65,57v104,0,188,-90,173,-211v-73,66,-226,41,-262,-33v-13,-27,-21,-73,-22,-139v-1,-116,20,-195,65,-238v19,-18,33,-26,44,-25v30,1,42,46,19,64v-41,31,-41,68,-51,140v-12,84,-6,141,9,171v4,17,53,28,89,28v73,1,118,-46,124,-117v6,-71,21,-139,7,-216v-7,-36,16,-71,37,-71","w":454},"z":{"d":"324,0v-49,10,-108,-1,-160,-1v-6,22,-21,55,-47,57v-28,2,-42,-12,-42,-43v-48,7,-61,-57,-12,-71v20,-6,36,-5,51,6v62,-95,125,-181,160,-304v-62,-13,-208,22,-228,-40v-5,-49,41,-58,85,-36v56,28,121,6,181,-3v34,-5,69,30,50,69v-17,77,-52,109,-105,206r-51,98v57,11,105,-27,151,-5v38,18,23,56,-33,67","w":407,"k":{"f":27,"e":27,"a":21}},"{":{"d":"153,-52v-2,53,31,89,84,61v37,-20,75,-14,75,28v0,40,-41,45,-94,50v-128,12,-156,-152,-122,-279v4,-15,-3,-49,-2,-62v-14,-5,-80,-8,-72,-40v1,-42,112,-12,112,-70v0,-118,-18,-326,122,-332v76,-3,85,56,42,79v-25,3,-62,-5,-74,16v-27,47,-18,161,-26,272v-2,26,-14,34,-26,50v8,77,-17,160,-19,227","w":344},"|":{"d":"88,-129v-14,-136,8,-261,-10,-399v-6,-47,-9,-82,-9,-105v0,-43,12,-64,35,-64v46,0,48,89,48,149r3,450v-1,43,-4,97,-4,162v0,54,-73,73,-71,14","w":224},"}":{"d":"100,-4v82,34,99,-48,92,-133v-6,-71,0,-81,8,-150v-46,-38,2,-164,0,-221v-2,-89,1,-114,-86,-110v-18,-8,-25,-26,-19,-47v5,-20,28,-30,71,-31v62,0,94,42,89,122v15,69,-23,172,1,228v17,24,99,9,96,45v6,28,-63,34,-77,39v-18,53,1,143,-15,204v-18,69,-71,140,-151,131v-68,-7,-99,-20,-85,-64v12,-37,42,-27,76,-13","w":372},"~":{"d":"312,-426v26,-12,28,-68,66,-69v50,8,44,48,7,86v-23,24,-46,64,-88,50v-28,-9,-38,-38,-54,-60r-35,25v-3,39,-83,57,-83,5v0,-20,25,-35,47,-51v12,-19,71,-84,96,-42v13,20,29,40,44,56","w":524},"\u2020":{"d":"314,-493v-5,55,-77,31,-119,26v0,23,-3,54,-3,91v0,37,2,88,2,153v0,13,-4,60,6,139v6,52,-61,63,-78,29v-11,-90,4,-255,0,-406v-38,7,-81,0,-85,-38v-3,-32,55,-41,88,-28v5,-25,-3,-89,0,-124v2,-24,19,-40,44,-40v68,0,22,94,29,157v30,21,122,-31,116,41","w":344},"\u00a2":{"d":"314,-591v-3,26,-15,41,-17,74v89,4,140,59,123,147v-3,13,-15,20,-34,21v-53,3,-10,-96,-68,-101v-10,-2,-20,-4,-29,-5v-10,52,-14,105,-18,190v-6,24,-14,63,-23,116v18,-13,41,-39,66,-40v20,-1,43,23,43,43v0,26,-78,76,-125,69v12,33,-2,64,-9,91v-6,21,-59,20,-60,-6v-1,-26,-5,-63,3,-80v-74,-13,-143,-67,-142,-146v2,-97,76,-209,139,-255v9,-7,27,-14,54,-23v19,-37,18,-83,33,-116v5,-11,12,-18,23,-19v19,-1,43,21,41,40xm211,-425v-47,25,-121,151,-127,218v-1,19,23,31,35,41v19,15,39,22,59,25v23,-115,24,-146,33,-284","w":451},"\u00a3":{"d":"73,-597v-4,-55,82,-109,138,-108v95,2,193,123,144,221v-13,25,-48,35,-66,10v-20,-28,-15,-64,11,-88v-7,-34,-40,-70,-78,-70v-49,0,-76,2,-78,45v-1,18,13,95,13,114v1,29,4,76,8,140r146,-27v24,-2,52,14,52,39v0,33,-42,47,-76,37r-124,24v-11,33,-20,112,-17,168v78,5,169,10,274,29v48,9,59,49,31,76v-9,7,-19,11,-29,8v-38,-11,-218,-54,-284,-44v-7,41,-27,57,-60,39v-9,-6,-15,-14,-16,-24v-22,0,-33,-10,-33,-29v0,-22,15,-38,46,-48r17,-175v-53,13,-95,-34,-56,-66v15,-13,36,-16,60,-13v4,-70,-18,-186,-23,-258","w":502},"\u00a7":{"d":"323,-257v68,45,91,187,19,247v-60,50,-201,42,-261,-1v-39,-28,-58,-66,-57,-117v1,-20,10,-31,29,-34v19,-3,32,15,38,54v7,48,48,70,124,70v93,0,121,-56,90,-128v-13,-28,-38,-49,-65,-67v-13,2,-44,-3,-96,-9v-117,-13,-130,-105,-56,-163v41,-33,122,-53,193,-41v-25,-28,-40,-52,-101,-52v-86,1,-147,-24,-147,-87v0,-63,81,-120,148,-117v72,3,171,30,177,85v5,35,-24,39,-47,32v-8,-5,-17,-18,-31,-36v-32,-41,-177,-22,-177,36v0,16,30,23,91,21v80,-4,185,97,185,177v0,72,-16,93,-56,130xm290,-318v37,-38,27,-72,-56,-72v-47,0,-77,17,-108,38v-26,18,-20,41,25,48v45,7,108,17,139,-14","w":423},"\u2022":{"d":"296,-452v129,75,22,288,-114,272v-76,-9,-133,-59,-145,-133v-13,-80,95,-192,170,-183v35,4,61,27,89,44","w":388},"\u00b6":{"d":"506,-604v32,13,22,68,-13,68v-43,140,-39,284,-26,490v25,46,15,86,-27,88v-43,-11,-36,-79,-36,-130v0,-226,-11,-295,17,-466r-46,-4v-41,177,-17,311,-17,535v0,51,5,72,-34,76v-63,6,-36,-113,-38,-173r-4,-131v-137,-27,-259,-67,-257,-212v1,-137,153,-238,295,-183v4,-29,47,-36,63,-12v7,9,9,18,6,29r55,4v5,-14,15,-21,31,-21v20,1,41,17,31,42xm282,-324v1,-75,6,-157,21,-251v-56,-22,-110,-29,-164,13v-67,53,-73,141,0,197v48,37,77,44,143,41","w":558},"\u00df":{"d":"251,-53v39,2,70,-40,66,-80v-7,-69,-32,-116,-70,-149v-28,-25,-54,-11,-77,-25v-16,-29,-5,-52,46,-59v26,-4,53,-5,69,-21v19,-18,29,-48,28,-91v-2,-67,-26,-112,-87,-118v-29,-3,-40,-18,-69,-8v-4,1,-15,1,-32,1v5,60,-15,108,-9,175v12,158,-16,217,3,405v5,50,-29,86,-65,58v-8,-7,-12,-20,-11,-39v5,-90,9,-182,10,-275v1,-80,0,-178,-2,-295v-23,-14,-26,-55,1,-69v-12,-56,72,-66,89,-24v131,-18,234,65,236,183v2,83,-31,132,-86,159v69,66,132,204,51,291v-29,30,-50,49,-102,49v-53,0,-79,-13,-79,-38v0,-44,53,-32,90,-30","w":413},"\u00b4":{"d":"285,-727v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":514},"\u00a8":{"d":"195,-726v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm312,-722v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":527},"\u00c6":{"d":"416,-41v9,-130,5,-161,3,-272v-51,-2,-73,0,-126,7r-57,98r-132,246v-28,36,-84,32,-86,-16v0,-17,8,-36,25,-57v48,-59,122,-180,168,-265v-22,2,-42,-16,-42,-38v0,-22,50,-44,89,-35r151,-263v5,-5,7,-22,7,-53v-1,-23,21,-45,44,-42v36,4,29,22,35,73r208,-42v43,-5,69,38,41,64v-33,30,-56,11,-132,25r-124,23r6,209v31,3,81,5,152,10v47,3,110,-18,110,37v0,33,-17,46,-50,41v-35,-6,-153,-29,-211,-18v-5,51,-9,197,-7,249r193,0v29,-25,102,-12,101,22v7,34,-59,55,-98,41v-69,-2,-139,0,-208,6v9,29,-37,48,-48,23r-6,-23v-31,0,-21,-40,-6,-50xm423,-532r-92,156r97,-9","w":811},"\u00d8":{"d":"399,-689v5,-41,60,-85,88,-40v4,18,-5,56,-19,77v79,54,118,118,118,255v0,145,-21,224,-77,308v-63,94,-157,118,-277,88v-3,22,-33,66,-55,62v-21,1,-40,-18,-43,-42v-2,-11,23,-52,22,-52v-87,-45,-130,-126,-130,-244v0,-214,137,-407,339,-417v14,0,25,2,34,5xm383,-617v-15,-16,-31,-22,-50,-19v-145,29,-275,235,-235,428v6,29,21,69,54,79v20,6,24,13,35,34v48,-151,103,-268,149,-394xm443,-580r-117,303r-72,195v7,-1,18,0,31,3v10,7,14,17,13,31v94,0,143,-35,176,-108v7,-15,45,-113,48,-186v6,-118,-21,-179,-79,-238","w":625},"\u00a5":{"d":"488,-702v35,0,40,50,21,70v-47,50,-75,97,-113,152v-51,75,-77,98,-83,179v48,-7,127,-16,127,38v0,56,-76,43,-133,44r0,42v49,-4,126,-11,126,38v0,19,-19,33,-56,40r-69,-5v1,60,29,140,-62,122v-48,-9,-17,-63,-24,-112v-43,6,-126,21,-126,-34v0,-57,75,-38,127,-43r1,-41v-54,1,-143,14,-139,-40v-4,-24,44,-50,87,-41v23,5,29,5,52,5r1,-47v-37,-68,-91,-143,-149,-243v-15,-15,-44,-32,-44,-57v-13,-59,40,-61,68,-41v33,23,72,116,91,153v16,32,42,72,76,123r73,-122v0,0,69,-112,98,-153v13,-18,29,-27,50,-27","w":555},"\u00aa":{"d":"260,-623v11,40,-2,102,11,151v-1,19,-2,38,-24,38v-15,0,-27,-7,-35,-21v-75,57,-187,-1,-187,-83v0,-75,41,-146,113,-146v20,0,64,19,71,21v0,-17,14,-25,32,-25v14,0,30,12,29,26v0,7,-11,31,-10,39xm219,-404v24,6,63,-1,64,28v1,17,-23,36,-39,35v-8,1,-33,-12,-41,-10v-33,9,-74,16,-132,17v-29,1,-43,-10,-43,-33v0,-51,93,-23,140,-30xm206,-553v0,-56,-69,-95,-104,-45v-26,36,-9,105,34,105v47,0,70,-20,70,-60","w":309},"\u00ba":{"d":"268,-509v-4,74,-144,104,-205,45v-73,-71,-16,-220,79,-220v36,0,60,6,72,21v44,-13,77,86,54,154xm219,-404v24,6,63,-1,64,28v1,17,-23,36,-39,35v-8,1,-33,-12,-41,-10v-33,9,-74,16,-132,17v-29,1,-43,-10,-43,-33v0,-51,93,-23,140,-30xm149,-622v-64,-1,-77,126,-9,129v37,2,69,-20,68,-58v0,-36,-5,-51,-36,-55v-17,-2,-20,-6,-23,-16","w":309},"\u00e6":{"d":"496,-49v7,30,2,77,-24,73v-34,3,-42,-30,-43,-63v-51,27,-93,57,-174,54v-122,-4,-220,-65,-220,-174v0,-148,75,-287,211,-288v70,-1,128,23,174,72v0,-2,-6,-55,2,-65v5,-30,77,-24,77,3v0,17,-17,68,-15,88v69,-114,209,-158,295,-50v30,37,45,83,48,136v2,19,-11,46,-30,44v-81,-10,-174,6,-284,7v-19,87,73,170,148,170v45,0,82,-25,113,-73v23,-37,45,-46,72,-22v28,51,-14,88,-62,121v-99,66,-211,57,-288,-33xm289,-386v-129,-1,-177,71,-183,208v-4,94,48,126,148,127v101,2,179,-69,165,-187v-4,-35,5,-69,-17,-85v-38,-28,-113,1,-113,-63xm533,-277v86,6,120,-3,214,-12v5,-96,-106,-135,-171,-67v-24,26,-40,50,-43,79","w":887},"\u00f8":{"d":"117,-17v-53,-42,-84,-107,-84,-194v0,-145,47,-202,143,-244v47,-21,130,-32,173,0v15,-22,24,-65,56,-66v21,0,32,12,32,35v0,12,-7,32,-20,60v83,18,124,73,124,163v0,189,-145,330,-361,279v-16,25,-31,38,-45,38v-45,-3,-47,-36,-18,-71xm311,-381v-19,0,-36,-8,-51,-25v-49,13,-99,43,-126,100v-38,81,-44,163,23,221r97,-180v41,-77,60,-116,57,-116xm214,-47v1,12,43,5,54,5v99,2,191,-109,191,-246v0,-37,-22,-64,-68,-81v-7,-3,-66,105,-177,322","w":577},"\u00bf":{"d":"323,174v0,116,-225,177,-279,68v-24,-49,-37,-151,-6,-216v26,-55,68,-73,136,-114v50,-30,52,-18,35,-79v-10,-38,-73,-108,-32,-145v16,-14,47,-5,54,14v17,48,20,83,45,135v40,84,-35,122,-101,139v-65,48,-98,101,-98,159v-1,47,16,96,56,97v37,1,116,-23,116,-53v0,-34,-47,-118,19,-117v37,0,55,37,55,112xm196,-408v36,23,11,83,-29,83v-57,0,-66,-89,-7,-93v13,-1,25,2,36,10","w":344},"\u00a1":{"d":"179,-385v1,27,-26,48,-53,48v-26,0,-51,-20,-51,-46v0,-32,30,-55,62,-54v28,0,42,17,42,52xm88,-215v-6,-57,-3,-93,39,-93v21,0,36,24,33,46r-48,406v-6,23,4,131,-34,135v-45,5,-58,-42,-41,-77v3,-25,6,-64,12,-119v2,-19,15,-103,38,-251v2,-11,2,-27,1,-47","w":230},"\u0192":{"d":"419,-521v-45,0,-24,-40,-30,-83v-9,-62,-38,-51,-75,-22v-59,46,-94,85,-94,193r0,124v54,-8,65,-35,120,-35v19,-14,62,-13,58,21v-14,42,-72,49,-118,61v-9,2,-31,9,-66,16v1,133,-12,290,-78,366v-53,60,-102,85,-144,85v-78,0,-95,-70,-78,-139v9,-37,60,-23,65,10v4,27,-26,68,18,68v72,-15,110,-105,131,-170v9,-28,25,-128,19,-208v-23,10,-72,26,-75,-12v-3,-37,59,-39,85,-57v8,-84,-1,-186,26,-251v14,-36,80,-111,105,-128v66,-47,166,-18,166,66v0,54,1,95,-35,95","w":426},"\u00ab":{"d":"410,-448v19,-25,66,-6,67,21v-6,18,-31,59,-47,77r-122,136r76,51v19,11,86,58,120,89v29,26,5,60,-31,65v-32,4,-55,-29,-76,-43v-46,-34,-87,-80,-145,-107v-75,-35,-19,-79,12,-112v36,-38,100,-118,146,-177xm224,-432v19,-26,66,-6,67,21v-13,41,-57,87,-87,118v-15,15,-41,48,-82,95r76,51v19,10,85,55,119,87v28,26,7,61,-31,66v-32,5,-54,-28,-75,-42v-46,-34,-87,-81,-146,-107v-45,-20,-44,-50,-17,-78v61,-62,102,-110,156,-187","w":543},"\u00bb":{"d":"136,-3v-20,25,-68,8,-68,-21v0,-31,77,-106,87,-118r82,-95v-2,-1,-27,-17,-76,-50v-19,-12,-85,-57,-119,-89v-27,-26,-6,-60,31,-65v31,-4,55,26,75,41v46,35,86,82,146,108v45,19,42,49,17,78r-110,125v-10,17,-44,61,-65,86xm316,-24v-20,25,-68,8,-68,-21v0,-31,77,-106,87,-118r82,-95v-2,-1,-27,-17,-76,-50v-19,-12,-85,-58,-119,-90v-27,-26,-6,-59,31,-64v31,-4,55,25,75,40v46,35,86,83,146,109v45,19,44,51,17,78v-61,62,-102,111,-156,188v-6,8,-13,15,-19,23","w":549},"\u2026":{"d":"120,5v-68,-11,-39,-127,23,-127v22,0,33,21,33,62v1,33,-24,70,-56,65xm322,11v-68,-11,-39,-127,23,-127v22,0,33,21,33,62v1,33,-24,70,-56,65xm550,-1v-68,-11,-39,-127,23,-127v22,0,33,21,33,62v1,33,-24,70,-56,65","w":685},"\u0152":{"d":"531,-115v-71,119,-205,167,-354,88v-41,-22,-88,-35,-101,-85v-143,-214,48,-574,286,-574v75,0,160,60,197,114r0,-27v-35,-12,-26,-57,6,-69v-5,-20,-1,-49,19,-46v19,-5,42,37,45,37v59,-4,161,-43,230,-43v34,0,52,38,29,64v-19,22,-51,10,-86,16r-170,31v-8,73,-12,141,-12,203v69,0,145,15,206,15v22,0,47,16,43,37v-12,74,-145,1,-206,15v-10,0,-25,2,-45,6v-25,61,-9,148,-17,237r-7,18v21,2,57,3,109,3v47,0,163,-42,168,16v4,50,-72,39,-122,39v-57,0,-124,-4,-164,13v0,20,-10,30,-29,30v-16,1,-34,-15,-33,-31v-15,0,-22,-9,-22,-27v0,-13,16,-41,26,-41xm245,-81v39,-6,83,3,81,34v22,0,40,-4,54,-11v81,-38,146,-172,157,-287v-12,-16,-13,-39,4,-50v2,-127,-75,-216,-198,-221v-115,-4,-233,175,-244,288v-12,129,33,234,146,247","w":922},"\u0153":{"d":"811,-224v-86,0,-194,4,-285,6v-19,87,76,171,149,171v43,0,81,-25,112,-74v23,-35,47,-48,73,-22v26,52,-13,89,-62,121v-74,49,-157,60,-234,10v-34,-22,-63,-50,-84,-83v-54,109,-280,162,-389,60v-71,-66,-93,-250,-33,-341v45,-68,156,-124,265,-93v17,11,34,26,91,38v42,9,75,38,90,67v65,-106,208,-144,289,-41v29,38,46,83,49,136v2,20,-13,45,-31,45xm148,-89v135,114,299,-16,299,-207v0,-47,-34,-77,-101,-89v-39,11,-78,-1,-100,-26v-45,15,-96,45,-120,100v-34,78,-39,170,22,222xm540,-285v78,4,128,-1,215,-12v4,-56,-41,-102,-89,-103v-56,-1,-123,61,-126,115","w":903},"\u2013":{"d":"312,-272v45,-6,135,-17,135,32v0,34,-40,45,-72,32v-18,-1,-39,4,-57,6v-78,6,-155,10,-231,13v-27,0,-54,-15,-53,-42v-9,-37,80,-49,120,-31v46,8,118,-5,158,-10","w":480},"\u2014":{"d":"367,-272v53,-5,162,-18,165,32v2,35,-53,44,-89,32v-17,-2,-57,5,-68,6r-279,13v-32,0,-61,-13,-64,-42v-4,-38,98,-49,144,-31v55,8,143,-5,191,-10","w":564},"\u201c":{"d":"289,-600v1,28,-29,49,-58,49v-56,0,-62,-91,-31,-131v16,-20,33,-31,56,-31v40,0,52,40,10,42v-12,1,-18,7,-17,18v27,3,40,21,40,53xm147,-587v1,29,-29,49,-59,49v-55,0,-61,-91,-30,-130v16,-20,33,-32,56,-32v39,0,50,40,10,42v-12,1,-18,7,-17,18v27,3,40,21,40,53","w":334},"\u201d":{"d":"47,-641v-1,-28,30,-50,59,-50v54,0,62,91,32,130v-16,21,-34,33,-57,33v-40,0,-52,-41,-10,-43v12,-1,17,-6,16,-17v-27,-3,-40,-21,-40,-53xm189,-654v-1,-28,30,-49,59,-49v55,0,62,90,32,129v-16,21,-34,33,-57,33v-41,0,-51,-41,-10,-42v12,-1,17,-7,16,-18v-27,-3,-40,-21,-40,-53","w":337},"\u2018":{"d":"147,-587v1,29,-29,49,-59,49v-55,0,-61,-91,-30,-130v16,-20,33,-32,56,-32v39,0,50,40,10,42v-12,1,-18,7,-17,18v27,3,40,21,40,53","w":189},"\u2019":{"d":"47,-641v-1,-28,30,-50,59,-50v54,0,62,91,32,130v-16,21,-34,33,-57,33v-40,0,-52,-41,-10,-43v12,-1,17,-6,16,-17v-27,-3,-40,-21,-40,-53","w":192},"\u2044":{"d":"280,-663v-48,139,-82,334,-130,481v-20,63,-32,136,-47,194v-8,32,-73,29,-69,-9v12,-97,75,-260,92,-342v5,-21,29,-129,69,-325v4,-20,23,-40,47,-38v25,3,38,15,38,39","w":303},"\u00a4":{"d":"142,-501v74,-63,182,-68,263,-11v8,-33,80,-43,80,0v7,17,-32,46,-31,49v49,51,78,104,42,184v-17,38,-37,71,-63,98v19,3,29,14,29,34v0,28,-39,43,-63,26r-21,-14v-63,42,-158,38,-218,13r-47,-32v-16,37,-90,22,-85,-17v2,-15,24,-21,36,-29v-52,-75,-36,-212,25,-253v-15,-8,-37,-45,-31,-61v9,-24,52,-31,68,-8v9,13,15,20,16,21xm442,-352v8,-75,-109,-133,-171,-139v-72,-7,-184,110,-184,171v-1,89,78,162,167,162v90,0,178,-98,188,-194","w":536},"\u2039":{"d":"255,-415v43,1,45,59,10,80v-53,50,-95,106,-149,182v71,47,83,52,167,92v50,24,47,71,-6,80v-84,-19,-127,-79,-202,-112v-43,-19,-67,-51,-31,-80v56,-45,70,-114,129,-170v30,-28,48,-65,82,-72","w":350},"\u203a":{"d":"99,24v-43,-1,-43,-55,-11,-81v56,-46,95,-105,150,-182v-72,-46,-83,-52,-167,-92v-50,-24,-47,-71,6,-80v85,18,125,80,202,112v43,18,66,50,31,80v-62,53,-70,114,-129,170v-30,28,-49,67,-82,73","w":356},"\uf001":{"d":"244,-692v-120,6,-116,216,-73,300r3,29v56,-18,91,-40,159,-49v1,-30,56,-67,74,-28v9,66,-4,265,-1,333v0,11,14,40,14,53v0,37,-16,78,-49,78v-46,0,-34,-62,-34,-108r-2,-258v-37,10,-91,24,-161,41v1,118,27,238,27,347v0,25,-12,37,-36,37v-73,-2,-38,-94,-50,-167v-14,-89,3,-125,-16,-196v-27,7,-73,16,-76,-20v3,-21,53,-55,79,-51v-9,-71,-28,-141,-28,-217v0,-88,87,-193,173,-193v76,0,165,74,165,149v0,39,-25,92,-60,92v-19,0,-55,-27,-53,-46v-3,-11,38,-51,35,-61v0,-29,-56,-67,-90,-65","w":464},"\uf002":{"d":"462,-599v0,39,-18,169,-16,208r6,386v0,24,-10,36,-29,36v-28,0,-42,-16,-42,-49r-8,-325r-202,42v1,118,27,238,27,347v0,25,-12,37,-36,37v-73,-2,-38,-94,-50,-167v-14,-89,3,-125,-16,-196v-27,7,-73,16,-76,-20v3,-21,53,-55,79,-51v-9,-71,-28,-141,-28,-217v0,-88,87,-193,173,-193v62,0,108,81,108,145v0,41,-18,85,-54,85v-19,1,-39,-18,-38,-37v-3,-14,29,-32,28,-45v-4,-39,-24,-81,-63,-82v-102,17,-98,223,-58,303r4,29v34,-7,149,-37,206,-57r3,-97v0,-47,2,-80,6,-98v7,-31,21,-47,41,-47v23,0,35,21,35,63","w":498},"\u2021":{"d":"320,-493v-4,53,-77,33,-119,26r-3,325v37,19,121,-30,116,41v-4,52,-77,31,-116,26v-9,57,1,137,2,199v0,33,-13,49,-38,49v-66,0,-40,-95,-40,-154v0,-24,-1,-79,-2,-96v-30,21,-83,11,-83,-30v-6,-27,47,-41,82,-30v7,-78,5,-229,9,-324v-40,5,-87,2,-91,-38v-3,-32,61,-40,95,-28v12,-60,-27,-164,44,-164v71,0,17,93,28,157v36,21,122,-31,116,41","w":344},"\u00b7":{"d":"92,-301v-67,-11,-40,-127,23,-127v22,0,33,21,33,62v1,33,-24,70,-56,65","w":186},"\u2219":{"d":"92,-301v-67,-11,-40,-127,23,-127v22,0,33,21,33,62v1,33,-24,70,-56,65","w":186},"\u201a":{"d":"63,-44v0,-29,30,-50,59,-50v54,0,63,91,32,130v-16,21,-34,32,-57,32v-40,0,-51,-39,-11,-42v13,-1,18,-7,17,-18v-27,-3,-40,-20,-40,-52","w":217},"\u201e":{"d":"63,-44v0,-29,30,-50,59,-50v54,0,63,91,32,130v-16,21,-34,32,-57,32v-40,0,-51,-39,-11,-42v13,-1,18,-7,17,-18v-27,-3,-40,-20,-40,-52xm205,-57v-1,-28,30,-49,59,-49v54,0,62,90,32,129v-16,21,-34,33,-57,33v-40,0,-51,-40,-11,-42v13,-1,18,-7,17,-18v-27,-3,-40,-21,-40,-53","w":360},"\u2030":{"d":"372,-237v64,-2,111,66,110,129v-2,62,-33,103,-86,101v-77,-3,-117,-46,-117,-122v0,-63,34,-106,93,-108xm27,-555v0,-53,43,-92,95,-92v59,0,114,69,114,130v0,63,-31,95,-93,95v-72,0,-116,-59,-116,-133xm375,-663v-9,74,-89,314,-101,370v-15,70,-40,165,-66,287v-4,19,-17,28,-40,28v-52,0,-32,-43,-20,-77v46,-132,53,-233,100,-371v28,-82,37,-138,51,-223v7,-45,38,-66,67,-39v8,7,10,16,9,25xm610,-227v63,-2,111,66,110,128v-2,62,-33,103,-86,101v-77,-3,-117,-46,-117,-121v0,-63,34,-106,93,-108xm353,-124v0,51,51,83,65,29v0,-5,0,-12,1,-22v-22,-5,-18,-48,-42,-57v-16,-1,-24,16,-24,50xm102,-544v0,44,63,97,71,30v-1,1,-2,-6,-4,-22v-23,-7,-24,-42,-50,-49v-11,1,-17,14,-17,41xm590,-114v0,51,52,82,66,29v0,-5,0,-12,1,-22v-23,-6,-17,-48,-42,-57v-17,-1,-25,15,-25,50","w":748},"\u0131":{"d":"104,-463v42,1,31,56,30,99r-5,250v0,12,14,40,14,54v0,64,-43,102,-77,64v-24,-26,-6,-45,-6,-95r-1,-312v3,-42,18,-61,45,-60","w":189},"\u02c6":{"d":"322,-566v33,30,15,76,-27,77v-32,1,-31,-25,-38,-46v-7,-12,-15,-23,-22,-32v-28,17,-35,80,-77,82v-43,2,-46,-47,-15,-72v37,-30,29,-27,73,-77v22,-26,25,-31,44,-3v24,35,35,47,62,71"},"\u02dc":{"d":"271,-562v27,-12,28,-68,66,-69v50,8,44,48,7,86v-23,24,-46,63,-88,50v-28,-9,-37,-38,-54,-60r-35,26v-3,39,-83,55,-83,4v0,-20,25,-35,47,-51v5,-8,15,-21,31,-36v60,-55,75,22,109,50"},"\u00af":{"d":"400,-547v0,30,-37,38,-72,28v-51,3,-139,25,-215,25v-33,0,-49,-11,-49,-34v0,-49,86,-53,110,-26v27,4,152,-32,174,-32v35,0,52,13,52,39"},"\u02c9":{"d":"400,-547v0,30,-37,38,-72,28v-51,3,-139,25,-215,25v-33,0,-49,-11,-49,-34v0,-49,86,-53,110,-26v27,4,152,-32,174,-32v35,0,52,13,52,39"},"\u02d8":{"d":"131,-592v0,-17,12,-43,29,-43v23,0,35,8,35,24v0,43,12,65,37,65v57,0,19,-80,65,-80v25,0,38,10,38,31v-1,56,-50,104,-111,101v-43,-2,-93,-51,-93,-98"},"\u02d9":{"d":"233,-494v-51,0,-106,-38,-106,-87v0,-36,50,-92,91,-92v40,0,105,42,105,84v0,49,-41,95,-90,95"},"\u02da":{"d":"228,-488v-34,0,-85,-39,-85,-73v0,-28,41,-73,73,-73v33,0,85,34,85,67v0,40,-33,79,-73,79xm193,-566v-2,11,22,29,32,29v13,0,27,-15,27,-26v0,-10,-22,-30,-31,-29v-13,0,-29,12,-28,26"},"\u00b8":{"d":"122,130v0,-26,37,-38,54,-16v18,23,40,33,65,30v19,-2,30,-10,33,-25v2,-15,-67,-38,-65,-52v-11,-28,-21,-106,25,-101v38,-6,28,52,34,74v6,20,71,36,71,73v0,102,-194,119,-217,17"},"\u02dd":{"d":"392,-665r-108,156v-20,30,-80,0,-53,-35v9,-12,68,-84,94,-141v9,-19,33,-26,58,-18v8,0,14,31,9,38xm235,-657r-108,156v-14,20,-58,20,-58,-16v0,-13,0,-22,3,-25v14,-19,73,-79,96,-134v9,-22,63,-37,68,-1v1,9,1,16,-1,20"},"\u02db":{"d":"226,-24v33,-2,46,50,10,55v-29,4,-22,45,3,46v10,1,38,-29,49,-26v39,1,31,48,4,67v-57,39,-136,7,-136,-62v0,-55,28,-77,70,-80"},"\u02c7":{"d":"228,-578v29,-17,34,-79,77,-82v41,-3,46,46,17,70v-37,31,-31,28,-75,79v-21,24,-26,30,-43,3v-27,-45,-71,-59,-81,-108v-7,-34,62,-57,74,-24v9,25,18,46,31,62"},"\u0141":{"d":"92,-416v-32,11,-62,6,-62,-25v0,-15,19,-28,56,-40v-6,-41,-15,-98,-23,-171v-3,-24,20,-54,44,-53v27,-5,44,53,34,88v-1,23,12,89,11,111v29,-13,50,-20,64,-20v15,0,23,7,25,21v4,27,-24,50,-84,70v11,96,-11,259,-18,329v78,15,179,28,303,41v66,7,66,56,28,74v-98,6,-233,-65,-344,-45v0,30,-15,45,-44,45v-14,0,-21,-10,-21,-29v-31,2,-56,-43,-21,-58v10,-4,20,-8,29,-11v18,-102,26,-211,23,-327","w":524},"\u0142":{"d":"80,-421v-28,7,-57,5,-60,-27v-2,-21,33,-37,61,-45r13,-167v5,-26,15,-38,29,-37v68,4,34,113,33,171v24,-10,74,-19,72,18v5,30,-41,45,-79,54r-1,142v-1,65,5,179,11,267v3,41,-12,56,-37,56v-21,0,-34,-24,-37,-72v-5,-76,3,-286,-5,-360","w":252},"\u00d0":{"d":"125,-625v-26,-3,-57,-33,-27,-50v8,-4,16,-7,23,-10v14,-25,47,-23,64,-7v109,5,257,75,304,156v57,98,53,250,5,355v-59,127,-140,184,-330,188v-23,30,-69,19,-63,-38v-14,0,-21,-9,-21,-26v0,-12,9,-21,26,-28r1,-187v-37,18,-81,20,-82,-25v0,-21,29,-41,87,-58xm182,-388v39,-20,73,-28,73,16v0,23,-27,46,-80,69r-1,103r-5,89v3,46,14,49,70,49v33,0,67,-12,101,-36v80,-55,120,-141,120,-258v0,-176,-103,-243,-266,-268v1,46,-13,190,-12,236","w":565},"\u00f0":{"d":"391,-612v15,-1,34,16,33,31v0,17,-19,35,-56,55v28,60,23,124,16,199v17,0,25,13,25,38v0,11,-10,19,-31,25v-12,126,-46,231,-126,281v-143,-6,-210,-49,-221,-186v-10,-128,70,-260,189,-253v16,1,51,11,104,31v-7,-40,-4,-56,-16,-104v-22,11,-39,16,-51,16v-21,0,-31,-10,-31,-30v0,-17,18,-36,53,-55v-28,-44,-32,-67,-78,-70v-54,-4,-87,45,-83,102v2,25,-18,53,-43,53v-23,0,-35,-23,-35,-69v0,-84,73,-149,161,-149v55,0,101,35,138,104v22,-13,39,-19,52,-19xm89,-181v0,69,61,137,130,134v41,-2,99,-131,96,-227r2,-40v-35,-27,-68,-41,-98,-41v-70,0,-130,101,-130,174","w":440},"\u0160":{"d":"60,-460v-10,-94,111,-239,196,-236v69,1,119,45,152,131v1,6,29,39,25,54v0,45,-64,67,-87,24v-8,-14,-9,-63,-18,-78v-23,-37,-45,-58,-71,-58v-48,-2,-130,100,-120,156v7,39,40,87,109,142v63,50,106,71,112,142v9,107,-70,198,-175,198v-89,0,-160,-53,-160,-138v0,-81,27,-146,81,-97v36,32,-10,68,-7,99v6,66,116,84,157,31v32,-41,33,-101,-3,-137v-6,-7,-23,-21,-50,-44v-70,-59,-132,-105,-141,-189xm249,-816v29,-17,34,-79,77,-82v41,-3,46,46,17,70v-37,31,-31,28,-75,79v-21,24,-26,30,-43,3v-27,-45,-71,-59,-81,-108v-7,-34,62,-57,74,-24v9,25,18,46,31,62","w":461},"\u0161":{"d":"272,-375v-44,-31,-156,-17,-160,42v-2,33,188,27,192,41v58,26,102,101,102,183v0,88,-56,132,-169,132v-103,0,-204,-53,-203,-148v-1,-21,15,-45,35,-44v20,0,33,15,39,45v11,53,53,79,126,79v64,0,103,-10,103,-66v0,-62,-51,-129,-132,-129v-105,0,-156,-24,-165,-100v-7,-65,92,-116,163,-116v73,0,159,28,162,89v2,37,-49,46,-67,20v-11,-15,-20,-24,-26,-28xm210,-583v29,-17,34,-79,77,-82v41,-3,46,46,17,70v-37,31,-31,28,-75,79v-21,24,-26,30,-43,3v-27,-45,-71,-59,-81,-108v-7,-34,62,-57,74,-24v9,25,18,46,31,62","w":423},"\u00dd":{"d":"375,-453v57,0,40,91,38,146v-1,36,-5,129,-17,187v19,18,5,51,-4,61v-6,184,-84,320,-243,320v-72,0,-140,-45,-140,-112v0,-47,20,-102,63,-98v42,4,10,65,6,86v3,37,24,57,65,57v104,0,188,-90,173,-211v-73,66,-226,41,-262,-33v-13,-27,-21,-73,-22,-139v-1,-116,20,-195,65,-238v19,-18,33,-26,44,-25v30,1,42,46,19,64v-41,31,-41,68,-51,140v-12,84,-6,141,9,171v4,17,53,28,89,28v73,1,118,-46,124,-117v6,-71,21,-139,7,-216v-7,-36,16,-71,37,-71xm277,-616v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":442},"\u00fd":{"d":"306,-63v7,21,10,59,-4,77v-9,11,-64,17,-78,0v-7,-7,-8,-26,-5,-56v2,-15,3,-114,4,-296v-34,-67,-87,-140,-149,-248v-15,-15,-45,-34,-45,-58v-11,-57,40,-65,69,-44v33,23,71,119,90,157v18,36,44,77,77,126r72,-123v38,-65,72,-116,99,-157v17,-25,47,-36,71,-21v7,16,18,47,-1,65v-47,46,-71,95,-107,148v-54,79,-92,114,-92,212v0,58,0,131,-1,218xm311,-851v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":542},"\u00de":{"d":"58,-443v-48,-16,-29,-70,22,-75v-3,-6,-8,-34,-13,-84v-5,-50,-7,-78,-6,-85v7,-42,52,-47,74,-17v7,49,15,100,24,153v115,-19,174,1,247,61v97,81,76,223,-14,282v-43,28,-144,47,-225,56r-8,151v-1,68,-82,77,-82,10v0,-102,37,-347,14,-456v-11,5,-22,7,-33,4xm162,-476v8,71,15,131,13,255v114,6,226,-35,226,-131v0,-106,-124,-163,-239,-124","w":498},"\u00fe":{"d":"304,-448v110,0,192,115,188,229v-5,131,-90,219,-224,219v-81,0,-102,-11,-141,-38v11,94,8,118,8,181v0,24,-17,36,-52,36v-63,1,-16,-86,-19,-126v-9,-124,2,-198,-12,-299v9,-116,30,-235,1,-346v-6,-24,15,-57,40,-54v19,2,28,18,33,50v7,48,16,125,10,204v48,-37,104,-56,168,-56xm295,-393v-39,-5,-163,63,-163,96v0,21,-3,54,10,73v20,28,3,40,6,85v4,52,48,78,125,78v98,0,147,-57,147,-171v0,-75,-55,-152,-125,-161","w":521},"\u017d":{"d":"54,-661v5,-41,21,-34,80,-34v73,0,178,7,279,28v52,11,79,39,53,79v-59,90,-111,188,-168,281v-24,39,-62,104,-114,196v76,30,97,36,189,36v29,0,67,23,73,27v32,22,2,79,-38,59v-58,-30,-159,-15,-215,-40v-2,-2,-14,-10,-36,-23v-3,21,-17,31,-40,31v-27,-1,-42,-27,-33,-51v-25,2,-69,-22,-58,-49v15,-36,32,-28,93,-13r120,-213r146,-242v-62,-35,-188,-45,-291,-34v-26,3,-43,-12,-40,-38xm268,-816v29,-17,34,-79,77,-82v41,-3,46,46,17,70v-37,31,-31,28,-75,79v-21,24,-26,30,-43,3v-27,-45,-71,-59,-81,-108v-7,-34,62,-57,74,-24v9,25,18,46,31,62","w":500},"\u017e":{"d":"324,0v-49,10,-108,-1,-160,-1v-6,22,-21,55,-47,57v-28,2,-42,-12,-42,-43v-48,7,-61,-57,-12,-71v20,-6,36,-5,51,6v62,-95,125,-181,160,-304v-62,-13,-208,22,-228,-40v-5,-49,41,-58,85,-36v56,28,121,6,181,-3v34,-5,69,30,50,69v-17,77,-52,109,-105,206r-51,98v57,11,105,-27,151,-5v38,18,23,56,-33,67xm219,-566v29,-17,34,-79,77,-82v41,-3,46,46,17,70v-37,31,-31,28,-75,79v-21,24,-26,30,-43,3v-27,-45,-71,-59,-81,-108v-7,-34,62,-57,74,-24v9,25,18,46,31,62","w":401},"\u00bd":{"d":"144,-393v21,0,50,10,50,32v0,38,-64,45,-111,45v-37,0,-55,-8,-55,-33v0,-23,17,-34,50,-34r3,-221v-22,12,-49,10,-52,-18v-10,-30,46,-61,80,-61v22,0,33,17,33,52xm457,-252v0,-21,1,-24,-19,-25v-23,-1,-44,20,-33,45v10,22,-4,49,-22,49v-27,0,-40,-16,-40,-48v-2,-53,45,-100,97,-100v41,0,77,37,76,77v-2,95,-49,134,-106,192v35,2,91,-15,94,22v3,36,-54,26,-86,30v-27,4,-100,29,-100,-18v0,-23,65,-67,67,-76v45,-64,72,-78,72,-148xm397,-663v-48,139,-82,334,-130,481v-20,63,-32,136,-47,194v-8,32,-73,29,-69,-9v12,-97,75,-260,92,-342v5,-21,29,-129,69,-325v4,-20,23,-40,47,-38v25,3,38,15,38,39","w":546},"\u00bc":{"d":"506,-320v0,42,-15,53,-29,101v29,-3,40,34,21,51v-8,7,-17,10,-27,11v-8,61,-4,118,-10,169v-16,35,-65,33,-61,-24v3,-43,12,-63,13,-122v-41,30,-96,20,-91,-25v4,-39,21,-96,21,-160v0,-45,65,-49,62,-6v-3,37,-6,68,-13,94v-6,22,-6,36,0,42v7,-1,14,-4,23,-9v7,-29,14,-66,23,-109v6,-33,20,-49,42,-49v17,0,26,12,26,36xm144,-393v21,0,50,10,50,32v0,38,-64,45,-111,45v-37,0,-55,-8,-55,-33v0,-23,17,-34,50,-34r3,-221v-22,12,-49,10,-52,-18v-10,-30,46,-61,80,-61v22,0,33,17,33,52xm393,-663v-54,159,-72,296,-130,481v-19,63,-33,135,-47,194v-8,32,-73,29,-69,-9v11,-99,76,-259,92,-342v5,-21,33,-128,68,-325v8,-44,89,-55,86,1","w":546},"\u00b9":{"d":"144,-393v21,0,50,10,50,32v0,38,-64,45,-111,45v-37,0,-55,-8,-55,-33v0,-23,17,-34,50,-34r3,-221v-22,12,-49,10,-52,-18v-10,-30,46,-61,80,-61v22,0,33,17,33,52","w":214},"\u00be":{"d":"497,-320v0,42,-15,53,-29,101v29,-3,42,34,22,51v-8,7,-17,10,-28,11v-7,61,-2,120,-10,169v-16,35,-64,33,-60,-24v3,-43,12,-63,12,-122v-41,30,-95,20,-90,-25v5,-40,21,-97,21,-160v0,-45,64,-49,62,-6v-2,37,-7,68,-14,94v-6,22,-6,36,0,42v7,-1,15,-4,23,-9v16,-38,11,-156,66,-158v17,0,25,12,25,36xm40,-599v-1,-46,45,-85,92,-85v48,0,76,29,83,87v5,39,-10,73,-44,100v81,53,28,186,-65,186v-44,0,-83,-34,-83,-77v0,-43,63,-76,76,-24v3,12,-14,35,-14,39v55,11,78,-44,47,-84v-9,-11,-60,-2,-55,-38v6,-39,104,-58,71,-109r-1,-18v-33,-5,-39,-6,-46,35v-4,23,-14,34,-29,34v-21,0,-32,-15,-32,-46xm385,-663v-50,137,-84,334,-131,481v-20,63,-32,136,-46,194v-8,32,-73,29,-69,-9v10,-99,74,-261,92,-342v5,-21,29,-129,68,-325v4,-20,24,-40,47,-38v26,3,39,15,39,39","w":540},"\u00b3":{"d":"40,-599v-1,-46,45,-85,92,-85v48,0,76,29,83,87v5,39,-10,73,-44,100v81,53,28,186,-65,186v-44,0,-83,-34,-83,-77v0,-43,63,-76,76,-24v3,12,-14,35,-14,39v55,11,78,-44,47,-84v-9,-11,-60,-2,-55,-38v6,-39,104,-58,71,-109r-1,-18v-33,-5,-39,-6,-46,35v-4,23,-14,34,-29,34v-21,0,-32,-15,-32,-46","w":243},"\u00b2":{"d":"166,-606v0,-21,1,-24,-19,-25v-23,-1,-44,20,-33,45v10,22,-4,49,-22,49v-27,0,-40,-16,-40,-48v-2,-53,45,-100,97,-100v41,0,77,37,76,77v-2,95,-49,134,-106,192v35,2,91,-15,94,22v3,36,-54,26,-86,30v-27,4,-100,29,-100,-18v0,-23,65,-67,67,-76v45,-64,72,-78,72,-148","w":252},"\u00a6":{"d":"88,-168v0,-32,-31,-142,19,-149v50,7,57,99,57,152v0,54,-9,113,-11,173v-6,25,-21,37,-45,37v-17,0,-26,-29,-26,-87v0,-38,6,-81,6,-126xm104,-712v78,29,46,182,49,288v-6,25,-21,37,-45,37v-17,0,-26,-29,-26,-88v-1,-58,8,-126,-6,-173v-7,-24,7,-66,28,-64","w":224},"\u00ad":{"d":"328,-196v-79,0,-156,9,-234,9v-43,0,-65,-14,-65,-42v0,-35,72,-51,116,-37v40,2,141,-20,177,-19v41,0,62,15,62,44v0,30,-19,45,-56,45","w":416},"\u2212":{"d":"328,-196v-79,0,-156,9,-234,9v-43,0,-65,-14,-65,-42v0,-35,72,-51,116,-37v40,2,141,-20,177,-19v41,0,62,15,62,44v0,30,-19,45,-56,45","w":416},"\u00d7":{"d":"146,-229v-1,-3,-130,-147,-117,-162v-4,-38,45,-47,62,-19v28,46,42,83,87,118v15,-19,36,-55,64,-106v12,-45,71,-45,72,1v0,22,-17,40,-25,56v-12,25,-34,58,-66,99v57,61,59,79,138,141v42,33,43,85,-14,87v-13,0,-23,-5,-32,-14v-16,-18,-56,-68,-121,-149r-81,144v-14,29,-29,42,-46,41v-23,-1,-35,-14,-38,-40v-1,-8,19,-42,59,-103v40,-61,59,-92,58,-94","w":420},"\u00c4":{"d":"146,-384v39,-106,51,-143,79,-268v-37,-26,-30,-77,11,-83v19,-3,35,14,46,48r57,170r44,121v32,0,61,-9,66,25v9,25,-20,51,-46,46v6,79,76,210,95,293v9,37,0,62,-31,62v-53,0,-43,-71,-64,-119v-16,-38,-23,-67,-28,-85v-7,-22,-18,-58,-32,-109v-3,-9,-6,-24,-10,-44v-164,3,-38,-8,-138,8v-14,37,-46,170,-56,202v-9,30,-25,76,-46,139v-12,36,-68,21,-67,-13v15,-62,36,-111,58,-186r40,-136v-26,6,-45,8,-48,-29v-2,-27,36,-56,70,-42xm263,-521v-11,29,-26,74,-45,134v47,0,31,1,96,-4v-12,-29,-29,-72,-51,-130xm169,-854v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm286,-850v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":521},"\u00c5":{"d":"146,-384v39,-106,51,-143,79,-268v-37,-26,-30,-77,11,-83v19,-3,35,14,46,48r57,170r44,121v32,0,61,-9,66,25v9,25,-20,51,-46,46v6,79,76,210,95,293v9,37,0,62,-31,62v-53,0,-43,-71,-64,-119v-16,-38,-23,-67,-28,-85v-7,-22,-18,-58,-32,-109v-3,-9,-6,-24,-10,-44v-164,3,-38,-8,-138,8v-14,37,-46,170,-56,202v-9,30,-25,76,-46,139v-12,36,-68,21,-67,-13v15,-62,36,-111,58,-186r40,-136v-26,6,-45,8,-48,-29v-2,-27,36,-56,70,-42xm263,-521v-11,29,-26,74,-45,134v47,0,31,1,96,-4v-12,-29,-29,-72,-51,-130xm157,-843v3,-56,85,-92,135,-51v53,43,10,128,-48,128v-38,0,-89,-36,-87,-77xm213,-822v20,18,65,13,67,-15v1,-17,-33,-36,-49,-36v-23,-8,-44,37,-18,51","w":527},"\u00c7":{"d":"241,144v13,1,34,-12,33,-25v0,-14,-67,-39,-66,-53v-4,-9,-6,-28,-6,-58v-144,-25,-172,-133,-176,-324v-4,-186,129,-372,308,-372v82,0,154,46,173,126v5,24,-42,39,-60,20v-17,-17,-28,-40,-43,-59v-12,-14,-38,-20,-75,-20v-122,0,-239,177,-235,309v4,147,23,252,143,252v120,0,195,-65,225,-195v0,-23,11,-34,32,-34v23,0,35,10,35,29v1,141,-127,266,-265,269v-13,61,75,52,75,104v0,102,-194,119,-217,17v0,-26,37,-38,54,-16v16,21,38,30,65,30","w":568},"\u00c9":{"d":"111,-707v18,-5,42,36,45,36v59,-2,161,-43,229,-43v35,0,54,38,29,63v-34,33,-88,17,-147,28r-109,20v-8,73,-12,141,-12,203v56,-3,150,16,208,16v31,0,61,42,30,60v-58,34,-161,-33,-240,-2v-6,18,-13,56,-16,114v-1,25,8,105,-8,146v68,10,165,-4,228,-12v66,-7,59,69,9,71v-83,5,-177,-10,-245,11v-1,21,-11,31,-30,31v-17,1,-34,-15,-33,-32v-34,-6,-22,-61,5,-67r23,-267v-31,-13,-29,-55,6,-67r2,-195v-35,-13,-26,-57,7,-69v-8,-22,1,-46,19,-45xm284,-859v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":442},"\u00d1":{"d":"403,-621v-2,-43,-4,-93,37,-88v42,5,47,57,34,103v-27,98,-14,182,-29,302v-8,65,-12,115,-12,152v0,21,-13,62,-12,83v28,26,32,100,-14,100v-23,0,-38,-10,-46,-28v-37,-80,-70,-184,-102,-270r-78,-187r-64,354v-1,56,1,129,-51,129v-18,0,-37,-25,-33,-45v-4,-6,16,-29,16,-31v-3,-60,34,-205,37,-233r33,-248v5,-13,11,-32,17,-57v-12,-25,-35,-54,-37,-85v-4,-49,42,-48,59,-23v10,-12,56,-22,56,9v7,23,3,57,-12,102r161,407v-2,-58,27,-187,24,-246v-2,-45,18,-157,16,-200xm329,-811v26,-12,28,-68,66,-69v50,8,44,48,7,86v-23,24,-46,64,-88,50v-28,-9,-38,-38,-54,-60r-35,25v-3,39,-83,57,-83,5v0,-20,25,-35,47,-51v12,-19,71,-84,96,-42v13,20,29,40,44,56","w":508},"\u00d6":{"d":"74,-111v-133,-232,44,-594,281,-594v92,0,198,102,218,174v7,23,11,76,18,158v12,133,-85,316,-169,360v-80,42,-156,36,-249,-12v-41,-21,-84,-38,-99,-86xm487,-209v75,-171,49,-415,-151,-423v-119,-5,-235,193,-240,316v-5,123,38,219,144,235v42,-4,73,-4,79,36v24,-1,41,-5,52,-11v47,-25,83,-77,116,-153xm255,-824v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm372,-820v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":625},"\u00dc":{"d":"343,-629v-1,-45,6,-63,40,-66v19,-1,39,17,38,36v-4,71,8,281,8,345v0,139,-31,233,-88,289v-63,63,-184,44,-243,-2v-80,-62,-79,-234,-43,-356v17,-59,50,-198,63,-286v6,-39,85,-43,88,-6v-48,137,-90,293,-98,467v-5,98,37,147,126,147v76,0,122,-120,122,-202v0,-85,-8,-266,-13,-366xm193,-821v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm310,-817v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":470},"\u00e1":{"d":"423,-373v-3,-40,-7,-83,37,-85v17,-1,45,8,43,24v-4,37,-29,88,-11,132v21,54,-6,124,-6,177v-6,18,36,149,-19,151v-31,1,-44,-20,-41,-63v-51,25,-95,55,-175,51v-121,-6,-217,-68,-217,-178v0,-148,79,-284,217,-284v69,0,126,24,172,75xm293,-387v-129,-4,-180,67,-188,205v-6,95,47,126,146,130v100,4,168,-64,168,-184v0,-47,0,-63,1,-47v-7,-91,-129,-19,-127,-104xm296,-613v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":540},"\u00e0":{"d":"423,-373v-3,-40,-7,-83,37,-85v17,-1,45,8,43,24v-4,37,-29,88,-11,132v21,54,-6,124,-6,177v-6,18,36,149,-19,151v-31,1,-44,-20,-41,-63v-51,25,-95,55,-175,51v-121,-6,-217,-68,-217,-178v0,-148,79,-284,217,-284v69,0,126,24,172,75xm293,-387v-129,-4,-180,67,-188,205v-6,95,47,126,146,130v100,4,168,-64,168,-184v0,-47,0,-63,1,-47v-7,-91,-129,-19,-127,-104xm183,-557v-18,-26,1,-66,27,-69v16,-2,65,37,70,37v41,19,70,35,87,48v15,21,-1,63,-27,56v-16,-4,-65,-34,-81,-38v-43,-10,-68,-23,-76,-34","w":540},"\u00e2":{"d":"423,-373v-3,-40,-7,-83,37,-85v17,-1,45,8,43,24v-4,37,-29,88,-11,132v21,54,-6,124,-6,177v-6,18,36,149,-19,151v-31,1,-44,-20,-41,-63v-51,25,-95,55,-175,51v-121,-6,-217,-68,-217,-178v0,-148,79,-284,217,-284v69,0,126,24,172,75xm293,-387v-129,-4,-180,67,-188,205v-6,95,47,126,146,130v100,4,168,-64,168,-184v0,-47,0,-63,1,-47v-7,-91,-129,-19,-127,-104xm365,-566v33,30,15,76,-27,77v-32,1,-31,-25,-38,-46v-7,-12,-15,-23,-22,-32v-28,17,-35,80,-77,82v-43,2,-46,-47,-15,-72v37,-30,29,-27,73,-77v22,-26,25,-31,44,-3v24,35,35,47,62,71","w":540},"\u00e4":{"d":"423,-373v-3,-40,-7,-83,37,-85v17,-1,45,8,43,24v-4,37,-29,88,-11,132v21,54,-6,124,-6,177v-6,18,36,149,-19,151v-31,1,-44,-20,-41,-63v-51,25,-95,55,-175,51v-121,-6,-217,-68,-217,-178v0,-148,79,-284,217,-284v69,0,126,24,172,75xm293,-387v-129,-4,-180,67,-188,205v-6,95,47,126,146,130v100,4,168,-64,168,-184v0,-47,0,-63,1,-47v-7,-91,-129,-19,-127,-104xm197,-602v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm314,-598v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":540},"\u00e3":{"d":"423,-373v-3,-40,-7,-83,37,-85v17,-1,45,8,43,24v-4,37,-29,88,-11,132v21,54,-6,124,-6,177v-6,18,36,149,-19,151v-31,1,-44,-20,-41,-63v-51,25,-95,55,-175,51v-121,-6,-217,-68,-217,-178v0,-148,79,-284,217,-284v69,0,126,24,172,75xm293,-387v-129,-4,-180,67,-188,205v-6,95,47,126,146,130v100,4,168,-64,168,-184v0,-47,0,-63,1,-47v-7,-91,-129,-19,-127,-104xm331,-567v27,-12,28,-68,66,-69v50,8,44,48,7,86v-23,24,-46,63,-88,50v-28,-9,-37,-38,-54,-60r-35,26v-3,39,-83,55,-83,4v0,-20,25,-35,47,-51v5,-8,15,-21,31,-36v60,-55,75,22,109,50","w":540},"\u00e5":{"d":"423,-373v-3,-40,-7,-83,37,-85v17,-1,45,8,43,24v-4,37,-29,88,-11,132v21,54,-6,124,-6,177v-6,18,36,149,-19,151v-31,1,-44,-20,-41,-63v-51,25,-95,55,-175,51v-121,-6,-217,-68,-217,-178v0,-148,79,-284,217,-284v69,0,126,24,172,75xm293,-387v-129,-4,-180,67,-188,205v-6,95,47,126,146,130v100,4,168,-64,168,-184v0,-47,0,-63,1,-47v-7,-91,-129,-19,-127,-104xm282,-487v-34,0,-85,-39,-85,-73v0,-28,41,-73,73,-73v33,0,85,34,85,67v0,40,-33,79,-73,79xm247,-565v-2,11,22,29,32,29v13,0,27,-15,27,-26v0,-10,-22,-30,-31,-29v-13,0,-29,12,-28,26","w":540},"\u00e7":{"d":"241,144v13,1,34,-12,33,-25v-1,-15,-66,-38,-66,-54v-5,-10,-7,-27,-7,-51v-106,-12,-171,-86,-172,-201v-1,-145,87,-257,228,-257v91,0,206,51,206,131v0,64,-61,60,-77,25r-19,-45v-24,-31,-60,-46,-108,-46v-101,-1,-161,88,-160,194v1,82,54,132,138,131v68,-1,88,-20,107,-74v10,-29,24,-43,43,-43v22,-1,45,23,45,45v0,67,-101,136,-168,140v-10,54,75,49,75,99v0,102,-194,119,-217,17v0,-26,37,-38,54,-16v16,21,38,30,65,30","w":495},"\u00e9":{"d":"26,-195v0,-123,107,-264,228,-264v96,0,160,101,164,199v1,20,-12,47,-32,44v-71,-12,-225,5,-284,2v-23,86,72,173,145,173v44,0,82,-24,114,-72v24,-37,50,-45,75,-19v8,8,9,18,7,28v-7,68,-123,130,-204,130v-107,0,-213,-111,-213,-221xm117,-281v77,6,126,0,215,-8v4,-94,-102,-138,-170,-71v-25,25,-42,50,-45,79xm272,-616v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":476},"\u00e8":{"d":"26,-195v0,-123,107,-264,228,-264v96,0,160,101,164,199v1,20,-12,47,-32,44v-71,-12,-225,5,-284,2v-23,86,72,173,145,173v44,0,82,-24,114,-72v24,-37,50,-45,75,-19v8,8,9,18,7,28v-7,68,-123,130,-204,130v-107,0,-213,-111,-213,-221xm117,-281v77,6,126,0,215,-8v4,-94,-102,-138,-170,-71v-25,25,-42,50,-45,79xm156,-564v-18,-26,1,-66,27,-69v16,-2,65,37,70,37v41,19,70,35,87,48v15,21,-1,63,-27,56v-16,-4,-65,-34,-81,-38v-43,-10,-68,-23,-76,-34","w":476},"\u00ea":{"d":"26,-195v0,-123,107,-264,228,-264v96,0,160,101,164,199v1,20,-12,47,-32,44v-71,-12,-225,5,-284,2v-23,86,72,173,145,173v44,0,82,-24,114,-72v24,-37,50,-45,75,-19v8,8,9,18,7,28v-7,68,-123,130,-204,130v-107,0,-213,-111,-213,-221xm117,-281v77,6,126,0,215,-8v4,-94,-102,-138,-170,-71v-25,25,-42,50,-45,79xm344,-570v33,30,15,76,-27,77v-32,1,-31,-25,-38,-46v-7,-12,-15,-23,-22,-32v-28,17,-35,80,-77,82v-43,2,-46,-47,-15,-72v37,-30,29,-27,73,-77v22,-26,25,-31,44,-3v24,35,35,47,62,71","w":476},"\u00eb":{"d":"26,-195v0,-123,107,-264,228,-264v96,0,160,101,164,199v1,20,-12,47,-32,44v-71,-12,-225,5,-284,2v-23,86,72,173,145,173v44,0,82,-24,114,-72v24,-37,50,-45,75,-19v8,8,9,18,7,28v-7,68,-123,130,-204,130v-107,0,-213,-111,-213,-221xm117,-281v77,6,126,0,215,-8v4,-94,-102,-138,-170,-71v-25,25,-42,50,-45,79xm172,-592v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm289,-588v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":473},"\u00ed":{"d":"104,-463v42,1,31,56,30,99r-5,250v0,12,14,40,14,54v0,64,-43,102,-77,64v-24,-26,-6,-45,-6,-95r-1,-312v3,-42,18,-61,45,-60xm127,-640v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":195},"\u00ec":{"d":"109,-463v42,1,31,56,30,99r-5,250v0,12,14,40,14,54v0,64,-43,102,-77,64v-24,-26,-6,-45,-6,-95r-1,-312v3,-42,18,-61,45,-60xm8,-570v-18,-26,1,-66,27,-69v16,-2,65,37,70,37v41,19,70,35,87,48v15,21,-1,63,-27,56v-16,-4,-65,-34,-81,-38v-43,-10,-68,-23,-76,-34","w":195},"\u00ee":{"d":"112,-463v42,1,31,56,30,99r-5,250v0,12,14,40,14,54v0,64,-43,102,-77,64v-24,-26,-6,-45,-6,-95r-1,-312v3,-42,18,-61,45,-60xm208,-581v33,30,15,76,-27,77v-32,1,-31,-25,-38,-46v-7,-12,-15,-23,-22,-32v-28,17,-35,80,-77,82v-43,2,-46,-47,-15,-72v37,-30,29,-27,73,-77v22,-26,25,-31,44,-3v24,35,35,47,62,71","w":195},"\u00ef":{"d":"113,-463v42,1,31,56,30,99r-5,250v0,12,14,40,14,54v0,64,-43,102,-77,64v-24,-26,-6,-45,-6,-95r-1,-312v3,-42,18,-61,45,-60xm39,-598v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm156,-594v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":197},"\u00f1":{"d":"69,-444v19,-1,42,21,38,40v56,-64,186,-74,249,-14v23,22,56,74,48,131v-14,102,-5,192,0,258v-5,39,-56,59,-71,17v-6,-15,-15,-59,-7,-90v18,-68,8,-138,7,-218v0,-42,-33,-80,-81,-77v-30,3,-95,27,-117,60v-24,9,-31,49,-32,93r-4,215v2,24,-2,72,-34,65v-40,5,-31,-40,-31,-72r2,-303v2,-25,-8,-113,33,-105xm271,-562v27,-12,28,-68,66,-69v50,8,44,48,7,86v-23,24,-46,63,-88,50v-28,-9,-37,-38,-54,-60r-35,26v-3,39,-83,55,-83,4v0,-20,25,-35,47,-51v5,-8,15,-21,31,-36v60,-55,75,22,109,50","w":438},"\u00f3":{"d":"538,-263v0,158,-107,291,-269,288v-153,-3,-237,-76,-240,-236v-3,-135,48,-206,144,-244v72,-29,148,-29,195,15v10,4,98,23,110,42v34,30,60,74,60,135xm356,-379v-41,9,-78,-1,-99,-27v-48,13,-98,43,-123,97v-35,77,-43,169,19,223v91,77,204,50,268,-59v21,-35,34,-82,35,-143v1,-47,-33,-77,-100,-91xm320,-627v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":568},"\u00f2":{"d":"538,-263v0,158,-107,291,-269,288v-153,-3,-237,-76,-240,-236v-3,-135,48,-206,144,-244v72,-29,148,-29,195,15v10,4,98,23,110,42v34,30,60,74,60,135xm356,-379v-41,9,-78,-1,-99,-27v-48,13,-98,43,-123,97v-35,77,-43,169,19,223v91,77,204,50,268,-59v21,-35,34,-82,35,-143v1,-47,-33,-77,-100,-91xm185,-575v-18,-26,1,-66,27,-69v16,-2,65,37,70,37v41,19,70,35,87,48v15,21,-1,63,-27,56v-16,-4,-65,-34,-81,-38v-43,-10,-68,-23,-76,-34","w":568},"\u00f4":{"d":"538,-263v0,158,-107,291,-269,288v-153,-3,-237,-76,-240,-236v-3,-135,48,-206,144,-244v72,-29,148,-29,195,15v10,4,98,23,110,42v34,30,60,74,60,135xm356,-379v-41,9,-78,-1,-99,-27v-48,13,-98,43,-123,97v-35,77,-43,169,19,223v91,77,204,50,268,-59v21,-35,34,-82,35,-143v1,-47,-33,-77,-100,-91xm388,-581v33,30,15,76,-27,77v-32,1,-31,-25,-38,-46v-7,-12,-15,-23,-22,-32v-28,17,-35,80,-77,82v-43,2,-46,-47,-15,-72v37,-30,29,-27,73,-77v22,-26,25,-31,44,-3v24,35,35,47,62,71","w":568},"\u00f6":{"d":"538,-263v0,158,-107,291,-269,288v-153,-3,-237,-76,-240,-236v-3,-135,48,-206,144,-244v72,-29,148,-29,195,15v10,4,98,23,110,42v34,30,60,74,60,135xm356,-379v-41,9,-78,-1,-99,-27v-48,13,-98,43,-123,97v-35,77,-43,169,19,223v91,77,204,50,268,-59v21,-35,34,-82,35,-143v1,-47,-33,-77,-100,-91xm206,-595v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm323,-591v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":568},"\u00f5":{"d":"538,-263v0,158,-107,291,-269,288v-153,-3,-237,-76,-240,-236v-3,-135,48,-206,144,-244v72,-29,148,-29,195,15v10,4,98,23,110,42v34,30,60,74,60,135xm356,-379v-41,9,-78,-1,-99,-27v-48,13,-98,43,-123,97v-35,77,-43,169,19,223v91,77,204,50,268,-59v21,-35,34,-82,35,-143v1,-47,-33,-77,-100,-91xm338,-577v27,-12,28,-68,66,-69v50,8,44,48,7,86v-23,24,-46,63,-88,50v-28,-9,-37,-38,-54,-60r-35,26v-3,39,-83,55,-83,4v0,-20,25,-35,47,-51v5,-8,15,-21,31,-36v60,-55,75,22,109,50","w":568},"\u00fa":{"d":"193,25v-119,-1,-166,-54,-166,-177v0,-110,34,-163,73,-250v14,-30,50,-76,86,-40v42,42,-45,105,-52,144v-30,67,-42,148,-25,222v11,20,37,30,80,30v171,-2,153,-175,135,-355v1,-4,-12,-41,-6,-54v8,-57,74,-58,80,-6v0,4,3,73,8,208v13,17,20,28,19,35v-4,19,-10,51,-16,95v5,38,12,81,-3,116v-11,25,-71,22,-69,-15v-35,31,-83,47,-144,47xm261,-632v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":454},"\u00f9":{"d":"193,25v-119,-1,-166,-54,-166,-177v0,-110,34,-163,73,-250v14,-30,50,-76,86,-40v42,42,-45,105,-52,144v-30,67,-42,148,-25,222v11,20,37,30,80,30v171,-2,153,-175,135,-355v1,-4,-12,-41,-6,-54v8,-57,74,-58,80,-6v0,4,3,73,8,208v13,17,20,28,19,35v-4,19,-10,51,-16,95v5,38,12,81,-3,116v-11,25,-71,22,-69,-15v-35,31,-83,47,-144,47xm132,-578v-18,-26,1,-66,27,-69v16,-2,65,37,70,37v41,19,70,35,87,48v15,21,-1,63,-27,56v-16,-4,-65,-34,-81,-38v-43,-10,-68,-23,-76,-34","w":454},"\u00fb":{"d":"193,25v-119,-1,-166,-54,-166,-177v0,-110,34,-163,73,-250v14,-30,50,-76,86,-40v42,42,-45,105,-52,144v-30,67,-42,148,-25,222v11,20,37,30,80,30v171,-2,153,-175,135,-355v1,-4,-12,-41,-6,-54v8,-57,74,-58,80,-6v0,4,3,73,8,208v13,17,20,28,19,35v-4,19,-10,51,-16,95v5,38,12,81,-3,116v-11,25,-71,22,-69,-15v-35,31,-83,47,-144,47xm328,-581v33,30,15,76,-27,77v-32,1,-31,-25,-38,-46v-7,-12,-15,-23,-22,-32v-28,17,-35,80,-77,82v-43,2,-46,-47,-15,-72v37,-30,29,-27,73,-77v22,-26,25,-31,44,-3v24,35,35,47,62,71","w":454},"\u00fc":{"d":"193,25v-119,-1,-166,-54,-166,-177v0,-110,34,-163,73,-250v14,-30,50,-76,86,-40v42,42,-45,105,-52,144v-30,67,-42,148,-25,222v11,20,37,30,80,30v171,-2,153,-175,135,-355v1,-4,-12,-41,-6,-54v8,-57,74,-58,80,-6v0,4,3,73,8,208v13,17,20,28,19,35v-4,19,-10,51,-16,95v5,38,12,81,-3,116v-11,25,-71,22,-69,-15v-35,31,-83,47,-144,47xm158,-601v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm275,-597v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":454},"\u00b0":{"d":"95,-663v3,-56,85,-92,135,-51v53,43,10,128,-48,128v-38,0,-89,-36,-87,-77xm151,-642v20,18,65,13,67,-15v1,-17,-33,-36,-49,-36v-23,-8,-44,37,-18,51","w":343},"\u00ae":{"d":"123,-232v-202,-139,-12,-488,177,-488v68,0,101,19,125,54v55,1,49,1,86,26v55,38,79,82,79,155v0,158,-127,324,-281,314v-73,-5,-133,-25,-186,-61xm383,-631v-8,-27,-33,-34,-80,-34v-154,0,-307,265,-155,387v100,80,252,83,331,-31v53,-76,80,-177,39,-257v-22,-25,-83,-70,-135,-65xm233,-282v-37,-18,-12,-62,-5,-104v-16,-10,-16,-48,7,-52r24,-121v-26,-37,19,-74,56,-51v40,24,78,31,89,79v9,41,-13,77,-38,94v30,26,31,43,46,105v8,33,-33,71,-49,34v-16,-38,-20,-72,-44,-105r-38,7v-7,45,13,125,-48,114xm298,-475v20,5,40,-11,42,-28v3,-21,-6,-34,-26,-38","w":631},"\u00a9":{"d":"290,-707v38,0,51,13,72,26v23,-6,38,-9,45,-9v112,0,177,102,174,228v-5,172,-103,303,-283,299v-150,-3,-256,-82,-253,-236v3,-146,90,-308,245,-308xm298,-655v-128,0,-201,131,-204,254v-3,124,92,187,209,191v174,5,259,-176,209,-345v-20,-67,-97,-97,-181,-81v-12,-5,-13,-19,-33,-19xm426,-461v-37,5,-28,-56,-60,-62v-39,-8,-98,-7,-120,28v-22,36,-37,110,-1,141v35,30,108,23,122,-20v10,-28,8,-32,36,-32v19,0,27,11,25,33v-6,89,-152,123,-221,64v-62,-53,-49,-172,1,-231v64,-76,238,-48,246,43v2,23,-6,33,-28,36","w":623},"\u2122":{"d":"138,-366v-51,-5,-25,-85,-26,-133v0,-47,-1,-80,-4,-99r-2,-19v-24,4,-90,7,-81,-29v0,-42,36,-25,78,-27v29,-18,91,3,124,-11v15,-1,29,19,29,35v0,31,-48,32,-89,31r6,209v1,20,-15,45,-35,43xm316,-424v3,26,-14,63,-38,59v-24,-4,-38,-31,-26,-63v25,-68,10,-34,35,-171v9,-49,19,-74,32,-74v40,0,55,103,80,162v3,-8,18,-44,45,-109v-17,-38,30,-68,56,-42v10,9,9,52,1,64r22,185v6,37,-33,52,-53,29v-20,-38,-6,-38,-16,-124v-18,33,-27,61,-27,82v9,22,1,45,-27,45v-30,0,-27,-16,-33,-36v-10,-15,-25,-75,-33,-105v-8,28,-14,69,-18,98","w":557},"\u2260":{"d":"122,-285v42,9,79,-2,123,-2v12,-36,33,-91,69,-89v42,2,47,42,29,78v47,-5,109,-2,104,42v5,51,-87,43,-144,41v-7,17,-15,37,-22,61v55,0,157,-21,155,37v0,19,-19,33,-56,40v-42,-4,-85,-9,-128,-3v-15,36,-23,55,-24,57v-13,23,-27,35,-43,35v-40,0,-44,-38,-31,-79v-47,5,-114,9,-114,-39v0,-64,96,-35,157,-43r22,-58v-63,-2,-181,28,-185,-37v-2,-25,45,-50,88,-41","w":475},"\u221e":{"d":"687,-302v0,73,-47,149,-118,149v-82,0,-164,-45,-221,-101v-51,45,-87,98,-167,96v-81,-2,-158,-78,-148,-164v13,-108,136,-175,239,-104r92,63r29,-22v54,-42,74,-63,145,-66v88,-4,149,64,149,149xm124,-249v62,68,135,-2,174,-60v-42,-34,-66,-72,-120,-76v-72,-5,-98,88,-54,136xm598,-358v-62,-63,-150,0,-193,52v30,38,78,79,130,79v80,0,110,-83,63,-131","w":726},"\u00b1":{"d":"328,-16v-79,0,-156,9,-234,9v-43,0,-65,-14,-65,-42v0,-41,77,-28,113,-25v40,3,141,-20,177,-19v43,0,65,11,65,32v0,30,-19,45,-56,45xm208,-541v61,0,22,77,36,125v0,7,-1,15,-3,22v59,13,79,-14,131,-15v15,-1,31,17,30,32v-6,60,-90,42,-164,54v-5,37,-12,130,-11,156v0,27,-13,41,-38,41v-24,0,-36,-16,-36,-47v0,-46,23,-102,20,-150v-20,-1,-85,21,-116,25v-31,4,-40,-61,-11,-65r128,-19v2,-62,-35,-159,34,-159","w":420},"\u2264":{"d":"328,-16v-79,0,-156,9,-234,9v-43,0,-65,-14,-65,-42v0,-41,77,-28,113,-25v40,3,141,-20,177,-19v43,0,65,11,65,32v0,30,-19,45,-56,45xm307,-473v-47,25,-44,28,-98,86v-27,30,-50,58,-70,83v51,43,41,32,157,106v33,21,40,44,16,68v-38,22,-65,-5,-101,-31v-44,-33,-84,-72,-134,-99v-32,-18,-39,-52,-10,-72v48,-33,39,-43,86,-95v30,-17,114,-166,172,-116v17,23,-1,61,-18,70","w":420},"\u2265":{"d":"350,-21v-90,13,-178,15,-266,15v-29,0,-44,-13,-46,-40v-5,-56,149,-33,202,-32v48,1,83,-20,132,-9v12,3,20,8,21,21v2,24,-12,41,-43,45xm91,-213v53,-20,41,-14,105,-76r78,-76v-38,-43,-96,-89,-148,-121v-46,-28,-24,-77,18,-73v74,27,128,114,195,155v32,20,34,56,3,73v-46,26,-56,57,-93,87v-43,34,-108,117,-164,112v-38,-4,-20,-72,6,-81","w":420},"\u00b5":{"d":"121,1v-12,64,28,193,-40,208v-23,-10,-53,-29,-50,-58v13,-128,16,-214,16,-255v0,-110,20,-185,20,-284v0,-43,42,-88,81,-54v9,9,13,18,10,28v-17,73,-33,144,-38,267v-2,78,23,98,98,98v103,0,144,-63,144,-178v0,-43,0,-137,-15,-204v-9,-39,18,-75,44,-71v21,3,32,15,35,38v6,49,-4,189,17,233v17,37,-15,83,-2,138v9,35,-2,54,-6,83v-12,24,-71,22,-70,-15v-47,51,-176,62,-244,26","w":483},"\u03bc":{"d":"121,1v-12,64,28,193,-40,208v-23,-10,-53,-29,-50,-58v13,-128,16,-214,16,-255v0,-110,20,-185,20,-284v0,-43,42,-88,81,-54v9,9,13,18,10,28v-17,73,-33,144,-38,267v-2,78,23,98,98,98v103,0,144,-63,144,-178v0,-43,0,-137,-15,-204v-9,-39,18,-75,44,-71v21,3,32,15,35,38v6,49,-4,189,17,233v17,37,-15,83,-2,138v9,35,-2,54,-6,83v-12,24,-71,22,-70,-15v-47,51,-176,62,-244,26","w":483},"\u2202":{"d":"250,-609v-51,-61,-145,-1,-132,77v7,42,-57,79,-73,29v-46,-146,162,-266,259,-144v41,51,104,170,83,282r-3,38v16,1,29,20,25,38v-2,11,-12,20,-31,25v-12,126,-46,231,-126,281v-134,-4,-213,-49,-221,-186v-7,-128,70,-261,189,-253v17,1,51,11,104,31v-11,-60,-13,-123,-41,-167v-19,-30,-30,-48,-33,-51xm89,-181v0,69,61,137,130,134v41,-2,99,-131,96,-227r2,-40v-35,-27,-68,-41,-98,-41v-70,0,-130,101,-130,174"},"\u2211":{"d":"121,-83v-6,-2,-38,29,-46,26v-42,-1,-37,-74,-4,-90v19,-9,57,-22,85,-49v78,-75,75,-69,202,-162v-61,-41,-198,-145,-240,-189v-34,-1,-79,-4,-69,-54v-2,-16,31,-24,98,-24v104,-21,197,-57,311,-67v25,-2,38,11,38,37v0,45,-18,52,-99,52v-27,0,-51,3,-67,19v-13,14,-21,5,-34,1v-14,-5,-65,18,-84,25v53,57,157,139,229,158v58,15,12,89,-14,97v-92,30,-168,117,-236,167v77,22,144,62,231,84v35,-2,77,2,70,49v5,18,-37,43,-49,38r-160,-63v-48,-20,-100,-55,-162,-55","w":536},"\u220f":{"d":"80,-681v-2,-22,43,-34,48,-8r141,0v35,0,99,3,194,8v0,-16,8,-24,25,-24v16,0,24,8,24,24v33,0,50,12,50,36v0,19,-15,30,-44,33r13,423v-2,71,18,185,-40,189v-29,2,-46,-37,-45,-66v2,-49,7,-129,9,-240v2,-110,1,-211,0,-303v-113,-15,-187,-17,-308,-5r2,320r-2,249v2,29,-14,63,-40,63v-27,0,-40,-25,-40,-74v-1,-61,13,-186,13,-240v2,-99,1,-204,-4,-313v-21,2,-42,-15,-42,-36v0,-33,17,-43,46,-36","w":596},"\u03c0":{"d":"128,-492v111,0,180,10,291,21v0,-16,8,-24,25,-24v15,0,23,8,23,24v34,0,51,12,51,36v0,20,-15,31,-44,34v1,27,-13,140,-11,169v4,82,18,135,30,191v0,23,-12,35,-36,35v-31,0,-49,-16,-55,-48v-14,-87,-28,-170,-8,-266v6,-36,9,-62,8,-79v-77,0,-152,-36,-255,-17v17,77,13,298,0,371v-5,35,-21,52,-48,52v-76,0,-18,-179,-18,-241v0,-11,-1,-70,-5,-178v-20,3,-42,-16,-42,-35v0,-34,18,-45,46,-36v-2,-22,42,-34,48,-9","w":543},"\u222b":{"d":"318,-698v0,40,-83,16,-108,35v-25,19,-57,61,-51,116r33,320v3,189,1,372,-168,372v-55,0,-83,-20,-85,-60v-1,-29,31,-34,49,-13v36,25,82,17,103,-29v36,-78,29,-158,36,-286v7,-22,-31,-279,-33,-315v-4,-66,53,-128,85,-155v32,-27,139,-28,139,15","w":271},"\u03a9":{"d":"533,-409v0,-117,-93,-220,-196,-220v-60,0,-59,12,-114,55v-72,56,-164,232,-111,359v3,8,15,31,35,69v20,19,73,96,37,136v-13,36,-95,21,-116,18v-17,-2,-25,-18,-25,-43v0,-34,46,-26,85,-19v-68,-74,-120,-221,-85,-359v29,-116,115,-220,203,-266v98,-51,192,-29,267,54v83,91,111,157,80,317v-15,76,-67,183,-87,235v-2,29,38,1,58,11v35,17,35,56,-6,65v-90,19,-143,-38,-107,-130v32,-81,82,-177,82,-282","w":637},"\u2126":{"d":"533,-409v0,-117,-93,-220,-196,-220v-60,0,-59,12,-114,55v-72,56,-164,232,-111,359v3,8,15,31,35,69v20,19,73,96,37,136v-13,36,-95,21,-116,18v-17,-2,-25,-18,-25,-43v0,-34,46,-26,85,-19v-68,-74,-120,-221,-85,-359v29,-116,115,-220,203,-266v98,-51,192,-29,267,54v83,91,111,157,80,317v-15,76,-67,183,-87,235v-2,29,38,1,58,11v35,17,35,56,-6,65v-90,19,-143,-38,-107,-130v32,-81,82,-177,82,-282","w":637},"\u00ac":{"d":"489,-202v-118,-9,-267,8,-403,21v-69,6,-86,-60,-31,-66v65,-7,126,-13,190,-14r113,0v108,-5,254,-24,268,83v2,14,-3,154,-3,148v0,53,-76,54,-76,10v0,-44,22,-79,22,-134v0,-41,-29,-44,-80,-48","w":669},"\u221a":{"d":"557,-637v1,18,-23,42,-41,41v-10,2,-78,-39,-93,-29v-19,13,-33,92,-41,126v-54,214,-40,383,-91,644v-5,27,-24,44,-53,44v-45,0,-51,-101,-67,-145v-31,-88,-20,-212,-51,-287v-30,20,-88,30,-98,-13v2,-42,76,-60,126,-60v37,0,33,19,39,75v18,158,16,130,48,288v3,-23,7,-61,14,-113v15,-121,27,-263,60,-421v19,-92,36,-227,147,-205v37,7,108,25,101,55","w":461},"\u2248":{"d":"257,-301v36,3,61,-62,102,-35v29,35,-13,62,-40,80v-23,16,-48,23,-72,23v-23,0,-69,-49,-96,-44v-10,3,-40,20,-58,39v-17,18,-65,20,-65,-14v-1,-23,29,-41,43,-54v17,-17,62,-39,90,-40v13,-3,85,48,96,45xm257,-164v36,3,61,-62,102,-35v29,35,-13,62,-40,80v-23,16,-48,23,-72,23v-23,0,-69,-47,-96,-44v-18,2,-56,44,-85,51v-36,9,-49,-34,-24,-55v43,-36,102,-94,169,-42v22,17,39,22,46,22","w":397},"\u22f2":{"d":"257,-301v36,3,61,-62,102,-35v29,35,-13,62,-40,80v-23,16,-48,23,-72,23v-23,0,-69,-49,-96,-44v-10,3,-40,20,-58,39v-17,18,-65,20,-65,-14v-1,-23,29,-41,43,-54v17,-17,62,-39,90,-40v13,-3,85,48,96,45xm257,-164v36,3,61,-62,102,-35v29,35,-13,62,-40,80v-23,16,-48,23,-72,23v-23,0,-69,-47,-96,-44v-18,2,-56,44,-85,51v-36,9,-49,-34,-24,-55v43,-36,102,-94,169,-42v22,17,39,22,46,22","w":397},"\u0394":{"d":"239,-7v-73,-4,-242,51,-209,-65r82,-289r55,-230v9,-39,24,-67,37,-101v11,-29,39,-29,50,-1v13,35,29,113,39,147v33,117,68,292,107,418v11,38,17,66,17,84v0,28,-1,39,-36,39xm225,-551r-128,480v113,-11,140,-13,248,0v-38,-115,-79,-345,-120,-480"},"\u2206":{"d":"239,-7v-73,-4,-242,51,-209,-65r82,-289r55,-230v9,-39,24,-67,37,-101v11,-29,39,-29,50,-1v13,35,29,113,39,147v33,117,68,292,107,418v11,38,17,66,17,84v0,28,-1,39,-36,39xm225,-551r-128,480v113,-11,140,-13,248,0v-38,-115,-79,-345,-120,-480"},"\u00a0":{"w":420},"\u00c0":{"d":"146,-384v39,-106,51,-143,79,-268v-37,-26,-30,-77,11,-83v19,-3,35,14,46,48r57,170r44,121v32,0,61,-9,66,25v9,25,-20,51,-46,46v6,79,76,210,95,293v9,37,0,62,-31,62v-53,0,-43,-71,-64,-119v-16,-38,-23,-67,-28,-85v-7,-22,-18,-58,-32,-109v-3,-9,-6,-24,-10,-44v-164,3,-38,-8,-138,8v-14,37,-46,170,-56,202v-9,30,-25,76,-46,139v-12,36,-68,21,-67,-13v15,-62,36,-111,58,-186r40,-136v-26,6,-45,8,-48,-29v-2,-27,36,-56,70,-42xm263,-521v-11,29,-26,74,-45,134v47,0,31,1,96,-4v-12,-29,-29,-72,-51,-130xm160,-825v-18,-26,1,-66,27,-69v16,-2,65,37,70,37v41,19,70,35,87,48v15,21,-1,63,-27,56v-16,-4,-65,-34,-81,-38v-43,-10,-68,-23,-76,-34","w":527},"\u00c3":{"d":"146,-384v39,-106,51,-143,79,-268v-37,-26,-30,-77,11,-83v19,-3,35,14,46,48r57,170r44,121v32,0,61,-9,66,25v9,25,-20,51,-46,46v6,79,76,210,95,293v9,37,0,62,-31,62v-53,0,-43,-71,-64,-119v-16,-38,-23,-67,-28,-85v-7,-22,-18,-58,-32,-109v-3,-9,-6,-24,-10,-44v-164,3,-38,-8,-138,8v-14,37,-46,170,-56,202v-9,30,-25,76,-46,139v-12,36,-68,21,-67,-13v15,-62,36,-111,58,-186r40,-136v-26,6,-45,8,-48,-29v-2,-27,36,-56,70,-42xm263,-521v-11,29,-26,74,-45,134v47,0,31,1,96,-4v-12,-29,-29,-72,-51,-130xm290,-830v26,-12,28,-68,66,-69v50,8,44,48,7,86v-23,24,-46,64,-88,50v-28,-9,-38,-38,-54,-60r-35,25v-3,39,-83,57,-83,5v0,-20,25,-35,47,-51v12,-19,71,-84,96,-42v13,20,29,40,44,56","w":527},"\u00d5":{"d":"74,-107v-133,-232,44,-594,281,-594v92,0,198,102,218,174v7,23,11,76,18,158v12,133,-85,316,-169,360v-80,42,-156,36,-249,-12v-41,-21,-84,-38,-99,-86xm487,-205v75,-171,49,-415,-151,-423v-119,-5,-235,193,-240,316v-5,123,38,219,144,235v42,-4,73,-4,79,36v24,-1,41,-5,52,-11v47,-25,83,-77,116,-153xm381,-804v26,-12,28,-68,66,-69v50,8,44,48,7,86v-23,24,-46,64,-88,50v-28,-9,-38,-38,-54,-60r-35,25v-3,39,-83,57,-83,5v0,-20,25,-35,47,-51v12,-19,71,-84,96,-42v13,20,29,40,44,56","w":628},"\u00f7":{"d":"363,-172v-87,0,-163,15,-251,14v-43,0,-65,-14,-65,-43v0,-35,72,-50,116,-37v40,2,139,-16,175,-15v49,0,73,13,73,40v0,27,-16,41,-48,41xm220,-117v58,0,73,58,41,97v-31,38,-79,14,-79,-39v0,-39,11,-58,38,-58xm192,-386v25,-47,86,-4,86,39v0,33,-15,49,-44,49v-57,0,-61,-51,-42,-88","w":454},"\u25ca":{"d":"234,-676v12,47,38,80,53,124r53,157v10,15,39,53,20,89v-44,82,-65,171,-93,261v-17,56,-72,75,-105,38v-19,-41,-21,-92,-49,-148v-27,-55,-39,-97,-72,-152v-30,-29,4,-83,12,-100v19,-39,45,-106,82,-197v2,-13,7,-32,19,-57v16,-35,62,-44,80,-15xm198,-559v-28,52,-61,119,-85,211r50,129r51,118r75,-238v-19,-64,-49,-145,-91,-220","w":404},"\u00ff":{"d":"375,-453v57,0,40,91,38,146v-1,36,-5,129,-17,187v19,18,5,51,-4,61v-6,184,-84,320,-243,320v-72,0,-140,-45,-140,-112v0,-47,20,-102,63,-98v42,4,10,65,6,86v3,37,24,57,65,57v104,0,188,-90,173,-211v-73,66,-226,41,-262,-33v-13,-27,-21,-73,-22,-139v-1,-116,20,-195,65,-238v19,-18,33,-26,44,-25v30,1,42,46,19,64v-41,31,-41,68,-51,140v-12,84,-6,141,9,171v4,17,53,28,89,28v73,1,118,-46,124,-117v6,-71,21,-139,7,-216v-7,-36,16,-71,37,-71xm168,-591v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm285,-587v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":454},"\u0178":{"d":"306,-68v7,21,10,59,-4,77v-9,11,-64,17,-78,0v-7,-7,-8,-26,-5,-56v2,-15,3,-114,4,-296v-34,-67,-87,-140,-149,-248v-15,-15,-45,-34,-45,-58v-11,-57,40,-65,69,-44v33,23,71,119,90,157v18,36,44,77,77,126r72,-123v38,-65,72,-116,99,-157v17,-25,47,-36,71,-21v7,16,18,47,-1,65v-47,46,-71,95,-107,148v-54,79,-92,114,-92,212v0,58,0,131,-1,218xm199,-826v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm316,-822v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":549},"\u00c2":{"d":"146,-384v39,-106,51,-143,79,-268v-37,-26,-30,-77,11,-83v19,-3,35,14,46,48r57,170r44,121v32,0,61,-9,66,25v9,25,-20,51,-46,46v6,79,76,210,95,293v9,37,0,62,-31,62v-53,0,-43,-71,-64,-119v-16,-38,-23,-67,-28,-85v-7,-22,-18,-58,-32,-109v-3,-9,-6,-24,-10,-44v-164,3,-38,-8,-138,8v-14,37,-46,170,-56,202v-9,30,-25,76,-46,139v-12,36,-68,21,-67,-13v15,-62,36,-111,58,-186r40,-136v-26,6,-45,8,-48,-29v-2,-27,36,-56,70,-42xm263,-521v-11,29,-26,74,-45,134v47,0,31,1,96,-4v-12,-29,-29,-72,-51,-130xm246,-835v-28,18,-33,80,-77,82v-41,2,-45,-46,-15,-71v36,-29,30,-28,73,-77v22,-25,27,-32,44,-4v26,44,71,59,80,108v7,35,-62,57,-74,25v-9,-25,-16,-47,-31,-63","w":530},"\u00ca":{"d":"111,-707v18,-5,42,36,45,36v59,-2,161,-43,229,-43v35,0,54,38,29,63v-34,33,-88,17,-147,28r-109,20v-8,73,-12,141,-12,203v56,-3,150,16,208,16v31,0,61,42,30,60v-58,34,-161,-33,-240,-2v-6,18,-13,56,-16,114v-1,25,8,105,-8,146v68,10,165,-4,228,-12v66,-7,59,69,9,71v-83,5,-177,-10,-245,11v-1,21,-11,31,-30,31v-17,1,-34,-15,-33,-32v-34,-6,-22,-61,5,-67r23,-267v-31,-13,-29,-55,6,-67r2,-195v-35,-13,-26,-57,7,-69v-8,-22,1,-46,19,-45xm259,-814v-28,18,-33,80,-77,82v-41,2,-45,-46,-15,-71v36,-29,30,-28,73,-77v22,-25,27,-32,44,-4v26,44,71,59,80,108v7,35,-62,57,-74,25v-9,-25,-16,-47,-31,-63"},"\u00c1":{"d":"146,-384v39,-106,51,-143,79,-268v-37,-26,-30,-77,11,-83v19,-3,35,14,46,48r57,170r44,121v32,0,61,-9,66,25v9,25,-20,51,-46,46v6,79,76,210,95,293v9,37,0,62,-31,62v-53,0,-43,-71,-64,-119v-16,-38,-23,-67,-28,-85v-7,-22,-18,-58,-32,-109v-3,-9,-6,-24,-10,-44v-164,3,-38,-8,-138,8v-14,37,-46,170,-56,202v-9,30,-25,76,-46,139v-12,36,-68,21,-67,-13v15,-62,36,-111,58,-186r40,-136v-26,6,-45,8,-48,-29v-2,-27,36,-56,70,-42xm263,-521v-11,29,-26,74,-45,134v47,0,31,1,96,-4v-12,-29,-29,-72,-51,-130xm289,-878v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":533},"\u00cb":{"d":"111,-707v18,-5,42,36,45,36v59,-2,161,-43,229,-43v35,0,54,38,29,63v-34,33,-88,17,-147,28r-109,20v-8,73,-12,141,-12,203v56,-3,150,16,208,16v31,0,61,42,30,60v-58,34,-161,-33,-240,-2v-6,18,-13,56,-16,114v-1,25,8,105,-8,146v68,10,165,-4,228,-12v66,-7,59,69,9,71v-83,5,-177,-10,-245,11v-1,21,-11,31,-30,31v-17,1,-34,-15,-33,-32v-34,-6,-22,-61,5,-67r23,-267v-31,-13,-29,-55,6,-67r2,-195v-35,-13,-26,-57,7,-69v-8,-22,1,-46,19,-45xm161,-830v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm278,-826v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68"},"\u00c8":{"d":"111,-707v18,-5,42,36,45,36v59,-2,161,-43,229,-43v35,0,54,38,29,63v-34,33,-88,17,-147,28r-109,20v-8,73,-12,141,-12,203v56,-3,150,16,208,16v31,0,61,42,30,60v-58,34,-161,-33,-240,-2v-6,18,-13,56,-16,114v-1,25,8,105,-8,146v68,10,165,-4,228,-12v66,-7,59,69,9,71v-83,5,-177,-10,-245,11v-1,21,-11,31,-30,31v-17,1,-34,-15,-33,-32v-34,-6,-22,-61,5,-67r23,-267v-31,-13,-29,-55,6,-67r2,-195v-35,-13,-26,-57,7,-69v-8,-22,1,-46,19,-45xm141,-803v-18,-26,1,-66,27,-69v16,-2,65,37,70,37v41,19,70,35,87,48v15,21,-1,63,-27,56v-16,-4,-65,-34,-81,-38v-43,-10,-68,-23,-76,-34","w":448},"\u00cd":{"d":"157,-627v-43,8,-139,38,-135,-25v2,-29,4,-29,44,-29v52,0,82,-1,89,0v10,-25,53,-27,69,-6v45,3,114,-12,114,39v-9,28,-57,42,-110,25v-29,154,3,266,0,415r0,140v5,0,37,-13,51,-10v33,7,50,18,50,37v-7,34,-34,46,-90,30v-3,1,-31,29,-46,26v-15,0,-28,-5,-39,-15v-33,18,-120,33,-126,-15v-6,-50,95,-37,127,-41v14,-187,2,-377,2,-571xm223,-856v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":363},"\u00ce":{"d":"157,-627v-43,8,-139,38,-135,-25v2,-29,4,-29,44,-29v52,0,82,-1,89,0v10,-25,53,-27,69,-6v45,3,114,-12,114,39v-9,28,-57,42,-110,25v-29,154,3,266,0,415r0,140v5,0,37,-13,51,-10v33,7,50,18,50,37v-7,34,-34,46,-90,30v-3,1,-31,29,-46,26v-15,0,-28,-5,-39,-15v-33,18,-120,33,-126,-15v-6,-50,95,-37,127,-41v14,-187,2,-377,2,-571xm188,-805v-28,18,-33,80,-77,82v-41,2,-45,-46,-15,-71v36,-29,30,-28,73,-77v22,-25,27,-32,44,-4v26,44,71,59,80,108v7,35,-62,57,-74,25v-9,-25,-16,-47,-31,-63","w":363},"\u00cf":{"d":"157,-627v-43,8,-139,38,-135,-25v2,-29,4,-29,44,-29v52,0,82,-1,89,0v10,-25,53,-27,69,-6v45,3,114,-12,114,39v-9,28,-57,42,-110,25v-29,154,3,266,0,415r0,140v5,0,37,-13,51,-10v33,7,50,18,50,37v-7,34,-34,46,-90,30v-3,1,-31,29,-46,26v-15,0,-28,-5,-39,-15v-33,18,-120,33,-126,-15v-6,-50,95,-37,127,-41v14,-187,2,-377,2,-571xm110,-823v21,-1,49,22,49,44v0,28,-27,50,-55,50v-26,0,-56,-19,-56,-46v0,-32,19,-48,62,-48xm227,-819v29,-30,94,-8,95,31v1,44,-57,67,-91,37v-21,-19,-24,-48,-4,-68","w":363},"\u00cc":{"d":"157,-627v-43,8,-139,38,-135,-25v2,-29,4,-29,44,-29v52,0,82,-1,89,0v10,-25,53,-27,69,-6v45,3,114,-12,114,39v-9,28,-57,42,-110,25v-29,154,3,266,0,415r0,140v5,0,37,-13,51,-10v33,7,50,18,50,37v-7,34,-34,46,-90,30v-3,1,-31,29,-46,26v-15,0,-28,-5,-39,-15v-33,18,-120,33,-126,-15v-6,-50,95,-37,127,-41v14,-187,2,-377,2,-571xm103,-807v-18,-26,1,-66,27,-69v16,-2,65,37,70,37v41,19,70,35,87,48v15,21,-1,63,-27,56v-16,-4,-65,-34,-81,-38v-43,-10,-68,-23,-76,-34","w":363},"\u00d3":{"d":"74,-107v-133,-232,44,-594,281,-594v92,0,198,102,218,174v7,23,11,76,18,158v12,133,-85,316,-169,360v-80,42,-156,36,-249,-12v-41,-21,-84,-38,-99,-86xm487,-205v75,-171,49,-415,-151,-423v-119,-5,-235,193,-240,316v-5,123,38,219,144,235v42,-4,73,-4,79,36v24,-1,41,-5,52,-11v47,-25,83,-77,116,-153xm343,-851v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":628},"\u00d4":{"d":"74,-107v-133,-232,44,-594,281,-594v92,0,198,102,218,174v7,23,11,76,18,158v12,133,-85,316,-169,360v-80,42,-156,36,-249,-12v-41,-21,-84,-38,-99,-86xm487,-205v75,-171,49,-415,-151,-423v-119,-5,-235,193,-240,316v-5,123,38,219,144,235v42,-4,73,-4,79,36v24,-1,41,-5,52,-11v47,-25,83,-77,116,-153xm335,-812v-28,18,-33,80,-77,82v-41,2,-45,-46,-15,-71v36,-29,30,-28,73,-77v22,-25,27,-32,44,-4v26,44,71,59,80,108v7,35,-62,57,-74,25v-9,-25,-16,-47,-31,-63","w":628},"\uf000":{"d":"151,-652v26,-27,65,-2,86,21v21,-11,52,-26,95,-46v-16,-57,49,-107,79,-49v1,3,2,17,4,42v17,4,55,19,113,46v4,-17,39,-39,58,-37v19,3,28,19,28,47v3,17,-35,41,-35,46v36,43,53,84,48,162v34,3,94,59,45,82v-27,13,-55,1,-70,-13v-9,20,-32,51,-46,72v26,12,48,91,-3,89v-29,-1,-46,-14,-59,-41v-40,32,-25,25,-95,45v2,29,-17,60,-42,58v-21,-1,-40,-26,-41,-63v-37,-12,-69,-31,-112,-57v-2,44,-96,55,-93,5v2,-29,10,-38,45,-57v-23,-31,-37,-74,-44,-127v-30,2,-65,-19,-63,-47v-5,-29,51,-44,86,-34v5,-15,19,-39,42,-70v-24,-11,-40,-45,-26,-74xm576,-455v5,-92,-152,-217,-256,-158v-71,41,-145,96,-147,190v-3,106,93,180,192,180v114,0,205,-98,211,-212xm320,-462v-49,0,-58,-87,-7,-91v25,-2,46,22,46,47v0,23,-16,44,-39,44xm255,-335v-38,-33,-39,-64,-30,-101v22,-42,68,3,68,32v0,34,50,61,87,57v51,-5,80,-30,80,-76v0,-32,39,-53,62,-27v7,6,10,13,9,21v-11,71,-91,145,-165,143v-41,-1,-77,-20,-111,-49xm436,-477v-22,0,-42,-21,-42,-44v0,-43,40,-60,67,-35v26,25,13,79,-25,79","w":728},"\u00d2":{"d":"74,-107v-133,-232,44,-594,281,-594v92,0,198,102,218,174v7,23,11,76,18,158v12,133,-85,316,-169,360v-80,42,-156,36,-249,-12v-41,-21,-84,-38,-99,-86xm487,-205v75,-171,49,-415,-151,-423v-119,-5,-235,193,-240,316v-5,123,38,219,144,235v42,-4,73,-4,79,36v24,-1,41,-5,52,-11v47,-25,83,-77,116,-153xm243,-807v-18,-26,1,-66,27,-69v16,-2,65,37,70,37v41,19,70,35,87,48v15,21,-1,63,-27,56v-16,-4,-65,-34,-81,-38v-43,-10,-68,-23,-76,-34","w":625},"\u00da":{"d":"343,-629v-1,-45,6,-63,40,-66v19,-1,39,17,38,36v-4,71,8,281,8,345v0,139,-31,233,-88,289v-63,63,-184,44,-243,-2v-80,-62,-79,-234,-43,-356v17,-59,50,-198,63,-286v6,-39,85,-43,88,-6v-48,137,-90,293,-98,467v-5,98,37,147,126,147v76,0,122,-120,122,-202v0,-85,-8,-266,-13,-366xm303,-861v43,-37,86,14,61,55v-12,19,-89,28,-120,54v-43,36,-84,5,-64,-38v25,-22,83,-36,123,-71","w":470},"\u00db":{"d":"343,-629v-1,-45,6,-63,40,-66v19,-1,39,17,38,36v-4,71,8,281,8,345v0,139,-31,233,-88,289v-63,63,-184,44,-243,-2v-80,-62,-79,-234,-43,-356v17,-59,50,-198,63,-286v6,-39,85,-43,88,-6v-48,137,-90,293,-98,467v-5,98,37,147,126,147v76,0,122,-120,122,-202v0,-85,-8,-266,-13,-366xm266,-814v-28,18,-33,80,-77,82v-41,2,-45,-46,-15,-71v36,-29,30,-28,73,-77v22,-25,27,-32,44,-4v26,44,71,59,80,108v7,35,-62,57,-74,25v-9,-25,-16,-47,-31,-63","w":470},"\u00d9":{"d":"343,-629v-1,-45,6,-63,40,-66v19,-1,39,17,38,36v-4,71,8,281,8,345v0,139,-31,233,-88,289v-63,63,-184,44,-243,-2v-80,-62,-79,-234,-43,-356v17,-59,50,-198,63,-286v6,-39,85,-43,88,-6v-48,137,-90,293,-98,467v-5,98,37,147,126,147v76,0,122,-120,122,-202v0,-85,-8,-266,-13,-366xm172,-809v-18,-26,1,-66,27,-69v16,-2,65,37,70,37v41,19,70,35,87,48v15,21,-1,63,-27,56v-16,-4,-65,-34,-81,-38v-43,-10,-68,-23,-76,-34","w":470}}});;if(typeof Prototype=='undefined'||!Prototype.Version.match("1.6"))
throw("Prototype-UI library require Prototype library >= 1.6.0");if(Prototype.Browser.WebKit){Prototype.Browser.WebKitVersion=parseFloat(navigator.userAgent.match(/AppleWebKit\/([\d\.\+]*)/)[1]);Prototype.Browser.Safari2=(Prototype.Browser.WebKitVersion<420);}
if(Prototype.Browser.IE){Prototype.Browser.IEVersion=parseFloat(navigator.appVersion.split(';')[1].strip().split(' ')[1]);Prototype.Browser.IE6=Prototype.Browser.IEVersion==6;Prototype.Browser.IE7=Prototype.Browser.IEVersion==7;}
Prototype.falseFunction=function(){return false};Prototype.trueFunction=function(){return true};var UI={Abstract:{},Ajax:{}};Object.extend(Class.Methods,{extend:Object.extend.methodize(),addMethods:Class.Methods.addMethods.wrap(function(proceed,source){if(!source)return this;if(!source.hasOwnProperty('methodsAdded'))
return proceed(source);var callback=source.methodsAdded;delete source.methodsAdded;proceed(source);callback.call(source,this);source.methodsAdded=callback;return this;}),addMethod:function(name,lambda){var methods={};methods[name]=lambda;return this.addMethods(methods);},method:function(name){return this.prototype[name].valueOf();},classMethod:function(){$A(arguments).flatten().each(function(method){this[method]=(function(){return this[method].apply(this,arguments);}).bind(this.prototype);},this);return this;},undefMethod:function(name){this.prototype[name]=undefined;return this;},removeMethod:function(name){delete this.prototype[name];return this;},aliasMethod:function(newName,name){this.prototype[newName]=this.prototype[name];return this;},aliasMethodChain:function(target,feature){feature=feature.camelcase();this.aliasMethod(target+"Without"+feature,target);this.aliasMethod(target,target+"With"+feature);return this;}});Object.extend(Number.prototype,{snap:function(round){return parseInt(round==1?this:(this/round).floor()*round);}});Object.extend(String.prototype,{camelcase:function(){var string=this.dasherize().camelize();return string.charAt(0).toUpperCase()+string.slice(1);},makeElement:function(){var wrapper=new Element('div');wrapper.innerHTML=this;return wrapper.down();}});Object.extend(Array.prototype,{empty:function(){return!this.length;},extractOptions:function(){return this.last().constructor===Object?this.pop():{};},removeAt:function(index){var object=this[index];this.splice(index,1);return object;},remove:function(object){var index;while((index=this.indexOf(object))!=-1)
this.removeAt(index);return object;},insert:function(index){var args=$A(arguments);args.shift();this.splice.apply(this,[index,0].concat(args));return this;}});Element.addMethods({getScrollDimensions:function(element){return{width:element.scrollWidth,height:element.scrollHeight}},getScrollOffset:function(element){return Element._returnOffset(element.scrollLeft,element.scrollTop);},setScrollOffset:function(element,offset){element=$(element);if(arguments.length==3)
offset={left:offset,top:arguments[2]};element.scrollLeft=offset.left;element.scrollTop=offset.top;return element;},getNumStyle:function(element,style){var value=parseFloat($(element).getStyle(style));return isNaN(value)?null:value;},appendText:function(element,text){element=$(element);text=String.interpret(text);element.appendChild(document.createTextNode(text));return element;}});document.whenReady=function(callback){if(document.loaded)
callback.call(document);else
document.observe('dom:loaded',callback);};Object.extend(document.viewport,{getScrollOffset:document.viewport.getScrollOffsets,setScrollOffset:function(offset){Element.setScrollOffset(Prototype.Browser.WebKit?document.body:document.documentElement,offset);},getScrollDimensions:function(){return Element.getScrollDimensions(Prototype.Browser.WebKit?document.body:document.documentElement);}});(function(){UI.Options={methodsAdded:function(klass){klass.classMethod($w(' setOptions allOptions optionsGetter optionsSetter optionsAccessor '));},setOptions:function(options){if(!this.hasOwnProperty('options'))
this.options=this.allOptions();this.options=Object.extend(this.options,options||{});},allOptions:function(){var superclass=this.constructor.superclass,ancestor=superclass&&superclass.prototype;return(ancestor&&ancestor.allOptions)?Object.extend(ancestor.allOptions(),this.options):Object.clone(this.options);},optionsGetter:function(){addOptionsAccessors(this,arguments,false);},optionsSetter:function(){addOptionsAccessors(this,arguments,true);},optionsAccessor:function(){this.optionsGetter.apply(this,arguments);this.optionsSetter.apply(this,arguments);}};function addOptionsAccessors(receiver,names,areSetters){names=$A(names).flatten();if(names.empty())
names=Object.keys(receiver.allOptions());names.each(function(name){var accessorName=(areSetters?'set':'get')+name.camelcase();receiver[accessorName]=receiver[accessorName]||(areSetters?function(value){return this.options[name]=value}:function(){return this.options[name]});});}})();UI.Carousel=Class.create(UI.Options,{options:{direction:"horizontal",previousButton:".previous_button",nextButton:".next_button",container:".container",scrollInc:"auto",disabledButtonSuffix:'_disabled',overButtonSuffix:'_over'},initialize:function(element,options){this.setOptions(options);this.element=$(element);this.id=this.element.id;this.container=this.element.down(this.options.container).firstDescendant();this.elements=this.container.childElements();this.previousButton=this.options.previousButton==false?null:this.element.down(this.options.previousButton);this.nextButton=this.options.nextButton==false?null:this.element.down(this.options.nextButton);this.posAttribute=(this.options.direction=="horizontal"?"left":"top");this.dimAttribute=(this.options.direction=="horizontal"?"width":"height");this.elementSize=this.computeElementSize();this.nbVisible=this.currentSize()/this.elementSize;var scrollInc=this.options.scrollInc;if(scrollInc=="auto")
scrollInc=Math.floor(this.nbVisible);[this.previousButton,this.nextButton].each(function(button){if(!button)return;var className=(button==this.nextButton?"next_button":"previous_button")+this.options.overButtonSuffix;button.clickHandler=this.scroll.bind(this,(button==this.nextButton?-1:1)*scrollInc*this.elementSize);button.observe("click",button.clickHandler).observe("mouseover",function(){button.addClassName(className)}.bind(this)).observe("mouseout",function(){button.removeClassName(className)}.bind(this));},this);this.updateButtons();},destroy:function($super){[this.previousButton,this.nextButton].each(function(button){if(!button)return;button.stopObserving("click",button.clickHandler);},this);this.element.remove();this.fire('destroyed');},fire:function(eventName,memo){memo=memo||{};memo.carousel=this;return this.element.fire('carousel:'+eventName,memo);},observe:function(eventName,handler){this.element.observe('carousel:'+eventName,handler.bind(this));return this;},stopObserving:function(eventName,handler){this.element.stopObserving('carousel:'+eventName,handler);return this;},checkScroll:function(position,updatePosition){if(position>0)
position=0;else{var limit=this.elements.last().positionedOffset()[this.posAttribute]+this.elementSize;var carouselSize=this.currentSize();if(position+limit<carouselSize)
position+=carouselSize-(position+limit);position=Math.min(position,0);}
if(updatePosition)
this.container.style[this.posAttribute]=position+"px";return position;},scroll:function(deltaPixel){if(this.animating)
return this;var position=this.currentPosition()+deltaPixel;position=this.checkScroll(position,false);deltaPixel=position-this.currentPosition();if(deltaPixel!=0){this.animating=true;this.fire("scroll:started");var that=this;this.container.morph("opacity:0.5",{duration:0.2,afterFinish:function(){that.container.morph(that.posAttribute+": "+position+"px",{duration:0.4,delay:0.2,afterFinish:function(){that.container.morph("opacity:1",{duration:0.2,afterFinish:function(){that.animating=false;that.updateButtons().fire("scroll:ended",{shift:deltaPixel/that.currentSize()});}});}});}});}
return this;},scrollTo:function(index){if(this.animating||index<0||index>this.elements.length||index==this.currentIndex()||isNaN(parseInt(index)))
return this;return this.scroll((this.currentIndex()-index)*this.elementSize);},updateButtons:function(){this.updatePreviousButton();this.updateNextButton();return this;},updatePreviousButton:function(){var position=this.currentPosition();var previousClassName="previous_button"+this.options.disabledButtonSuffix;if(this.previousButton.hasClassName(previousClassName)&&position!=0){this.previousButton.removeClassName(previousClassName);this.fire('previousButton:enabled');}
if(!this.previousButton.hasClassName(previousClassName)&&position==0){this.previousButton.addClassName(previousClassName);this.fire('previousButton:disabled');}},updateNextButton:function(){var lastPosition=this.currentLastPosition();var size=this.currentSize();var nextClassName="next_button"+this.options.disabledButtonSuffix;if(this.nextButton.hasClassName(nextClassName)&&lastPosition!=size){this.nextButton.removeClassName(nextClassName);this.fire('nextButton:enabled');}
if(!this.nextButton.hasClassName(nextClassName)&&lastPosition==size){this.nextButton.addClassName(nextClassName);this.fire('nextButton:disabled');}},computeElementSize:function(){return this.elements.first().getDimensions()[this.dimAttribute];},currentIndex:function(){return-this.currentPosition()/this.elementSize;},currentLastPosition:function(){if(this.container.childElements().empty())
return 0;return this.currentPosition()+
this.elements.last().positionedOffset()[this.posAttribute]+
this.elementSize;},currentPosition:function(){return this.container.getNumStyle(this.posAttribute);},currentSize:function(){return this.container.parentNode.getDimensions()[this.dimAttribute];},updateSize:function(){this.nbVisible=this.currentSize()/this.elementSize;var scrollInc=this.options.scrollInc;if(scrollInc=="auto")
scrollInc=Math.floor(this.nbVisible);[this.previousButton,this.nextButton].each(function(button){if(!button)return;button.stopObserving("click",button.clickHandler);button.clickHandler=this.scroll.bind(this,(button==this.nextButton?-1:1)*scrollInc*this.elementSize);button.observe("click",button.clickHandler);},this);this.checkScroll(this.currentPosition(),true);this.updateButtons().fire('sizeUpdated');return this;}});UI.Ajax.Carousel=Class.create(UI.Carousel,{options:{elementSize:-1,url:null},initialize:function($super,element,options){if(!options.url)
throw("url option is required for UI.Ajax.Carousel");if(!options.elementSize)
throw("elementSize option is required for UI.Ajax.Carousel");$super(element,options);this.endIndex=0;this.hasMore=true;this.updateHandler=this.update.bind(this);this.updateAndScrollHandler=function(nbElements,transport,json){this.update(transport,json);this.scroll(nbElements);}.bind(this);this.runRequest.bind(this).defer({parameters:{from:0,to:Math.ceil(this.nbVisible)-1},onSuccess:this.updateHandler});},runRequest:function(options){this.requestRunning=true;new Ajax.Request(this.options.url,Object.extend({method:"GET"},options));this.fire("request:started");return this;},scroll:function($super,deltaPixel){if(this.animating||this.requestRunning)
return this;var nbElements=(-deltaPixel)/this.elementSize;if(this.hasMore&&nbElements>0&&this.currentIndex()+this.nbVisible+nbElements-1>this.endIndex){var from=this.endIndex+1;var to=Math.ceil(from+this.nbVisible-1);this.runRequest({parameters:{from:from,to:to},onSuccess:this.updateAndScrollHandler.curry(deltaPixel).bind(this)});return this;}
else
$super(deltaPixel);},update:function(transport,json){this.requestRunning=false;this.fire("request:ended");if(!json)
json=transport.responseJSON;this.hasMore=json.more;this.endIndex=Math.max(this.endIndex,json.to);this.elements=this.container.insert({bottom:json.html}).childElements();return this.updateButtons();},computeElementSize:function(){return this.options.elementSize;},updateSize:function($super){var nbVisible=this.nbVisible;$super();if(Math.floor(this.nbVisible)-Math.floor(nbVisible)>=1&&this.hasMore){if(this.currentIndex()+Math.floor(this.nbVisible)>=this.endIndex){var nbNew=Math.floor(this.currentIndex()+Math.floor(this.nbVisible)-this.endIndex);this.runRequest({parameters:{from:this.endIndex+1,to:this.endIndex+nbNew},onSuccess:this.updateHandler});}}
return this;},updateNextButton:function($super){var lastPosition=this.currentLastPosition();var size=this.currentSize();var nextClassName="next_button"+this.options.disabledButtonSuffix;if(this.nextButton.hasClassName(nextClassName)&&lastPosition!=size){this.nextButton.removeClassName(nextClassName);this.fire('nextButton:enabled');}
if(!this.nextButton.hasClassName(nextClassName)&&lastPosition==size&&!this.hasMore){this.nextButton.addClassName(nextClassName);this.fire('nextButton:disabled');}}});;
/* jQuery v1.6.4 http://jquery.com/ || http://jquery.org/license */
(function(a,b){function cu(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cr(a){if(!cg[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cq(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cp(){cn=b}function co(){setTimeout(cp,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function bZ(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function bY(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bA.test(a)?d(a,e):bY(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)bY(a+"["+e+"]",b[e],c,d);else d(a,b)}function bX(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function bW(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bP,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bW(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bW(a,c,d,e,"*",g));return l}function bV(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bL),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function by(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bt:bu;if(d>0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bv(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bl(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bd,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bk(a){f.nodeName(a,"input")?bj(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bj)}function bj(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bi(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bh(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bg(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)f.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function bf(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function V(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(Q.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function U(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function M(a,b){return(a&&a!=="*"?a+".":"")+b.replace(y,"`").replace(z,"&")}function L(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;i<s.length;i++)g=s[i],g.origType.replace(w,"")===a.type?q.push(g.selector):s.splice(i--,1);e=f(a.target).closest(q,a.currentTarget);for(j=0,k=e.length;j<k;j++){m=e[j];for(i=0;i<s.length;i++){g=s[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,d=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,d=f(a.relatedTarget).closest(g.selector)[0],d&&f.contains(h,d)&&(d=h);(!d||d!==h)&&p.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=p.length;j<k;j++){e=p[j];if(c&&e.level>c)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function J(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function D(){return!0}function C(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function K(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(K,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.4",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;B.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:H?function(a){return a==null?"":H.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?F.call(c,a):e.merge(c,a)}return c},inArray:function(a,b){if(!b)return-1;if(I)return I.call(b,a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=G.call(arguments,2),g=function(){return a.apply(c,f.concat(G.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=s.exec(a)||t.exec(a)||u.exec(a)||a.indexOf("compatible")<0&&v.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){J["[object "+b+"]"]=b.toLowerCase()}),A=e.uaMatch(z),A.browser&&(e.browser[A.browser]=!0,e.browser.version=A.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?C=function(){c.removeEventListener("DOMContentLoaded",C,!1),e.ready()}:c.attachEvent&&(C=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",C),e.ready())});return e}(),g="done fail isResolved isRejected promise then always pipe".split(" "),h=[].slice;f.extend({_Deferred:function(){var a=[],b,c,d,e={done:function(){if(!d){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=f.type(i),j==="array"?e.done.apply(e,i):j==="function"&&a.push(i);k&&e.resolveWith(k[0],k[1])}return this},resolveWith:function(e,f){if(!d&&!b&&!c){f=f||[],c=1;try{while(a[0])a.shift().apply(e,f)}finally{b=[e,f],c=0}}return this},resolve:function(){e.resolveWith(this,arguments);return this},isResolved:function(){return!!c||!!b},cancel:function(){d=1,a=[];return this}};return e},Deferred:function(a){var b=f._Deferred(),c=f._Deferred(),d;f.extend(b,{then:function(a,c){b.done(a).fail(c);return this},always:function(){return b.done.apply(b,arguments).fail.apply(this,arguments)},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,pipe:function(a,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[c,"reject"]},function(a,c){var e=c[0],g=c[1],h;f.isFunction(e)?b[a](function(){h=e.apply(this,arguments),h&&f.isFunction(h.promise)?h.promise().then(d.resolve,d.reject):d[g+"With"](this===b?d:this,[h])}):b[a](d[g])})}).promise()},promise:function(a){if(a==null){if(d)return d;d=a={}}var c=g.length;while(c--)a[g[c]]=b[g[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){function i(a){return function(c){b[a]=arguments.length>1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c<d;c++)b[c]&&f.isFunction(b[c].promise)?b[c].promise().then(i(c),g.reject):--e;e||g.resolveWith(g,b)}else g!==a&&g.resolveWith(g,d?[a]:[]);return g.promise()}}),f.support=function(){var a=c.createElement("div"),b=c.documentElement,d,e,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u;a.setAttribute("className","t"),a.innerHTML="   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-1000px",top:"-1000px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i=f.expando,j=typeof c=="string",k=a.nodeType,l=k?f.cache:a,m=k?a[f.expando]:a[f.expando]&&f.expando;if((!m||e&&m&&l[m]&&!l[m][i])&&j&&d===b)return;m||(k?a[f.expando]=m=++f.uuid:m=f.expando),l[m]||(l[m]={},k||(l[m].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?l[m][i]=f.extend(l[m][i],c):l[m]=f.extend(l[m],c);g=l[m],e&&(g[i]||(g[i]={}),g=g[i]),d!==b&&(g[f.camelCase(c)]=d);if(c==="events"&&!g[c])return g[i]&&g[i].events;j?(h=g[c],h==null&&(h=g[f.camelCase(c)])):h=g;return h}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e=f.expando,g=a.nodeType,h=g?f.cache:a,i=g?a[f.expando]:f.expando;if(!h[i])return;if(b){d=c?h[i][e]:h[i];if(d){d[b]||(b=f.camelCase(b)),delete d[b];if(!l(d))return}}if(c){delete h[i][e];if(!l(h[i]))return}var j=h[i][e];f.support.deleteExpando||!h.setInterval?delete h[i]:h[i]=null,j?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=j):g&&(f.support.deleteExpando?delete a[f.expando]:a.removeAttribute?a.removeAttribute(f.expando):a[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h<i;h++)g=e[h].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),k(this[0],g,d[g]))}}return d}if(typeof a=="object")return this.each(function(){f.data(this,a)});var j=a.split(".");j[1]=j[1]?"."+j[1]:"";if(c===b){d=this.triggerHandler("getData"+j[1]+"!",[j[0]]),d===b&&this.length&&(d=f.data(this[0],a),d=k(this[0],a,d));return d===b&&j[1]?this.data(j[0]):d}return this.each(function(){var b=f(this),d=[j[0],c];b.triggerHandler("setData"+j[1]+"!",d),f.data(this,a,c),b.triggerHandler("changeData"+j[1]+"!",d)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,c){a&&(c=(c||"fx")+"mark",f.data(a,c,(f.data(a,c,b,!0)||0)+1,!0))},_unmark:function(a,c,d){a!==!0&&(d=c,c=a,a=!1);if(c){d=d||"fx";var e=d+"mark",g=a?0:(f.data(c,e,b,!0)||1)-1;g?f.data(c,e,g,!0):(f.removeData(c,e,!0),m(c,d,"mark"))}},queue:function(a,c,d){if(a){c=(c||"fx")+"queue";var e=f.data(a,c,b,!0);d&&(!e||f.isArray(d)?e=f.data(a,c,f.makeArray(d),!0):e.push(d));return e||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e;d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),d.call(a,function(){f.dequeue(a,b)})),c.length||(f.removeData(a,b+"queue",!0),m(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){f.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f._Deferred(),!0))h++,l.done(m);m();return d.promise()}});var n=/[\n\t\r]/g,o=/\s+/,p=/\r/g,q=/^(?:button|input)$/i,r=/^(?:button|input|object|select|textarea)$/i,s=/^a(?:rea)?$/i,t=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,u,v;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(o);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(o);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(n," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(o);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(n," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h<i;h++){var j=e[h];if(j.selected&&(f.support.optDisabled?!j.disabled:j.getAttribute("disabled")===null)&&(!j.parentNode.disabled||!f.nodeName(j.parentNode,"optgroup"))){b=f(j).val();if(g)return b;d.push(b)}}if(g&&!d.length&&e.length)return f(e[c]).val();return d},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=v:u&&(i=u)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.attr(a,b,""),a.removeAttribute(b),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(u&&f.nodeName(a,"button"))return u.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(u&&f.nodeName(a,"button"))return u.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==null?g:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabIndex=f.propHooks.tabIndex,v={get:function(a,c){var d;return f.prop(a,c)===!0||(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(u=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var w=/\.(.*)$/,x=/^(?:textarea|input|select)$/i,y=/\./g,z=/ /g,A=/[^\w\s.|`]/g,B=function(a){return a.replace(A,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=C;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=C);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),B).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))f.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=f.event.special[h]||{};for(j=e||0;j<p.length;j++){q=p[j];if(d.guid===q.guid){if(l||n.test(q.namespace))e==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(e!=null)break}}if(p.length===0||e!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&f.removeEvent(a,h,s.handle),g=null,delete
t[h]}if(f.isEmptyObject(t)){var u=s.handle;u&&(u.elem=null),delete s.events,delete s.handle,f.isEmptyObject(s)&&f.removeData(a,b,!0)}}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){var h=c.type||c,i=[],j;h.indexOf("!")>=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h<i;h++){var j=d[h];if(e||c.namespace_re.test(j.namespace)){c.handler=j.handler,c.data=j.data,c.handleObj=j;var k=j.handler.apply(this,g);k!==b&&(c.result=k,k===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[f.expando])return a;var d=a;a=f.Event(d);for(var e=this.props.length,g;e;)g=this.props[--e],a[g]=d[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=a.target.ownerDocument||c,i=h.documentElement,j=h.body;a.pageX=a.clientX+(i&&i.scrollLeft||j&&j.scrollLeft||0)-(i&&i.clientLeft||j&&j.clientLeft||0),a.pageY=a.clientY+(i&&i.scrollTop||j&&j.scrollTop||0)-(i&&i.clientTop||j&&j.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:f.proxy,special:{ready:{setup:f.bindReady,teardown:f.noop},live:{add:function(a){f.event.add(this,M(a.origType,a.selector),f.extend({},a,{handler:L,guid:a.handler.guid}))},remove:function(a){f.event.remove(this,M(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!this.preventDefault)return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?D:C):this.type=a,b&&f.extend(this,b),this.timeStamp=f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=D;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=D;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=D,this.stopPropagation()},isDefaultPrevented:C,isPropagationStopped:C,isImmediatePropagationStopped:C};var E=function(a){var b=a.relatedTarget,c=!1,d=a.type;a.type=a.data,b!==this&&(b&&(c=f.contains(this,b)),c||(f.event.handle.apply(this,arguments),a.type=d))},F=function(a){a.type=a.data,f.event.handle.apply(this,arguments)};f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={setup:function(c){f.event.add(this,b,c&&c.selector?F:E,a)},teardown:function(a){f.event.remove(this,b,a&&a.selector?F:E)}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(a,b){if(!f.nodeName(this,"form"))f.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=f.nodeName(b,"input")||f.nodeName(b,"button")?b.type:"";(c==="submit"||c==="image")&&f(b).closest("form").length&&J("submit",this,arguments)}),f.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=f.nodeName(b,"input")||f.nodeName(b,"button")?b.type:"";(c==="text"||c==="password")&&f(b).closest("form").length&&a.keyCode===13&&J("submit",this,arguments)});else return!1},teardown:function(a){f.event.remove(this,".specialSubmit")}});if(!f.support.changeBubbles){var G,H=function(a){var b=f.nodeName(a,"input")?a.type:"",c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},I=function(c){var d=c.target,e,g;if(!!x.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=H(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:I,beforedeactivate:I,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&I.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&I.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",H(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in G)f.event.add(this,c+".specialChange",G[c]);return x.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return x.test(this.nodeName)}},G=f.event.special.change.filters,G.focus=G.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i<j;i++)f.event.add(this[i],a,g,d);return this}}),f.fn.extend({unbind:function(a,b){if(typeof a=="object"&&!a.preventDefault)for(var c in a)this.unbind(c,a[c]);else for(var d=0,e=this.length;d<e;d++)f.event.remove(this[d],a,b);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f.data(this,"lastToggle"+a.guid)||0)%d;f.data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var K={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};f.each(["live","die"],function(a,c){f.fn[c]=function(a,d,e,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:f(this.context);if(typeof a=="object"&&!a.preventDefault){for(var o in a)n[c](o,d,a[o],m);return this}if(c==="die"&&!a&&g&&g.charAt(0)==="."){n.unbind(g);return this}if(d===!1||f.isFunction(d))e=d||C,d=b;a=(a||"").split(" ");while((h=a[i++])!=null){j=w.exec(h),k="",j&&(k=j[0],h=h.replace(w,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,K[h]?(a.push(K[h]+k),h=h+k):h=(K[h]||h)+k;if(c==="live")for(var p=0,q=n.length;p<q;p++)f.event.add(n[p],"live."+M(h,m),{data:d,selector:m,handler:e,origType:h,origHandler:e,preType:l});else n.unbind("live."+M(h,m),e)}return this}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(!f)g=o=!0;else if(f===!0)continue}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=k.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|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("parentNode",b,f,a,e,c)},"~":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("previousSibling",b,f,a,e,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c<f;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){if(a===b){g=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};f.find=k,f.expr=k.selectors,f.expr[":"]=f.expr.filters,f.unique=k.uniqueSort,f.text=k.getText,f.isXMLDoc=k.isXML,f.contains=k.contains}();var N=/Until$/,O=/^(?:parents|prevUntil|prevAll)/,P=/,/,Q=/^.[^:#\[\.,]*$/,R=Array.prototype.slice,S=f.expr.match.POS,T={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(V(this,a,!1),"not",a)},filter:function(a){return this.pushStack(V(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d<e;d++)i=a[d],j[i]||(j[i]=S.test(i)?f(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=S.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(l?l.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(U(c[0])||U(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=R.call(arguments);N.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!T[a]?f.unique(e):e,(this.length>1||P.test(d))&&O.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|object|embed|option|style)/i,bb=/checked\s*(?:[^=]|=\s*.checked.)/i,bc=/\/(java|ecma)script/i,bd=/^\s*<!(?:\[CDATA\[|\-\-)/,be={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};be.optgroup=be.option,be.tbody=be.tfoot=be.colgroup=be.caption=be.thead,be.th=be.td,f.support.htmlSerialize||(be._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!be[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bb.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bf(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bl)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i;b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof a[0]=="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!ba.test(a[0])&&(f.support.checkClone||!bb.test(a[0]))&&(g=!0,h=f.fragments[a[0]],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean
(a,i,e,d)),g&&(f.fragments[a[0]]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bh(a,d),e=bi(a),g=bi(d);for(h=0;e[h];++h)g[h]&&bh(e[h],g[h])}if(b){bg(a,d);if(c){e=bi(a),g=bi(d);for(h=0;e[h];++h)bg(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=be[l]||be._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof(r=k.length)=="number")for(i=0;i<r;i++)bk(k[i]);else bk(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||bc.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.expando,g=f.event.special,h=f.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&f.noData[j.nodeName.toLowerCase()])continue;c=j[f.expando];if(c){b=d[c]&&d[c][e];if(b&&b.events){for(var k in b.events)g[k]?f.event.remove(j,k):f.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[f.expando]:j.removeAttribute&&j.removeAttribute(f.expando),delete d[c]}}}});var bm=/alpha\([^)]*\)/i,bn=/opacity=([^)]*)/,bo=/([A-Z]|^ms)/g,bp=/^-?\d+(?:px)?$/i,bq=/^-?\d/,br=/^([\-+])=([\-+.\de]+)/,bs={position:"absolute",visibility:"hidden",display:"block"},bt=["Left","Right"],bu=["Top","Bottom"],bv,bw,bx;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bv(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=br.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bv)return bv(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return by(a,b,d);f.swap(a,bs,function(){e=by(a,b,d)});return e}},set:function(a,b){if(!bp.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bn.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bm,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bm.test(g)?g.replace(bm,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bv(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bw=function(a,c){var d,e,g;c=c.replace(bo,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bx=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bp.test(d)&&bq.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bv=bw||bx,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bz=/%20/g,bA=/\[\]$/,bB=/\r?\n/g,bC=/#.*$/,bD=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bE=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bF=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bG=/^(?:GET|HEAD)$/,bH=/^\/\//,bI=/\?/,bJ=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bK=/^(?:select|textarea)/i,bL=/\s+/,bM=/([?&])_=[^&]*/,bN=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bO=f.fn.load,bP={},bQ={},bR,bS,bT=["*/"]+["*"];try{bR=e.href}catch(bU){bR=c.createElement("a"),bR.href="",bR=bR.href}bS=bN.exec(bR.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bO)return bO.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bJ,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bK.test(this.nodeName)||bE.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bB,"\r\n")}}):{name:b.name,value:c.replace(bB,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?bX(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),bX(a,b);return a},ajaxSettings:{url:bR,isLocal:bF.test(bS[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bT},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bV(bP),ajaxTransport:bV(bQ),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?bZ(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=b$(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bD.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bC,"").replace(bH,bS[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bL),d.crossDomain==null&&(r=bN.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bS[1]&&r[2]==bS[2]&&(r[3]||(r[1]==="http:"?80:443))==(bS[3]||(bS[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bW(bP,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bG.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bI.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bM,"$1_="+x);d.url=y+(y===d.url?(bI.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bT+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bW(bQ,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bz,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cq("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cr(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cq("hide",3),a,b,c);for(var d=0,e=this.length;d<e;d++)if(this[d].style){var g=f.css(this[d],"display");g!=="none"&&!f._data(this[d],"olddisplay")&&f._data(this[d],"olddisplay",g)}for(d=0;d<e;d++)this[d].style&&(this[d].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cq("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return this[e.queue===!1?"each":"queue"](function(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(f.support.inlineBlockNeedsLayout?(j=cr(this.nodeName),j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)):this.style.display="inline-block"))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)k=new f.fx(this,b,i),h=a[i],cj.test(h)?k[h==="toggle"?d?"show":"hide":h]():(l=ck.exec(h),m=k.cur(),l?(n=parseFloat(l[2]),o=l[3]||(f.cssNumber[i]?"":"px"),o!=="px"&&(f.style(this,i,(n||1)+o),m=(n||1)/k.cur()*m,f.style(this,i,m+o)),l[1]&&(n=(l[1]==="-="?-1:1)*n+m),k.custom(m,n,o)):k.custom(m,h,""));return!0})},stop:function(a,b){a&&this.queue([]),this.each(function(){var a=f.timers,c=a.length;b||f._unmark(!0,this);while(c--)a[c].elem===this&&(b&&a[c](!0),a.splice(c,1))}),b||this.dequeue();return this}}),f.each({slideDown:cq("show",1),slideUp:cq("hide",1),slideToggle:cq("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default,d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue!==!1?f.dequeue(this):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function g(a){return d.step(a)}var d=this,e=f.fx;this.startTime=cn||co(),this.start=a,this.end=b,this.unit=c||this.unit||(f.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,g.elem=this.elem,g()&&f.timers.push(g)&&!cl&&(cl=setInterval(e.tick,e.interval))},show:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=cn||co(),c=!0,d=this.elem,e=this.options,g,h;if(a||b>=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b<a.length;++b)a[b]()||a.splice(b--,1);a.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cl),cl=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cs=/^t(?:able|d|h)$/i,ct=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cu(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);f.offset.initialize();var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.offset.doesNotAddBorder&&(!f.offset.doesAddBorderForTableAndCells||!cs.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={initialize:function(){var a=c.body,b=c.createElement("div"),d,e,g,h,i=parseFloat(f.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=ct.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!ct.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cu(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cu(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNaN(j)?i:j}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window);jQuery.noConflict();;jQuery.noConflict();jQuery.fn.extend({selectbox:function(options){return this.each(function(){new jQuery.SelectBox(this,options);});}});if(!window.console){var console={log:function(msg){}}}
jQuery.SelectBox=function(selectobj,options){var opt=options||{};opt.inputType=opt.inputType||"input";opt.inputClass=opt.inputClass||"selectbox";opt.containerClass=opt.containerClass||"selectbox-wrapper";opt.hoverClass=opt.hoverClass||"current";opt.currentClass=opt.currentClass||"selected";opt.groupClass=opt.groupClass||"groupname";opt.maxHeight=opt.maxHeight||200;opt.loopnoStep=opt.loopnoStep||false;opt.onChangeCallback=opt.onChangeCallback||false;opt.onChangeParams=opt.onChangeParams||false;opt.debug=opt.debug||false;var elm_id=selectobj.id;var active=0;var inFocus=false;var hasfocus=0;var $select=jQuery(selectobj);var $container=setupContainer(opt);var $input=setupInput(opt);$select.hide().before($input).before($container);init();$input.click(function(){if(!inFocus){$container.toggle();}}).focus(function(){if($container.not(':visible')){inFocus=true;$container.show();}}).keydown(function(event){switch(event.keyCode){case 38:event.preventDefault();moveSelect(-1);break;case 40:event.preventDefault();moveSelect(1);break;case 13:event.preventDefault();jQuery('li.'+opt.hoverClass).trigger('click');break;case 27:hideMe();break;}}).blur(function(){if($container.is(':visible')&&hasfocus>0){if(opt.debug)console.log('container visible and has focus')}else{if((jQuery.browser.msie&&jQuery.browser.version.substr(0,1)<8)||jQuery.browser.safari){if(document.activeElement.getAttribute('id').indexOf('_container')==-1){hideMe();}else{$input.focus();}}else{hideMe();}}});function hideMe(){hasfocus=0;$container.hide();}
function init(){$container.append(getSelectOptions($input.attr('id'))).hide();var width=$input.css('width');if($container.height()>opt.maxHeight){$container.width(parseInt(width)+parseInt($input.css('paddingRight'))+parseInt($input.css('paddingLeft')));$container.height(opt.maxHeight);}else{$listboxWidth=parseInt(width)+32;width=$listboxWidth+'px';$container.width(width);}}
function setupContainer(options){var container=document.createElement("div");$container=jQuery(container);$container.attr('id',elm_id+'_container');$container.addClass(options.containerClass);$container.css('display','none');return $container;}
function setupInput(options){if(opt.inputType=="span"){var input=document.createElement("span");var $input=jQuery(input);$input.attr("id",elm_id+"_input");$input.addClass(options.inputClass);$input.attr("tabIndex",$select.attr("tabindex"));}else{var input=document.createElement("input");var $input=jQuery(input);$input.attr("id",elm_id+"_input");$input.attr("type","text");$input.addClass(options.inputClass);$input.attr("autocomplete","off");$input.attr("readonly","readonly");$input.attr("tabIndex",$select.attr("tabindex"));}
return $input;}
function moveSelect(step){var lis=jQuery("li",$container);if(!lis||lis.length==0)return false;firstchoice=0;while(jQuery(lis[firstchoice]).hasClass(opt.groupClass))firstchoice++;active+=step;if(jQuery(lis[active]).hasClass(opt.groupClass))active+=step;if(active<firstchoice){(opt.loopnoStep?active=lis.size()-1:active=lis.size());}else if(opt.loopnoStep&&active>lis.size()-1){active=firstchoice;}else if(active>lis.size()){active=firstchoice;}
scroll(lis,active);lis.removeClass(opt.hoverClass);jQuery(lis[active]).addClass(opt.hoverClass);}
function scroll(list,active){var el=jQuery(list[active]).get(0);var list=$container.get(0);if(el.offsetTop+el.offsetHeight>list.scrollTop+list.clientHeight){list.scrollTop=el.offsetTop+el.offsetHeight-list.clientHeight;}else if(el.offsetTop<list.scrollTop){list.scrollTop=el.offsetTop;}}
function setCurrent(){var li=jQuery("li."+opt.currentClass,$container).get(0);var ar=(''+li.id).split('_');var el=ar[ar.length-1];if(opt.onChangeCallback){$select.get(0).selectedIndex=jQuery('li',$container).index(li);opt.onChangeParams={selectedVal:$select.val()};opt.onChangeCallback(opt.onChangeParams);}else{$select.val(el);$select.change();}
if(opt.inputType=='span')$input.html(jQuery(li).html());else $input.val(jQuery(li).html());return true;}
function getCurrentSelected(){return $select.val();}
function getCurrentValue(){return $input.val();}
function getSelectOptions(parentid){var select_options=new Array();var ul=document.createElement('ul');select_options=$select.children('option');if(select_options.length==0){var select_optgroups=new Array();select_optgroups=$select.children('optgroup');for(x=0;x<select_optgroups.length;x++){select_options=jQuery("#"+select_optgroups[x].id).children('option');var li=document.createElement('li');li.setAttribute('id',parentid+'_'+jQuery(this).val());li.innerHTML=jQuery("#"+select_optgroups[x].id).attr('label');li.className=opt.groupClass;ul.appendChild(li);select_options.each(function(){var li=document.createElement('li');li.setAttribute('id',parentid+'_'+jQuery(this).val());li.innerHTML=jQuery(this).html();if(jQuery(this).is(':selected')){$input.html(jQuery(this).html());jQuery(li).addClass(opt.currentClass);}
ul.appendChild(li);jQuery(li).mouseover(function(event){hasfocus=1;if(opt.debug)console.log('over on : '+this.id);jQuery(event.target,$container).addClass(opt.hoverClass);}).mouseout(function(event){hasfocus=-1;if(opt.debug)console.log('out on : '+this.id);jQuery(event.target,$container).removeClass(opt.hoverClass);}).click(function(event){var fl=jQuery('li.'+opt.hoverClass,$container).get(0);if(opt.debug)console.log('click on :'+this.id);jQuery('li.'+opt.currentClass,$container).removeClass(opt.currentClass);jQuery(this).addClass(opt.currentClass);setCurrent();$select.get(0).blur();hideMe();});});}}else select_options.each(function(){var li=document.createElement('li');li.setAttribute('id',parentid+'_'+jQuery(this).val());li.innerHTML=jQuery(this).html();if(jQuery(this).is(':selected')){$input.val(jQuery(this).html());jQuery(li).addClass(opt.currentClass);}
ul.appendChild(li);jQuery(li).mouseover(function(event){hasfocus=1;if(opt.debug)console.log('over on : '+this.id);jQuery(event.target,$container).addClass(opt.hoverClass);}).mouseout(function(event){hasfocus=-1;if(opt.debug)console.log('out on : '+this.id);jQuery(event.target,$container).removeClass(opt.hoverClass);}).click(function(event){var fl=jQuery('li.'+opt.hoverClass,$container).get(0);if(opt.debug)console.log('click on :'+this.id);jQuery('li.'+opt.currentClass,$container).removeClass(opt.currentClass);jQuery(this).addClass(opt.currentClass);setCurrent();$select.get(0).blur();hideMe();});});return ul;}};;var checkboxHeight="25";var radioHeight="25";var selectWidth="250";var selectSmallWidth="105";<!--document.write('<style type="text/css">input.styled { display: none; } select.product-custom-option { position: relative; width: '+selectWidth+'px; opacity: 0; filter: alpha(opacity=0); z-index: 5; } .disabled { opacity: 0.5; filter: alpha(opacity=50); }</style>');--><!--document.write('<style type="text/css"> select.super-attribute-select { position: relative; width: '+selectWidth+'px; opacity: 0; filter: alpha(opacity=0); z-index: 5; } .disabled { opacity: 0.5; filter: alpha(opacity=50); }</style>');-->document.write('<style type="text/css"> select.salatution { position: relative; width: '+selectSmallWidth+'px; opacity: 0; filter: alpha(opacity=0); z-index: 5; } .disabled { opacity: 0.5; filter: alpha(opacity=50); }</style>');document.write('<style type="text/css"> .stateWrapper select{ position: relative; width: '+selectWidth+'px; opacity: 0; filter: alpha(opacity=0); z-index: 5; } .disabled { opacity: 0.5; filter: alpha(opacity=50); }</style>');var Custom={init:function(){jQuery('#collateral-tabs').height(jQuery('.tab-container').height());var inputs=document.getElementsByTagName("input"),span=Array(),textnode,option,active;var span=Array(),textnode,option,active;inputsSmall=jQuery('.smallSelectWrapper select');var selectStyle;for(a=0;a<inputsSmall.length;a++){option=inputsSmall[a].getElementsByTagName("option");active=option[0].childNodes[0].nodeValue;textnode=document.createTextNode(active);for(b=0;b<option.length;b++){if(option[b].selected==true){textnode=document.createTextNode(option[b].childNodes[0].nodeValue);}}
span[a]=document.createElement("span");span[a].className="selectSmall";span[a].id="select"+inputsSmall[a].name;span[a].appendChild(textnode);inputsSmall[a].parentNode.insertBefore(span[a],inputsSmall[a]);if(!inputsSmall[a].getAttribute("disabled")){inputsSmall[a].onchange=Custom.choose;}else{inputsSmall[a].previousSibling.className=inputsSmall[a].previousSibling.className+=" disabled";}}
var spanBill=Array(),textnodeBill,optionBill,activeBill;inputsBill=jQuery('.stateWrapper select');for(a=0;a<inputsBill.length;a++){selectStyle=inputsBill[a].style.display;if(inputsBill[a].className!="required-entry salatution"&&selectStyle==''){optionBill=inputsBill[a].getElementsByTagName("option");var undefinedType=optionBill[0].childNodes[0];if(typeof(undefinedType)=='undefined'){activeBill=" ";}else{activeBill=optionBill[0].childNodes[0].nodeValue;}
textnodeBill=document.createTextNode(activeBill);for(b=0;b<optionBill.length;b++){if(optionBill[b].selected==true){textnodeBill=document.createTextNode(optionBill[b].childNodes[0].nodeValue);}}
spanBill[a]=document.createElement("span");spanBill[a].className="select";spanBill[a].id="select"+inputsBill[a].name;spanBill[a].appendChild(textnodeBill);inputsBill[a].parentNode.insertBefore(spanBill[a],inputsBill[a]);if(!inputsBill[a].getAttribute("disabled")){inputsBill[a].onchange=Custom.choose;}else{inputsBill[a].previousSibling.className=inputsBill[a].previousSibling.className+=" disabled";}}}
var spanBillCountry=Array(),textnodeBillCountry,optionBillCountry,activeBillCountry;inputsBillCountry=jQuery('.countryWrapper select');for(a=0;a<inputsBillCountry.length;a++){selectStyle=inputsBillCountry[a].style.display;if(inputsBillCountry[a].className!="required-entry salatution"&&selectStyle==''){optionBillCountry=inputsBillCountry[a].getElementsByTagName("option");var undefinedType=optionBillCountry[0].childNodes[0];if(typeof(undefinedType)=='undefined'){activeBillCountry=" ";}else{activeBillCountry=optionBillCountry[0].childNodes[0].nodeValue;}
textnodeBillCountry=document.createTextNode(activeBillCountry);for(b=0;b<optionBillCountry.length;b++){if(optionBillCountry[b].selected==true){testjs=optionBillCountry[b].childNodes[0];if(testjs!=null&&typeof(testjs)!='undefined'){textnodeBillCountry=document.createTextNode(optionBillCountry[b].childNodes[0].nodeValue);}else{textnodeBillCountry=document.createTextNode(' ');}}}
spanBillCountry[a]=document.createElement("span");spanBillCountry[a].className="select";spanBillCountry[a].id="select"+inputsBillCountry[a].name;spanBillCountry[a].appendChild(textnodeBillCountry);inputsBillCountry[a].parentNode.insertBefore(spanBillCountry[a],inputsBillCountry[a]);if(!inputsBillCountry[a].getAttribute("disabled")){inputsBillCountry[a].onchange=Custom.choose;}else{inputsBillCountry[a].previousSibling.className=inputsBillCountry[a].previousSibling.className+=" disabled";}}}},choose:function(){option=this.getElementsByTagName("option");for(d=0;d<option.length;d++){if(option[d].selected==true){document.getElementById("select"+this.name).childNodes[0].nodeValue=option[d].childNodes[0].nodeValue;}}}}
window.onload=Custom.init;;function showChildAttribute(contactQuery){if(contactQuery=='Question about my order'){jQuery('#childFieldOrder').slideDown();jQuery('#subjectValue').addClass('required-entry');jQuery('#childFieldOrder .subjectvaluelabel').text('Order Id');}else if(contactQuery=='Question about products'){jQuery('#childFieldOrder').slideDown();jQuery('#subjectValue').addClass('required-entry');jQuery('#childFieldOrder .subjectvaluelabel').text('Product Name');}else{jQuery('#childFieldOrder').slideUp();}}
jQuery(document).ready(function(){jQuery('.personalisedBottom input:text').each(function(index,events){if(jQuery(this).hasClass('datetime-picker')){jQuery('.personalisedBottom input:text').keypress(function(){events.blur();});jQuery(this).attr('readonly','readonly');}});jQuery('.personalisedBottom input:file').each(function(){jQuery(this).addClass('product-custom-option validate-image required-entry')});jQuery('#myInput').focus(function(){if(jQuery(this).val()=='Enter keyword or product number'){jQuery(this).val('');}});jQuery('#myInput').focusout(function(){if(jQuery(this).val()==''){jQuery(this).val('Enter keyword or product number');jQuery(this).css('font-weight','bold');}});jQuery('#myInputBottom').focus(function(){if(jQuery(this).val()=='Enter keyword or product number'){jQuery(this).val('');}});jQuery('#myInputBottom').focusout(function(){if(jQuery(this).val()==''){jQuery(this).val('Enter keyword or product number');jQuery(this).css('font-weight','bold');}});});function isAlphanumeric(value){return(/^[A-Za-z0-9- ]+$/.test(value));}
