function rightClicked(e){if(e.which)return(e.which==3);else if(e.button)return(e.button==2);return false;}
function shiftPressed(e){if(typeof(e.shiftKey)!='undefined')return e.shiftKey;if(parseInt(navigator.appVersion)>3&&navigator.appName=='Netscape')
return e.modifiers&Event.SHIFT_MASK;return false;}
function ctrlPressed(e){if(typeof(e.ctrlKey)!='undefined')return e.ctrlKey;if(parseInt(navigator.appVersion)>3&&navigator.appName=='Netscape'){var mString=(e.modifiers+32).toString(2).substring(3,6);return(mString.charAt(1)=='1');}
return false;}
function altPressed(e){if(typeof(e.altKey)!='undefined')return e.altKey==1;return false;}
function metaPressed(e){if(typeof(e.metaKey)!='undefined')return e.metaKey;return false;}
function getMouseX(e){if(!e)var e=window.event;if(e.clientX)return e.clientX;return false;}
function getMouseY(e){if(!e)var e=window.event;if(e.clientY)return e.clientY;return false;}
function addEvent(obj,evname,func){if(!obj||!evname||!func)return false;try{if(obj.attachEvent)obj.attachEvent("on"+evname,eval(func));else if(obj.addEventListener)obj.addEventListener(evname,eval(func),false);else return false;}catch(e){return false;}
return obj;}
function removeEvent(obj,evname,func){try{if(obj.attachEvent)obj.detachEvent("on"+evname,eval(func));else if(obj.removeEventListener)obj.removeEventListener(evname,eval(func),false);else return false;}catch(e){return false;}
return obj;}
function triggerEvent(el,evname){var evt;if(typeof(el.fireEvent)!='undefined'){el.fireEvent('on'+evname);}else if(typeof(document.createEvent)!='undefined'){evt=document.createEvent('HTMLEvents');evt.initEvent(evname,true,true);el.dispatchEvent(evt);}
return true;}
function getEventSrc(e,tag){var src;if(!e)return null;if(e.target)src=e.target;else if(e.srcElement)src=e.srcElement;if(is_object(src)&&src.nodeType==3)src=src.parentNode;if(tag){tag=tag.toLowerCase();while(is_object(src)&&src.tagName.toLowerCase()!=tag){src=src.parentNode;}
if(!is_object(src)||!src.tagName||src.tagName.toLowerCase()!=tag){return null;}}
return is_object(src)?src:null;}
function cancelEvent(e){if(!e)var e=window.event;stopTheBubbling(e);return false;}
function stopTheBubbling(e){if(!e)return false;if(document.all){e.cancelBubble=true;}else{e.preventDefault();e.stopPropagation();}}
function getEventSrcOwnerDocument(eventSrc){if(typeof eventSrc!='object')return false;if(typeof(eventSrc)!='undefined'&&typeof(eventSrc.tagName)!='undefined'&&eventSrc.tagName.toLowerCase()=="frame"){return getFrameDocument(eventSrc.id);}else if(typeof getOwnerDocument(eventSrc)!='undefined'){return getOwnerDocument(eventSrc);}else{return eventSrc;}};function set_select_values(doc){var selects,i;if(!doc||!doc.getElementsByTagName)doc=document;selects=doc.getElementsByTagName('select');for(i=0;i<selects.length;i++){if(selects[i].getAttribute('val')){selects[i].value=selects[i].getAttribute('val');}}
return true;}
function strtrim(value){value=value.replace('&nbsp',' ');value=value.replace(/^\s+/,'');value=value.replace(/\s+$/,'');return value;}
function is_object(o){if(typeof(o)!='undefined'&&o!=='null'&&o!==null)return true;return false;}
function getFormElementByName(form,name){var i;if(form.elements[name])return form.elements[name];for(i=0;i<form.elements.length;i++){if(form.elements[i].name==name)return form.elements[i];}
return null;}
function html_entity_decode(str){var tmp,ret,i;tmp=document.createElement('span');str=str.replace(/<br.*?>/gi,'##br##');str=str.replace('<','&lt;');str=str.replace('>','&gt;');tmp.innerHTML=str;ret=tmp.firstChild?tmp.firstChild.nodeValue:'';delete(tmp);return ret;}
function in_array(needle,haystack){if(!is_object(haystack)||!haystack.length)return false;for(var i=0;i<haystack.length;i++){if(haystack[i]==needle)return true;}
return false;}
function rand(iMin,iMax){var rnd=iMin-1,maxtime=100,d=new Date(),tstart=d.getTime(),tend;while(rnd<iMin||rnd>iMax){rnd=parseInt(Math.random()*10);d=new Date();tend=d.getTime();if((tend-tstart)>maxtime)return false;}
return rnd;}
function array_values(arr){var j=0,ret=[];for(var i=0;i<arr.length;i++)if(arr[i])ret[j++]=arr[i];return ret;}
function round(val,precision){var factor;if(!precision)precision=0;factor=Math.pow(10,precision);val*=factor;val=Math.round(val);val/=factor;return val;}
function max(){var i,max=0;for(i=0;i<arguments.length;i++){if(parseFloat(arguments[i],10)>max)max=parseFloat(arguments[i]);}
return max;}
function trim(str){str=str.replace(/^\s+/,'');str=str.replace(/\s+$/,'');return str;}
function ucfirst(str){return str.replace(/\w+/g,function(a){return a.charAt(0).toUpperCase()+a.substr(1).toLowerCase();});}
function is_valid_email(address){var checkTLD=1,knownDomsPat,emailPat,specialChars,validChars,quotedUser,ipDomainPat,atom,word,userPat,domainPat,matchArray,user,domain,i,IPArray,atomPat,domArr,len;knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum)$/;emailPat=/^(.+)@(.+)$/;specialChars="\\(\\)><@,;:\\\\\\\"\\.\\[\\]";validChars="\[^\\s"+specialChars+"\]";quotedUser="(\"[^\"]*\")";ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;atom=validChars+'+';word="("+atom+"|"+quotedUser+")";userPat=new RegExp("^"+word+"(\\."+word+")*$");domainPat=new RegExp("^"+atom+"(\\."+atom+")*$");matchArray=address.match(emailPat);if(matchArray==null)return false;user=matchArray[1];domain=matchArray[2];for(i=0;i<user.length;i++){if(user.charCodeAt(i)>127)return false;}
for(i=0;i<domain.length;i++){if(domain.charCodeAt(i)>127)return false;}
if(user.match(userPat)==null)return false;IPArray=domain.match(ipDomainPat);if(IPArray!=null){for(i=1;i<=4;i++){if(IPArray[i]>255)return false;}
return true;}
atomPat=new RegExp("^"+atom+"$");domArr=domain.split(".");len=domArr.length;for(i=0;i<len;i++){if(domArr[i].search(atomPat)==-1)return false;}
if(checkTLD&&domArr[domArr.length-1].length!=2&&domArr[domArr.length-1].search(knownDomsPat)==-1){return false;}
if(len<2)return false;return true;}
function getParentNode(tag,obj){tag=tag.toUpperCase();while(is_object(obj.parentNode)&&obj.tagName.toUpperCase()!=tag){obj=obj.parentNode;}
if(!is_object(obj)||!obj.tagName||obj.tagName.toUpperCase()!=tag){return false;}
return obj;}
function getParentWithAttribute(attributelist,obj){var attrs,attrFound=false,arr,i;if(!attributelist||!attributelist.split||!obj||!obj.getAttribute){return false;}
attrs=attributelist.split('||');for(i=0;i<attrs.length;i++){if(attrs[i].indexOf('=')!=-1){arr=attrs[i].split('=');delete(attrs[i]);attrs[arr[0]]=arr[1];}}
while(obj.parentNode){for(i in attrs){if(!isNaN(i)&&obj.getAttribute(attrs[i]))attrFound=true;else if(isNaN(i)&&i=='className'&&obj.className&&obj.className.indexOf(attrs[i])!=-1)attrFound=true;else if(isNaN(i)&&obj.getAttribute(i)&&obj.getAttribute(i)==attrs[i])attrFound=true;}
if(attrFound)break;obj=obj.parentNode;}
return attrFound?obj:false;}
function getChildIndex(child,excludeTextNodes){var j=0,i=0;if(!child||!child.parentNode)return false;for(i=0;i<child.parentNode.childNodes.length;i++){if(excludeTextNodes&&child.parentNode.childNodes[i].nodeType==3)continue;if(child==child.parentNode.childNodes[i])return j;j++;}
return 0;}
function getType1ChildNodes(obj){var ret=[];if(!is_object(obj)||!obj.childNodes.length)return ret;for(var i=0;i<obj.childNodes.length;i++){if(obj.childNodes[i].nodeType==1)ret[ret.length]=obj.childNodes[i];}
return ret;}
function setRowStyleOnTDs(row,attr,value){var cell,evalstr;if(!is_object(row)||!row.style||!row.childNodes.length)return false;for(var i=0;i<row.childNodes.length;i++){cell=row.childNodes[i];evalstr='cell.style.'+attr+'= "'+value+'";';eval(evalstr);}}
function getClassName(){return isIE()?'className':'class';}
function getScrollX(){return document.all?document.body.scrollLeft:window.scrollX;}
function getScrollY(){return document.all?document.body.scrollTop:window.scrollY;}
function getScrollPosY(){if(self.pageYOffset)return self.pageYOffset;if(document.documentElement&&document.documentElement.scrollTop){return document.documentElement.scrollTop;}
if(document.body)return document.body.scrollTop;}
function getScrollPosX(){if(self.pageXOffset)return self.pageXOffset;if(document.documentElement&&document.documentElement.scrollLeft){return document.documentElement.scrollleft;}
if(document.body)return document.body.scrollLeft;}
function getPosX(obj){var curleft=0;if(obj.offsetParent){while(obj.offsetParent){curleft+=obj.offsetLeft;obj=obj.offsetParent;}}else if(obj.x)curleft+=obj.x;return curleft;}
function getPosY(obj){var curtop=0;if(obj.offsetParent){while(obj.offsetParent){curtop+=obj.offsetTop;obj=obj.offsetParent;}}else if(obj.y)curtop+=obj.y;return curtop;}
function getWidth(domObj){return parseInt(domObj.offsetWidth);}
function getHeight(domObj){if(domObj.clientHeight)return parseInt(domObj.clientHeight,10);return parseInt(domObj.offsetHeight,10);}
function getWindowWidth(){var w=0;if(typeof(window.innerWidth)=='number'){w=window.innerWidth;}else if(document.documentElement&&document.documentElement.clientWidth){w=document.documentElement.clientWidth;}else if(document.body&&document.body.clientWidth){w=document.body.clientWidth;}
return parseInt(w);}
function getWindowHeight(win){if(!win)win=window;var h=0;if(typeof(win.innerHeight)=='number'){h=win.innerHeight;}else if(win.document.documentElement&&win.document.documentElement.clientHeight){h=win.document.documentElement.clientHeight;}else if(win.document.body&&win.document.body.clientHeight){h=win.document.body.clientHeight;}
return parseInt(h);}
function getAvailWidth(){if(typeof window.innerWidth!='undefined'){return window.innerWidth}
else if(typeof document.documentElement!='undefined'&&typeof document.documentElement.clientWidth!='undefined'&&document.documentElement.clientWidth!=0){return document.documentElement.clientWidth}
else{return document.getElementsByTagName('body')[0].clientWidth}
if(document&&document.body&&document.body.clientWidth){return document.body.clientWidth;}else if(window&&window.innerWidth){return window.innerWidth;}
return false;}
function getAvailHeight(){if(typeof window.innerHeight!='undefined'){return window.innerHeight}
else if(typeof document.documentElement!='undefined'&&typeof document.documentElement.clientHeight!='undefined'&&document.documentElement.clientHeight!=0){return document.documentElement.clientHeight}
else{return document.getElementsByTagName('body')[0].clientHeight}
if(document&&document.body&&document.body.clientHeight){return document.body.clientHeight;}else if(window&&window.innerHeight){return window.innerHeight;}
return false;}
function getRealDistance(obj,x,direction){var extra=0;if(!eval('obj.offset'+direction))return x;try{eval('extra = obj.offset'+direction);x+=extra;try{return getRealDistance(obj.offsetParent,x,direction);}
catch(f){return x;}}catch(e){return x;}}
function getRelPosX(el,rel){var x=0;while(el){x+=el.offsetLeft;el=el.offsetParent;}
return x;}
function getRelPosY(el){var y=0;while(el){y+=el.offsetTop;el=el.offsetParent;}
return y;}
function centerElement(el,rel,incScrollPos){var availHeight=getWindowHeight(),availWidth=getWindowWidth(),scrollY=incScrollPos?getScrollPosY():0,scrollX=incScrollPos?getScrollPosX():0;if(!el||!el.style)return false;if(rel){availHeight=getHeight(rel);availWidth=getWidth(rel);}
var top=parseInt((availHeight/2)-(getHeight(el)/2)+scrollY);if(top<5)top=5;var lft=parseInt((availWidth/2)-(getWidth(el)/2)+scrollX);el.style.left=lft+'px';el.style.top=top+'px';}
function getElementBy(attr,val,element,returnMe){if(!i)i=0;i++;if(document.all&&(val=='true'||val=='false'))val=eval(val);if(!element)var element=document.body;if(!returnMe)var returnMe=new Array();if(element.getAttribute&&element.getAttribute(attr)==val){returnMe[returnMe.length]=element;}
if(element.childNodes&&element.childNodes.length){for(var i=0;i<element.childNodes.length;i++){returnMe=getElementBy(attr,val,element.childNodes[i],returnMe);}}
return returnMe;}
function getElementFromArrayBy(attr,val,arr){if(!arr.length)return false;if(document.all&&(val=='true'||val=='false'))val=eval(val);var returnMe=new Array();for(var i=0;i<arr.length;i++){if(arr[i].getAttribute&&arr[i].getAttribute(attr)==val){returnMe[returnMe.length]=arr[i];}}
if(!returnMe.length)return false;else return returnMe;}
document.getElementsByAttribute=function(attr,val,tag,parent,allowpm){if(!tag)tag='*';var s=(parent||document).getElementsByTagName(tag),i=s.length,e,r=[];while(i--){e=s[i];if(e&&typeof(e.getAttribute)!='undefined'){if(val instanceof Array){if(in_array(e.getAttribute(attr),val))r.push(e);}else{if(attr=='className'&&e.className==val)r.push(e);else if(attr=='className'&&val.indexOf('%')!=-1&&e.className.indexOf(val.replace('%',''))!=-1)r.push(e);else if(val&&val.indexOf&&e.getAttribute(attr)&&val.indexOf('%')!=-1&&e.getAttribute(attr).toString().length&&e.getAttribute(attr).toString().indexOf(val.replace('%',''))!=-1)r.push(e);else if(e.getAttribute(attr)==val)r.push(e);else if(e.getAttribute(attr)&&val===false)r.push(e);else if(allowpm&&e.getAttribute(attr)&&e.getAttribute(attr).substr(0,val.toString().length)==val)r.push(e);}}}
return r;};document.getElementsByAttribute2=function(attr,val,tag,parent,allowpm){if(!tag)tag='*';var s=(parent||document).getElementsByTagName(tag),i=s.length,e,r=[];while(i--){e=s[i];if(e&&e.getAttribute){if(val instanceof Array){if(in_array(e.getAttribute(attr),val))r.unshift(e);}else{if(attr=='className'&&e.className==val)r.unshift(e);else if(e.getAttribute(attr)==val)r.unshift(e);else if(e.getAttribute(attr)&&val===false)r.unshift(e);else if(allowpm&&e.getAttribute(attr)&&e.getAttribute(attr).substr(0,val.toString().length)==val)r.unshift(e);}}}
return r;};document.getElementByAttribute=function(attr,val,tag,parent){var els=document.getElementsByAttribute(attr,val,tag,parent);if(!els||!els.length)return false;return els.length==1?els[0]:false;};function getElementsByTagNames(parent,tags){var ret=[],els,i,j;if(!is_object(parent)||!parent.getElementsByTagName)return ret;tags=tags.split('|');for(i=0;i<tags.length;i++){els=parent.getElementsByTagName(tags[i]);for(j=0;j<els.length;j++){ret[ret.length]=els[j];}}
return ret;}
document.getElementByTagName=function(tag,parent){var els=parent.getElementsByTagName(tag);if(!els||!els.length)return false;return els[0];};String.prototype.capitalize=function(){return this.replace(/\w+/g,function(a){return a.charAt(0).toUpperCase()+a.substr(1).toLowerCase();});};document.getParentWindow=function(){if(is_object(this.parentWindow))return this.parentWindow;if(is_object(this.defaultView))return this.defaultView;return false;};function getParentWindow(doc){if(is_object(doc.parentWindow))return doc.parentWindow;if(is_object(doc.defaultView))return doc.defaultView;return null;}
function getOwnerDocument(obj){if(!is_object(obj))return false;else if(!is_object(obj.ownerDocument))return obj.document;else return obj.ownerDocument;}
function getFrameDocument(frameId){var frame;if(frameId.tagName&&frameId.tagName.toLowerCase().indexOf('frame')!=-1){frame=frameId;}else{frame=document.getElementById(frameId);}
if(!is_object(frame))return false;if(frame.contentWindow)return frame.contentWindow.document;else return frame.document;}
function getIFrameDocument(frameId){return getFrameDocument(frameId);}
function getFrameWindow(frameId){var frame;if(frameId.tagName&&frameId.tagName.toLowerCase().indexOf('frame')!=-1){frame=frameId;}else{frame=document.getElementById(frameId);}
if(is_object(frame))return frame.contentWindow;}
function getFrameTag(){return this.frameElement;}
function getFrameAttribute(attr){if(!is_object(getFrameTag()))return;return getFrameTag().getAttribute(attr);}
function isAllowed(attr){var operation=getFrameAttribute(attr);if(!is_object(operation)||!operation||!operation.toLowerCase)return false;return(operation.toLowerCase()!='yes')?false:true;}
function getToplevelWindow(){var win=window;while(win!=win.parent&&is_object(win.parent)){win=win.parent;}
return win;}
function setOpacity(obj,opacity){switch(true){case is_object(obj.style.opacity):obj.style.opacity=opacity/100;break;case is_object(obj.style.MozOpacity):obj.style.MozOpacity=opacity/100;break;case is_object(obj.parentNode)&&is_object(obj.filters)&&is_object(obj.filters.alpha):obj.filters.alpha.opacity=opacity;break;case is_object(obj.style):obj.style['filter']='alpha(opacity='+opacity+')';break;default:return 0;}
return true;}
function getOpacity(obj){switch(true){case is_object(obj.style.opacity):return obj.style.opacity*100;case is_object(obj.style.MozOpacity):return obj.style.MozOpacity*100;case is_object(obj.parentNode)&&is_object(obj.filters)&&is_object(obj.filters.alpha):return obj.filters.alpha.opacity;default:return 0;}}
function microtime(){var d=new Date;return d.getTime();}
function sleep(msecs){var start,end;start=microtime();while(microtime()-start<msecs){}
return;}
function navChk(what){switch(what.toUpperCase()){case'MAC':return(navigator.appVersion.indexOf("Mac")!=-1)?true:false;case'IEMAC':return((document.all)&&(isMac))?true:false;case'IE4':return((document.all)&&(navigator.appVersion.indexOf("MSIE 4.")!=-1))?true:false;case'IE5':return((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1))?true:false;case'IE6':return((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1))?true:false;case'IE7':return((document.all)&&(navigator.appVersion.indexOf("MSIE 7.")!=-1))?true:false;case'IE8':return((document.all)&&(navigator.appVersion.indexOf("MSIE 8.")!=-1))?true:false;default:return false;}}
function isIE(v){if(!v)var v=5;switch(v){case 4:return(this.navChk('IE4')||this.navChk('IE5')||this.navChk('IE6')||this.navChk('IE7'));case 5:return(this.navChk('IE5')||this.navChk('IE6'))||this.navChk('IE7');case 6:return(this.navChk('IE6'));case 8:return(this.navChk('IE8'));default:return false;}}
function getCssRule(classname,returnIndex){var i,j,rules;if(!document.styleSheets)return false;for(i=0;i<document.styleSheets.length;i++){rules=[];if(document.styleSheets[i].cssRules)rules=document.styleSheets[i].cssRules;else if(document.styleSheets[i].rules)rules=document.styleSheets[i].rules;else continue;for(j=0;j<rules.length;j++){if(rules[j].selectorText.toLowerCase().indexOf(classname.toLowerCase())!=-1){return returnIndex?j:rules[j];}}}
return false;}
function newwin(url,w,h,winname,scrollbars,resizable,menubar){if(!scrollbars)scrollbars='yes';if(!resizable)resizable='yes';menubar=!menubar?'no':'yes';if(!winname){var d=new Date;winname='newwin_'+d.getTime();}
xpos=Math.round((screen.availWidth-w)/2);ypos=Math.round((screen.availHeight-h)/2);winprops="toolbar=no, location=no, directories=no, status=yes";winprops+=", menubar="+menubar+", scrollbars="+scrollbars;winprops+=", resizable="+resizable+", width="+w+", height="+h;winprops+=", left="+xpos+", top="+ypos;var win=window.open(url,winname,winprops);if(!win){var str="Het nieuwe venster kon niet worden geopend.\n\n";str+="Waarschijnlijk is het nieuwe venster geblokkeerd door een\n";str+="'pop-up blocker'.\n\n";str+="Stel uw 'pop-up blocker' zo in, dat deze het openen van\n";str+="nieuwe vensters voor deze pagina toestaat.";alert(str);}else{win.focus();}
return win;}
function checkMaxLength(area,len){var e,shortmax;if(!area||!area.getAttribute||!area.tagName){var e=!area?window.event:area;if((area=getEventSrc(e))&&area.getAttribute('shortmax')){len=parseInt(area.getAttribute('shortmax'))||150;}}
if(area.value.length>len){area.value=area.value.substr(0,len);}}
function includeJS(id,scriptsrc){var oldscript=document.getElementById(id);newscript=document.createElement('script');newscript.setAttribute('type','text/javascript');newscript.id=id;if(is_object(oldscript)){oldscript.parentNode.replaceChild(newscript,oldscript);}else{document.body.appendChild(newscript);}
newscript.setAttribute('src',scriptsrc);}
function redirectBrowser(page){if(typeof page=='object'){page=page.firstChild.nodeValue;}
window.location=page;};var target=null;function insertSmiley(sCode){reactionArea.putStr(sCode);}
function ReactionArea(){this.init=function(){var textarea,div,tb,newarea;if(!(textarea=document.getElementById('reactionArea')))return true;div=document.createElement('div');tb=document.createElement('div');tb.setAttribute('id','tb');tb.style.width=(getWidth(textarea)||300)+'px';tb=this.populateTb(tb);div.appendChild(tb);textarea.parentNode.replaceChild(div,textarea);newarea=textarea;newarea.setAttribute('name',textarea.getAttribute('name'));addEvent(newarea,'focus',reactionArea.getTarget);addEvent(newarea,'select',reactionArea.storeCursor);addEvent(newarea,'keyup',reactionArea.storeCursor);addEvent(newarea,'click',reactionArea.storeCursor);target=newarea;div.appendChild(newarea);}
this.populateTb=function(toolbar){var btn;btn=this.createBtn('/cms/graphics/reactionArea/bold.gif',reactionArea.applyBold);toolbar.appendChild(btn);btn=this.createBtn('/cms/graphics/reactionArea/italic.gif',reactionArea.applyItalic);toolbar.appendChild(btn);btn=this.createBtn('/cms/graphics/reactionArea/link.gif',reactionArea.insertLink);toolbar.appendChild(btn);return toolbar;}
this.createBtn=function(imgsrc,event){var btn=document.createElement('a');var img=document.createElement('img');img.setAttribute('src',imgsrc);img.style.border='0px';btn.appendChild(img);addEvent(btn,'mouseup',eval(event));if(btn.style.cssFloat)img.style.cssFloat='left';if(btn.style.styleFloat)img.style.styleFloat='left';return btn;}
this.applyBold=function(){reactionArea.apply('b');}
this.applyItalic=function(){reactionArea.apply('i');}
this.insertLink=function(){reactionArea.apply('url=');}
this.getTarget=function(e){if(!e)var e=window.event;target=getEventSrc(e);}
this.storeCursor=function(e){if(!e)var e=window.event;var eventSrc=getEventSrc(e);if(document.all&&eventSrc.createTextRange){eventSrc.cursorPos=document.selection.createRange().duplicate();}}
this.putStr=function(text){if(target){if(document.all&&target.cursorPos){target.cursorPos.text=text;}else if(typeof(target.selectionStart)!='undefined'){var sStart=target.selectionStart;var sEnd=target.selectionEnd;target.value=target.value.substr(0,sStart)+text+target.value.substr(sEnd,target.value.length);target.selectionStart=(sStart==sEnd)?sStart+text.length:sStart;target.selectionEnd=sStart+text.length;}else{target.value+=text;}
target.focus();this.storeCursor(target);}}
this.apply=function(style){var selectedtext,url;if(!target){alert('No target defined!');return false;}
if(document.all&&target.cursorPos){selectedtext=target.cursorPos.text;}else if(typeof(target.selectionStart)!='undefined'){selectedtext=target.value.substr(target.selectionStart,target.selectionEnd-target.selectionStart);}
if(!selectedtext)selectedtext='';if(style=='url='){url=prompt('Naar welke url moet deze link verwijzen?','http://');if(!url)return true;if(!selectedtext)var selectedtext=url;selectedtext='[url='+url+']'+selectedtext+'[/url]';}else{selectedtext='['+style+']'+selectedtext+'[/'+style+']';}
this.putStr(selectedtext);}}
var reactionArea=new ReactionArea();function toggleReactionForm(force){var el,display;if(!(el=document.getElementByAttribute('toggleme','reaction')))return;if(force===false)display='none';else if(force===true)display='block';else display=el.style.display!='block'?'block':'none';return el.style.display=display;};function init(){var inps=document.getElementsByTagName('input'),addedTo=[];if(isIE()){try{document.execCommand('BackgroundImageCache',false,true);}catch(err){}}
for(var i=0;i<inps.length;i++){if(inps[i].className.indexOf('deftxt')!=-1){inps[i].setAttribute('defaultText',inps[i].value);addEvent(inps[i],'focus',removeDefTxt);addEvent(inps[i],'blur',restoreDefTxt);if(!in_array(inps[i].form,addedTo)){addEvent(inps[i].form,'submit',removeDefaultTexts);addedTo.push(inps[i].form);}
if(inps[i].getAttribute('defaultText')!==inps[i].value){inps[i].className=inps[i].className.replace(/ ?deftxt/,'');}
if(inps[i].getAttribute('value')!==inps[i].value){inps[i].className=inps[i].className.replace(/ ?deftxt/,'');}}}
if(document.getElementById('map')){load();}
try{loadTweet();}catch(e){}}
function removeDefTxt(e){if(!e)e=window.event;var eventSrc=getEventSrc(e);if(eventSrc.getAttribute('defaultText')==eventSrc.value&&eventSrc.className.match(/deftxt/)){eventSrc.value='';eventSrc.className=eventSrc.className.replace(/ ?deftxt/,'');}
setTimeout(function(){eventSrc.focus();},100);}
function removeDefaultTexts(e){var it,eventSrc,inps;e=e||window.event;eventSrc=getEventSrc(e);inps=document.getElementsByAttribute('defaultText',false,'input',eventSrc);for(it in inps){if(inps[it].className.match(/ ?deftxt/)){inps[it].value='';}}}
function restoreDefTxt(e,eventSrc){if(!eventSrc){if(!e)e=window.event;eventSrc=getEventSrc(e);}
if(eventSrc.value==''){if(eventSrc.getAttribute('defaultText')!==undefined){eventSrc.value=eventSrc.getAttribute('defaultText');}else{eventSrc.value='';}
if(!/( |^)deftxt($| )/.test(eventSrc.className)){eventSrc.className=trim(eventSrc.className+' deftxt');}}}
sfHover=function(){var sfEls=document.getElementById('ddmenu').getElementsByTagName('LI');for(var i=0;i<sfEls.length;i++){sfEls[i].onmouseover=function(){this.className+=" hover";}
sfEls[i].onmouseout=function(){this.className=this.className.replace(new RegExp(" hover\\b"),"");}}}
if(window.attachEvent)window.attachEvent('onload',sfHover);window.onload=init;;
/*
 * jQuery JavaScript Library v1.4.2
 * http://jquery.com/
 *
 * Copyright 2010, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2010, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Sat Feb 13 22:33:48 2010 -0500
 */
(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o<i;o++)e(a[o],b,f?d.call(a[o],o,e(a[o],b)):d,j);return a}return i?e(a[0],b):w}function J(){return(new Date).getTime()}function Y(){return false}function Z(){return true}function na(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function oa(a){var b,d=[],f=[],e=arguments,j,i,o,k,n,r;i=c.data(this,"events");if(!(a.liveFired===this||!i||!i.live||a.button&&a.type==="click")){a.liveFired=this;var u=i.live.slice(0);for(k=0;k<u.length;k++){i=u[k];i.origType.replace(O,"")===a.type?f.push(i.selector):u.splice(k--,1)}j=c(a.target).closest(f,a.currentTarget);n=0;for(r=j.length;n<r;n++)for(k=0;k<u.length;k++){i=u[k];if(j[n].selector===i.selector){o=j[n].elem;f=null;if(i.preType==="mouseenter"||i.preType==="mouseleave")f=c(a.relatedTarget).closest(i.selector)[0];if(!f||f!==o)d.push({elem:o,handleObj:i})}}n=0;for(r=d.length;n<r;n++){j=d[n];a.currentTarget=j.elem;a.data=j.handleObj.data;a.handleObj=j.handleObj;if(j.handleObj.origHandler.apply(j.elem,e)===false){b=false;break}}return b}}function pa(a,b){return"live."+(a&&a!=="*"?a+".":"")+b.replace(/\./g,"`").replace(/ /g,"&")}function qa(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ra(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var f=c.data(a[d++]),e=c.data(this,f);if(f=f&&f.events){delete e.handle;e.events={};for(var j in f)for(var i in f[j])c.event.add(this,j,f[j][i],f[j][i].data)}}})}function sa(a,b,d){var f,e,j;b=b&&b[0]?b[0].ownerDocument||b[0]:s;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===s&&!ta.test(a[0])&&(c.support.checkClone||!ua.test(a[0]))){e=true;if(j=c.fragments[a[0]])if(j!==1)f=j}if(!f){f=b.createDocumentFragment();c.clean(a,b,f,d)}if(e)c.fragments[a[0]]=j?f:1;return{fragment:f,cacheable:e}}function K(a,b){var d={};c.each(va.concat.apply([],va.slice(0,b)),function(){d[this]=a});return d}function wa(a){return"scrollTo"in a&&a.document?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var c=function(a,b){return new c.fn.init(a,b)},Ra=A.jQuery,Sa=A.$,s=A.document,T,Ta=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/,Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&&(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this,a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b==="find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(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(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this,function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b<d;b++)if((e=arguments[b])!=null)for(j in e){i=a[j];o=e[j];if(a!==o)if(f&&o&&(c.isPlainObject(o)||c.isArray(o))){i=i&&(c.isPlainObject(i)||c.isArray(i))?i:c.isArray(o)?[]:{};a[j]=c.extend(f,i,o)}else if(o!==w)a[j]=o}return a};c.extend({noConflict:function(a){A.$=Sa;if(a)A.jQuery=Ra;return c},isReady:false,ready:function(){if(!c.isReady){if(!s.body)return setTimeout(c.ready,13);c.isReady=true;if(Q){for(var a,b=0;a=Q[b++];)a.call(s,c);Q=null}c.fn.triggerHandler&&c(s).triggerHandler("ready")}},bindReady:function(){if(!xa){xa=true;if(s.readyState==="complete")return c.ready();if(s.addEventListener){s.addEventListener("DOMContentLoaded",L,false);A.addEventListener("load",c.ready,false)}else if(s.attachEvent){s.attachEvent("onreadystatechange",L);A.attachEvent("onload",c.ready);var a=false;try{a=A.frameElement==null}catch(b){}s.documentElement.doScroll&&a&&ma()}}},isFunction:function(a){return $.call(a)==="[object Function]"},isArray:function(a){return $.call(a)==="[object Array]"},isPlainObject:function(a){if(!a||$.call(a)!=="[object Object]"||a.nodeType||a.setInterval)return false;if(a.constructor&&!aa.call(a,"constructor")&&!aa.call(a.constructor.prototype,"isPrototypeOf"))return false;var b;for(b in a);return b===w||aa.call(a,b)},isEmptyObject:function(a){for(var b in a)return false;return true},error:function(a){throw a;},parseJSON:function(a){if(typeof a!=="string"||!a)return null;a=c.trim(a);if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return A.JSON&&A.JSON.parse?A.JSON.parse(a):(new Function("return "+
a))();else c.error("Invalid JSON: "+a)},noop:function(){},globalEval:function(a){if(a&&Va.test(a)){var b=s.getElementsByTagName("head")[0]||s.documentElement,d=s.createElement("script");d.type="text/javascript";if(c.support.scriptEval)d.appendChild(s.createTextNode(a));else d.text=a;b.insertBefore(d,b.firstChild);b.removeChild(d)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,b,d){var f,e=0,j=a.length,i=j===w||c.isFunction(a);if(d)if(i)for(f in a){if(b.apply(a[f],d)===false)break}else for(;e<j;){if(b.apply(a[e++],d)===false)break}else if(i)for(f in a){if(b.call(a[f],f,a[f])===false)break}else for(d=a[0];e<j&&b.call(d,e,d)!==false;d=a[++e]);return a},trim:function(a){return(a||"").replace(Wa,"")},makeArray:function(a,b){b=b||[];if(a!=null)a.length==null||typeof a==="string"||c.isFunction(a)||typeof a!=="function"&&a.setInterval?ba.call(b,a):c.merge(b,a);return b},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var d=0,f=b.length;d<f;d++)if(b[d]===a)return d;return-1},merge:function(a,b){var d=a.length,f=0;if(typeof b.length==="number")for(var e=b.length;f<e;f++)a[d++]=b[f];else for(;b[f]!==w;)a[d++]=b[f++];a.length=d;return a},grep:function(a,b,d){for(var f=[],e=0,j=a.length;e<j;e++)!d!==!b(a[e],e)&&f.push(a[e]);return f},map:function(a,b,d){for(var f=[],e,j=0,i=a.length;j<i;j++){e=b(a[j],j,d);if(e!=null)f[f.length]=e}return f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length===2)if(typeof b==="string"){d=a;a=d[b];b=w}else if(b&&!c.isFunction(b)){d=b;b=w}if(!b&&a)b=function(){return a.apply(d||this,arguments)};if(a)b.guid=a.guid=a.guid||b.guid||c.guid++;return b},uaMatch:function(a){a=a.toLowerCase();a=/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||!/compatible/.test(a)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}},browser:{}});P=c.uaMatch(P);if(P.browser){c.browser[P.browser]=true;c.browser.version=P.version}if(c.browser.webkit)c.browser.safari=true;if(ya)c.inArray=function(a,b){return ya.call(b,a)};T=c(s);if(s.addEventListener)L=function(){s.removeEventListener("DOMContentLoaded",L,false);c.ready()};else if(s.attachEvent)L=function(){if(s.readyState==="complete"){s.detachEvent("onreadystatechange",L);c.ready()}};(function(){c.support={};var a=s.documentElement,b=s.createElement("script"),d=s.createElement("div"),f="script"+J();d.style.display="none";d.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected,parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent=false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n=s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true,applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando];else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this,a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i,cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1)if(e.className){for(var j=" "+e.className+" ",i=e.className,o=0,k=b.length;o<k;o++)if(j.indexOf(" "+b[o]+" ")<0)i+=" "+b[o];e.className=c.trim(i)}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(k){var n=c(this);n.removeClass(a.call(this,k,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(var j=(" "+e.className+" ").replace(Aa," "),i=0,o=b.length;i<o;i++)j=j.replace(" "+b[i]+" "," ");e.className=c.trim(j)}else e.className=""}return this},toggleClass:function(a,b){var d=typeof a,f=typeof b==="boolean";if(c.isFunction(a))return this.each(function(e){var j=c(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var e,j=0,i=c(this),o=b,k=a.split(ca);e=k[j++];){o=f?o:!i.hasClass(e);i[o?"addClass":"removeClass"](e)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className=this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(Aa," ").indexOf(a)>-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j<d;j++){var i=e[j];if(i.selected){a=c(i).val();if(b)return a;f.push(a)}}return f}if(Ba.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Za,"")}return w}var o=c.isFunction(a);return this.each(function(k){var n=c(this),r=a;if(this.nodeType===1){if(o)r=a.call(this,k,n.val());if(typeof r==="number")r+="";if(c.isArray(r)&&Ba.test(this.type))this.checked=c.inArray(n.val(),r)>=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected=c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g,function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split(".");k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a),C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B<r.length;B++){u=r[B];if(d.guid===u.guid){if(i||k.test(u.namespace)){f==null&&r.splice(B--,1);n.remove&&n.remove.call(a,u)}if(f!=null)break}}if(r.length===0||f!=null&&r.length===1){if(!n.teardown||n.teardown.call(a,o)===false)Ca(a,e,z.handle);delete C[e]}}else for(var B=0;B<r.length;B++){u=r[B];if(i||k.test(u.namespace)){c.event.remove(a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=z.handle)b.elem=null;delete z.events;delete z.handle;c.isEmptyObject(z)&&c.removeData(a)}}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type=e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&&f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e<j;e++){var i=d[e];if(b||f.test(i.namespace)){a.handler=i.handler;a.data=i.data;a.handleObj=i;i=i.handler.apply(this,arguments);if(i!==w){a.result=i;if(i===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.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 originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[G])return a;var b=a;a=c.Event(b);for(var d=this.props.length,f;d;){f=this.props[--d];a[f]=b[f]}if(!a.target)a.target=a.srcElement||s;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=s.documentElement;d=s.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop||d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(!a.which&&(a.charCode||a.charCode===0?a.charCode:a.keyCode))a.which=a.charCode||a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==w)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,a.origType,c.extend({},a,{handler:oa}))},remove:function(a){var b=true,d=a.origType.replace(O,"");c.each(c.data(this,"events").live||[],function(){if(d===this.origType.replace(O,""))return b=false});b&&c.event.remove(this,a.origType,oa)}},beforeunload:{setup:function(a,b,d){if(this.setInterval)this.onbeforeunload=d;return false},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};var Ca=s.removeEventListener?function(a,b,d){a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=a;this.type=a.type}else this.type=a;this.timeStamp=J();this[G]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=Z;var a=this.originalEvent;if(a){a.preventDefault&&a.preventDefault();a.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=Z;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=Z;this.stopPropagation()},isDefaultPrevented:Y,isPropagationStopped:Y,isImmediatePropagationStopped:Y};var Da=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},Ea=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?Ea:Da,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?Ea:Da)}}});if(!c.support.submitBubbles)c.event.special.submit={setup:function(){if(this.nodeName.toLowerCase()!=="form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length)return na("submit",this,arguments)});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13)return na("submit",this,arguments)})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};if(!c.support.changeBubbles){var da=/textarea|input|select/i,ea,Fa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a,d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j<o;j++)c.event.add(this[j],d,i,f)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&!a.preventDefault)for(var d in a)this.unbind(d,a[d]);else{d=0;for(var f=this.length;d<f;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,f){return this.live(b,d,f,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){a=c.Event(a);a.preventDefault();a.stopPropagation();c.event.trigger(a,b,this[0]);return a.result}},toggle:function(a){for(var b=arguments,d=1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(f){var e=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,e+1);f.preventDefault();return b[e].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Ga={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,f,e,j){var i,o=0,k,n,r=j||this.selector,u=j?this:c(this.context);if(c.isFunction(f)){e=f;f=w}for(d=(d||"").split(" ");(i=d[o++])!=null;){j=O.exec(i);k="";if(j){k=j[0];i=i.replace(O,"")}if(i==="hover")d.push("mouseenter"+k,"mouseleave"+k);else{n=i;if(i==="focus"||i==="blur"){d.push(Ga[i]+k);i+=k}else i=(Ga[i]||i)+k;b==="live"?u.each(function(){c.event.add(this,pa(i,r),{data:f,selector:r,handler:e,origType:i,origHandler:e,preType:n})}):u.unbind(pa(i,r),e)}}return this}});c.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){c.fn[b]=function(d){return d?this.bind(b,d):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});A.attachEvent&&!A.addEventListener&&A.attachEvent("onunload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});(function(){function a(g){for(var h="",l,m=0;g[m];m++){l=g[m];if(l.nodeType===3||l.nodeType===4)h+=l.nodeValue;else if(l.nodeType!==8)h+=a(l.childNodes)}return h}function b(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1&&!p){t.sizcache=l;t.sizset=q}if(t.nodeName.toLowerCase()===h){y=t;break}t=t[g]}m[q]=y}}}function d(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1){if(!p){t.sizcache=l;t.sizset=q}if(typeof h!=="string"){if(t===h){y=true;break}}else if(k.filter(h,[t]).length>0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift();t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D||g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h<g.length;h++)g[h]===g[h-1]&&g.splice(h--,1)}return g};k.matches=function(g,h){return k(g,null,null,h)};k.find=function(g,h,l){var m,q;if(!g)return[];for(var p=0,v=n.order.length;p<v;p++){var t=n.order[p];if(q=n.leftMatch[t].exec(g)){var y=q[1];q.splice(1,1);if(y.substr(y.length-1)!=="\\"){q[1]=(q[1]||"").replace(/\\/g,"");m=n.find[t](q,h,l);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=h.getElementsByTagName("*"));return{set:m,expr:g}};k.filter=function(g,h,l,m){for(var q=g,p=[],v=h,t,y,S=h&&h[0]&&x(h[0]);g&&h.length;){for(var H in n.filter)if((t=n.leftMatch[H].exec(g))!=null&&t[2]){var M=n.filter[H],I,D;D=t[1];y=false;t.splice(1,1);if(D.substr(D.length-
1)!=="\\"){if(v===p)p=[];if(n.preFilter[H])if(t=n.preFilter[H](t,v,l,p,m,S)){if(t===true)continue}else y=I=true;if(t)for(var U=0;(D=v[U])!=null;U++)if(D){I=M(D,t,U,v);var Ha=m^!!I;if(l&&I!=null)if(Ha)y=true;else v[U]=false;else if(Ha){p.push(D);y=true}}if(I!==w){l||(v=p);g=g.replace(n.match[H],"");if(!y)return[];break}}}if(g===q)if(y==null)k.error(g);else break;q=g}return v};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=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|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},relative:{"+":function(g,h){var l=typeof h==="string",m=l&&!/\W/.test(h);l=l&&!m;if(m)h=h.toLowerCase();m=0;for(var q=g.length,p;m<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},">":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m<q;m++){var p=g[m];if(p){l=p.parentNode;g[m]=l.nodeName.toLowerCase()===h?l:false}}}else{m=0;for(q=g.length;m<q;m++)if(p=g[m])g[m]=l?p.parentNode:p.parentNode===h;l&&k.filter(h,g,true)}},"":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("parentNode",h,m,g,p,l)},"~":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("previousSibling",h,m,g,p,l)}},find:{ID:function(g,h,l){if(typeof h.getElementById!=="undefined"&&!l)return(g=h.getElementById(g[1]))?[g]:[]},NAME:function(g,h){if(typeof h.getElementsByName!=="undefined"){var l=[];h=h.getElementsByName(g[1]);for(var m=0,q=h.length;m<q;m++)h[m].getAttribute("name")===g[1]&&l.push(h[m]);return l.length===0?null:l}},TAG:function(g,h){return h.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,h,l,m,q,p){g=" "+g[1].replace(/\\/g,"")+" ";if(p)return g;p=0;for(var v;(v=h[p])!=null;p++)if(v)if(q^(v.className&&(" "+v.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m,g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return h<l[3]-0},gt:function(g,h,l){return h>l[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h=h[3];l=0;for(m=h.length;l<m;l++)if(h[l]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+q)},CHILD:function(g,h){var l=h[1],m=g;switch(l){case"only":case"first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(l==="first")return true;m=g;case"last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case"nth":l=h[2];var q=h[3];if(l===1&&q===0)return true;h=h[0];var p=g.parentNode;if(p&&(p.sizcache!==h||!g.nodeIndex)){var v=0;for(m=p.firstChild;m;m=m.nextSibling)if(m.nodeType===1)m.nodeIndex=++v;p.sizcache=h}g=g.nodeIndex-q;return l===0?g===0:g%l===0&&g/l>=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m==="="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g,h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l<m;l++)h.push(g[l]);else for(l=0;g[l];l++)h.push(g[l]);return h}}var B;if(s.documentElement.compareDocumentPosition)B=function(g,h){if(!g.compareDocumentPosition||!h.compareDocumentPosition){if(g==h)i=true;return g.compareDocumentPosition?-1:1}g=g.compareDocumentPosition(h)&4?-1:g===h?0:1;if(g===0)i=true;return g};else if("sourceIndex"in s.documentElement)B=function(g,h){if(!g.sourceIndex||!h.sourceIndex){if(g==h)i=true;return g.sourceIndex?-1:1}g=g.sourceIndex-h.sourceIndex;if(g===0)i=true;return g};else if(s.createRange)B=function(g,h){if(!g.ownerDocument||!h.ownerDocument){if(g==h)i=true;return g.ownerDocument?-1:1}var l=g.ownerDocument.createRange(),m=h.ownerDocument.createRange();l.setStart(g,0);l.setEnd(g,0);m.setStart(h,0);m.setEnd(h,0);g=l.compareBoundaryPoints(Range.START_TO_END,m);if(g===0)i=true;return g};(function(){var g=s.createElement("div"),h="script"+(new Date).getTime();g.innerHTML="<a name='"+h+"'/>";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&&q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML="<a href='#'></a>";if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="<p class='TEST'></p>";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}();(function(){var g=s.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}:function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q<p;q++)k(g,h[q],l);return k.filter(m,l)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=a;c.isXMLDoc=x;c.contains=E})();var eb=/Until$/,fb=/^(?:parents|prevUntil|prevAll)/,gb=/,/;R=Array.prototype.slice;var Ia=function(a,b,d){if(c.isFunction(b))return c.grep(a,function(e,j){return!!b.call(e,j,e)===d});else if(b.nodeType)return c.grep(a,function(e){return e===b===d});else if(typeof b==="string"){var f=c.grep(a,function(e){return e.nodeType===1});if(Ua.test(b))return c.filter(b,f,!d);else b=c.filter(b,f)}return c.grep(a,function(e){return c.inArray(e,b)>=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f<e;f++){d=b.length;c.find(a,this[f],b);if(f>0)for(var j=d;j<b.length;j++)for(var i=0;i<d;i++)if(b[i]===b[j]){b.splice(j--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,f=b.length;d<f;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(Ia(this,a,false),"not",a)},filter:function(a){return this.pushStack(Ia(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j={},i;if(f&&a.length){e=0;for(var o=a.length;e<o;e++){i=a[e];j[i]||(j[i]=c.expr.match.POS.test(i)?c(i,b||this.context):i)}for(;f&&f.ownerDocument&&f!==b;){for(i in j){e=j[i];if(e.jquery?e.index(f)>-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a==="string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType===1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/<tbody/i,jb=/<|&#?\w+;/,ta=/<script|<object|<embed|<option|<style/i,ua=/checked\s*(?:[^=]|=\s*.checked.)/i,Ma=function(a,b,d){return hb.test(d)?a:b+"></"+d+">"},F={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,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(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,false,function(b){this.parentNode.insertBefore(b,this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja,""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(f){this.empty().append(a)}}else c.isFunction(a)?this.each(function(e){var j=c(this),i=j.html();j.empty().append(function(){return a.call(this,e,i)})}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),f=d.html();d.replaceWith(a.call(this,b,f))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){function f(u){return c.nodeName(u,"table")?u.getElementsByTagName("tbody")[0]||u.appendChild(u.ownerDocument.createElement("tbody")):u}var e,j,i=a[0],o=[],k;if(!c.support.checkClone&&arguments.length===3&&typeof i==="string"&&ua.test(i))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(i))return this.each(function(u){var z=c(this);a[0]=i.call(this,u,b?z.html():w);z.domManip(a,b,d)});if(this[0]){e=i&&i.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:sa(a,this,o);k=e.fragment;if(j=k.childNodes.length===1?(k=k.firstChild):k.firstChild){b=b&&c.nodeName(j,"tr");for(var n=0,r=this.length;n<r;n++)d.call(b?f(this[n],j):this[n],n>0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]);return this}else{e=0;for(var j=d.length;e<j;e++){var i=(e>0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["",""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]==="<table>"&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e=c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]?c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja=function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter=Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a,"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f=a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/<script(.|\s)*?\/script>/gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!=="string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("<div />").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this},serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&&e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)?"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache===false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B=false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since",c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E||d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x);g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b==="json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional;if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");this[a].style.display=d||"";if(c.css(this[a],"display")==="none"){d=this[a].nodeName;var f;if(la[d])f=la[d];else{var e=c("<"+d+" />").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a||a===0)return this.animate(K("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a],"olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||d?this.each(function(){var f=d?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(K("toggle",3),a,b);return this},fadeTo:function(a,b,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d)},animate:function(a,b,d,f){var e=c.speed(b,d,f);if(c.isEmptyObject(a))return this.each(e.complete);return this[e.queue===false?"each":"queue"](function(){var j=c.extend({},e),i,o=this.nodeType===1&&c(this).is(":hidden"),k=this;for(i in a){var n=i.replace(ia,ja);if(i!==n){a[n]=a[i];delete a[i];i=n}if(a[i]==="hide"&&o||a[i]==="show"&&!o)return j.complete.call(this);if((i==="height"||i==="width")&&this.style){j.display=c.css(this,"display");j.overflow=this.style.overflow}if(c.isArray(a[i])){(j.specialEasing=j.specialEasing||{})[i]=a[i][1];a[i]=a[i][0]}}if(j.overflow!=null)this.style.overflow="hidden";j.curAnim=c.extend({},a);c.each(a,function(r,u){var z=new c.fx(k,j,r);if(Ab.test(u))z[u==="toggle"?o?"show":"hide":u](a);else{var C=Bb.exec(u),B=z.cur(true)||0;if(C){u=parseFloat(C[2]);var E=C[3]||"px";if(E!=="px"){k.style[r]=(u||1)+E;B=(u||1)/z.cur(true)*B;k.style[r]=B+E}if(C[1])u=(C[1]==="-="?-1:1)*u+B;z.custom(B,u,E)}else z.custom(B,u,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);this.each(function(){for(var f=d.length-1;f>=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration==="number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem,e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||c.fx.stop()},stop:function(){clearInterval(W);W=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(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;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===b.elem}).length};c.fn.offset="getBoundingClientRect"in s.documentElement?function(a){var b=this[0];if(a)return this.each(function(e){c.offset.setOffset(this,a,e)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);var d=b.getBoundingClientRect(),f=b.ownerDocument;b=f.body;f=f.documentElement;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrollTop||b.scrollTop)-(f.clientTop||b.clientTop||0),left:d.left+(self.pageXOffset||c.support.boxModel&&f.scrollLeft||b.scrollLeft)-(f.clientLeft||b.clientLeft||0)}}:function(a){var b=this[0];if(a)return this.each(function(r){c.offset.setOffset(this,a,r)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,f=b,e=b.ownerDocument,j,i=e.documentElement,o=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;for(var k=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==o&&b!==i;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;j=e?e.getComputedStyle(b,null):b.currentStyle;k-=b.scrollTop;n-=b.scrollLeft;if(b===d){k+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(b.nodeName))){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=d;d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&j.overflow!=="visible"){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=j}if(f.position==="relative"||f.position==="static"){k+=o.offsetTop;n+=o.offsetLeft}if(c.offset.supportsFixedPosition&&f.position==="fixed"){k+=Math.max(i.scrollTop,o.scrollTop);n+=Math.max(i.scrollLeft,o.scrollLeft)}return{top:k,left:n}};c.offset={initialize:function(){var a=s.body,b=s.createElement("div"),d,f,e,j=parseFloat(c.curCSS(a,"marginTop",true))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});b.innerHTML="<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>";a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b);c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a,d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top-
f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset":"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in
e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window);;var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Greg's Hand computer font v1.0 ©2001 Greg Smith & Harold Lohner 
 * HLohner@aol.com  http://members.aol.com/fontner
 */
Cufon.registerFont({"w":589,"face":{"font-family":"Gregs","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"24","cap-height":"44","bbox":"-128 -830.117 3355 524.375","underline-thickness":"20","underline-position":"-123","unicode-range":"U+0020-U+007A"},"glyphs":{" ":{"w":186},"!":{"d":"94,-246v-32,39,18,100,55,101v23,1,48,-22,47,-46v-3,-124,-67,-311,-102,-425v-24,-34,-90,-7,-85,35v-2,14,88,327,85,335xm217,10v0,-30,-45,-84,-76,-84v-45,0,-67,61,-27,87v-5,27,21,51,47,51v30,0,56,-24,56,-54","w":202},"\"":{"d":"150,-357v0,55,-9,82,-48,84v-32,1,-51,-27,-54,-67v-2,-29,-11,-134,-24,-167v-1,-25,22,-47,47,-46v25,0,42,15,53,44v17,47,26,97,26,152xm343,-334v0,-63,-34,-222,-85,-218v-39,3,-61,43,-45,85v2,18,32,116,32,152v0,23,22,43,46,43v32,0,52,-31,52,-62","w":414},"#":{"d":"566,-412v-8,-77,-98,-43,-180,-31v-26,-106,-58,-159,-96,-159v-25,-1,-48,24,-47,48v-1,6,51,129,50,132v-25,5,-47,10,-65,13r-25,-182v-5,-27,-21,-41,-48,-41v-91,0,-26,158,-22,232v-17,2,-71,-17,-88,-17v-25,0,-48,23,-47,48v0,45,50,66,150,64v8,51,17,104,27,159v-51,0,-47,-5,-120,-5v-23,-1,-47,21,-47,45v0,38,40,57,120,57r65,-2v10,51,29,126,49,229v11,56,96,42,94,-10v-1,-47,-34,-167,-47,-224v26,-3,51,-6,74,-10v15,75,25,140,30,193v2,22,22,45,45,45v33,0,50,-17,50,-50v0,-35,-11,-106,-33,-211v59,-20,88,-43,88,-70v1,-26,-22,-49,-47,-48v-12,-3,-61,25,-61,24v-12,-61,-22,-116,-31,-166r29,-6v44,29,137,-16,133,-57xm271,-150v-11,-58,-20,-113,-28,-165v19,-3,41,-8,68,-14r32,170v-21,3,-45,6,-72,9","w":538},"$":{"d":"354,-306v53,1,87,-45,86,-98v0,-72,-66,-123,-199,-154v-19,-69,-22,-211,-86,-211v-26,-1,-54,23,-48,48r34,150v-81,-3,-142,38,-141,100v2,84,131,192,190,250v0,67,0,111,1,132v-20,-2,-31,-18,-51,-18v-25,0,-49,23,-47,47v4,49,46,60,109,70v17,87,45,130,84,130v26,1,48,-22,48,-47v0,-17,-29,-60,-30,-67v62,-20,93,-55,93,-106v0,-45,-38,-106,-113,-181v-1,-13,-3,-37,-7,-74v21,19,46,29,77,29xm195,-695r0,-1r0,1xm199,-703v0,-1,0,-1,1,-2v-1,0,-1,1,-1,2xm201,-711v1,-1,1,-2,1,-5v0,1,0,2,-1,5xm203,-720v-1,-5,-1,-8,-1,-10v0,2,0,5,1,10xm114,-697r-2,-4xm120,-689v-1,-1,-3,-3,-4,-5v1,2,3,4,4,5xm122,-688r5,5v-2,-1,-4,-3,-5,-5xm148,-675r-1,0r1,0xm141,-676r-3,-1xm185,-76v1,3,2,5,2,8v0,-2,-1,-5,-2,-8xm96,-468v11,-8,40,-10,64,-7v7,37,12,73,17,110v-32,-34,-71,-71,-81,-103xm288,-70r-2,-45v15,24,26,35,2,45xm269,-395r-9,-59v46,16,75,31,85,50v-31,-20,-60,-17,-76,9","w":428},"%":{"d":"114,-213v73,0,133,-82,133,-157v0,-72,-64,-126,-136,-126v-63,0,-129,86,-129,151v0,65,67,132,132,132xm106,-308v-41,-8,-34,-60,2,-85v13,12,26,18,43,15v3,21,-24,74,-45,70xm140,0v-28,33,1,82,40,82v50,0,106,-96,169,-287v37,-111,74,-192,117,-241v29,-33,-1,-82,-40,-82v-49,0,-105,96,-168,287v-37,115,-57,169,-118,241xm650,-11v0,-70,-94,-148,-172,-155v-63,-6,-117,61,-117,124v0,75,92,157,166,157v68,0,123,-59,123,-126xm555,-19v0,19,-17,40,-36,39v-33,-2,-92,-53,-47,-85v31,7,83,12,83,46","w":592},"&":{"d":"575,-319v0,-45,-69,-73,-91,-29v-14,11,-88,16,-163,15v-9,-47,-18,-102,-22,-163v-2,-25,-25,-50,-50,-49v-30,0,-45,15,-45,46v0,33,7,87,21,164v-106,-4,-160,-6,-162,-6v-42,0,-63,15,-63,44v0,45,31,52,85,51v0,0,41,2,158,6v7,30,17,74,29,133v-23,44,24,109,62,109v66,0,43,-76,29,-143r-23,-97v63,0,108,-3,137,-8v65,-11,98,-36,98,-73xm483,-344r-2,4","w":575},"'":{"d":"155,-334v0,-63,-34,-218,-85,-218v-29,0,-51,27,-50,56v2,43,38,123,38,181v0,23,23,43,46,43v32,0,51,-31,51,-62","w":230},"(":{"d":"344,183v0,-32,-34,-61,-68,-48v-56,-26,-143,-314,-143,-406v0,-94,27,-170,80,-228v31,8,54,-16,54,-42v1,-32,-30,-66,-62,-65v-19,0,-41,14,-67,42v-106,116,-126,286,-67,476v27,86,54,158,88,216v41,69,82,104,124,104v30,0,61,-18,61,-49xm173,-539r-1,-2v0,1,0,1,1,2","w":293},")":{"d":"179,55v0,27,25,53,52,52v41,0,62,-57,62,-172v-1,-203,-112,-409,-237,-497v-32,-22,-76,-4,-75,33v0,15,7,29,21,41v110,89,192,233,196,414v1,25,-19,108,-19,129","w":331},"*":{"d":"478,-91v51,2,58,-73,12,-91v-45,-17,-88,-50,-132,-89v79,-10,119,-31,119,-63v-1,-37,-39,-64,-79,-46v-14,6,-24,8,-27,9v17,-28,54,-75,55,-108v1,-27,-25,-54,-52,-52v-41,2,-91,115,-116,159v-43,-49,-138,-178,-183,-184v-23,-3,-44,21,-43,44v2,31,75,105,101,136v-6,0,-70,-20,-85,-20v-23,0,-44,21,-43,44v0,27,25,48,76,62v23,6,60,12,112,18v-2,9,-92,75,-92,100v0,26,25,51,52,51v35,0,76,-33,125,-100v40,40,150,128,200,130xm334,-495v0,0,-2,5,-3,4","w":503},"+":{"d":"589,-319v0,-45,-69,-73,-91,-29v-14,11,-88,16,-163,15v-9,-47,-18,-102,-22,-163v-2,-25,-25,-50,-50,-49v-30,0,-45,15,-45,46v0,33,7,87,21,164v-106,-4,-160,-6,-162,-6v-42,0,-63,15,-63,44v0,45,31,52,85,51v0,0,41,2,158,6v7,30,17,74,29,133v-23,44,24,109,62,109v66,0,43,-76,29,-143r-23,-97v63,0,108,-3,137,-8v65,-11,98,-36,98,-73xm497,-344r-2,4"},",":{"d":"199,58v0,-56,-41,-197,-90,-192v-94,10,-5,130,-7,179v6,29,-38,76,-39,95v-1,28,22,54,51,54v49,0,85,-83,85,-136","w":199},"-":{"d":"299,-196v0,79,-174,36,-236,53v-38,0,-57,-15,-57,-44v0,-26,25,-42,74,-47v6,-1,44,-1,114,-1v70,0,105,13,105,39","w":305},"\u2010":{"d":"299,-196v0,79,-174,36,-236,53v-38,0,-57,-15,-57,-44v0,-26,25,-42,74,-47v6,-1,44,-1,114,-1v70,0,105,13,105,39","w":305},".":{"d":"181,-9v0,-32,-43,-81,-75,-81v-41,0,-60,55,-27,80v-4,27,27,50,51,50v28,1,51,-21,51,-49","w":166},"\/":{"d":"145,95v-16,47,-89,28,-83,-21v36,-78,83,-460,124,-699v9,-50,83,-40,83,7v0,66,-27,170,-38,237v-25,154,-45,356,-86,476","w":241},"0":{"d":"138,-533r2,-2xm362,35v133,0,271,-114,268,-243v-3,-109,-69,-206,-141,-257v-14,-62,-118,-114,-199,-114v-139,0,-231,87,-231,226v0,191,123,388,303,388xm534,-205v0,78,-90,146,-170,146v-125,0,-213,-160,-210,-295v2,-75,25,-109,88,-125v0,30,16,45,47,46v122,0,245,107,245,228","w":604,"k":{"7":39}},"1":{"d":"181,34v40,0,65,-48,47,-85v-15,-128,-54,-296,-118,-505v-7,-22,-22,-33,-47,-33v-50,-1,-57,71,-32,107v55,195,85,299,106,477v3,26,19,39,44,39","w":226},"2":{"d":"561,-69v-13,0,-43,16,-57,16v-48,0,-199,-19,-244,-19v96,-168,150,-266,90,-431v-24,-68,-53,-79,-125,-76v-149,6,-207,113,-242,260v-1,24,22,46,46,45v20,0,38,-19,55,-56v28,-60,55,-162,132,-162v43,0,61,60,61,110v0,129,-114,268,-157,366v-1,25,22,50,46,46v93,-14,241,11,334,12v50,1,107,-21,107,-65v1,-25,-21,-46,-46,-46","w":526,"k":{"9":100,"8":30,"7":80,"5":50,"4":100}},"3":{"d":"528,-216v-8,-123,-113,-168,-240,-199v24,-33,36,-63,36,-90v1,-67,-71,-102,-143,-102v-92,0,-188,79,-188,168v0,41,16,62,48,62v36,-1,84,-51,56,-90v25,-43,83,-56,131,-33v3,27,-77,85,-77,115v0,23,25,40,73,55v74,22,205,36,209,117v4,68,-133,178,-199,172v-41,-14,-88,0,-88,43v0,35,28,52,85,52v120,0,304,-150,297,-270","w":495,"k":{"7":59,"4":-52}},"4":{"d":"563,-203v1,-22,-22,-45,-44,-44v11,0,-24,3,-105,8v-21,-107,-51,-198,-88,-274v52,-43,3,-115,-55,-79v-38,-14,-71,19,-64,55v-40,47,-203,237,-218,297v-3,82,228,106,345,100v8,63,9,183,66,183v24,0,49,-25,48,-49v0,-15,-6,-61,-18,-139v55,-4,82,-6,83,-6v33,-7,50,-25,50,-52xm342,-548r0,-8v1,3,1,5,0,8xm279,-595r-1,0r1,0xm106,-259v27,-37,75,-98,146,-185v27,60,48,130,65,209v-84,1,-163,-5,-211,-24","w":529,"k":{"7":79,"5":39}},"5":{"d":"545,-161v0,-170,-241,-292,-414,-207v-7,-24,-16,-60,-28,-108r251,-10v35,-6,53,-22,53,-48v1,-26,-20,-48,-46,-47v-88,0,-194,-3,-314,12v-72,9,-49,88,-27,167r34,121v5,25,20,37,45,37v26,-6,102,-65,153,-55v84,-2,200,62,198,141v-2,69,-118,98,-205,100v-24,1,-48,23,-48,49v0,26,21,47,47,47v141,0,301,-72,301,-199","w":512,"k":{"7":46}},"6":{"d":"457,-183v-3,-81,-79,-115,-171,-115v-62,0,-125,20,-189,61v-8,-92,9,-176,42,-238v30,0,54,-23,50,-58v-4,-34,-19,-60,-54,-64v-78,-8,-135,230,-135,326v0,48,5,89,14,124v-22,52,7,124,59,115v38,45,84,67,137,67v99,0,251,-117,247,-218xm362,-180v0,47,-103,119,-149,119v-39,0,-71,-26,-94,-77v28,-29,111,-65,164,-65v53,0,79,8,79,23","w":430,"k":{"7":118}},"7":{"d":"300,-576r-186,-4v-83,-1,-113,0,-122,54v11,68,93,38,177,43v69,4,111,2,126,2v35,0,69,-1,101,-4v-27,155,-47,336,-122,436v-24,31,0,77,37,76v41,0,79,-57,113,-171v33,-111,81,-263,81,-400v0,-85,-142,-31,-205,-32","w":507},"8":{"d":"309,38v55,0,101,-38,100,-93v-1,-54,-67,-132,-97,-176v76,-112,114,-194,114,-246v0,-33,-20,-69,-48,-75v-34,-27,-93,-41,-177,-41v-124,0,-186,35,-186,106v0,82,127,196,180,261v-35,57,-53,101,-53,132v0,76,87,132,167,132xm312,-57v-22,1,-75,-21,-75,-41v0,-10,6,-26,18,-47v15,20,34,49,57,88xm111,-486v36,-17,175,-13,200,5v1,12,6,22,15,30v-11,35,-35,81,-74,140v-37,-43,-130,-137,-141,-175","w":421},"9":{"d":"408,27v25,0,46,-27,45,-51v0,-187,-29,-352,-88,-497v-11,-29,-47,-37,-72,-18v-105,-65,-287,-42,-287,97v0,80,55,135,135,134v50,0,101,-20,154,-59v5,4,12,6,23,6v26,90,32,230,40,345v2,29,19,43,50,43xm145,-403v-29,0,-44,-14,-44,-43v0,-22,18,-33,54,-33v34,0,66,9,97,27v-37,33,-73,49,-107,49","w":471},":":{"d":"231,-9v0,-32,-43,-81,-75,-81v-41,0,-60,55,-27,80v-4,27,27,50,51,50v28,1,51,-21,51,-49xm181,-322v0,-32,-43,-81,-75,-81v-41,0,-60,55,-27,80v-4,27,27,50,51,50v28,1,51,-21,51,-49","w":216},";":{"d":"230,58v0,-56,-41,-197,-90,-192v-94,10,-5,130,-7,179v6,29,-38,76,-39,95v-1,28,22,54,51,54v49,0,85,-83,85,-136xm181,-322v0,-32,-43,-81,-75,-81v-41,0,-60,55,-27,80v-4,27,27,50,51,50v28,1,51,-21,51,-49","w":231},"<":{"d":"3355,-709v-29,-10,-34,17,-35,49r0,121r-29,0r0,-214r28,0r0,15v11,-16,17,-23,36,-17r0,46xm3166,-646v0,-49,17,-117,58,-113v48,5,55,55,54,130r-81,0v-1,67,42,76,52,15r28,0v-4,42,-19,77,-54,81v-39,5,-57,-59,-57,-113xm3107,-717v-17,0,-25,32,-25,61r0,117r-29,0r0,-214r28,0r0,14v41,-46,73,0,73,64r0,136r-29,0r0,-134v0,-29,-6,-44,-18,-44xm2963,-741v40,-44,72,5,72,66r0,136r-29,0r0,-134v0,-29,-6,-44,-17,-44v-42,0,-21,125,-26,178r-29,0r0,-290r29,0r0,88xm2866,-533v-40,0,-58,-61,-57,-113v0,-75,19,-113,57,-113v38,0,57,38,57,113v0,75,-19,113,-57,113xm2700,-539r0,-289r30,0r0,246r78,0r0,43r-108,0xm3142,-243v-29,-10,-34,18,-35,49r0,121r-29,0r0,-214r28,0r0,15v11,-16,17,-23,36,-17r0,46xm2564,-532v-68,-2,-75,-224,1,-224v11,0,20,5,27,15r0,-88r28,0r0,290r-27,0r0,-12v-8,13,-18,19,-29,19xm2953,-180v0,-49,17,-117,58,-113v49,5,54,55,54,130r-81,0v0,66,43,77,52,15r28,0v-3,43,-18,77,-54,81v-39,4,-57,-59,-57,-113xm2473,-539r0,-289r28,0r0,289r-28,0xm2895,-251v-18,0,-26,31,-26,61r0,117r-29,0r0,-214r28,0r0,14v41,-46,73,0,73,64r0,136r-29,0r0,-134v0,-29,-6,-44,-17,-44xm2404,-533v-40,0,-57,-59,-57,-113v0,-75,19,-113,57,-113v38,0,57,38,57,113v0,75,-19,113,-57,113xm2831,-75v-28,14,-47,-2,-46,-44r0,-130r-15,0r0,-38r15,0r0,-56r29,0r0,56r17,0r0,38r-17,0r0,128v1,15,4,13,17,10r0,36xm2353,-709v-29,-10,-34,17,-35,49r0,121r-29,0r0,-214r28,0r0,15v11,-16,17,-23,36,-17r0,46xm2717,-251v-18,0,-26,33,-26,61r0,117r-29,0r0,-214r28,0r0,14v41,-46,73,0,73,64r0,136r-29,0r0,-134v0,-29,-6,-44,-17,-44xm2170,-682v4,-48,11,-75,50,-77v73,-4,38,121,50,186v1,0,5,-1,11,-3r0,35v-18,8,-34,4,-39,-15v-28,43,-77,25,-77,-42v0,-62,30,-63,73,-78v5,-17,0,-49,-18,-45v-13,0,-21,13,-22,39r-28,0xm2594,-67v-40,0,-58,-61,-57,-113v0,-75,19,-113,57,-113v38,0,57,38,57,113v0,75,-19,113,-57,113xm2120,-539r0,-132r-72,0r0,132r-30,0r0,-289r30,0r0,115r72,0r0,-115r30,0r0,289r-30,0xm2517,-249r0,176r-28,0r0,-176r-16,0r0,-37r16,0v-3,-44,2,-93,47,-78r0,41v-24,-12,-18,17,-19,37r19,0r0,37r-19,0xm2436,-73r-26,0r51,-289r26,0xm1916,-539r-12,-26v-32,58,-94,35,-94,-50v0,-32,11,-60,34,-85v-24,-40,-22,-130,26,-128v53,2,47,105,12,136r20,43v2,-9,3,-20,4,-32r28,0v-2,27,-6,53,-13,76r30,66r-35,0xm2367,-291v31,-1,40,34,40,77r0,141r-29,0r0,-148v0,-19,-5,-29,-14,-29v-15,0,-22,17,-22,50r0,127r-29,0r0,-146v0,-21,-4,-32,-13,-32v-16,0,-24,18,-24,53r0,125r-28,0r0,-214r28,0r0,13v17,-25,47,-22,59,7v9,-16,19,-24,32,-24xm1701,-753v34,1,42,38,42,83r0,134r-29,0r0,-132v0,-30,-6,-45,-17,-45v-41,0,-20,125,-25,177r-29,0r0,-288r29,0r0,88v8,-11,18,-17,29,-17xm2179,-67v-40,0,-58,-61,-57,-113v0,-75,19,-113,57,-113v38,0,57,38,57,113v0,75,-19,113,-57,113xm1538,-774r0,-49r29,0r0,49r-29,0xm1635,-538v-29,14,-48,-1,-47,-44r0,-128r-15,0r0,-38r15,0r0,-56r29,0r0,56r18,0r0,38r-18,0r0,126v1,15,4,13,18,10r0,36xm2120,-154v-3,47,-14,82,-51,87v-37,4,-53,-55,-53,-108v0,-78,18,-117,55,-117v37,0,47,39,49,85r-28,0v-2,-29,-9,-44,-21,-44v-17,0,-26,25,-26,75v0,82,42,98,47,22r28,0xm1538,-536r0,-212r29,0r0,212r-29,0xm1916,-73r0,-289r29,0r0,289r-29,0xm1480,-752v31,-1,40,34,40,77r0,139r-29,0r0,-147v0,-19,-5,-29,-14,-29v-15,0,-22,17,-22,50r0,126r-29,0r0,-145v0,-21,-4,-31,-12,-31v-16,0,-24,17,-24,52r0,124r-28,0r0,-212r28,0r0,13v16,-25,47,-22,58,6v9,-15,19,-23,32,-23xm1968,-73r0,-52r32,0r0,52r-32,0xm1847,-67v-40,0,-58,-61,-57,-113v0,-75,19,-113,57,-113v38,0,57,38,57,113v0,75,-19,113,-57,113xm1282,-529v-47,0,-68,-53,-65,-107r29,0v1,43,14,64,37,64v43,0,44,-70,8,-83v-50,-19,-63,-28,-69,-87v-10,-104,102,-118,117,-31v3,10,4,24,4,41r-29,0v6,-65,-63,-75,-63,-15v-9,31,53,47,59,53v26,15,38,36,38,75v0,60,-22,90,-66,90xm1678,-216v4,-48,11,-75,50,-77v73,-4,41,118,50,186v1,0,5,-1,11,-3r0,35v-18,10,-34,5,-39,-15v-28,42,-77,25,-77,-41v0,-63,30,-64,73,-79v5,-17,0,-49,-18,-45v-13,0,-21,13,-22,39r-28,0xm1528,-188v-19,-37,-4,-107,39,-104v34,2,46,33,47,73r-27,0v2,-40,-37,-48,-39,-11v-2,28,53,35,56,46v27,32,11,127,-36,116v-33,0,-50,-27,-52,-80r28,0v1,28,9,42,24,42v31,0,28,-45,-3,-55v-20,-6,-32,-17,-37,-27xm1630,-74r0,-52r32,0r0,52r-32,0xm1147,-559v-3,64,-7,103,-55,106v-31,2,-48,-29,-48,-70r28,0v1,21,8,32,21,32v17,0,26,-20,26,-60v-7,11,-17,16,-28,16v-34,0,-51,-34,-51,-103v0,-62,31,-152,80,-99r0,-11r27,0r0,189xm1516,-243v-29,-10,-35,19,-35,49r0,120r-28,0r0,-212r27,0r0,15v11,-17,18,-25,36,-17r0,45xm922,-642v0,-50,16,-116,57,-112v48,5,55,55,54,129r-81,0v-1,67,43,75,52,14r28,0v-4,42,-19,77,-54,81v-39,5,-56,-59,-56,-112xm1329,-180v0,-48,17,-116,57,-112v49,5,54,54,54,129r-80,0v0,66,42,75,51,14r28,0v-4,43,-18,77,-54,81v-39,5,-56,-59,-56,-112xm924,-705v-29,-10,-34,18,-35,49r0,120r-29,0r0,-212r28,0r0,15v11,-16,17,-23,36,-17r0,45xm1323,-184v0,56,-10,116,-53,116v-11,0,-21,-5,-28,-16r0,10r-26,0r0,-287r28,0r0,86v8,-11,17,-16,28,-16v36,0,52,57,51,107xm808,-729v-5,-34,-10,-58,-38,-58v-32,0,-48,37,-48,111v0,69,16,104,47,104v29,0,44,-40,42,-81r-47,0r0,-41r76,0r0,158r-22,0r-3,-24v-13,21,-29,31,-49,31v-51,0,-76,-80,-74,-149v2,-83,16,-141,77,-152v46,5,65,46,69,101r-30,0xm1159,-291v31,-1,40,34,40,77r0,140r-29,0r0,-147v0,-19,-5,-29,-14,-29v-15,0,-22,17,-22,50r0,126r-28,0r0,-145v0,-21,-4,-31,-13,-31v-15,0,-23,17,-23,52r0,124r-29,0r0,-212r28,0r0,12v17,-25,47,-22,58,7v9,-16,19,-24,32,-24xm526,-764v37,-3,33,-18,41,-53r24,0r0,281r-30,0r0,-194r-35,0r0,-34xm918,-180v0,-48,17,-116,57,-112v48,5,55,54,54,129r-81,0v-1,67,43,75,52,14r28,0v-4,42,-19,77,-54,81v-39,5,-56,-59,-56,-112xm461,-530v-37,0,-55,-47,-55,-142v0,-97,19,-145,57,-145v37,0,55,47,55,141v0,97,-19,146,-57,146xm865,-291v32,-1,41,35,41,77r0,140r-30,0r0,-147v0,-19,-5,-29,-14,-29v-14,0,-21,17,-21,50r0,126r-29,0r0,-145v0,-21,-4,-31,-13,-31v-15,0,-23,17,-23,52r0,124r-29,0r0,-212r29,0r0,12v15,-25,47,-22,57,7v9,-16,19,-24,32,-24xm334,-530v-37,0,-55,-47,-55,-142v0,-97,19,-145,57,-145v37,0,55,47,55,141v0,97,-19,146,-57,146xm700,-74r-26,0r50,-287r26,0xm272,-731v0,74,-67,98,-80,152r80,0r0,43r-112,0v5,-77,13,-92,56,-136v19,-19,26,-29,26,-59v0,-31,-8,-46,-25,-46v-15,0,-23,22,-24,67r-29,0v-2,-64,15,-107,55,-107v35,0,53,29,53,86xm641,-74r-26,0r50,-287r26,0xm576,-234r0,-52r32,0r0,52r-32,0xm161,-680v1,71,-34,150,-80,144v-107,-13,-113,-276,0,-287v58,10,80,70,80,143xm576,-74r0,-52r32,0r0,52r-32,0xm560,-180v-2,60,-7,112,-51,112v-11,0,-20,-5,-27,-14r0,87r-29,0r0,-291r29,0r0,11v8,-11,18,-17,29,-17v36,1,51,58,49,112xm445,-76v-28,14,-47,-2,-46,-44r0,-128r-15,0r0,-38r15,0r0,-56r29,0r0,56r17,0r0,38r-17,0r0,126v1,15,4,13,17,10r0,36xm390,-76v-28,14,-46,-1,-46,-44r0,-128r-15,0r0,-38r15,0r0,-56r28,0r0,56r18,0r0,38r-18,0r0,126v1,15,5,13,18,10r0,36xm280,-291v34,0,42,38,42,82r0,135r-29,0r0,-133v0,-29,-6,-44,-17,-44v-41,0,-20,125,-25,177r-28,0r0,-288r28,0r0,88v8,-11,18,-17,29,-17xm3249,-667v-1,-23,-8,-52,-25,-52v-15,0,-24,17,-27,52r52,0xm2866,-719v-19,0,-28,24,-28,73v0,49,9,73,28,73v19,0,28,-24,28,-73v0,-49,-9,-73,-28,-73xm3036,-200v-1,-24,-7,-52,-25,-52v-15,0,-24,17,-27,52r52,0xm2568,-717v-18,0,-27,24,-27,73v0,48,9,72,26,72v17,0,26,-25,26,-76v0,-46,-8,-69,-25,-69xm2404,-719v-19,0,-28,24,-28,73v0,49,9,73,28,73v18,0,27,-24,27,-73v0,-49,-9,-73,-27,-73xm2209,-571v28,-2,33,-42,30,-77r9,3v-11,17,-54,9,-54,44v0,20,5,30,15,30xm2594,-252v-19,0,-28,24,-28,72v0,49,9,73,28,73v19,0,28,-24,28,-73v0,-48,-9,-72,-28,-72xm1869,-791v-19,6,-13,46,-1,67v14,-15,20,-61,1,-67xm1859,-667v-25,20,-29,96,3,96v10,0,19,-9,27,-28xm2179,-252v-18,0,-27,24,-27,72v0,49,9,73,27,73v19,0,28,-24,28,-73v0,-48,-9,-72,-28,-72xm1847,-252v-18,0,-27,24,-27,72v0,49,9,73,27,73v19,0,28,-24,28,-73v0,-48,-9,-72,-28,-72xm1717,-105v28,-2,33,-42,30,-77r9,4v-12,15,-53,9,-53,44v0,19,5,29,14,29xm1094,-713v-17,0,-25,24,-25,73v0,45,8,67,24,67v17,0,26,-25,26,-74v0,-44,-8,-66,-25,-66xm1003,-662v1,-24,-8,-53,-25,-52v-15,0,-23,17,-26,52r51,0xm1411,-201v-1,-23,-7,-51,-25,-51v-15,0,-23,17,-26,51r51,0xm1269,-251v-18,0,-27,24,-27,71v0,48,9,72,27,72v17,0,25,-25,25,-74v0,-46,-8,-69,-25,-69xm1000,-201v-1,-23,-7,-51,-25,-51v-15,0,-24,17,-27,51r52,0xm436,-671v0,56,-2,88,26,101v17,0,26,-35,26,-105v0,-44,-3,-73,-10,-88v-4,-9,-9,-14,-16,-14v-17,0,-26,35,-26,106xm360,-675v0,-57,4,-89,-25,-102v-17,0,-26,35,-26,106v0,56,-2,88,26,101v17,0,25,-35,25,-105xm140,-680v0,-49,-23,-117,-59,-114v-37,-5,-61,62,-60,114v1,58,13,107,60,115v34,6,59,-63,59,-115xm506,-252v-16,0,-24,24,-24,72v0,48,8,72,24,72v17,0,25,-24,25,-72v0,-48,-8,-72,-25,-72xm123,-658v-1,33,-15,65,-40,63v-61,-3,-64,-167,-2,-172v26,-2,41,32,42,67r-23,0v-1,-23,-7,-35,-18,-35v-14,0,-21,18,-21,53v0,58,32,79,40,24r22,0","w":3396},"=":{"d":"19,-332v5,49,45,50,121,50v50,0,131,-4,242,-13v31,-3,46,-19,46,-50v1,-26,-24,-45,-50,-45v-85,1,-226,19,-313,10v-25,-2,-48,24,-46,48xm484,-233v0,-39,-54,-66,-81,-34v-28,33,-256,26,-344,16v-24,-3,-49,24,-48,48v0,29,28,48,83,55v16,2,55,3,116,3v183,0,274,-29,274,-88","w":489},"?":{"d":"278,-134v27,0,52,-25,52,-52v0,-29,-55,-52,-50,-81v15,-101,145,-217,147,-333v2,-87,-101,-159,-191,-159v-99,0,-219,103,-219,201v0,43,34,89,77,89v50,0,76,-79,19,-93v-6,-51,69,-101,115,-102v41,-1,107,36,103,75v-12,104,-146,216,-146,333v0,46,46,122,93,122xm384,12v0,-29,-33,-71,-62,-71v-38,0,-70,49,-41,80v-5,28,17,50,43,50v31,0,60,-28,60,-59","w":401},"@":{"d":"545,-17v-73,26,-177,100,-268,100v-110,0,-160,-101,-156,-224v44,85,144,72,214,10v12,31,58,56,99,56v76,1,113,-67,113,-149v0,-165,-90,-329,-243,-329v-170,0,-279,232,-279,417v0,174,89,314,252,314v70,0,327,-84,315,-147v1,-26,-22,-49,-47,-48xm317,-266v-1,31,-66,91,-100,89v-10,0,-15,-5,-15,-16v0,-25,66,-93,90,-89v11,2,15,13,25,16xm145,-288v25,-79,78,-166,160,-169v94,-3,148,126,148,232v0,72,-46,71,-44,11v1,-38,9,-75,-25,-88v8,-45,-47,-75,-90,-75v-54,0,-104,30,-149,89","w":554},"A":{"d":"591,6v23,2,47,-22,47,-45v0,-43,-43,-171,-97,-251v-74,-110,-142,-277,-296,-277v-183,0,-247,270,-207,481r18,117v0,26,19,52,45,52v51,0,62,-58,43,-96v-12,-53,-19,-108,-21,-166v97,-29,240,-107,343,-51v21,39,39,76,53,111v-45,45,34,122,72,125xm127,-283v8,-82,47,-188,119,-189v37,0,86,42,147,127v-77,-1,-156,20,-266,62","w":597,"k":{"T":72,"S":46}},"B":{"d":"509,-187v0,-121,-109,-175,-242,-166v36,-55,54,-100,54,-136v0,-57,-52,-99,-108,-98v-27,0,-59,9,-96,27v-57,-46,-116,57,-117,102v0,20,9,34,26,43v1,13,4,23,10,32v40,155,85,290,129,407v16,42,83,41,91,-4v113,-3,253,-95,253,-207xm117,-452v49,-28,77,-48,109,-36v0,25,-26,66,-81,141v-11,-36,-20,-71,-28,-105xm413,-187v0,61,-111,124,-182,111v-22,-61,-41,-119,-58,-173r126,-10v76,0,114,24,114,72","w":485,"k":{"T":72}},"C":{"d":"509,-119v-23,6,-119,75,-166,64v-125,5,-251,-123,-251,-248v0,-104,63,-162,167,-161v70,0,105,29,105,86v-1,25,20,51,45,50v33,0,50,-19,50,-56v2,-109,-88,-175,-200,-175v-156,0,-262,100,-262,256v0,175,170,343,344,343v66,0,216,-52,216,-111v0,-26,-22,-49,-48,-48","w":520},"D":{"d":"538,-160v0,-236,-285,-430,-528,-430v-26,0,-49,22,-48,47v0,31,22,47,67,49v-10,112,47,393,84,461v-12,10,-18,22,-18,37v0,42,58,63,174,63v153,0,269,-82,269,-227xm443,-160v0,117,-123,148,-245,126v4,-12,5,-22,2,-36v-47,-168,-77,-251,-76,-411v143,28,319,166,319,321","w":501,"k":{"A":-46}},"E":{"d":"144,-31r-2,-3xm517,-153v0,-25,-22,-47,-48,-47v-29,0,-104,97,-114,99v-61,48,-124,53,-161,-24v-13,-27,-24,-59,-31,-96v138,-9,302,-65,321,-181v8,-47,-71,-66,-91,-19v-26,59,-138,99,-226,104r-17,-12v-1,-25,-4,-64,-7,-115v59,-16,185,-38,186,-91v1,-25,-24,-47,-48,-47v-21,0,-246,73,-255,84v-44,22,-19,92,24,91v7,123,20,213,38,270v35,111,95,166,182,166v70,0,247,-115,247,-182","w":493},"F":{"d":"466,-340v-60,0,-267,54,-306,57v-14,-33,-21,-61,-21,-84v1,-90,180,-144,293,-131v26,3,46,-24,46,-49v0,-32,-28,-48,-84,-48v-155,0,-350,86,-350,227v0,27,5,57,16,88v-42,-10,-70,13,-70,46v0,49,48,53,114,51v37,67,100,152,115,226v12,56,94,44,94,-9v0,-33,-35,-109,-106,-228v58,-13,145,-35,262,-51v62,-8,51,-95,-3,-95","w":482},"G":{"d":"189,-547r2,-1xm601,-348v0,-30,-29,-55,-63,-45v-94,28,-196,57,-308,74v-62,10,-43,94,8,94v30,0,107,-16,232,-48v12,5,4,16,5,43v5,98,-74,184,-172,184v-111,0,-202,-92,-202,-202v0,-117,103,-242,220,-236v17,1,32,-2,32,15v-13,38,3,80,42,80v36,0,54,-27,54,-82v0,-68,-56,-108,-128,-108v-171,0,-315,164,-315,333v0,160,138,295,297,295v149,0,267,-131,267,-281v0,-16,0,-39,-3,-70v23,-5,34,-21,34,-46","w":603,"k":{"T":59}},"H":{"d":"629,-290v1,-35,-43,-61,-74,-39v-18,-62,-47,-145,-51,-211v-2,-30,-18,-46,-49,-46v-26,0,-46,24,-46,49v0,32,20,118,61,259v-93,23,-246,18,-344,-2v-26,-112,-25,-187,-12,-289v3,-24,-24,-49,-48,-47v-52,4,-58,73,-58,152v0,63,15,140,27,222v-1,9,2,18,8,27v21,85,47,194,75,262v18,44,91,37,91,-12v0,-8,-2,-17,-5,-28r2,4r-55,-191v113,16,249,18,345,-7v20,92,35,115,19,170v-1,25,22,48,48,48v36,0,54,-27,54,-82v0,-36,-11,-94,-33,-175v30,-21,45,-43,45,-64","w":621},"I":{"d":"149,44v25,0,51,-18,51,-44v0,-64,-73,-513,-93,-555v-13,-53,-95,-38,-93,13v0,3,0,7,1,13v35,167,59,297,71,392v4,32,8,79,19,140v5,28,21,41,44,41","w":205},"J":{"d":"483,-468v56,-13,42,-93,-11,-93v-34,0,-148,24,-183,21v-72,-7,-243,-45,-251,40v-5,57,137,65,240,56v80,24,133,143,133,254v0,89,-39,163,-122,163v-70,0,-165,-35,-183,-80v39,-33,5,-87,-46,-87v-37,0,-56,19,-56,57v0,126,151,205,287,205v134,0,215,-119,215,-259v0,-101,-29,-189,-88,-266v37,-5,59,-9,65,-11xm79,-191r-4,0r4,0","w":548,"k":{"u":33,"o":26}},"K":{"d":"721,-28v0,-26,-22,-49,-47,-48v-84,3,-390,-142,-440,-188r136,-124v53,-47,99,-89,141,-119v38,-27,18,-92,-26,-87v-62,8,-253,204,-327,270v-11,1,-20,6,-28,14v-15,-71,-35,-159,-57,-214v-19,-48,-94,-32,-92,17v1,17,21,65,26,87r63,271v38,138,76,207,115,207v35,1,60,-41,39,-74v-29,-46,-50,-108,-68,-182r5,-5v61,66,397,222,513,222v25,0,47,-22,47,-47","w":625,"k":{"T":65,"F":59}},"L":{"d":"592,-27v50,-19,44,-92,-8,-92v-137,35,-355,136,-435,-21v-41,-79,-42,-244,-46,-373v-1,-28,-16,-42,-47,-42v-53,0,-57,84,-55,173v0,11,4,21,11,29v7,121,24,210,53,267v94,186,323,135,527,59","w":535,"k":{"Y":138,"V":32,"T":118,"O":46}},"M":{"d":"672,15v14,57,103,42,94,-10v-69,-386,-198,-600,-337,-594v-118,5,-101,186,-106,317v-47,-47,-159,-242,-201,-288v-11,-13,-25,-19,-40,-19v-54,0,-74,107,-74,179v0,92,68,468,142,452v32,1,58,-35,43,-68v-65,-148,-92,-272,-90,-400v59,89,92,139,101,150v54,71,98,106,132,106v37,0,59,-24,75,-69v12,-35,5,-231,23,-263v150,65,192,318,238,507","w":723},"N":{"d":"480,-606v-36,0,-62,43,-38,76v62,87,90,187,90,296v0,71,-10,123,-30,156v-55,-19,-263,-386,-270,-387v-55,-75,-100,-113,-136,-113v-57,-1,-84,63,-84,126v0,98,69,398,97,472v19,51,101,38,93,-14v-22,-146,-102,-321,-94,-476v46,46,219,338,258,384v59,68,102,106,139,106v89,2,122,-146,122,-256v0,-96,-66,-370,-147,-370","w":636},"O":{"d":"627,-193v0,-180,-149,-394,-323,-386v-51,3,-223,52,-246,89v-33,32,-49,79,-49,140v0,161,150,360,286,388v186,39,332,-51,332,-231xm428,-430v55,49,100,141,104,237v5,127,-98,162,-217,138v-96,-20,-211,-182,-211,-296v0,-46,17,-77,51,-94v25,13,35,-13,77,-17v29,-2,103,16,100,41v-13,34,10,69,43,69v36,0,57,-39,53,-78","w":608,"k":{"X":33}},"P":{"d":"470,-449v0,-150,-290,-177,-382,-81v-37,39,-60,90,-63,159v-76,118,31,245,76,327v23,42,49,137,95,137v59,0,56,-67,25,-118v-36,-59,-47,-76,-73,-168v118,-24,322,-139,322,-256xm247,-491v34,0,130,14,127,39v6,62,-183,156,-248,167v-22,-113,9,-206,121,-206","w":448,"k":{"u":39,"o":72,"e":39}},"Q":{"d":"687,-213v0,-168,-198,-304,-362,-322v8,-36,-12,-60,-52,-60v-147,0,-271,190,-271,344v0,200,232,325,456,283v31,22,106,63,145,64v25,1,47,-22,47,-47v0,-40,-47,-49,-77,-61v76,-47,114,-114,114,-201xm268,-444v130,-5,323,108,323,231v0,68,-37,115,-112,141v-49,-41,-90,-89,-123,-144v-2,-25,-38,-71,-66,-71v-25,0,-49,22,-48,48v1,40,87,152,116,183v-124,-2,-262,-77,-262,-194v0,-93,61,-205,125,-235v2,22,23,42,47,41","w":666},"R":{"d":"225,-139v22,92,315,232,439,232v36,0,54,-16,54,-49v0,-29,-16,-44,-49,-46v-116,-7,-261,-77,-325,-143v127,-67,190,-147,190,-240v0,-106,-95,-217,-201,-214v-96,2,-179,64,-220,128v-14,-51,-31,-154,-80,-154v-26,-1,-48,22,-48,47v0,42,86,259,87,283v4,134,55,283,118,356v29,33,86,11,84,-31v0,-14,-16,-70,-49,-169xm333,-503v54,0,106,64,106,117v0,65,-63,125,-189,180v-23,10,-33,27,-30,51r-53,-157v-2,-97,71,-191,166,-191"},"S":{"d":"409,32r-1,2xm282,101v79,0,154,-74,154,-153v0,-51,-29,-102,-89,-150v-81,-65,-247,-140,-254,-253v-4,-73,146,-82,178,-34v8,5,17,99,59,87v33,0,50,-17,50,-52v2,-97,-92,-160,-193,-160v-100,0,-190,63,-190,159v0,64,30,124,90,180v17,16,72,56,165,121v59,41,89,76,89,105v0,25,-14,42,-43,52v7,-32,-18,-58,-46,-58v-35,0,-53,25,-53,76v-1,46,36,80,83,80","w":440,"k":{"t":46}},"T":{"d":"454,-617v-6,-2,-218,66,-221,63v-16,-39,-82,-33,-88,11v-45,9,-105,-10,-145,-11v-24,-1,-49,22,-48,47v0,41,49,61,147,61v20,0,41,-1,64,-3r63,248v35,135,57,210,65,226v20,42,94,23,89,-23v-5,-47,-95,-362,-122,-464v84,-16,154,-40,214,-64v47,-19,31,-93,-18,-91","w":466,"k":{"y":65,"w":65,"u":79,"r":72,"o":65,"i":59,"e":46,"a":52,"W":72,"O":39,"A":39}},"U":{"d":"56,-542v-26,-1,-48,23,-47,48v1,160,77,373,151,466v57,72,118,110,186,110v135,0,203,-98,203,-294v0,-46,-10,-157,-30,-332v-4,-31,-21,-46,-50,-46v-25,-1,-46,25,-46,49v0,64,31,268,31,331v0,112,-21,197,-112,197v-67,0,-124,-66,-172,-198v-33,-90,-55,-185,-66,-285v-3,-31,-19,-46,-48,-46","w":571},"V":{"d":"8,-606v-25,0,-48,21,-48,47v0,50,42,162,126,337v41,85,69,140,84,165v49,83,90,125,123,125v102,0,153,-121,153,-363v0,-72,-14,-244,-28,-285v-18,-52,-94,-36,-93,14v33,139,41,471,-23,535v-38,-26,-249,-467,-247,-527v1,-26,-21,-48,-47,-48","w":475},"W":{"d":"553,55v102,2,153,-120,153,-236v0,-148,-69,-358,-158,-407v-33,-19,-75,5,-73,40v0,15,7,30,22,40v68,45,114,208,114,329v0,47,-19,142,-55,139v-70,-6,-138,-123,-182,-176v-33,-40,-56,-62,-72,-62v-32,0,-59,29,-82,87v-5,12,-16,54,-35,127v-47,-65,-85,-242,-85,-357v1,-24,-22,-48,-47,-48v-26,0,-49,22,-48,48v3,187,61,457,202,485v58,-1,80,-146,98,-211v43,59,79,102,107,129v51,49,98,73,141,73","w":701},"X":{"d":"687,-12v49,3,66,-70,19,-91v-141,-64,-266,-147,-378,-238v26,-59,56,-126,83,-158v22,-7,33,-23,33,-47v1,-28,-25,-46,-52,-46v-26,0,-55,26,-86,78v-13,21,-31,58,-55,111r-158,-122v-4,-21,-26,-38,-51,-35v-49,-27,-94,52,-47,82v9,0,81,55,217,166v-71,172,-107,275,-107,309v-1,24,24,49,48,48v23,0,39,-13,46,-38v27,-89,57,-174,90,-256v72,59,317,232,398,237xm397,-497r-7,0r7,0","w":596,"k":{"Y":39}},"Y":{"d":"461,-144v0,-124,-40,-421,-127,-421v-16,0,-39,22,-68,66r-78,121v-33,44,-53,64,-78,63v-23,-54,8,-184,8,-245v0,-24,-24,-52,-48,-52v-32,0,-48,14,-48,43v0,36,-16,151,-16,188v0,107,38,161,114,161v95,0,153,-103,211,-196v23,74,35,155,35,243v0,111,-11,170,-35,173v-63,8,-42,96,9,95v100,-4,121,-111,121,-239","w":464},"Z":{"d":"614,-22v50,-17,35,-95,-15,-93v-27,1,-240,68,-284,58v-71,0,-115,-4,-132,-12v-8,-47,18,-89,62,-156v51,-76,174,-197,183,-283v11,-101,-168,-103,-279,-76v-67,16,-110,21,-128,23v-29,4,-44,21,-44,51v-1,26,25,44,51,44v75,2,223,-59,303,-34v-10,27,-51,70,-73,95v-114,140,-171,250,-171,331v0,100,94,112,228,112v89,0,187,-23,299,-60","w":563,"k":{"Y":65}},"`":{"d":"205,-472v-6,39,-49,44,-81,16v-31,-27,-108,-79,-111,-114v6,-46,76,-38,96,-3v13,24,105,80,96,101","w":340},"a":{"d":"361,-164v0,107,-86,186,-193,186v-68,0,-117,-39,-116,-104v1,-92,108,-147,203,-163v-34,-72,-131,-69,-219,-56v-23,3,-44,-20,-42,-42v3,-47,61,-51,132,-51v135,0,235,94,235,230xm277,-164v-54,8,-139,38,-141,82v0,13,11,20,32,20v65,1,108,-39,109,-102","w":362},"b":{"d":"366,-223v0,90,-100,252,-189,234v-15,33,-64,29,-77,-6v-20,-56,-16,-125,-38,-184r-24,-65v-23,-58,-80,-254,-81,-311v-1,-22,20,-41,42,-40v21,0,35,12,41,36v15,63,40,158,75,283v37,-74,82,-111,135,-111v65,0,116,95,116,164xm173,-73v55,15,108,-106,109,-152v0,-36,-12,-62,-35,-79v-42,-7,-87,128,-84,174v0,2,3,21,10,57","w":367},"c":{"d":"346,-116v0,85,-62,130,-147,130v-98,0,-168,-105,-168,-207v0,-100,78,-198,174,-198v51,0,100,33,100,84v0,22,-19,42,-41,42v-38,0,-54,-16,-59,-42v-53,-2,-91,60,-91,114v0,57,35,126,86,124v21,0,42,-8,61,-23v6,-31,3,-65,43,-65v22,0,42,19,42,41","w":337},"d":{"d":"423,31v12,29,-10,59,-38,59v-19,0,-40,-24,-62,-71v-1,-2,-14,-35,-39,-100v-21,67,-60,100,-118,100v-86,0,-147,-79,-147,-165v0,-114,66,-233,170,-234v-25,-106,-38,-176,-38,-211v0,-23,16,-47,40,-46v23,0,39,12,43,37v34,227,79,368,189,631xm102,-149v-1,45,24,85,64,85v44,8,45,-125,79,-124v-13,-36,-24,-72,-34,-107v-74,-17,-107,78,-109,146","w":370},"e":{"d":"366,-108v0,66,-74,123,-139,121v-78,-1,-144,-81,-170,-148v-28,16,-63,-7,-63,-37v0,-20,22,-54,43,-50v-5,-74,68,-183,134,-183v50,0,107,74,107,123v0,27,-18,51,-54,72v-7,4,-37,18,-91,42v13,34,57,93,94,97v44,4,72,-77,115,-77v16,0,24,13,24,40xm171,-318v-21,17,-36,37,-46,61v28,-13,50,-24,67,-33v-4,-11,-11,-21,-21,-28","w":322},"f":{"d":"357,-474v0,42,-53,56,-77,20v-36,-54,-36,-64,-97,-64v-72,0,-60,120,-46,187v72,-21,124,-32,156,-32v31,0,46,14,46,42v0,24,-13,38,-38,41v-56,9,-102,18,-138,29v1,1,18,39,52,112v27,58,40,92,40,102v1,41,-62,57,-80,16v-32,-71,-65,-137,-90,-201v-31,4,-60,-12,-61,-38v0,-23,11,-38,33,-46v-9,-37,-13,-72,-13,-106v0,-126,47,-189,140,-189v66,0,173,64,173,127","w":335,"k":{"l":-30}},"g":{"d":"21,-141v0,-105,91,-257,190,-257v34,0,56,16,66,47v21,-2,35,8,42,30v62,177,93,328,93,454v-1,155,-66,273,-166,334v-29,18,-65,-5,-64,-35v12,-35,93,-101,109,-137v57,-128,40,-247,-1,-411v-26,59,-98,130,-173,131v-64,0,-96,-52,-96,-156xm197,-307v-72,32,-115,142,-79,238v56,7,117,-97,111,-159v-21,-11,-28,-35,-16,-57v-8,-5,-13,-13,-16,-22","w":381},"h":{"d":"123,-245v31,-70,50,-129,117,-129v75,0,122,73,131,218v3,43,49,156,-31,149v-55,-5,-50,-145,-60,-210v-7,-49,-21,-74,-40,-74v-4,0,-16,23,-36,70v-20,48,-30,68,-54,100v9,38,25,94,25,133v1,23,-22,41,-45,38v-55,-7,-42,-76,-55,-133r-105,-462v-14,-57,-24,-116,31,-116v21,0,33,11,40,33v17,50,77,365,82,383","w":401},"i":{"d":"134,-463v0,53,-105,87,-109,17v-2,-25,43,-59,67,-59v22,0,42,20,42,42xm90,-38v0,-78,-39,-239,-44,-298v-5,-65,72,-71,83,-19v29,134,46,232,46,296v0,48,-15,72,-46,72v-26,0,-39,-17,-39,-51","w":191},"j":{"d":"97,-450v13,55,-44,89,-75,50v-20,-2,-38,-20,-38,-42v-1,-25,21,-43,46,-41v26,-23,69,1,67,33xm25,519v-29,16,-64,-6,-63,-36v0,-11,16,-29,49,-55v89,-68,139,-148,139,-287v0,-117,-36,-249,-108,-394v-40,-16,-30,-108,18,-98v43,9,44,32,73,94v67,145,101,277,101,396v-1,182,-85,312,-209,380","w":212},"k":{"d":"299,-377v37,-1,57,49,26,75v-33,27,-79,74,-141,135v55,48,115,82,180,93v54,9,43,84,-5,83v-57,0,-125,-31,-205,-92v8,44,12,72,12,84v1,22,-19,43,-41,42v-22,0,-38,-11,-42,-35r-67,-445v-19,-21,-8,-67,-10,-103v-1,-21,19,-42,41,-42v25,0,40,13,43,39v8,69,21,173,40,312v87,-97,144,-146,169,-146","w":373},"l":{"d":"156,10v0,22,-19,43,-42,42v-30,0,-45,-22,-45,-67v0,-174,-92,-419,-113,-601v-2,-24,19,-43,42,-42v21,0,34,12,41,35v15,50,43,225,52,266v24,106,65,256,65,367","w":153},"m":{"d":"505,-72v0,22,-19,42,-41,42v-55,0,-51,-125,-56,-190v-5,26,-20,182,-35,215v-10,43,-73,43,-81,-2v-13,-79,-28,-294,-74,-294v-13,0,-37,69,-72,208v7,32,11,49,11,52v2,46,-67,58,-81,11v-24,-81,-43,-186,-43,-319v-1,-22,20,-44,42,-42v42,5,42,28,45,89v25,-55,57,-83,97,-83v53,0,91,38,116,115v13,-54,22,-100,64,-103v78,-6,108,194,108,301","w":502},"n":{"d":"372,-86v30,25,3,79,-33,77v-60,-3,-60,-136,-73,-200v-9,-47,-25,-70,-46,-70v-35,0,-53,50,-53,151v0,64,21,173,-40,175v-23,0,-38,-11,-43,-33v-42,-167,-58,-217,-65,-356v-2,-47,72,-59,81,-10v3,7,5,45,7,69v29,-92,158,-106,208,-28v30,47,43,152,57,225","w":372},"o":{"d":"228,24v-96,0,-191,-80,-191,-177v0,-69,21,-126,64,-172v13,-36,134,-86,172,-40v55,25,93,100,93,180v0,139,-46,209,-138,209xm235,-61v36,0,48,-73,47,-121v0,-43,-12,-77,-37,-102v-12,1,-23,-2,-32,-11v-55,0,-92,79,-92,142v0,56,55,92,114,92","w":375},"p":{"d":"418,-184v0,118,-88,201,-206,194v33,88,47,107,52,186v2,22,-20,43,-42,42v-29,0,-44,-20,-44,-60v0,-45,-45,-140,-63,-188v-59,-21,-88,-43,-88,-67v0,-23,24,-46,47,-41v-20,-72,-41,-105,-47,-185v-2,-22,19,-42,41,-41v25,0,40,20,47,59v31,-52,71,-78,122,-78v95,0,181,84,181,179xm334,-184v0,-49,-47,-98,-96,-96v-44,1,-77,71,-66,124v23,15,19,53,4,72r2,6v87,21,156,-21,156,-106","w":413},"q":{"d":"486,323v0,22,-19,44,-42,42v-57,-5,-40,-65,-52,-129v-9,-48,-31,-155,-72,-318v-25,50,-86,94,-155,95v-129,3,-183,-151,-120,-266v20,-37,42,-67,72,-87v26,-27,109,-54,159,-27v16,-31,72,-26,76,12v13,19,17,37,9,59v6,69,125,489,125,619xm164,-70v74,0,110,-88,108,-173v0,-33,-16,-49,-49,-49v-67,0,-121,83,-121,152v0,38,24,70,62,70","w":417},"r":{"d":"301,-320v1,22,-19,45,-41,42v-37,-5,-113,-30,-106,33v-5,47,58,193,58,239v0,42,-61,59,-80,19v-54,-115,-62,-152,-108,-332v-20,-25,-14,-97,30,-91v39,5,39,23,51,73v25,-23,59,-35,100,-35v44,-1,97,16,96,52","w":277},"s":{"d":"156,-57v19,0,40,21,39,40v13,0,32,-2,55,-7v0,-41,-177,-139,-178,-146v-36,-31,-54,-64,-54,-99v-2,-107,147,-139,250,-101v34,-24,67,14,67,50v0,32,-15,48,-45,48v-12,-1,-92,-35,-113,-30v-50,0,-75,12,-75,36v0,38,166,122,173,138v40,36,60,72,60,109v0,80,-138,112,-199,64v-32,-25,-37,-102,20,-102","w":319},"t":{"d":"324,-52v52,16,35,92,-17,82v-139,-27,-183,-134,-197,-308v-50,5,-123,3,-116,-42v6,-37,16,-37,72,-36v14,0,27,-1,40,-4v-12,-49,-34,-123,-35,-173v0,-19,23,-37,42,-36v27,0,46,29,59,88v5,24,10,64,15,121v56,-1,137,-4,133,47v5,46,-78,42,-126,37v11,108,36,176,75,203v19,7,36,15,55,21","w":337,"k":{"t":70}},"u":{"d":"322,-313v27,151,31,331,-117,331v-126,0,-167,-177,-167,-337v0,-47,77,-58,82,-8v24,32,30,52,5,77v7,123,34,184,80,184v79,0,35,-177,33,-244v-1,-22,20,-42,42,-41v24,0,38,13,42,38","w":349},"v":{"d":"250,-313v-22,-26,-1,-68,32,-68v39,0,59,15,59,46r-75,326v-9,37,-56,41,-76,11r-88,-129v-33,-49,-59,-94,-79,-133v-19,-11,-29,-36,-29,-75v-1,-43,63,-58,81,-15v26,62,72,136,132,225v9,-42,23,-105,43,-188","w":335},"w":{"d":"484,-208v0,59,-42,197,-93,194v-43,-3,-80,-71,-90,-117v-25,97,-67,145,-125,145v-93,0,-140,-81,-140,-242v0,-46,1,-73,2,-80v5,-34,20,-51,43,-51v52,0,39,81,39,131v0,106,19,159,56,159v15,0,27,-22,39,-65v16,-57,27,-180,80,-183v55,-3,75,122,91,180v9,-25,14,-49,14,-72v0,-36,-41,-98,-43,-118v-2,-22,19,-42,41,-42v50,0,86,106,86,161","w":489},"x":{"d":"384,-374v22,-3,43,20,42,42v0,17,-40,69,-121,154v67,89,100,148,100,178v1,42,-62,59,-80,17v-14,-32,-42,-76,-79,-135v-82,81,-132,121,-150,121v-24,0,-42,-20,-42,-44v0,-34,36,-86,70,-76r68,-65v-47,-51,-98,-89,-155,-106v-47,-14,-35,-83,11,-82v60,2,163,84,202,129v32,-36,99,-129,134,-133","w":398},"y":{"d":"-82,350v-26,1,-46,-20,-46,-46v0,-38,64,-41,99,-52v101,-31,176,-107,226,-222v-48,-63,-211,-314,-211,-381v0,-45,65,-53,81,-8v43,119,64,136,162,290v23,-87,14,-181,14,-278v0,-29,12,-43,36,-43v27,0,47,20,50,61v28,345,-99,661,-411,679","w":374},"z":{"d":"370,-322v6,11,-198,284,-185,268v44,10,158,-54,177,-61v22,-1,42,20,42,42v0,57,-161,103,-225,103v-71,0,-106,-16,-106,-49v0,-24,59,-114,177,-269v-55,-4,-137,-6,-246,-6v-22,1,-43,-20,-42,-42v-8,-34,63,-56,113,-41v160,1,157,-2,259,14v24,5,36,18,36,41","w":396},"\u00a0":{"w":186}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Greg's Hand computer font v1.0 ©2001 Greg Smith & Harold Lohner 
 * HLohner@aol.com  http://members.aol.com/fontner
 */
Cufon.registerFont({"w":589,"face":{"font-family":"Gregs","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"24","cap-height":"44","bbox":"-128 -830.117 3355 524.375","underline-thickness":"20","underline-position":"-123","unicode-range":"U+0020-U+007A"},"glyphs":{" ":{"w":186},"!":{"d":"94,-246v-32,39,18,100,55,101v23,1,48,-22,47,-46v-3,-124,-67,-311,-102,-425v-24,-34,-90,-7,-85,35v-2,14,88,327,85,335xm217,10v0,-30,-45,-84,-76,-84v-45,0,-67,61,-27,87v-5,27,21,51,47,51v30,0,56,-24,56,-54","w":202},"\"":{"d":"150,-357v0,55,-9,82,-48,84v-32,1,-51,-27,-54,-67v-2,-29,-11,-134,-24,-167v-1,-25,22,-47,47,-46v25,0,42,15,53,44v17,47,26,97,26,152xm343,-334v0,-63,-34,-222,-85,-218v-39,3,-61,43,-45,85v2,18,32,116,32,152v0,23,22,43,46,43v32,0,52,-31,52,-62","w":414},"#":{"d":"566,-412v-8,-77,-98,-43,-180,-31v-26,-106,-58,-159,-96,-159v-25,-1,-48,24,-47,48v-1,6,51,129,50,132v-25,5,-47,10,-65,13r-25,-182v-5,-27,-21,-41,-48,-41v-91,0,-26,158,-22,232v-17,2,-71,-17,-88,-17v-25,0,-48,23,-47,48v0,45,50,66,150,64v8,51,17,104,27,159v-51,0,-47,-5,-120,-5v-23,-1,-47,21,-47,45v0,38,40,57,120,57r65,-2v10,51,29,126,49,229v11,56,96,42,94,-10v-1,-47,-34,-167,-47,-224v26,-3,51,-6,74,-10v15,75,25,140,30,193v2,22,22,45,45,45v33,0,50,-17,50,-50v0,-35,-11,-106,-33,-211v59,-20,88,-43,88,-70v1,-26,-22,-49,-47,-48v-12,-3,-61,25,-61,24v-12,-61,-22,-116,-31,-166r29,-6v44,29,137,-16,133,-57xm271,-150v-11,-58,-20,-113,-28,-165v19,-3,41,-8,68,-14r32,170v-21,3,-45,6,-72,9","w":538},"$":{"d":"354,-306v53,1,87,-45,86,-98v0,-72,-66,-123,-199,-154v-19,-69,-22,-211,-86,-211v-26,-1,-54,23,-48,48r34,150v-81,-3,-142,38,-141,100v2,84,131,192,190,250v0,67,0,111,1,132v-20,-2,-31,-18,-51,-18v-25,0,-49,23,-47,47v4,49,46,60,109,70v17,87,45,130,84,130v26,1,48,-22,48,-47v0,-17,-29,-60,-30,-67v62,-20,93,-55,93,-106v0,-45,-38,-106,-113,-181v-1,-13,-3,-37,-7,-74v21,19,46,29,77,29xm195,-695r0,-1r0,1xm199,-703v0,-1,0,-1,1,-2v-1,0,-1,1,-1,2xm201,-711v1,-1,1,-2,1,-5v0,1,0,2,-1,5xm203,-720v-1,-5,-1,-8,-1,-10v0,2,0,5,1,10xm114,-697r-2,-4xm120,-689v-1,-1,-3,-3,-4,-5v1,2,3,4,4,5xm122,-688r5,5v-2,-1,-4,-3,-5,-5xm148,-675r-1,0r1,0xm141,-676r-3,-1xm185,-76v1,3,2,5,2,8v0,-2,-1,-5,-2,-8xm96,-468v11,-8,40,-10,64,-7v7,37,12,73,17,110v-32,-34,-71,-71,-81,-103xm288,-70r-2,-45v15,24,26,35,2,45xm269,-395r-9,-59v46,16,75,31,85,50v-31,-20,-60,-17,-76,9","w":428},"%":{"d":"114,-213v73,0,133,-82,133,-157v0,-72,-64,-126,-136,-126v-63,0,-129,86,-129,151v0,65,67,132,132,132xm106,-308v-41,-8,-34,-60,2,-85v13,12,26,18,43,15v3,21,-24,74,-45,70xm140,0v-28,33,1,82,40,82v50,0,106,-96,169,-287v37,-111,74,-192,117,-241v29,-33,-1,-82,-40,-82v-49,0,-105,96,-168,287v-37,115,-57,169,-118,241xm650,-11v0,-70,-94,-148,-172,-155v-63,-6,-117,61,-117,124v0,75,92,157,166,157v68,0,123,-59,123,-126xm555,-19v0,19,-17,40,-36,39v-33,-2,-92,-53,-47,-85v31,7,83,12,83,46","w":592},"&":{"d":"575,-319v0,-45,-69,-73,-91,-29v-14,11,-88,16,-163,15v-9,-47,-18,-102,-22,-163v-2,-25,-25,-50,-50,-49v-30,0,-45,15,-45,46v0,33,7,87,21,164v-106,-4,-160,-6,-162,-6v-42,0,-63,15,-63,44v0,45,31,52,85,51v0,0,41,2,158,6v7,30,17,74,29,133v-23,44,24,109,62,109v66,0,43,-76,29,-143r-23,-97v63,0,108,-3,137,-8v65,-11,98,-36,98,-73xm483,-344r-2,4","w":575},"'":{"d":"155,-334v0,-63,-34,-218,-85,-218v-29,0,-51,27,-50,56v2,43,38,123,38,181v0,23,23,43,46,43v32,0,51,-31,51,-62","w":230},"(":{"d":"344,183v0,-32,-34,-61,-68,-48v-56,-26,-143,-314,-143,-406v0,-94,27,-170,80,-228v31,8,54,-16,54,-42v1,-32,-30,-66,-62,-65v-19,0,-41,14,-67,42v-106,116,-126,286,-67,476v27,86,54,158,88,216v41,69,82,104,124,104v30,0,61,-18,61,-49xm173,-539r-1,-2v0,1,0,1,1,2","w":293},")":{"d":"179,55v0,27,25,53,52,52v41,0,62,-57,62,-172v-1,-203,-112,-409,-237,-497v-32,-22,-76,-4,-75,33v0,15,7,29,21,41v110,89,192,233,196,414v1,25,-19,108,-19,129","w":331},"*":{"d":"478,-91v51,2,58,-73,12,-91v-45,-17,-88,-50,-132,-89v79,-10,119,-31,119,-63v-1,-37,-39,-64,-79,-46v-14,6,-24,8,-27,9v17,-28,54,-75,55,-108v1,-27,-25,-54,-52,-52v-41,2,-91,115,-116,159v-43,-49,-138,-178,-183,-184v-23,-3,-44,21,-43,44v2,31,75,105,101,136v-6,0,-70,-20,-85,-20v-23,0,-44,21,-43,44v0,27,25,48,76,62v23,6,60,12,112,18v-2,9,-92,75,-92,100v0,26,25,51,52,51v35,0,76,-33,125,-100v40,40,150,128,200,130xm334,-495v0,0,-2,5,-3,4","w":503},"+":{"d":"589,-319v0,-45,-69,-73,-91,-29v-14,11,-88,16,-163,15v-9,-47,-18,-102,-22,-163v-2,-25,-25,-50,-50,-49v-30,0,-45,15,-45,46v0,33,7,87,21,164v-106,-4,-160,-6,-162,-6v-42,0,-63,15,-63,44v0,45,31,52,85,51v0,0,41,2,158,6v7,30,17,74,29,133v-23,44,24,109,62,109v66,0,43,-76,29,-143r-23,-97v63,0,108,-3,137,-8v65,-11,98,-36,98,-73xm497,-344r-2,4"},",":{"d":"199,58v0,-56,-41,-197,-90,-192v-94,10,-5,130,-7,179v6,29,-38,76,-39,95v-1,28,22,54,51,54v49,0,85,-83,85,-136","w":199},"-":{"d":"299,-196v0,79,-174,36,-236,53v-38,0,-57,-15,-57,-44v0,-26,25,-42,74,-47v6,-1,44,-1,114,-1v70,0,105,13,105,39","w":305},"\u2010":{"d":"299,-196v0,79,-174,36,-236,53v-38,0,-57,-15,-57,-44v0,-26,25,-42,74,-47v6,-1,44,-1,114,-1v70,0,105,13,105,39","w":305},".":{"d":"181,-9v0,-32,-43,-81,-75,-81v-41,0,-60,55,-27,80v-4,27,27,50,51,50v28,1,51,-21,51,-49","w":166},"\/":{"d":"145,95v-16,47,-89,28,-83,-21v36,-78,83,-460,124,-699v9,-50,83,-40,83,7v0,66,-27,170,-38,237v-25,154,-45,356,-86,476","w":241},"0":{"d":"138,-533r2,-2xm362,35v133,0,271,-114,268,-243v-3,-109,-69,-206,-141,-257v-14,-62,-118,-114,-199,-114v-139,0,-231,87,-231,226v0,191,123,388,303,388xm534,-205v0,78,-90,146,-170,146v-125,0,-213,-160,-210,-295v2,-75,25,-109,88,-125v0,30,16,45,47,46v122,0,245,107,245,228","w":604,"k":{"7":39}},"1":{"d":"181,34v40,0,65,-48,47,-85v-15,-128,-54,-296,-118,-505v-7,-22,-22,-33,-47,-33v-50,-1,-57,71,-32,107v55,195,85,299,106,477v3,26,19,39,44,39","w":226},"2":{"d":"561,-69v-13,0,-43,16,-57,16v-48,0,-199,-19,-244,-19v96,-168,150,-266,90,-431v-24,-68,-53,-79,-125,-76v-149,6,-207,113,-242,260v-1,24,22,46,46,45v20,0,38,-19,55,-56v28,-60,55,-162,132,-162v43,0,61,60,61,110v0,129,-114,268,-157,366v-1,25,22,50,46,46v93,-14,241,11,334,12v50,1,107,-21,107,-65v1,-25,-21,-46,-46,-46","w":526,"k":{"9":100,"8":30,"7":80,"5":50,"4":100}},"3":{"d":"528,-216v-8,-123,-113,-168,-240,-199v24,-33,36,-63,36,-90v1,-67,-71,-102,-143,-102v-92,0,-188,79,-188,168v0,41,16,62,48,62v36,-1,84,-51,56,-90v25,-43,83,-56,131,-33v3,27,-77,85,-77,115v0,23,25,40,73,55v74,22,205,36,209,117v4,68,-133,178,-199,172v-41,-14,-88,0,-88,43v0,35,28,52,85,52v120,0,304,-150,297,-270","w":495,"k":{"7":59,"4":-52}},"4":{"d":"563,-203v1,-22,-22,-45,-44,-44v11,0,-24,3,-105,8v-21,-107,-51,-198,-88,-274v52,-43,3,-115,-55,-79v-38,-14,-71,19,-64,55v-40,47,-203,237,-218,297v-3,82,228,106,345,100v8,63,9,183,66,183v24,0,49,-25,48,-49v0,-15,-6,-61,-18,-139v55,-4,82,-6,83,-6v33,-7,50,-25,50,-52xm342,-548r0,-8v1,3,1,5,0,8xm279,-595r-1,0r1,0xm106,-259v27,-37,75,-98,146,-185v27,60,48,130,65,209v-84,1,-163,-5,-211,-24","w":529,"k":{"7":79,"5":39}},"5":{"d":"545,-161v0,-170,-241,-292,-414,-207v-7,-24,-16,-60,-28,-108r251,-10v35,-6,53,-22,53,-48v1,-26,-20,-48,-46,-47v-88,0,-194,-3,-314,12v-72,9,-49,88,-27,167r34,121v5,25,20,37,45,37v26,-6,102,-65,153,-55v84,-2,200,62,198,141v-2,69,-118,98,-205,100v-24,1,-48,23,-48,49v0,26,21,47,47,47v141,0,301,-72,301,-199","w":512,"k":{"7":46}},"6":{"d":"457,-183v-3,-81,-79,-115,-171,-115v-62,0,-125,20,-189,61v-8,-92,9,-176,42,-238v30,0,54,-23,50,-58v-4,-34,-19,-60,-54,-64v-78,-8,-135,230,-135,326v0,48,5,89,14,124v-22,52,7,124,59,115v38,45,84,67,137,67v99,0,251,-117,247,-218xm362,-180v0,47,-103,119,-149,119v-39,0,-71,-26,-94,-77v28,-29,111,-65,164,-65v53,0,79,8,79,23","w":430,"k":{"7":118}},"7":{"d":"300,-576r-186,-4v-83,-1,-113,0,-122,54v11,68,93,38,177,43v69,4,111,2,126,2v35,0,69,-1,101,-4v-27,155,-47,336,-122,436v-24,31,0,77,37,76v41,0,79,-57,113,-171v33,-111,81,-263,81,-400v0,-85,-142,-31,-205,-32","w":507},"8":{"d":"309,38v55,0,101,-38,100,-93v-1,-54,-67,-132,-97,-176v76,-112,114,-194,114,-246v0,-33,-20,-69,-48,-75v-34,-27,-93,-41,-177,-41v-124,0,-186,35,-186,106v0,82,127,196,180,261v-35,57,-53,101,-53,132v0,76,87,132,167,132xm312,-57v-22,1,-75,-21,-75,-41v0,-10,6,-26,18,-47v15,20,34,49,57,88xm111,-486v36,-17,175,-13,200,5v1,12,6,22,15,30v-11,35,-35,81,-74,140v-37,-43,-130,-137,-141,-175","w":421},"9":{"d":"408,27v25,0,46,-27,45,-51v0,-187,-29,-352,-88,-497v-11,-29,-47,-37,-72,-18v-105,-65,-287,-42,-287,97v0,80,55,135,135,134v50,0,101,-20,154,-59v5,4,12,6,23,6v26,90,32,230,40,345v2,29,19,43,50,43xm145,-403v-29,0,-44,-14,-44,-43v0,-22,18,-33,54,-33v34,0,66,9,97,27v-37,33,-73,49,-107,49","w":471},":":{"d":"231,-9v0,-32,-43,-81,-75,-81v-41,0,-60,55,-27,80v-4,27,27,50,51,50v28,1,51,-21,51,-49xm181,-322v0,-32,-43,-81,-75,-81v-41,0,-60,55,-27,80v-4,27,27,50,51,50v28,1,51,-21,51,-49","w":216},";":{"d":"230,58v0,-56,-41,-197,-90,-192v-94,10,-5,130,-7,179v6,29,-38,76,-39,95v-1,28,22,54,51,54v49,0,85,-83,85,-136xm181,-322v0,-32,-43,-81,-75,-81v-41,0,-60,55,-27,80v-4,27,27,50,51,50v28,1,51,-21,51,-49","w":231},"<":{"d":"3355,-709v-29,-10,-34,17,-35,49r0,121r-29,0r0,-214r28,0r0,15v11,-16,17,-23,36,-17r0,46xm3166,-646v0,-49,17,-117,58,-113v48,5,55,55,54,130r-81,0v-1,67,42,76,52,15r28,0v-4,42,-19,77,-54,81v-39,5,-57,-59,-57,-113xm3107,-717v-17,0,-25,32,-25,61r0,117r-29,0r0,-214r28,0r0,14v41,-46,73,0,73,64r0,136r-29,0r0,-134v0,-29,-6,-44,-18,-44xm2963,-741v40,-44,72,5,72,66r0,136r-29,0r0,-134v0,-29,-6,-44,-17,-44v-42,0,-21,125,-26,178r-29,0r0,-290r29,0r0,88xm2866,-533v-40,0,-58,-61,-57,-113v0,-75,19,-113,57,-113v38,0,57,38,57,113v0,75,-19,113,-57,113xm2700,-539r0,-289r30,0r0,246r78,0r0,43r-108,0xm3142,-243v-29,-10,-34,18,-35,49r0,121r-29,0r0,-214r28,0r0,15v11,-16,17,-23,36,-17r0,46xm2564,-532v-68,-2,-75,-224,1,-224v11,0,20,5,27,15r0,-88r28,0r0,290r-27,0r0,-12v-8,13,-18,19,-29,19xm2953,-180v0,-49,17,-117,58,-113v49,5,54,55,54,130r-81,0v0,66,43,77,52,15r28,0v-3,43,-18,77,-54,81v-39,4,-57,-59,-57,-113xm2473,-539r0,-289r28,0r0,289r-28,0xm2895,-251v-18,0,-26,31,-26,61r0,117r-29,0r0,-214r28,0r0,14v41,-46,73,0,73,64r0,136r-29,0r0,-134v0,-29,-6,-44,-17,-44xm2404,-533v-40,0,-57,-59,-57,-113v0,-75,19,-113,57,-113v38,0,57,38,57,113v0,75,-19,113,-57,113xm2831,-75v-28,14,-47,-2,-46,-44r0,-130r-15,0r0,-38r15,0r0,-56r29,0r0,56r17,0r0,38r-17,0r0,128v1,15,4,13,17,10r0,36xm2353,-709v-29,-10,-34,17,-35,49r0,121r-29,0r0,-214r28,0r0,15v11,-16,17,-23,36,-17r0,46xm2717,-251v-18,0,-26,33,-26,61r0,117r-29,0r0,-214r28,0r0,14v41,-46,73,0,73,64r0,136r-29,0r0,-134v0,-29,-6,-44,-17,-44xm2170,-682v4,-48,11,-75,50,-77v73,-4,38,121,50,186v1,0,5,-1,11,-3r0,35v-18,8,-34,4,-39,-15v-28,43,-77,25,-77,-42v0,-62,30,-63,73,-78v5,-17,0,-49,-18,-45v-13,0,-21,13,-22,39r-28,0xm2594,-67v-40,0,-58,-61,-57,-113v0,-75,19,-113,57,-113v38,0,57,38,57,113v0,75,-19,113,-57,113xm2120,-539r0,-132r-72,0r0,132r-30,0r0,-289r30,0r0,115r72,0r0,-115r30,0r0,289r-30,0xm2517,-249r0,176r-28,0r0,-176r-16,0r0,-37r16,0v-3,-44,2,-93,47,-78r0,41v-24,-12,-18,17,-19,37r19,0r0,37r-19,0xm2436,-73r-26,0r51,-289r26,0xm1916,-539r-12,-26v-32,58,-94,35,-94,-50v0,-32,11,-60,34,-85v-24,-40,-22,-130,26,-128v53,2,47,105,12,136r20,43v2,-9,3,-20,4,-32r28,0v-2,27,-6,53,-13,76r30,66r-35,0xm2367,-291v31,-1,40,34,40,77r0,141r-29,0r0,-148v0,-19,-5,-29,-14,-29v-15,0,-22,17,-22,50r0,127r-29,0r0,-146v0,-21,-4,-32,-13,-32v-16,0,-24,18,-24,53r0,125r-28,0r0,-214r28,0r0,13v17,-25,47,-22,59,7v9,-16,19,-24,32,-24xm1701,-753v34,1,42,38,42,83r0,134r-29,0r0,-132v0,-30,-6,-45,-17,-45v-41,0,-20,125,-25,177r-29,0r0,-288r29,0r0,88v8,-11,18,-17,29,-17xm2179,-67v-40,0,-58,-61,-57,-113v0,-75,19,-113,57,-113v38,0,57,38,57,113v0,75,-19,113,-57,113xm1538,-774r0,-49r29,0r0,49r-29,0xm1635,-538v-29,14,-48,-1,-47,-44r0,-128r-15,0r0,-38r15,0r0,-56r29,0r0,56r18,0r0,38r-18,0r0,126v1,15,4,13,18,10r0,36xm2120,-154v-3,47,-14,82,-51,87v-37,4,-53,-55,-53,-108v0,-78,18,-117,55,-117v37,0,47,39,49,85r-28,0v-2,-29,-9,-44,-21,-44v-17,0,-26,25,-26,75v0,82,42,98,47,22r28,0xm1538,-536r0,-212r29,0r0,212r-29,0xm1916,-73r0,-289r29,0r0,289r-29,0xm1480,-752v31,-1,40,34,40,77r0,139r-29,0r0,-147v0,-19,-5,-29,-14,-29v-15,0,-22,17,-22,50r0,126r-29,0r0,-145v0,-21,-4,-31,-12,-31v-16,0,-24,17,-24,52r0,124r-28,0r0,-212r28,0r0,13v16,-25,47,-22,58,6v9,-15,19,-23,32,-23xm1968,-73r0,-52r32,0r0,52r-32,0xm1847,-67v-40,0,-58,-61,-57,-113v0,-75,19,-113,57,-113v38,0,57,38,57,113v0,75,-19,113,-57,113xm1282,-529v-47,0,-68,-53,-65,-107r29,0v1,43,14,64,37,64v43,0,44,-70,8,-83v-50,-19,-63,-28,-69,-87v-10,-104,102,-118,117,-31v3,10,4,24,4,41r-29,0v6,-65,-63,-75,-63,-15v-9,31,53,47,59,53v26,15,38,36,38,75v0,60,-22,90,-66,90xm1678,-216v4,-48,11,-75,50,-77v73,-4,41,118,50,186v1,0,5,-1,11,-3r0,35v-18,10,-34,5,-39,-15v-28,42,-77,25,-77,-41v0,-63,30,-64,73,-79v5,-17,0,-49,-18,-45v-13,0,-21,13,-22,39r-28,0xm1528,-188v-19,-37,-4,-107,39,-104v34,2,46,33,47,73r-27,0v2,-40,-37,-48,-39,-11v-2,28,53,35,56,46v27,32,11,127,-36,116v-33,0,-50,-27,-52,-80r28,0v1,28,9,42,24,42v31,0,28,-45,-3,-55v-20,-6,-32,-17,-37,-27xm1630,-74r0,-52r32,0r0,52r-32,0xm1147,-559v-3,64,-7,103,-55,106v-31,2,-48,-29,-48,-70r28,0v1,21,8,32,21,32v17,0,26,-20,26,-60v-7,11,-17,16,-28,16v-34,0,-51,-34,-51,-103v0,-62,31,-152,80,-99r0,-11r27,0r0,189xm1516,-243v-29,-10,-35,19,-35,49r0,120r-28,0r0,-212r27,0r0,15v11,-17,18,-25,36,-17r0,45xm922,-642v0,-50,16,-116,57,-112v48,5,55,55,54,129r-81,0v-1,67,43,75,52,14r28,0v-4,42,-19,77,-54,81v-39,5,-56,-59,-56,-112xm1329,-180v0,-48,17,-116,57,-112v49,5,54,54,54,129r-80,0v0,66,42,75,51,14r28,0v-4,43,-18,77,-54,81v-39,5,-56,-59,-56,-112xm924,-705v-29,-10,-34,18,-35,49r0,120r-29,0r0,-212r28,0r0,15v11,-16,17,-23,36,-17r0,45xm1323,-184v0,56,-10,116,-53,116v-11,0,-21,-5,-28,-16r0,10r-26,0r0,-287r28,0r0,86v8,-11,17,-16,28,-16v36,0,52,57,51,107xm808,-729v-5,-34,-10,-58,-38,-58v-32,0,-48,37,-48,111v0,69,16,104,47,104v29,0,44,-40,42,-81r-47,0r0,-41r76,0r0,158r-22,0r-3,-24v-13,21,-29,31,-49,31v-51,0,-76,-80,-74,-149v2,-83,16,-141,77,-152v46,5,65,46,69,101r-30,0xm1159,-291v31,-1,40,34,40,77r0,140r-29,0r0,-147v0,-19,-5,-29,-14,-29v-15,0,-22,17,-22,50r0,126r-28,0r0,-145v0,-21,-4,-31,-13,-31v-15,0,-23,17,-23,52r0,124r-29,0r0,-212r28,0r0,12v17,-25,47,-22,58,7v9,-16,19,-24,32,-24xm526,-764v37,-3,33,-18,41,-53r24,0r0,281r-30,0r0,-194r-35,0r0,-34xm918,-180v0,-48,17,-116,57,-112v48,5,55,54,54,129r-81,0v-1,67,43,75,52,14r28,0v-4,42,-19,77,-54,81v-39,5,-56,-59,-56,-112xm461,-530v-37,0,-55,-47,-55,-142v0,-97,19,-145,57,-145v37,0,55,47,55,141v0,97,-19,146,-57,146xm865,-291v32,-1,41,35,41,77r0,140r-30,0r0,-147v0,-19,-5,-29,-14,-29v-14,0,-21,17,-21,50r0,126r-29,0r0,-145v0,-21,-4,-31,-13,-31v-15,0,-23,17,-23,52r0,124r-29,0r0,-212r29,0r0,12v15,-25,47,-22,57,7v9,-16,19,-24,32,-24xm334,-530v-37,0,-55,-47,-55,-142v0,-97,19,-145,57,-145v37,0,55,47,55,141v0,97,-19,146,-57,146xm700,-74r-26,0r50,-287r26,0xm272,-731v0,74,-67,98,-80,152r80,0r0,43r-112,0v5,-77,13,-92,56,-136v19,-19,26,-29,26,-59v0,-31,-8,-46,-25,-46v-15,0,-23,22,-24,67r-29,0v-2,-64,15,-107,55,-107v35,0,53,29,53,86xm641,-74r-26,0r50,-287r26,0xm576,-234r0,-52r32,0r0,52r-32,0xm161,-680v1,71,-34,150,-80,144v-107,-13,-113,-276,0,-287v58,10,80,70,80,143xm576,-74r0,-52r32,0r0,52r-32,0xm560,-180v-2,60,-7,112,-51,112v-11,0,-20,-5,-27,-14r0,87r-29,0r0,-291r29,0r0,11v8,-11,18,-17,29,-17v36,1,51,58,49,112xm445,-76v-28,14,-47,-2,-46,-44r0,-128r-15,0r0,-38r15,0r0,-56r29,0r0,56r17,0r0,38r-17,0r0,126v1,15,4,13,17,10r0,36xm390,-76v-28,14,-46,-1,-46,-44r0,-128r-15,0r0,-38r15,0r0,-56r28,0r0,56r18,0r0,38r-18,0r0,126v1,15,5,13,18,10r0,36xm280,-291v34,0,42,38,42,82r0,135r-29,0r0,-133v0,-29,-6,-44,-17,-44v-41,0,-20,125,-25,177r-28,0r0,-288r28,0r0,88v8,-11,18,-17,29,-17xm3249,-667v-1,-23,-8,-52,-25,-52v-15,0,-24,17,-27,52r52,0xm2866,-719v-19,0,-28,24,-28,73v0,49,9,73,28,73v19,0,28,-24,28,-73v0,-49,-9,-73,-28,-73xm3036,-200v-1,-24,-7,-52,-25,-52v-15,0,-24,17,-27,52r52,0xm2568,-717v-18,0,-27,24,-27,73v0,48,9,72,26,72v17,0,26,-25,26,-76v0,-46,-8,-69,-25,-69xm2404,-719v-19,0,-28,24,-28,73v0,49,9,73,28,73v18,0,27,-24,27,-73v0,-49,-9,-73,-27,-73xm2209,-571v28,-2,33,-42,30,-77r9,3v-11,17,-54,9,-54,44v0,20,5,30,15,30xm2594,-252v-19,0,-28,24,-28,72v0,49,9,73,28,73v19,0,28,-24,28,-73v0,-48,-9,-72,-28,-72xm1869,-791v-19,6,-13,46,-1,67v14,-15,20,-61,1,-67xm1859,-667v-25,20,-29,96,3,96v10,0,19,-9,27,-28xm2179,-252v-18,0,-27,24,-27,72v0,49,9,73,27,73v19,0,28,-24,28,-73v0,-48,-9,-72,-28,-72xm1847,-252v-18,0,-27,24,-27,72v0,49,9,73,27,73v19,0,28,-24,28,-73v0,-48,-9,-72,-28,-72xm1717,-105v28,-2,33,-42,30,-77r9,4v-12,15,-53,9,-53,44v0,19,5,29,14,29xm1094,-713v-17,0,-25,24,-25,73v0,45,8,67,24,67v17,0,26,-25,26,-74v0,-44,-8,-66,-25,-66xm1003,-662v1,-24,-8,-53,-25,-52v-15,0,-23,17,-26,52r51,0xm1411,-201v-1,-23,-7,-51,-25,-51v-15,0,-23,17,-26,51r51,0xm1269,-251v-18,0,-27,24,-27,71v0,48,9,72,27,72v17,0,25,-25,25,-74v0,-46,-8,-69,-25,-69xm1000,-201v-1,-23,-7,-51,-25,-51v-15,0,-24,17,-27,51r52,0xm436,-671v0,56,-2,88,26,101v17,0,26,-35,26,-105v0,-44,-3,-73,-10,-88v-4,-9,-9,-14,-16,-14v-17,0,-26,35,-26,106xm360,-675v0,-57,4,-89,-25,-102v-17,0,-26,35,-26,106v0,56,-2,88,26,101v17,0,25,-35,25,-105xm140,-680v0,-49,-23,-117,-59,-114v-37,-5,-61,62,-60,114v1,58,13,107,60,115v34,6,59,-63,59,-115xm506,-252v-16,0,-24,24,-24,72v0,48,8,72,24,72v17,0,25,-24,25,-72v0,-48,-8,-72,-25,-72xm123,-658v-1,33,-15,65,-40,63v-61,-3,-64,-167,-2,-172v26,-2,41,32,42,67r-23,0v-1,-23,-7,-35,-18,-35v-14,0,-21,18,-21,53v0,58,32,79,40,24r22,0","w":3396},"=":{"d":"19,-332v5,49,45,50,121,50v50,0,131,-4,242,-13v31,-3,46,-19,46,-50v1,-26,-24,-45,-50,-45v-85,1,-226,19,-313,10v-25,-2,-48,24,-46,48xm484,-233v0,-39,-54,-66,-81,-34v-28,33,-256,26,-344,16v-24,-3,-49,24,-48,48v0,29,28,48,83,55v16,2,55,3,116,3v183,0,274,-29,274,-88","w":489},"?":{"d":"278,-134v27,0,52,-25,52,-52v0,-29,-55,-52,-50,-81v15,-101,145,-217,147,-333v2,-87,-101,-159,-191,-159v-99,0,-219,103,-219,201v0,43,34,89,77,89v50,0,76,-79,19,-93v-6,-51,69,-101,115,-102v41,-1,107,36,103,75v-12,104,-146,216,-146,333v0,46,46,122,93,122xm384,12v0,-29,-33,-71,-62,-71v-38,0,-70,49,-41,80v-5,28,17,50,43,50v31,0,60,-28,60,-59","w":401},"@":{"d":"545,-17v-73,26,-177,100,-268,100v-110,0,-160,-101,-156,-224v44,85,144,72,214,10v12,31,58,56,99,56v76,1,113,-67,113,-149v0,-165,-90,-329,-243,-329v-170,0,-279,232,-279,417v0,174,89,314,252,314v70,0,327,-84,315,-147v1,-26,-22,-49,-47,-48xm317,-266v-1,31,-66,91,-100,89v-10,0,-15,-5,-15,-16v0,-25,66,-93,90,-89v11,2,15,13,25,16xm145,-288v25,-79,78,-166,160,-169v94,-3,148,126,148,232v0,72,-46,71,-44,11v1,-38,9,-75,-25,-88v8,-45,-47,-75,-90,-75v-54,0,-104,30,-149,89","w":554},"A":{"d":"591,6v23,2,47,-22,47,-45v0,-43,-43,-171,-97,-251v-74,-110,-142,-277,-296,-277v-183,0,-247,270,-207,481r18,117v0,26,19,52,45,52v51,0,62,-58,43,-96v-12,-53,-19,-108,-21,-166v97,-29,240,-107,343,-51v21,39,39,76,53,111v-45,45,34,122,72,125xm127,-283v8,-82,47,-188,119,-189v37,0,86,42,147,127v-77,-1,-156,20,-266,62","w":597,"k":{"T":72,"S":46}},"B":{"d":"509,-187v0,-121,-109,-175,-242,-166v36,-55,54,-100,54,-136v0,-57,-52,-99,-108,-98v-27,0,-59,9,-96,27v-57,-46,-116,57,-117,102v0,20,9,34,26,43v1,13,4,23,10,32v40,155,85,290,129,407v16,42,83,41,91,-4v113,-3,253,-95,253,-207xm117,-452v49,-28,77,-48,109,-36v0,25,-26,66,-81,141v-11,-36,-20,-71,-28,-105xm413,-187v0,61,-111,124,-182,111v-22,-61,-41,-119,-58,-173r126,-10v76,0,114,24,114,72","w":485,"k":{"T":72}},"C":{"d":"509,-119v-23,6,-119,75,-166,64v-125,5,-251,-123,-251,-248v0,-104,63,-162,167,-161v70,0,105,29,105,86v-1,25,20,51,45,50v33,0,50,-19,50,-56v2,-109,-88,-175,-200,-175v-156,0,-262,100,-262,256v0,175,170,343,344,343v66,0,216,-52,216,-111v0,-26,-22,-49,-48,-48","w":520},"D":{"d":"538,-160v0,-236,-285,-430,-528,-430v-26,0,-49,22,-48,47v0,31,22,47,67,49v-10,112,47,393,84,461v-12,10,-18,22,-18,37v0,42,58,63,174,63v153,0,269,-82,269,-227xm443,-160v0,117,-123,148,-245,126v4,-12,5,-22,2,-36v-47,-168,-77,-251,-76,-411v143,28,319,166,319,321","w":501,"k":{"A":-46}},"E":{"d":"144,-31r-2,-3xm517,-153v0,-25,-22,-47,-48,-47v-29,0,-104,97,-114,99v-61,48,-124,53,-161,-24v-13,-27,-24,-59,-31,-96v138,-9,302,-65,321,-181v8,-47,-71,-66,-91,-19v-26,59,-138,99,-226,104r-17,-12v-1,-25,-4,-64,-7,-115v59,-16,185,-38,186,-91v1,-25,-24,-47,-48,-47v-21,0,-246,73,-255,84v-44,22,-19,92,24,91v7,123,20,213,38,270v35,111,95,166,182,166v70,0,247,-115,247,-182","w":493},"F":{"d":"466,-340v-60,0,-267,54,-306,57v-14,-33,-21,-61,-21,-84v1,-90,180,-144,293,-131v26,3,46,-24,46,-49v0,-32,-28,-48,-84,-48v-155,0,-350,86,-350,227v0,27,5,57,16,88v-42,-10,-70,13,-70,46v0,49,48,53,114,51v37,67,100,152,115,226v12,56,94,44,94,-9v0,-33,-35,-109,-106,-228v58,-13,145,-35,262,-51v62,-8,51,-95,-3,-95","w":482},"G":{"d":"189,-547r2,-1xm601,-348v0,-30,-29,-55,-63,-45v-94,28,-196,57,-308,74v-62,10,-43,94,8,94v30,0,107,-16,232,-48v12,5,4,16,5,43v5,98,-74,184,-172,184v-111,0,-202,-92,-202,-202v0,-117,103,-242,220,-236v17,1,32,-2,32,15v-13,38,3,80,42,80v36,0,54,-27,54,-82v0,-68,-56,-108,-128,-108v-171,0,-315,164,-315,333v0,160,138,295,297,295v149,0,267,-131,267,-281v0,-16,0,-39,-3,-70v23,-5,34,-21,34,-46","w":603,"k":{"T":59}},"H":{"d":"629,-290v1,-35,-43,-61,-74,-39v-18,-62,-47,-145,-51,-211v-2,-30,-18,-46,-49,-46v-26,0,-46,24,-46,49v0,32,20,118,61,259v-93,23,-246,18,-344,-2v-26,-112,-25,-187,-12,-289v3,-24,-24,-49,-48,-47v-52,4,-58,73,-58,152v0,63,15,140,27,222v-1,9,2,18,8,27v21,85,47,194,75,262v18,44,91,37,91,-12v0,-8,-2,-17,-5,-28r2,4r-55,-191v113,16,249,18,345,-7v20,92,35,115,19,170v-1,25,22,48,48,48v36,0,54,-27,54,-82v0,-36,-11,-94,-33,-175v30,-21,45,-43,45,-64","w":621},"I":{"d":"149,44v25,0,51,-18,51,-44v0,-64,-73,-513,-93,-555v-13,-53,-95,-38,-93,13v0,3,0,7,1,13v35,167,59,297,71,392v4,32,8,79,19,140v5,28,21,41,44,41","w":205},"J":{"d":"483,-468v56,-13,42,-93,-11,-93v-34,0,-148,24,-183,21v-72,-7,-243,-45,-251,40v-5,57,137,65,240,56v80,24,133,143,133,254v0,89,-39,163,-122,163v-70,0,-165,-35,-183,-80v39,-33,5,-87,-46,-87v-37,0,-56,19,-56,57v0,126,151,205,287,205v134,0,215,-119,215,-259v0,-101,-29,-189,-88,-266v37,-5,59,-9,65,-11xm79,-191r-4,0r4,0","w":548,"k":{"u":33,"o":26}},"K":{"d":"721,-28v0,-26,-22,-49,-47,-48v-84,3,-390,-142,-440,-188r136,-124v53,-47,99,-89,141,-119v38,-27,18,-92,-26,-87v-62,8,-253,204,-327,270v-11,1,-20,6,-28,14v-15,-71,-35,-159,-57,-214v-19,-48,-94,-32,-92,17v1,17,21,65,26,87r63,271v38,138,76,207,115,207v35,1,60,-41,39,-74v-29,-46,-50,-108,-68,-182r5,-5v61,66,397,222,513,222v25,0,47,-22,47,-47","w":625,"k":{"T":65,"F":59}},"L":{"d":"592,-27v50,-19,44,-92,-8,-92v-137,35,-355,136,-435,-21v-41,-79,-42,-244,-46,-373v-1,-28,-16,-42,-47,-42v-53,0,-57,84,-55,173v0,11,4,21,11,29v7,121,24,210,53,267v94,186,323,135,527,59","w":535,"k":{"Y":138,"V":32,"T":118,"O":46}},"M":{"d":"672,15v14,57,103,42,94,-10v-69,-386,-198,-600,-337,-594v-118,5,-101,186,-106,317v-47,-47,-159,-242,-201,-288v-11,-13,-25,-19,-40,-19v-54,0,-74,107,-74,179v0,92,68,468,142,452v32,1,58,-35,43,-68v-65,-148,-92,-272,-90,-400v59,89,92,139,101,150v54,71,98,106,132,106v37,0,59,-24,75,-69v12,-35,5,-231,23,-263v150,65,192,318,238,507","w":723},"N":{"d":"480,-606v-36,0,-62,43,-38,76v62,87,90,187,90,296v0,71,-10,123,-30,156v-55,-19,-263,-386,-270,-387v-55,-75,-100,-113,-136,-113v-57,-1,-84,63,-84,126v0,98,69,398,97,472v19,51,101,38,93,-14v-22,-146,-102,-321,-94,-476v46,46,219,338,258,384v59,68,102,106,139,106v89,2,122,-146,122,-256v0,-96,-66,-370,-147,-370","w":636},"O":{"d":"627,-193v0,-180,-149,-394,-323,-386v-51,3,-223,52,-246,89v-33,32,-49,79,-49,140v0,161,150,360,286,388v186,39,332,-51,332,-231xm428,-430v55,49,100,141,104,237v5,127,-98,162,-217,138v-96,-20,-211,-182,-211,-296v0,-46,17,-77,51,-94v25,13,35,-13,77,-17v29,-2,103,16,100,41v-13,34,10,69,43,69v36,0,57,-39,53,-78","w":608,"k":{"X":33}},"P":{"d":"470,-449v0,-150,-290,-177,-382,-81v-37,39,-60,90,-63,159v-76,118,31,245,76,327v23,42,49,137,95,137v59,0,56,-67,25,-118v-36,-59,-47,-76,-73,-168v118,-24,322,-139,322,-256xm247,-491v34,0,130,14,127,39v6,62,-183,156,-248,167v-22,-113,9,-206,121,-206","w":448,"k":{"u":39,"o":72,"e":39}},"Q":{"d":"687,-213v0,-168,-198,-304,-362,-322v8,-36,-12,-60,-52,-60v-147,0,-271,190,-271,344v0,200,232,325,456,283v31,22,106,63,145,64v25,1,47,-22,47,-47v0,-40,-47,-49,-77,-61v76,-47,114,-114,114,-201xm268,-444v130,-5,323,108,323,231v0,68,-37,115,-112,141v-49,-41,-90,-89,-123,-144v-2,-25,-38,-71,-66,-71v-25,0,-49,22,-48,48v1,40,87,152,116,183v-124,-2,-262,-77,-262,-194v0,-93,61,-205,125,-235v2,22,23,42,47,41","w":666},"R":{"d":"225,-139v22,92,315,232,439,232v36,0,54,-16,54,-49v0,-29,-16,-44,-49,-46v-116,-7,-261,-77,-325,-143v127,-67,190,-147,190,-240v0,-106,-95,-217,-201,-214v-96,2,-179,64,-220,128v-14,-51,-31,-154,-80,-154v-26,-1,-48,22,-48,47v0,42,86,259,87,283v4,134,55,283,118,356v29,33,86,11,84,-31v0,-14,-16,-70,-49,-169xm333,-503v54,0,106,64,106,117v0,65,-63,125,-189,180v-23,10,-33,27,-30,51r-53,-157v-2,-97,71,-191,166,-191"},"S":{"d":"409,32r-1,2xm282,101v79,0,154,-74,154,-153v0,-51,-29,-102,-89,-150v-81,-65,-247,-140,-254,-253v-4,-73,146,-82,178,-34v8,5,17,99,59,87v33,0,50,-17,50,-52v2,-97,-92,-160,-193,-160v-100,0,-190,63,-190,159v0,64,30,124,90,180v17,16,72,56,165,121v59,41,89,76,89,105v0,25,-14,42,-43,52v7,-32,-18,-58,-46,-58v-35,0,-53,25,-53,76v-1,46,36,80,83,80","w":440,"k":{"t":46}},"T":{"d":"454,-617v-6,-2,-218,66,-221,63v-16,-39,-82,-33,-88,11v-45,9,-105,-10,-145,-11v-24,-1,-49,22,-48,47v0,41,49,61,147,61v20,0,41,-1,64,-3r63,248v35,135,57,210,65,226v20,42,94,23,89,-23v-5,-47,-95,-362,-122,-464v84,-16,154,-40,214,-64v47,-19,31,-93,-18,-91","w":466,"k":{"y":65,"w":65,"u":79,"r":72,"o":65,"i":59,"e":46,"a":52,"W":72,"O":39,"A":39}},"U":{"d":"56,-542v-26,-1,-48,23,-47,48v1,160,77,373,151,466v57,72,118,110,186,110v135,0,203,-98,203,-294v0,-46,-10,-157,-30,-332v-4,-31,-21,-46,-50,-46v-25,-1,-46,25,-46,49v0,64,31,268,31,331v0,112,-21,197,-112,197v-67,0,-124,-66,-172,-198v-33,-90,-55,-185,-66,-285v-3,-31,-19,-46,-48,-46","w":571},"V":{"d":"8,-606v-25,0,-48,21,-48,47v0,50,42,162,126,337v41,85,69,140,84,165v49,83,90,125,123,125v102,0,153,-121,153,-363v0,-72,-14,-244,-28,-285v-18,-52,-94,-36,-93,14v33,139,41,471,-23,535v-38,-26,-249,-467,-247,-527v1,-26,-21,-48,-47,-48","w":475},"W":{"d":"553,55v102,2,153,-120,153,-236v0,-148,-69,-358,-158,-407v-33,-19,-75,5,-73,40v0,15,7,30,22,40v68,45,114,208,114,329v0,47,-19,142,-55,139v-70,-6,-138,-123,-182,-176v-33,-40,-56,-62,-72,-62v-32,0,-59,29,-82,87v-5,12,-16,54,-35,127v-47,-65,-85,-242,-85,-357v1,-24,-22,-48,-47,-48v-26,0,-49,22,-48,48v3,187,61,457,202,485v58,-1,80,-146,98,-211v43,59,79,102,107,129v51,49,98,73,141,73","w":701},"X":{"d":"687,-12v49,3,66,-70,19,-91v-141,-64,-266,-147,-378,-238v26,-59,56,-126,83,-158v22,-7,33,-23,33,-47v1,-28,-25,-46,-52,-46v-26,0,-55,26,-86,78v-13,21,-31,58,-55,111r-158,-122v-4,-21,-26,-38,-51,-35v-49,-27,-94,52,-47,82v9,0,81,55,217,166v-71,172,-107,275,-107,309v-1,24,24,49,48,48v23,0,39,-13,46,-38v27,-89,57,-174,90,-256v72,59,317,232,398,237xm397,-497r-7,0r7,0","w":596,"k":{"Y":39}},"Y":{"d":"461,-144v0,-124,-40,-421,-127,-421v-16,0,-39,22,-68,66r-78,121v-33,44,-53,64,-78,63v-23,-54,8,-184,8,-245v0,-24,-24,-52,-48,-52v-32,0,-48,14,-48,43v0,36,-16,151,-16,188v0,107,38,161,114,161v95,0,153,-103,211,-196v23,74,35,155,35,243v0,111,-11,170,-35,173v-63,8,-42,96,9,95v100,-4,121,-111,121,-239","w":464},"Z":{"d":"614,-22v50,-17,35,-95,-15,-93v-27,1,-240,68,-284,58v-71,0,-115,-4,-132,-12v-8,-47,18,-89,62,-156v51,-76,174,-197,183,-283v11,-101,-168,-103,-279,-76v-67,16,-110,21,-128,23v-29,4,-44,21,-44,51v-1,26,25,44,51,44v75,2,223,-59,303,-34v-10,27,-51,70,-73,95v-114,140,-171,250,-171,331v0,100,94,112,228,112v89,0,187,-23,299,-60","w":563,"k":{"Y":65}},"`":{"d":"205,-472v-6,39,-49,44,-81,16v-31,-27,-108,-79,-111,-114v6,-46,76,-38,96,-3v13,24,105,80,96,101","w":340},"a":{"d":"361,-164v0,107,-86,186,-193,186v-68,0,-117,-39,-116,-104v1,-92,108,-147,203,-163v-34,-72,-131,-69,-219,-56v-23,3,-44,-20,-42,-42v3,-47,61,-51,132,-51v135,0,235,94,235,230xm277,-164v-54,8,-139,38,-141,82v0,13,11,20,32,20v65,1,108,-39,109,-102","w":362},"b":{"d":"366,-223v0,90,-100,252,-189,234v-15,33,-64,29,-77,-6v-20,-56,-16,-125,-38,-184r-24,-65v-23,-58,-80,-254,-81,-311v-1,-22,20,-41,42,-40v21,0,35,12,41,36v15,63,40,158,75,283v37,-74,82,-111,135,-111v65,0,116,95,116,164xm173,-73v55,15,108,-106,109,-152v0,-36,-12,-62,-35,-79v-42,-7,-87,128,-84,174v0,2,3,21,10,57","w":367},"c":{"d":"346,-116v0,85,-62,130,-147,130v-98,0,-168,-105,-168,-207v0,-100,78,-198,174,-198v51,0,100,33,100,84v0,22,-19,42,-41,42v-38,0,-54,-16,-59,-42v-53,-2,-91,60,-91,114v0,57,35,126,86,124v21,0,42,-8,61,-23v6,-31,3,-65,43,-65v22,0,42,19,42,41","w":337},"d":{"d":"423,31v12,29,-10,59,-38,59v-19,0,-40,-24,-62,-71v-1,-2,-14,-35,-39,-100v-21,67,-60,100,-118,100v-86,0,-147,-79,-147,-165v0,-114,66,-233,170,-234v-25,-106,-38,-176,-38,-211v0,-23,16,-47,40,-46v23,0,39,12,43,37v34,227,79,368,189,631xm102,-149v-1,45,24,85,64,85v44,8,45,-125,79,-124v-13,-36,-24,-72,-34,-107v-74,-17,-107,78,-109,146","w":370},"e":{"d":"366,-108v0,66,-74,123,-139,121v-78,-1,-144,-81,-170,-148v-28,16,-63,-7,-63,-37v0,-20,22,-54,43,-50v-5,-74,68,-183,134,-183v50,0,107,74,107,123v0,27,-18,51,-54,72v-7,4,-37,18,-91,42v13,34,57,93,94,97v44,4,72,-77,115,-77v16,0,24,13,24,40xm171,-318v-21,17,-36,37,-46,61v28,-13,50,-24,67,-33v-4,-11,-11,-21,-21,-28","w":322},"f":{"d":"357,-474v0,42,-53,56,-77,20v-36,-54,-36,-64,-97,-64v-72,0,-60,120,-46,187v72,-21,124,-32,156,-32v31,0,46,14,46,42v0,24,-13,38,-38,41v-56,9,-102,18,-138,29v1,1,18,39,52,112v27,58,40,92,40,102v1,41,-62,57,-80,16v-32,-71,-65,-137,-90,-201v-31,4,-60,-12,-61,-38v0,-23,11,-38,33,-46v-9,-37,-13,-72,-13,-106v0,-126,47,-189,140,-189v66,0,173,64,173,127","w":335,"k":{"l":-30}},"g":{"d":"21,-141v0,-105,91,-257,190,-257v34,0,56,16,66,47v21,-2,35,8,42,30v62,177,93,328,93,454v-1,155,-66,273,-166,334v-29,18,-65,-5,-64,-35v12,-35,93,-101,109,-137v57,-128,40,-247,-1,-411v-26,59,-98,130,-173,131v-64,0,-96,-52,-96,-156xm197,-307v-72,32,-115,142,-79,238v56,7,117,-97,111,-159v-21,-11,-28,-35,-16,-57v-8,-5,-13,-13,-16,-22","w":381},"h":{"d":"123,-245v31,-70,50,-129,117,-129v75,0,122,73,131,218v3,43,49,156,-31,149v-55,-5,-50,-145,-60,-210v-7,-49,-21,-74,-40,-74v-4,0,-16,23,-36,70v-20,48,-30,68,-54,100v9,38,25,94,25,133v1,23,-22,41,-45,38v-55,-7,-42,-76,-55,-133r-105,-462v-14,-57,-24,-116,31,-116v21,0,33,11,40,33v17,50,77,365,82,383","w":401},"i":{"d":"134,-463v0,53,-105,87,-109,17v-2,-25,43,-59,67,-59v22,0,42,20,42,42xm90,-38v0,-78,-39,-239,-44,-298v-5,-65,72,-71,83,-19v29,134,46,232,46,296v0,48,-15,72,-46,72v-26,0,-39,-17,-39,-51","w":191},"j":{"d":"97,-450v13,55,-44,89,-75,50v-20,-2,-38,-20,-38,-42v-1,-25,21,-43,46,-41v26,-23,69,1,67,33xm25,519v-29,16,-64,-6,-63,-36v0,-11,16,-29,49,-55v89,-68,139,-148,139,-287v0,-117,-36,-249,-108,-394v-40,-16,-30,-108,18,-98v43,9,44,32,73,94v67,145,101,277,101,396v-1,182,-85,312,-209,380","w":212},"k":{"d":"299,-377v37,-1,57,49,26,75v-33,27,-79,74,-141,135v55,48,115,82,180,93v54,9,43,84,-5,83v-57,0,-125,-31,-205,-92v8,44,12,72,12,84v1,22,-19,43,-41,42v-22,0,-38,-11,-42,-35r-67,-445v-19,-21,-8,-67,-10,-103v-1,-21,19,-42,41,-42v25,0,40,13,43,39v8,69,21,173,40,312v87,-97,144,-146,169,-146","w":373},"l":{"d":"156,10v0,22,-19,43,-42,42v-30,0,-45,-22,-45,-67v0,-174,-92,-419,-113,-601v-2,-24,19,-43,42,-42v21,0,34,12,41,35v15,50,43,225,52,266v24,106,65,256,65,367","w":153},"m":{"d":"505,-72v0,22,-19,42,-41,42v-55,0,-51,-125,-56,-190v-5,26,-20,182,-35,215v-10,43,-73,43,-81,-2v-13,-79,-28,-294,-74,-294v-13,0,-37,69,-72,208v7,32,11,49,11,52v2,46,-67,58,-81,11v-24,-81,-43,-186,-43,-319v-1,-22,20,-44,42,-42v42,5,42,28,45,89v25,-55,57,-83,97,-83v53,0,91,38,116,115v13,-54,22,-100,64,-103v78,-6,108,194,108,301","w":502},"n":{"d":"372,-86v30,25,3,79,-33,77v-60,-3,-60,-136,-73,-200v-9,-47,-25,-70,-46,-70v-35,0,-53,50,-53,151v0,64,21,173,-40,175v-23,0,-38,-11,-43,-33v-42,-167,-58,-217,-65,-356v-2,-47,72,-59,81,-10v3,7,5,45,7,69v29,-92,158,-106,208,-28v30,47,43,152,57,225","w":372},"o":{"d":"228,24v-96,0,-191,-80,-191,-177v0,-69,21,-126,64,-172v13,-36,134,-86,172,-40v55,25,93,100,93,180v0,139,-46,209,-138,209xm235,-61v36,0,48,-73,47,-121v0,-43,-12,-77,-37,-102v-12,1,-23,-2,-32,-11v-55,0,-92,79,-92,142v0,56,55,92,114,92","w":375},"p":{"d":"418,-184v0,118,-88,201,-206,194v33,88,47,107,52,186v2,22,-20,43,-42,42v-29,0,-44,-20,-44,-60v0,-45,-45,-140,-63,-188v-59,-21,-88,-43,-88,-67v0,-23,24,-46,47,-41v-20,-72,-41,-105,-47,-185v-2,-22,19,-42,41,-41v25,0,40,20,47,59v31,-52,71,-78,122,-78v95,0,181,84,181,179xm334,-184v0,-49,-47,-98,-96,-96v-44,1,-77,71,-66,124v23,15,19,53,4,72r2,6v87,21,156,-21,156,-106","w":413},"q":{"d":"486,323v0,22,-19,44,-42,42v-57,-5,-40,-65,-52,-129v-9,-48,-31,-155,-72,-318v-25,50,-86,94,-155,95v-129,3,-183,-151,-120,-266v20,-37,42,-67,72,-87v26,-27,109,-54,159,-27v16,-31,72,-26,76,12v13,19,17,37,9,59v6,69,125,489,125,619xm164,-70v74,0,110,-88,108,-173v0,-33,-16,-49,-49,-49v-67,0,-121,83,-121,152v0,38,24,70,62,70","w":417},"r":{"d":"301,-320v1,22,-19,45,-41,42v-37,-5,-113,-30,-106,33v-5,47,58,193,58,239v0,42,-61,59,-80,19v-54,-115,-62,-152,-108,-332v-20,-25,-14,-97,30,-91v39,5,39,23,51,73v25,-23,59,-35,100,-35v44,-1,97,16,96,52","w":277},"s":{"d":"156,-57v19,0,40,21,39,40v13,0,32,-2,55,-7v0,-41,-177,-139,-178,-146v-36,-31,-54,-64,-54,-99v-2,-107,147,-139,250,-101v34,-24,67,14,67,50v0,32,-15,48,-45,48v-12,-1,-92,-35,-113,-30v-50,0,-75,12,-75,36v0,38,166,122,173,138v40,36,60,72,60,109v0,80,-138,112,-199,64v-32,-25,-37,-102,20,-102","w":319},"t":{"d":"324,-52v52,16,35,92,-17,82v-139,-27,-183,-134,-197,-308v-50,5,-123,3,-116,-42v6,-37,16,-37,72,-36v14,0,27,-1,40,-4v-12,-49,-34,-123,-35,-173v0,-19,23,-37,42,-36v27,0,46,29,59,88v5,24,10,64,15,121v56,-1,137,-4,133,47v5,46,-78,42,-126,37v11,108,36,176,75,203v19,7,36,15,55,21","w":337,"k":{"t":70}},"u":{"d":"322,-313v27,151,31,331,-117,331v-126,0,-167,-177,-167,-337v0,-47,77,-58,82,-8v24,32,30,52,5,77v7,123,34,184,80,184v79,0,35,-177,33,-244v-1,-22,20,-42,42,-41v24,0,38,13,42,38","w":349},"v":{"d":"250,-313v-22,-26,-1,-68,32,-68v39,0,59,15,59,46r-75,326v-9,37,-56,41,-76,11r-88,-129v-33,-49,-59,-94,-79,-133v-19,-11,-29,-36,-29,-75v-1,-43,63,-58,81,-15v26,62,72,136,132,225v9,-42,23,-105,43,-188","w":335},"w":{"d":"484,-208v0,59,-42,197,-93,194v-43,-3,-80,-71,-90,-117v-25,97,-67,145,-125,145v-93,0,-140,-81,-140,-242v0,-46,1,-73,2,-80v5,-34,20,-51,43,-51v52,0,39,81,39,131v0,106,19,159,56,159v15,0,27,-22,39,-65v16,-57,27,-180,80,-183v55,-3,75,122,91,180v9,-25,14,-49,14,-72v0,-36,-41,-98,-43,-118v-2,-22,19,-42,41,-42v50,0,86,106,86,161","w":489},"x":{"d":"384,-374v22,-3,43,20,42,42v0,17,-40,69,-121,154v67,89,100,148,100,178v1,42,-62,59,-80,17v-14,-32,-42,-76,-79,-135v-82,81,-132,121,-150,121v-24,0,-42,-20,-42,-44v0,-34,36,-86,70,-76r68,-65v-47,-51,-98,-89,-155,-106v-47,-14,-35,-83,11,-82v60,2,163,84,202,129v32,-36,99,-129,134,-133","w":398},"y":{"d":"-82,350v-26,1,-46,-20,-46,-46v0,-38,64,-41,99,-52v101,-31,176,-107,226,-222v-48,-63,-211,-314,-211,-381v0,-45,65,-53,81,-8v43,119,64,136,162,290v23,-87,14,-181,14,-278v0,-29,12,-43,36,-43v27,0,47,20,50,61v28,345,-99,661,-411,679","w":374},"z":{"d":"370,-322v6,11,-198,284,-185,268v44,10,158,-54,177,-61v22,-1,42,20,42,42v0,57,-161,103,-225,103v-71,0,-106,-16,-106,-49v0,-24,59,-114,177,-269v-55,-4,-137,-6,-246,-6v-22,1,-43,-20,-42,-42v-8,-34,63,-56,113,-41v160,1,157,-2,259,14v24,5,36,18,36,41","w":396},"\u00a0":{"w":186}}});
