/*
 * jQuery 1.2.6 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008/06/23 22:58:52 $
 * $Rev: 5685 $
 */
(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem){if(elem.id!=match[3])return jQuery().find(selector);return jQuery(elem);}selector=[];}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:"1.2.6",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value===undefined)return this[0]&&jQuery[type||"attr"](this[0],name);else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=='string'?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}if(value.constructor==Number)value+='';return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value==undefined?(this[0]?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)data=jQuery.data(this[0],key);return data===undefined&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script"))scripts=scripts.add(elem);else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}function now(){return+new Date;}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==i){target=this;--i;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){var src=target[name],copy=options[name];if(target===copy)continue;if(deep&&copy&&typeof copy=="object"&&!copy.nodeType)target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)target[name]=copy;}return target;};var expando="jQuery"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/^[\s[]?function/.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!==undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length==undefined){for(name in object)if(callback.apply(object[name],args)===false)break;}else
for(;i<length;)if(callback.apply(object[i++],args)===false)break;}else{if(length==undefined){for(name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&style&&style[name])ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(computedStyle&&computedStyle.getPropertyValue(name))||"";for(i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem+='';if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem[name]=value;}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))return elem.getAttributeNode(name).nodeValue;return elem[name];}if(msie&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=msie&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||array.split||array.setInterval||array.call)ret[0]=array;else
while(i)ret[--i]=array[i];}return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]===elem)return i;return-1;},merge:function(first,second){var i=0,elem,pos=first.length;if(jQuery.browser.msie){while(elem=second[i++])if(elem.nodeType!=8)first[pos++]=elem;}else
while(elem=second[i++])first[pos++]=elem;return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv!=!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null)ret[ret.length]=value;}return ret.concat.apply([],ret);}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false,re=quickChild,m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event){data.unshift({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,"handle");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var props="altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(fn){var args=arguments,i=1;while(i<args.length)jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!='string')return this._load(url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");var remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=location.host){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xhr=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();if(s.username)xhr.open(type,s.url,s.async,s.username,s.password);else
xhr.open(type,s.url,s.async);try{if(s.data)xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xhr)&&"error"||s.ifModified&&jQuery.httpNotModified(xhr,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s.dataFilter);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xhr,status);complete();if(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr){xhr.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xhr,s]);}function complete(){if(s.complete)s.complete(xhr,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(filter)data=filter(data,type);if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(jQuery.isFunction(a[j])?a[j]():a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall),p,hidden=jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return opt.complete.call(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.call(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(elem){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",jQuery.makeArray(array));}return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].call(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done)this.options.complete.call(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,def:400},step:{scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}}});jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),css=jQuery.curCSS,fixed=css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l,10)||0;top+=parseInt(t,10)||0;}return results;};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+num(this,"padding"+tl)+num(this,"padding"+br);};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+num(this,"border"+tl+"Width")+num(this,"border"+br+"Width")+(margin?num(this,"margin"+tl)+num(this,"margin"+br):0);};});})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;

$(document).ready(function(){
  // replace navigation 'home' tab text with image
  $('#navbar #primary li.first a').html('<img src="/sites/all/themes/zen/bluehut/images/home-icon.png" width="16" height="16" />');
  // insert trademark symbols in providers
  $('#block-menu-menu-providers li a').append('&trade;');
});

;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var V=L.DOM={ready:(function(){var a=false,c={loaded:1,complete:1};var Z=[],b=function(){if(a){return}a=true;for(var d;d=Z.shift();d()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){c[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(d){setTimeout(arguments.callee,1)}})()}P(window,"load",b);return function(d){if(!arguments.length){b()}else{a?d():Z.push(d)}}})()};var M=L.CSS={Size:function(a,Z){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(b){return b/Z*this.value};this.convertFrom=function(b){return b/this.value*Z};this.toString=function(){return this.value+this.unit}},getStyle:function(a){var Z=document.defaultView;if(Z&&Z.getComputedStyle){return new A(Z.getComputedStyle(a,null))}if(a.currentStyle){return new A(a.currentStyle)}return new A(a.style)},quotedList:I(function(c){var b=[],a=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,Z;while(Z=a.exec(c)){b.push(Z[3]||Z[1])}return b}),recognizesMedia:I(function(c){var b=document.createElement("style"),a,Z;b.type="text/css";b.media=c;a=F("head")[0];a.insertBefore(b,a.firstChild);Z=!!(b.sheet||b.styleSheet);a.removeChild(b);return Z}),supports:function(b,a){var Z=document.createElement("span").style;if(Z[b]===undefined){return false}Z[b]=a;return Z[b]===a},textAlign:function(c,b,Z,a){if(b.get("textAlign")=="right"){if(Z>0){c=" "+c}}else{if(Z<a-1){c+=" "}}return c},textDecoration:function(e,d){if(!d){d=this.getStyle(e)}var a={underline:null,overline:null,"line-through":null};for(var Z=e;Z.parentNode&&Z.parentNode.nodeType==1;){var c=true;for(var b in a){if(!J(a,b)||a[b]){continue}if(d.get("textDecoration").indexOf(b)!=-1){a[b]=d.get("color")}c=false}if(c){break}d=this.getStyle(Z=Z.parentNode)}return a},textShadow:I(function(d){if(d=="none"){return null}var c=[],e={},Z,a=0;var b=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Z=b.exec(d)){if(Z[0]==","){c.push(e);e={},a=0}else{if(Z[1]){e.color=Z[1]}else{e[["offX","offY","blur"][a++]]=Z[2]}}}c.push(e);return c}),color:I(function(a){var Z={};Z.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,b,d){Z.opacity=parseFloat(d);return"rgb("+b+")"});return Z}),textTransform:function(a,Z){return a[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Z.get("textTransform")]||"toString"]()}};M.ready=(function(){var a=!M.recognizesMedia("all");var Z=[],c=function(){a=true;for(var f;f=Z.shift();f()){}};var d=F("link"),e={stylesheet:1};function b(){var g,f,h;for(f=0;h=d[f];++f){if(h.disabled||!e[h.rel.toLowerCase()]||!M.recognizesMedia(h.media||"screen")){continue}g=h.sheet||h.styleSheet;if(!g||g.disabled){return false}}return true}V.ready(function(){if(a||b()){c()}else{setTimeout(arguments.callee,10)}});return function(f){if(a){f()}else{Z.push(f)}}})();function R(a){var Z=this.face=a.face;this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(Z["units-per-em"],10);this.family=Z["font-family"].toLowerCase();this.weight=Z["font-weight"];this.style=Z["font-style"]||"normal";this.viewBox=(function(){var c=Z.bbox.split(/\s+/);var b={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};b.width=b.maxX-b.minX,b.height=b.maxY-b.minY;b.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return b})();this.ascent=-parseInt(Z.ascent,10);this.descent=-parseInt(Z.descent,10);this.height=-this.ascent+this.descent}function E(){var a={},Z={oblique:"italic",italic:"oblique"};this.add=function(b){(a[b.style]||(a[b.style]={}))[b.weight]=b};this.get=function(f,g){var e=a[f]||a[Z[f]]||a.normal||a.italic||a.oblique;if(!e){return null}g={normal:400,bold:700}[g]||parseInt(g,10);if(e[g]){return e[g]}var c={1:1,99:0}[g%100],i=[],d,b;if(c===undefined){c=g>400}if(g==500){g=400}for(var h in e){if(!J(e,h)){continue}h=parseInt(h,10);if(!d||h<d){d=h}if(!b||h>b){b=h}i.push(h)}if(g<d){g=d}if(g>b){g=b}i.sort(function(k,j){return(c?(k>g&&j>g)?k<j:k>j:(k<g&&j<g)?k>j:k<j)?-1:1});return e[i[0]]}}function Q(){function b(d,e){if(d.contains){return d.contains(e)}return d.compareDocumentPosition(e)&16}function Z(f){var d=f.relatedTarget;if(!d||b(this,d)){return}a(this)}function c(d){a(this)}function a(d){setTimeout(function(){L.replace(d,D.get(d).options,true)},10)}this.attach=function(d){if(d.onmouseenter===undefined){P(d,"mouseover",Z);P(d,"mouseout",Z)}else{P(d,"mouseenter",c);P(d,"mouseleave",c)}}}function Y(){var b={},Z=0;function a(c){return c.cufid||(c.cufid=++Z)}this.get=function(c){var d=a(c);return b[d]||(b[d]={})}}function A(Z){var b={},a={};this.get=function(c){return b[c]!=undefined?b[c]:Z[c]};this.getSize=function(d,c){return a[d]||(a[d]=new M.Size(this.get(d),c))};this.extend=function(c){for(var d in c){if(J(c,d)){b[d]=c[d]}}return this}}function P(a,Z,b){if(a.addEventListener){a.addEventListener(Z,b,false)}else{if(a.attachEvent){a.attachEvent("on"+Z,function(){return b.call(a,window.event)})}}}function T(a,Z){var b=D.get(a);if(b.options){return a}if(Z.hover&&Z.hoverables[a.nodeName.toLowerCase()]){B.attach(a)}b.options=Z;return a}function I(Z){var a={};return function(b){if(!J(a,b)){a[b]=Z.apply(null,arguments)}return a[b]}}function C(e,d){if(!d){d=M.getStyle(e)}var a=M.quotedList(d.get("fontFamily").toLowerCase()),c;for(var b=0,Z=a.length;b<Z;++b){c=a[b];if(H[c]){return H[c].get(d.get("fontStyle"),d.get("fontWeight"))}}return null}function F(Z){return document.getElementsByTagName(Z)}function J(a,Z){return a.hasOwnProperty(Z)}function G(){var Z={},b,d;for(var c=0,a=arguments.length;b=arguments[c],c<a;++c){for(d in b){if(J(b,d)){Z[d]=b[d]}}}return Z}function N(c,m,a,n,d,b){var k=n.separate;if(k=="none"){return X[n.engine].apply(null,arguments)}var j=document.createDocumentFragment(),f;var g=m.split(O[k]),Z=(k=="words");if(Z&&S){if(/^\s/.test(m)){g.unshift("")}if(/\s$/.test(m)){g.push("")}}for(var h=0,e=g.length;h<e;++h){f=X[n.engine](c,Z?M.textAlign(g[h],a,h,e):g[h],a,n,d,b,h<e-1);if(f){j.appendChild(f)}}return j}function K(a,i){var b,Z,c,f,e,h;for(c=T(a,i).firstChild;c;c=e){f=c.nodeType;e=c.nextSibling;h=false;if(f==1){if(!c.firstChild){continue}if(!/cufon/.test(c.className)){arguments.callee(c,i);continue}else{h=true}}else{if(f!=3){continue}}if(!Z){Z=M.getStyle(a).extend(i)}if(!b){b=C(a,Z)}if(!b){continue}if(h){X[i.engine](b,null,Z,i,c,a);continue}var g=c.data;if(g===""){continue}var d=N(b,g,Z,i,c,a);if(d){c.parentNode.replaceChild(d,c)}else{c.parentNode.removeChild(c)}}}var S=" ".split(/\s+/).length==0;var D=new Y();var B=new Q();var W=[];var X={},H={},U={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(Z){return jQuery(Z)})||(window.dojo&&dojo.query)||(window.$$&&function(Z){return $$(Z)})||(window.$&&function(Z){return $(Z)})||(document.querySelectorAll&&function(Z){return document.querySelectorAll(Z)})||F),separate:"words",textShadow:"none"};var O={words:/\s+/,characters:""};L.now=function(){V.ready();return L};L.refresh=function(){var b=W.splice(0,W.length);for(var a=0,Z=b.length;a<Z;++a){L.replace.apply(null,b[a])}return L};L.registerEngine=function(a,Z){if(!Z){return L}X[a]=Z;return L.set("engine",a)};L.registerFont=function(b){var Z=new R(b),a=Z.family;if(!H[a]){H[a]=new E()}H[a].add(Z);return L.set("fontFamily",'"'+a+'"')};L.replace=function(b,a,Z){a=G(U,a);if(!a.engine){return L}if(typeof a.textShadow=="string"){a.textShadow=M.textShadow(a.textShadow)}if(!Z){W.push(arguments)}if(b.nodeType||typeof b=="string"){b=[b]}M.ready(function(){for(var d=0,c=b.length;d<c;++d){var e=b[d];if(typeof e=="string"){L.replace(a.selector(e),a,true)}else{K(e,a)}}});return L};L.set=function(Z,a){U[Z]=a;return L};return L})();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-canvas{text-indent:0}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=U.length;p--;){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G*e+j-R));K.height=Math.ceil(J.convert(V.height-W+f));W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=H/V.height;s.scale(Y,Y*e);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){s.scale(e,1);for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}s.restore()}if(U){for(var p=U.length;p--;){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o()}}o();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>');function C(D,E){return A(D,/(?:em|ex|%)$/i.test(E)?"1em":E)}function A(G,H){if(/px$/i.test(H)){return parseFloat(H)}var F=G.style.left,E=G.runtimeStyle.left;G.runtimeStyle.left=G.currentStyle.left;G.style.left=H;var D=G.style.pixelLeft;G.style.left=F;G.runtimeStyle.left=E;return D}return function(s,V,n,S,Z,t,j){var G=(V===null);if(G){V=Z.alt}var X=s.viewBox;var H=n.computedFontSize||(n.computedFontSize=new Cufon.CSS.Size(C(t,n.get("fontSize"))+"px",s.baseSize));var h=n.computedLSpacing;if(h==undefined){h=n.get("letterSpacing");n.computedLSpacing=h=(h=="normal")?0:~~H.convertFrom(A(t,h))}var P,I;if(G){P=Z;I=Z.firstChild}else{P=document.createElement("span");P.className="cufon cufon-vml";P.alt=V;I=document.createElement("span");I.className="cufon-vml-canvas";P.appendChild(I);if(S.printable){var q=document.createElement("span");q.className="cufon-alt";q.appendChild(document.createTextNode(V));P.appendChild(q)}if(!j){P.appendChild(document.createElement("cvml:shape"))}}var y=P.style;var c=I.style;var E=H.convert(X.height),v=Math.ceil(E);var g=v/E;var f=X.minX,e=X.minY;c.height=v;c.top=Math.round(H.convert(e-s.ascent));c.left=Math.round(H.convert(f));y.height=H.convert(s.height)+"px";var L=S.enableTextDecoration?Cufon.CSS.textDecoration(t,n):{};var U=n.get("color");var w=Cufon.CSS.textTransform(V,n).split("");var D=0,d=0,M=null;var T,N,W=S.textShadow;for(var r=0,p=0,o=w.length;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(T){D+=M=~~(T.w||s.w)+h}}if(M===null){return null}var O=-f+D+(X.width-M);var x=H.convert(O*g),m=Math.round(x);var b=O+","+X.height,F;var Y="r"+b+"nsnf";for(r=0;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(!T){continue}if(G){N=I.childNodes[p];if(N.firstChild){N.removeChild(N.firstChild)}}else{N=document.createElement("cvml:shape");I.appendChild(N)}N.stroked="f";N.coordsize=b;N.coordorigin=F=(f-d)+","+e;N.path=(T.d?"m"+T.d+"xe":"")+"m"+F+Y;N.fillcolor=U;var u=N.style;u.width=m;u.height=v;if(W){var K=W[0],J=W[1];var R=Cufon.CSS.color(K.color),Q;var a=document.createElement("cvml:shadow");a.on="t";a.color=R.color;a.offset=K.offX+","+K.offY;if(J){Q=Cufon.CSS.color(J.color);a.type="double";a.color2=Q.color;a.offset2=J.offX+","+J.offY}a.opacity=R.opacity||(Q&&Q.opacity)||1;N.appendChild(a)}d+=~~(T.w||s.w)+h;++p}y.width=Math.max(Math.ceil(H.convert(D*g)),0);return P}})());;
Cufon.registerFont({"w":513,"face":{"font-family":"MyriadPro","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 5 3 3 4 3 2 2 4","ascent":"750","descent":"-250","x-height":"11","bbox":"-46 -750 838 250","underline-thickness":"50","underline-position":"-50","stemh":"67","stemv":"88","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":212},"!":{"d":"149,-193r-68,0r-14,-481r96,0xm114,11v-34,0,-58,-27,-58,-62v0,-36,25,-62,60,-62v35,0,58,26,58,62v0,35,-23,62,-60,62","w":230},"\"":{"d":"51,-692r87,0r-17,240r-54,0xm200,-692r87,0r-17,240r-53,0","w":337},"#":{"d":"188,-255r104,0r19,-145r-104,0xm154,0r-60,0r26,-196r-83,0r0,-59r92,0r19,-145r-87,0r0,-59r95,0r26,-191r59,0r-26,191r105,0r25,-191r59,0r-25,191r82,0r0,59r-91,0r-18,145r86,0r0,59r-95,0r-26,196r-60,0r26,-196r-104,0","w":497},"$":{"d":"281,85r-63,0r0,-100v-58,-1,-117,-19,-152,-44r24,-67v35,23,87,43,143,43v71,0,119,-41,119,-98v0,-55,-39,-89,-113,-119v-102,-40,-165,-87,-165,-174v0,-83,59,-146,150,-161r0,-100r63,0r0,97v59,2,100,18,130,35r-25,66v-21,-12,-62,-35,-126,-35v-77,0,-106,46,-106,87v0,51,37,78,124,114v103,43,155,93,155,182v0,80,-55,154,-158,170r0,104"},"%":{"d":"188,-661v90,0,149,70,149,193v0,137,-71,205,-155,205v-82,0,-151,-65,-152,-195v0,-130,70,-203,158,-203xm183,-608v-54,0,-84,65,-84,146v0,83,30,146,85,146v58,0,84,-62,84,-147v0,-80,-23,-145,-85,-145xm231,12r-56,0r383,-674r56,0xm612,-392v90,0,149,70,149,194v0,137,-71,205,-155,205v-82,0,-151,-65,-152,-196v0,-130,70,-203,158,-203xm607,-339v-54,0,-84,65,-84,147v0,83,30,146,85,146v58,0,84,-62,84,-148v0,-79,-23,-145,-85,-145","w":792},"&":{"d":"602,0r-104,0r-63,-65v-58,53,-122,76,-197,76v-131,0,-207,-88,-207,-189v0,-92,55,-155,132,-197v-30,-48,-56,-95,-56,-144v0,-83,59,-167,171,-167v84,0,149,55,149,143v0,71,-41,127,-148,180r0,4r164,187v31,-47,52,-112,65,-197r80,0v-18,106,-47,190,-97,249xm254,-55v57,0,106,-26,138,-61r-190,-213v-37,24,-87,66,-87,138v0,77,57,136,139,136xm271,-626v-55,0,-84,46,-84,98v0,49,23,86,51,122v68,-39,112,-75,112,-133v0,-41,-23,-87,-79,-87","w":605},"(":{"d":"195,-694r68,0v-73,99,-125,228,-125,410v0,178,55,305,125,405r-68,0v-63,-83,-131,-211,-131,-406v1,-196,68,-325,131,-409","w":284},")":{"d":"88,121r-68,0v70,-99,125,-228,125,-408v0,-180,-54,-307,-125,-407r68,0v63,82,131,211,131,407v-1,196,-68,324,-131,408","w":284},"*":{"d":"269,-686r60,35r-95,127r151,-20r0,68r-151,-19v28,45,65,81,96,123r-63,36v-22,-46,-38,-97,-63,-140r-64,141r-57,-36r95,-122r0,-3r-148,20r0,-68v48,4,103,18,147,17r-94,-123r61,-35v22,46,39,97,64,140","w":415},"+":{"d":"266,-532r64,0r0,235r226,0r0,60r-226,0r0,237r-64,0r0,-237r-226,0r0,-60r226,0r0,-235","w":596},",":{"d":"78,117r-62,7v22,-60,49,-167,60,-240r98,-10v-24,85,-68,196,-96,243","w":207},"-":{"d":"30,-302r247,0r0,64r-247,0r0,-64","w":307},".":{"d":"110,11v-34,0,-58,-27,-58,-63v0,-36,25,-63,60,-63v35,0,59,26,59,63v0,36,-24,63,-61,63","w":207},"\/":{"d":"66,39r-67,0r278,-725r69,0","w":343},"0":{"d":"263,-661v136,0,215,122,215,329v0,221,-83,343,-226,343v-127,0,-216,-119,-216,-334v0,-219,95,-338,227,-338xm257,-593v-76,0,-132,94,-132,271v0,169,52,265,132,265v89,0,132,-105,132,-271v0,-160,-40,-265,-132,-265"},"1":{"d":"236,0r0,-568v-41,18,-76,41,-115,61r-17,-67r142,-76r75,0r0,650r-85,0"},"2":{"d":"460,0r-415,0r0,-54r69,-67v166,-158,242,-242,242,-340v0,-66,-31,-127,-128,-127v-59,0,-108,30,-138,55r-28,-62v44,-37,109,-66,183,-66v140,0,199,96,199,189v0,131,-152,277,-275,399r291,0r0,73"},"3":{"d":"42,-33r24,-67v25,15,82,40,144,40v112,0,149,-71,147,-126v-4,-108,-103,-137,-217,-130r0,-66v96,6,194,-16,194,-110v0,-52,-33,-98,-114,-98v-52,0,-102,23,-130,43r-24,-64v35,-25,101,-50,171,-50v228,-1,243,251,66,309r0,2v80,15,145,75,145,166v0,104,-82,195,-237,195v-73,0,-137,-23,-169,-44"},"4":{"d":"400,0r-83,0r0,-178r-302,0r0,-57r290,-415r95,0r0,404r91,0r0,68r-91,0r0,178xm104,-246r213,0r0,-217v0,-34,1,-68,3,-102r-3,0v-61,124,-142,208,-213,319"},"5":{"d":"160,-409v155,-17,286,45,286,198v0,127,-101,222,-242,222v-71,0,-130,-20,-162,-40r22,-67v27,16,80,36,140,36v82,0,154,-54,153,-141v0,-84,-57,-143,-186,-143v-38,0,-67,3,-91,6r42,-312r311,0r0,74r-248,0"},"6":{"d":"416,-660r0,72v-171,-4,-280,110,-292,235r2,0v31,-42,86,-76,158,-76v115,0,196,84,196,210v0,120,-81,230,-217,230v-138,0,-229,-108,-229,-277v0,-246,141,-388,382,-394xm257,-362v-63,0,-136,43,-136,118v0,107,51,187,144,187v75,0,126,-63,126,-156v0,-93,-53,-149,-134,-149"},"7":{"d":"57,-650r410,0r0,58r-283,592r-91,0r282,-577r-318,0r0,-73"},"8":{"d":"166,-339r-1,-3v-73,-34,-104,-90,-104,-146v0,-103,87,-173,202,-173v216,0,258,231,82,312r0,3v81,32,131,90,131,168v0,114,-97,189,-221,189v-136,0,-218,-80,-218,-175v0,-82,49,-141,129,-175xm257,-53v79,0,130,-49,130,-116v0,-78,-55,-117,-143,-142v-76,22,-117,73,-117,135v0,65,47,123,130,123xm258,-598v-73,0,-113,48,-113,104v-1,65,49,100,124,120v56,-19,99,-59,99,-118v0,-52,-31,-106,-110,-106"},"9":{"d":"96,10r0,-72v168,7,269,-86,293,-238r-3,0v-36,44,-88,69,-154,69v-116,0,-191,-88,-191,-199v0,-123,89,-231,222,-231v133,0,215,107,215,275v0,261,-134,394,-382,396xm253,-297v70,0,136,-33,136,-101v0,-111,-41,-196,-134,-196v-74,0,-127,66,-127,159v0,81,49,138,125,138"},":":{"d":"111,-342v-34,0,-58,-27,-58,-62v0,-37,25,-63,59,-63v36,0,59,26,59,63v0,35,-23,62,-60,62xm111,11v-34,0,-58,-27,-58,-62v0,-37,25,-63,59,-63v36,0,59,26,59,63v0,35,-23,62,-60,62","w":207},";":{"d":"78,116r-61,7v22,-60,49,-166,60,-240r97,-10v-24,86,-68,196,-96,243xm118,-342v-34,0,-58,-27,-58,-62v0,-37,25,-63,59,-63v36,0,59,26,59,63v0,35,-23,62,-60,62","w":207},"<":{"d":"66,-239r0,-54r464,-239r0,69r-391,196r0,2r391,196r0,69","w":596},"=":{"d":"556,-337r-516,0r0,-60r516,0r0,60xm556,-141r-516,0r0,-60r516,0r0,60","w":596},">":{"d":"530,-295r0,57r-464,238r0,-69r394,-196r0,-2r-394,-196r0,-69","w":596},"?":{"d":"220,-192r-79,0v-10,-76,2,-128,60,-199v44,-54,70,-92,70,-137v0,-51,-32,-85,-95,-86v-36,0,-76,12,-101,31r-24,-63v34,-24,90,-40,143,-40v115,0,167,71,167,147v0,68,-39,117,-86,174v-50,61,-64,102,-55,173xm178,11v-34,0,-58,-27,-58,-62v0,-37,25,-63,59,-63v36,0,59,26,59,63v0,35,-23,62,-60,62","w":406},"@":{"d":"448,-255r21,-112v-111,-36,-210,58,-209,172v0,44,22,76,66,76v58,0,111,-74,122,-136xm508,22r16,43v-218,109,-481,-9,-481,-273v0,-206,143,-385,365,-385v174,0,290,123,290,290v0,150,-84,238,-177,238v-40,0,-77,-26,-75,-88r-3,0v-35,59,-81,88,-141,88v-58,0,-108,-47,-108,-126v0,-124,98,-237,237,-237v42,0,81,9,107,21r-34,181v-15,76,-3,111,30,112v51,2,108,-67,108,-182v0,-146,-87,-251,-242,-251v-163,0,-300,130,-300,333v0,167,109,271,257,271v57,0,110,-12,151,-35","w":737},"A":{"d":"424,-212r-239,0r-70,212r-90,0r230,-674r104,0r230,674r-93,0xm203,-280r204,0r-67,-194v-17,-43,-22,-88,-37,-123v-25,109,-66,214,-100,317","w":612},"B":{"d":"501,-192v0,151,-113,197,-290,198v-60,0,-106,-4,-135,-8r0,-662v96,-21,289,-27,343,34v35,26,57,66,57,119v0,66,-44,123,-114,148r0,3v64,15,139,68,139,168xm163,-606r0,218r79,0v91,0,145,-49,145,-114v0,-78,-59,-110,-147,-110v-40,0,-63,3,-77,6xm163,-323r0,257v114,14,248,-3,246,-127v-1,-116,-119,-138,-246,-130","w":542},"C":{"d":"529,-91r17,70v-31,16,-96,32,-178,32v-190,0,-332,-120,-332,-342v0,-212,143,-354,352,-354v83,0,137,18,160,30r-22,71v-32,-16,-79,-28,-135,-28v-158,0,-263,101,-263,278v0,166,95,271,258,271v54,0,108,-11,143,-28","w":580},"D":{"d":"630,-353v0,236,-146,361,-396,359v-63,0,-114,-3,-158,-8r0,-662v53,-9,116,-15,185,-15v238,2,369,103,369,326xm163,-601r0,533v22,3,54,4,88,4v187,0,287,-104,287,-286v0,-159,-89,-260,-273,-260v-45,0,-79,4,-102,9","w":666},"E":{"d":"424,-388r0,72r-261,0r0,243r292,0r0,73r-380,0r0,-674r365,0r0,73r-277,0r0,213r261,0","w":492},"F":{"d":"75,0r0,-674r363,0r0,73r-275,0r0,224r254,0r0,72r-254,0r0,305r-88,0","w":487},"G":{"d":"382,7v-205,0,-346,-128,-346,-340v0,-201,139,-348,365,-348v78,0,140,17,169,31r-22,71v-36,-17,-81,-29,-149,-29v-164,0,-271,102,-271,271v0,171,102,272,260,272v57,0,96,-8,116,-18r0,-201r-136,0r0,-70r222,0r0,324v-39,15,-117,37,-208,37","w":646},"H":{"d":"75,-674r88,0r0,282r326,0r0,-282r88,0r0,674r-88,0r0,-316r-326,0r0,316r-88,0r0,-674","w":652},"I":{"d":"75,-674r88,0r0,674r-88,0r0,-674","w":239},"J":{"d":"213,-230r0,-444r88,0r0,451v2,220,-140,261,-297,218r12,-71v107,31,197,15,197,-154","w":370},"K":{"d":"76,0r0,-674r87,0r0,325r3,0v82,-115,172,-215,259,-325r108,0r-244,286r263,388r-103,0r-221,-331r-65,74r0,257r-87,0","w":542},"L":{"d":"75,0r0,-674r88,0r0,601r288,0r0,73r-376,0","w":472},"M":{"d":"660,0r-16,-296v-5,-94,-11,-208,-11,-291r-2,0v-24,78,-51,163,-85,256r-119,327r-66,0r-110,-321v-34,-95,-55,-186,-79,-262v-2,84,-7,196,-13,298r-18,289r-83,0r47,-674r111,0r115,326v30,82,47,161,70,227v48,-177,130,-379,192,-553r111,0r42,674r-86,0","w":804},"N":{"d":"158,0r-82,0r0,-674r96,0r215,341v49,79,89,150,120,219r3,-1v-15,-169,-8,-372,-10,-559r82,0r0,674r-88,0r-214,-342v-47,-75,-92,-152,-125,-225r-3,1v5,85,6,166,6,278r0,288","w":658},"O":{"d":"348,-686v185,0,304,141,304,342v0,231,-141,355,-313,355v-179,0,-303,-139,-303,-343v0,-214,132,-354,312,-354xm345,-615v-145,0,-217,134,-217,281v0,145,78,274,216,274v138,0,216,-127,216,-280v0,-135,-70,-275,-215,-275","w":689},"P":{"d":"491,-482v5,172,-156,239,-328,212r0,270r-87,0r0,-666v42,-7,97,-13,167,-13v153,1,244,59,248,197xm163,-603r0,262v19,5,43,7,72,7v105,0,169,-52,169,-143v0,-90,-64,-133,-159,-133v-38,0,-67,3,-82,7","w":532},"Q":{"d":"632,99v-108,-26,-199,-63,-299,-88v-161,-6,-297,-124,-297,-342v0,-216,131,-355,313,-355v184,0,303,142,303,341v0,174,-80,284,-192,324r0,4v67,17,140,33,197,43xm344,-60v138,0,216,-127,216,-280v0,-136,-70,-275,-213,-275v-147,0,-219,136,-219,282v0,144,78,273,216,273","w":689},"R":{"d":"243,-679v155,-1,248,50,248,184v0,88,-56,147,-126,171r0,3v51,18,82,66,98,136v22,94,38,159,52,185r-90,0v-11,-20,-27,-77,-44,-161v-24,-124,-88,-137,-218,-131r0,292r-87,0r0,-665v44,-8,108,-14,167,-14xm163,-604r0,246r89,0v93,0,152,-51,152,-128v0,-87,-63,-125,-155,-125v-42,0,-71,3,-86,7","w":538},"S":{"d":"42,-33r23,-73v39,25,95,44,155,44v89,0,141,-47,141,-115v0,-62,-36,-99,-127,-133v-110,-40,-178,-98,-178,-192v0,-105,87,-183,218,-183v68,0,119,16,148,33r-24,71v-21,-13,-66,-32,-127,-32v-92,0,-127,55,-127,101v0,63,41,94,134,130v114,44,171,99,171,198v0,104,-76,195,-235,195v-65,0,-136,-20,-172,-44","w":493},"T":{"d":"204,0r0,-600r-205,0r0,-74r499,0r0,74r-206,0r0,600r-88,0","w":497},"U":{"d":"75,-674r88,0r0,400v0,150,67,214,157,214v99,0,164,-66,164,-214r0,-400r88,0r0,394v0,207,-109,291,-255,291v-138,0,-242,-78,-242,-288r0,-397","w":647},"V":{"d":"320,0r-96,0r-221,-674r95,0r105,332v28,91,53,173,72,252r2,0v49,-191,130,-396,191,-584r93,0","w":558},"W":{"d":"277,0r-91,0r-171,-674r92,0r80,341v20,84,38,168,50,233r2,0v34,-179,100,-394,145,-574r91,0r82,342v21,79,33,165,49,231v14,-74,33,-149,54,-233r89,-340r89,0r-191,674r-91,0r-85,-351v-21,-86,-35,-152,-44,-220r-2,0v-33,180,-102,391,-148,571","w":846},"X":{"d":"546,0r-101,0r-164,-282r-2,0r-154,282r-100,0r206,-341r-198,-333r101,0r151,272r3,0v44,-91,102,-183,152,-272r101,0r-205,328","w":571},"Y":{"d":"314,0r-88,0r0,-286r-214,-388r100,0r95,186v25,51,46,92,67,139r2,0v46,-105,112,-221,165,-325r98,0r-225,387r0,287","w":541},"Z":{"d":"30,0r0,-51r373,-547r0,-3r-341,0r0,-73r455,0r0,53r-372,545r0,3r377,0r0,73r-492,0","w":553},"[":{"d":"264,112r-183,0r0,-798r183,0r0,55r-114,0r0,688r114,0r0,55","w":284},"\\":{"d":"342,39r-68,0r-272,-725r68,0","w":341},"]":{"d":"20,-686r183,0r0,798r-183,0r0,-55r114,0r0,-688r-114,0r0,-55","w":284},"^":{"d":"536,-189r-70,0r-167,-388r-2,0r-167,388r-69,0r206,-461r63,0","w":596},"_":{"d":"0,75r500,0r0,50r-500,0r0,-50","w":500},"a":{"d":"229,-494v266,0,156,268,191,494r-79,0r-7,-61r-3,0v-27,38,-79,72,-148,72v-98,0,-148,-69,-148,-139v0,-117,104,-181,291,-180v1,-52,-6,-121,-110,-121v-46,0,-93,13,-127,36r-20,-59v40,-25,99,-42,160,-42xm205,-54v74,0,123,-44,123,-109r0,-84v-96,-2,-205,15,-205,109v0,58,38,84,82,84","w":482},"b":{"d":"73,-125r0,-585r87,0r0,304r2,0v31,-54,87,-88,165,-88v121,0,205,100,205,246v0,173,-110,259,-218,259v-72,0,-124,-31,-165,-90r-5,79r-75,0v2,-33,4,-82,4,-125xm298,-425v-69,0,-135,57,-138,145r0,86v3,83,63,135,136,135v93,0,147,-75,147,-186v0,-97,-50,-180,-145,-180","w":569},"c":{"d":"403,-83r15,66v-23,11,-74,28,-139,28v-146,0,-241,-99,-241,-247v0,-149,102,-258,260,-258v52,0,98,13,122,26r-20,67v-21,-11,-54,-23,-102,-23v-111,0,-171,83,-171,183v0,112,72,181,168,181v50,0,83,-12,108,-23","w":448},"d":{"d":"403,-710r87,0r0,585v0,43,2,92,4,125r-78,0r-4,-84r-3,0v-26,54,-84,95,-163,95v-117,0,-208,-99,-208,-246v-1,-161,100,-259,217,-259v77,0,122,38,148,73r0,-289xm270,-60v69,0,133,-55,133,-143r0,-84v-1,-82,-53,-138,-131,-138v-91,0,-145,80,-145,186v0,98,49,179,143,179","w":564},"e":{"d":"462,-226r-340,0v2,119,77,168,166,168v63,0,102,-11,134,-25r16,63v-31,14,-85,31,-162,31v-149,0,-238,-99,-238,-245v0,-146,86,-260,227,-260v175,0,210,147,197,268xm123,-289r257,0v1,-55,-23,-142,-122,-142v-90,0,-128,81,-135,142","w":501},"f":{"d":"169,0r-87,0r0,-417r-67,0r0,-67r67,0v-2,-81,12,-147,56,-192v48,-49,132,-55,193,-31r-12,68v-13,-6,-30,-11,-56,-11v-84,0,-97,79,-94,166r117,0r0,67r-117,0r0,417","w":292},"g":{"d":"491,-484v-8,116,-4,284,-4,413v0,112,-22,180,-69,222v-87,78,-242,73,-338,18r22,-68v32,21,82,39,142,39v90,0,156,-47,156,-170v0,-17,4,-40,-2,-53v-26,45,-79,81,-154,81v-120,0,-206,-102,-206,-236v0,-164,107,-256,219,-256v86,0,127,46,153,83r3,-73r78,0xm270,-69v69,0,129,-54,129,-137r0,-87v-3,-81,-51,-133,-128,-133v-84,0,-144,71,-144,183v0,95,49,174,143,174","w":559},"h":{"d":"285,-421v-70,0,-124,52,-124,129r0,292r-88,0r0,-710r88,0r0,303r2,0v26,-48,82,-86,153,-87v65,0,169,40,169,206r0,288r-88,0r0,-278v0,-78,-29,-143,-112,-143","w":555},"i":{"d":"161,0r-88,0r0,-484r88,0r0,484xm117,-675v32,0,54,24,54,55v0,30,-21,54,-56,54v-32,0,-53,-24,-53,-54v0,-30,22,-55,55,-55","w":234},"j":{"d":"-36,211r-10,-69v41,-3,75,-14,96,-38v24,-27,34,-65,34,-181r0,-407r88,0r0,441v0,94,-15,155,-58,199v-39,39,-103,55,-150,55xm128,-675v33,0,54,25,54,55v0,29,-20,54,-56,54v-32,0,-53,-25,-53,-54v0,-30,22,-55,55,-55","w":243},"k":{"d":"160,-710r0,448v16,-14,29,-38,44,-55r143,-167r105,0r-186,199r213,285r-108,0r-166,-232r-45,50r0,182r-87,0r0,-710r87,0","w":469},"l":{"d":"73,0r0,-710r88,0r0,710r-88,0","w":236},"m":{"d":"275,-422v-68,0,-116,58,-116,131r0,291r-86,0r0,-353v0,-51,-2,-91,-4,-131r77,0r4,79r3,0v27,-46,72,-89,153,-89v67,0,113,44,138,97v34,-57,78,-97,161,-97v65,0,160,42,160,210r0,284r-86,0r0,-273v0,-94,-35,-149,-105,-149v-65,0,-112,52,-112,123r0,299r-86,0r0,-290v0,-77,-34,-132,-101,-132","w":834},"n":{"d":"285,-422v-70,0,-124,53,-124,131r0,291r-88,0r0,-353v0,-51,-1,-91,-4,-131r78,0v4,25,0,58,7,80v24,-45,80,-90,160,-90v67,0,171,40,171,206r0,288r-88,0r0,-279v0,-78,-29,-143,-112,-143","w":555},"o":{"d":"278,-494v139,0,233,101,233,248v0,179,-125,257,-241,257v-130,0,-232,-96,-232,-249v0,-161,107,-256,240,-256xm276,-428v-103,0,-148,96,-148,187v0,106,60,186,146,186v84,0,147,-79,147,-188v0,-82,-41,-185,-145,-185","w":549},"p":{"d":"73,198r0,-524v0,-62,-2,-112,-4,-158r78,0v4,26,0,60,7,83v35,-59,93,-93,172,-93v118,0,206,99,206,245v0,174,-107,260,-221,260v-66,0,-118,-31,-151,-76r0,263r-87,0xm299,-424v-71,0,-134,58,-139,143r0,84v1,86,63,139,136,139v93,0,147,-76,147,-187v0,-96,-51,-179,-144,-179","w":569},"q":{"d":"403,198r0,-272r-2,0v-27,47,-80,85,-158,85v-113,0,-205,-97,-205,-244v0,-182,117,-261,219,-261v77,0,123,40,151,83r3,-73r83,0v-2,40,-4,83,-4,133r0,549r-87,0xm270,-59v69,1,133,-55,133,-138r0,-91v-2,-81,-53,-136,-130,-136v-91,0,-146,77,-146,185v0,97,46,180,143,180","w":563},"r":{"d":"312,-409v-96,-15,-151,51,-151,151r0,258r-88,0r0,-333v0,-57,-1,-106,-4,-151r77,0r4,96r3,0v27,-72,82,-115,159,-104r0,83","w":327},"s":{"d":"40,-23r21,-66v27,16,73,34,117,34v63,0,93,-31,93,-72v0,-42,-25,-64,-89,-88v-88,-32,-129,-79,-129,-137v0,-78,64,-142,167,-142v49,0,92,13,118,30r-21,64v-19,-12,-54,-29,-99,-29v-52,0,-80,30,-80,66v0,40,28,59,91,83v83,32,127,73,127,145v0,86,-67,146,-180,146v-53,0,-102,-14,-136,-34","w":396},"t":{"d":"222,11v-95,-2,-129,-61,-129,-164r0,-264r-75,0r0,-67r75,0r0,-90r86,-26r0,116r126,0r0,67r-126,0r0,261v0,60,17,94,66,94v24,0,38,-2,51,-6r4,67v-17,6,-44,12,-78,12","w":331},"u":{"d":"266,-62v75,0,124,-51,124,-126r0,-296r88,0r0,351v0,51,1,95,4,133r-78,0v-4,-25,0,-58,-7,-79v-22,39,-74,90,-160,90v-76,0,-167,-43,-167,-212r0,-283r88,0r0,267v0,92,29,155,108,155","w":551},"v":{"d":"13,-484r94,0r95,271v16,45,29,85,39,125r3,0v11,-40,25,-80,41,-125r94,-271r92,0r-190,484r-84,0","w":481},"w":{"d":"18,-484r90,0r65,246v13,54,26,104,35,154r3,0v33,-135,82,-270,122,-400r74,0r75,242v18,58,32,109,43,158r3,0v24,-132,72,-272,106,-400r87,0r-156,484r-80,0r-74,-231v-19,-53,-28,-107,-45,-159v-30,141,-80,260,-122,390r-80,0","w":736},"x":{"d":"16,-484r98,0r119,182r2,0r116,-182r96,0r-165,234r169,250r-99,0r-72,-109v-21,-27,-33,-59,-54,-84v-37,66,-81,129,-121,193r-97,0r172,-247","w":463},"y":{"d":"36,147v69,-24,130,-77,158,-162v0,-5,-2,-12,-7,-23r-178,-446r96,0r105,286v14,31,21,74,34,99v9,-29,19,-66,31,-101r96,-284r93,0v-81,193,-181,547,-298,648v-44,37,-86,52,-108,56","w":471},"z":{"d":"18,0r0,-51r218,-285v21,-27,45,-49,64,-78r-262,0r0,-70r368,0r0,55r-216,281v-20,28,-43,51,-62,78r282,0r0,70r-392,0","w":428},"{":{"d":"93,-25v0,-53,16,-110,16,-163v0,-32,-10,-75,-81,-75r0,-51v142,-7,60,-146,65,-241v5,-99,68,-135,166,-131r0,55v-68,-4,-98,26,-97,86v1,49,14,97,15,147v2,67,-32,93,-73,110v45,12,73,45,73,109v0,97,-57,249,82,236r0,55v-97,4,-166,-28,-166,-137","w":284},"|":{"d":"86,-750r67,0r0,1000r-67,0r0,-1000","w":239},"}":{"d":"191,-555v0,54,-16,111,-16,167v0,35,10,74,81,74r0,51v-141,10,-61,141,-65,238v-5,109,-69,141,-166,137r0,-55v66,4,98,-25,97,-87v0,-51,-14,-98,-15,-149v-2,-67,32,-94,73,-111v-45,-12,-73,-44,-73,-108v0,-96,59,-245,-82,-233r0,-55v98,-4,165,32,166,131","w":284},"~":{"d":"433,-207v-63,0,-199,-86,-265,-88v-36,0,-58,25,-59,85r-60,0v-3,-100,50,-151,119,-151v64,0,197,87,266,87v36,0,53,-29,54,-84r59,0v5,111,-52,151,-114,151","w":596},"'":{"d":"51,-692r87,0r-17,240r-54,0","w":188},"`":{"d":"22,-693r96,0r88,143r-62,0","w":300},"\u00a0":{"w":212}}});Cufon.registerFont({"w":555,"face":{"font-family":"MyriadPro","font-weight":700,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 7 3 3 4 3 2 2 4","ascent":"750","descent":"-250","x-height":"11","bbox":"-39 -750 875 250","underline-thickness":"50","underline-position":"-50","stemh":"112","stemv":"152","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":202},"!":{"d":"191,-221r-114,0r-22,-453r158,0xm223,-80v0,53,-35,92,-91,91v-52,0,-88,-39,-88,-91v0,-54,37,-91,90,-91v53,0,89,37,89,91","w":268},"\"":{"d":"35,-692r135,0r-23,271r-89,0xm227,-692r135,0r-23,271r-89,0","w":397},"#":{"d":"223,-271r92,0r15,-113r-91,0xm183,0r-90,0r26,-179r-82,0r0,-92r97,0r16,-113r-84,0r0,-92r98,0r26,-174r88,0r-25,174r92,0r25,-174r89,0r-25,174r80,0r0,92r-95,0r-15,113r82,0r0,92r-98,0r-25,179r-90,0r26,-179r-91,0","w":550},"$":{"d":"324,87r-99,0r0,-95v-67,-3,-132,-22,-170,-43r30,-117v42,23,101,44,166,44v58,0,97,-23,97,-62v0,-38,-32,-62,-107,-87v-107,-36,-180,-86,-180,-183v0,-89,62,-158,169,-178r0,-95r98,0r0,88v66,2,111,17,146,33r-30,113v-25,-12,-72,-35,-144,-35v-65,0,-86,29,-86,57v0,32,35,54,121,85v119,42,166,97,166,188v0,89,-62,165,-177,184r0,103"},"%":{"d":"210,-661v111,0,174,82,174,193v0,136,-86,208,-180,208v-99,0,-177,-74,-177,-197v0,-116,71,-204,183,-204xm205,-578v-45,0,-65,52,-65,118v-1,68,23,117,67,117v43,0,64,-44,64,-118v0,-66,-18,-117,-66,-117xm293,11r-82,0r374,-671r81,0xm678,-391v111,0,174,82,174,193v0,135,-86,207,-180,207v-98,0,-176,-74,-176,-196v0,-116,71,-204,182,-204xm674,-308v-45,0,-65,52,-65,117v-1,68,23,117,66,117v43,0,64,-44,64,-117v0,-66,-18,-117,-65,-117","w":880},"&":{"d":"672,0r-177,0r-44,-48v-44,34,-105,59,-185,59v-287,3,-295,-298,-107,-385v-25,-38,-52,-82,-52,-134v0,-85,68,-178,204,-178v104,0,182,61,182,158v0,68,-40,127,-133,173r-1,4v39,44,80,93,113,127v27,-43,48,-105,57,-165r136,0v-18,103,-52,190,-112,256xm289,-99v38,0,71,-15,91,-34v-41,-41,-96,-104,-152,-166v-28,21,-53,50,-53,94v0,58,43,106,114,106xm364,-524v0,-33,-19,-67,-60,-67v-39,0,-60,34,-60,69v0,34,15,64,47,97v49,-33,73,-60,73,-99","w":678},"(":{"d":"174,-691r106,0v-56,92,-101,226,-101,405v0,176,45,309,101,403r-106,0v-53,-78,-114,-211,-114,-403v1,-195,61,-327,114,-405","w":314},")":{"d":"141,117r-106,0v56,-93,101,-228,101,-405v0,-177,-45,-310,-101,-403r106,0v53,77,114,208,114,404v0,194,-61,325,-114,404","w":314},"*":{"d":"285,-686r87,51r-107,130r160,-32r0,101r-161,-27v33,45,73,83,108,126r-88,51r-58,-154r-2,0r-57,154r-86,-51r107,-125r-1,-2r-157,28r0,-101r156,32v-32,-46,-71,-85,-105,-129r89,-52r55,155r2,0","w":454},"+":{"d":"249,-532r98,0r0,218r209,0r0,93r-209,0r0,221r-98,0r0,-221r-209,0r0,-93r209,0r0,-218","w":596},",":{"d":"103,110r-102,9v32,-89,59,-193,73,-284r155,-10v-33,102,-78,207,-126,285","w":260},"-":{"d":"30,-313r262,0r0,101r-262,0r0,-101","w":322},".":{"d":"138,11v-51,0,-88,-39,-88,-92v0,-55,37,-93,90,-93v52,0,88,37,89,93v0,53,-36,92,-91,92","w":260},"\/":{"d":"117,39r-101,0r214,-725r101,0","w":331},"0":{"d":"280,-661v173,0,242,155,242,333v0,200,-81,339,-246,339v-168,0,-243,-151,-243,-335v0,-189,79,-337,247,-337xm278,-546v-55,0,-93,70,-93,222v0,149,36,220,94,220v59,0,91,-74,91,-222v0,-144,-31,-220,-92,-220"},"1":{"d":"236,0r0,-515v-44,18,-83,40,-126,59r-25,-114r173,-80r125,0r0,650r-147,0"},"2":{"d":"504,0r-461,0r0,-92r83,-75v143,-128,212,-201,213,-277v0,-53,-31,-95,-106,-95v-56,0,-105,28,-139,53r-43,-108v48,-37,125,-67,212,-67v148,0,228,86,228,203v0,135,-135,247,-233,333r246,0r0,125"},"3":{"d":"38,-34r31,-115v27,15,89,40,151,40v79,0,119,-38,119,-86v0,-86,-98,-100,-193,-94r0,-109v81,3,175,0,175,-75v0,-39,-31,-68,-96,-68v-53,0,-109,23,-135,39r-31,-110v39,-25,116,-49,201,-49v239,0,290,248,96,313r0,2v78,14,141,73,141,159v0,114,-101,198,-266,198v-84,0,-155,-22,-193,-45"},"4":{"d":"455,0r-144,0r0,-155r-288,0r0,-99r245,-396r187,0r0,381r77,0r0,114r-77,0r0,155xm164,-269r147,0r0,-144v0,-39,2,-79,4,-121r-3,0v-44,95,-96,179,-148,265"},"5":{"d":"210,-425v159,-14,292,51,292,208v0,121,-104,228,-279,228v-79,0,-145,-18,-181,-37r28,-114v71,39,278,62,276,-67v0,-67,-53,-108,-183,-108v-36,0,-61,2,-87,6r42,-341r358,0r0,125r-252,0"},"6":{"d":"457,-659r0,117v-17,-1,-35,0,-59,2v-135,11,-195,80,-212,155r3,0v32,-32,78,-51,138,-51v109,0,201,77,201,212v0,129,-99,235,-239,235v-174,0,-259,-129,-259,-284v0,-248,167,-399,427,-386xm277,-328v-54,0,-96,34,-96,96v0,69,36,131,106,131v53,0,87,-49,87,-115v0,-60,-32,-112,-97,-112"},"7":{"d":"49,-650r459,0r0,96r-268,554r-161,0r268,-525r-298,0r0,-125"},"8":{"d":"32,-170v0,-80,49,-130,116,-165v-63,-33,-94,-86,-94,-143v0,-110,99,-183,229,-183v152,0,215,88,215,167v0,56,-30,111,-95,143r0,3v64,24,120,78,120,161v0,118,-99,198,-250,198v-165,0,-241,-93,-241,-181xm279,-94v53,0,89,-35,89,-81v0,-57,-43,-91,-102,-107v-106,20,-106,186,13,188xm276,-558v-52,0,-78,35,-78,75v0,44,39,72,91,88v81,-15,97,-162,-13,-163"},"9":{"d":"89,9r0,-118v140,14,255,-50,276,-161r-2,-1v-29,30,-72,47,-131,47v-110,0,-202,-76,-202,-203v0,-127,102,-234,245,-234v167,0,246,128,246,280v0,267,-158,403,-432,390xm273,-332v57,0,92,-22,92,-81v0,-69,-25,-137,-96,-137v-51,0,-88,46,-88,114v0,56,31,104,92,104"},":":{"d":"139,-312v-52,0,-88,-39,-88,-91v0,-54,37,-92,89,-92v53,0,88,37,89,92v0,52,-35,91,-90,91xm139,11v-52,0,-88,-39,-88,-91v0,-54,37,-92,89,-92v53,0,88,37,89,92v0,52,-35,91,-90,91","w":260},";":{"d":"103,110r-101,9v32,-89,59,-193,73,-284r153,-10v-32,102,-78,207,-125,285xm144,-312v-52,0,-88,-39,-88,-91v0,-54,37,-92,89,-92v53,0,88,37,89,92v0,52,-35,91,-90,91","w":260},"<":{"d":"58,-223r0,-86r481,-223r0,106r-364,159r0,2r364,159r0,106","w":596},"=":{"d":"556,-325r-516,0r0,-93r516,0r0,93xm556,-118r-516,0r0,-93r516,0r0,93","w":596},">":{"d":"538,-312r0,92r-481,220r0,-106r372,-159r0,-2r-372,-159r0,-106","w":596},"?":{"d":"408,-530v0,136,-152,172,-136,311r-134,0v-6,-74,7,-118,58,-182v32,-39,58,-72,58,-105v0,-76,-126,-69,-172,-30r-34,-109v37,-21,96,-41,167,-41v132,0,193,73,193,156xm201,11v-53,0,-89,-39,-89,-91v0,-54,37,-91,89,-91v54,0,89,37,90,91v0,52,-35,91,-90,91","w":445},"@":{"d":"443,-250r14,-95v-86,-22,-147,51,-149,138v0,38,17,62,50,62v37,0,76,-47,85,-105xm528,11r18,57v-228,101,-496,-11,-496,-279v0,-204,149,-381,374,-381v177,0,303,121,303,289v0,147,-82,239,-190,239v-50,0,-78,-30,-88,-77v-59,112,-242,106,-242,-54v0,-123,91,-233,235,-233v44,0,94,11,119,24r-30,186v-10,59,-3,86,25,87v43,2,97,-53,97,-169v0,-131,-84,-231,-239,-231v-154,0,-287,119,-287,311v0,227,214,314,401,231","w":770},"A":{"d":"416,-173r-193,0r-48,173r-157,0r205,-674r200,0r210,674r-165,0xm245,-287r149,0r-42,-143v-14,-39,-21,-94,-36,-130v-10,40,-20,91,-31,130","w":656},"B":{"d":"66,-3r0,-662v96,-15,325,-26,397,24v44,30,80,71,80,133v0,61,-40,112,-111,145v77,20,134,79,134,165v0,62,-28,110,-70,144v-49,39,-131,61,-265,61v-75,0,-131,-5,-165,-10xm217,-564r0,157v90,7,173,-17,173,-83v0,-51,-39,-78,-108,-78v-34,0,-53,2,-65,4xm217,-298r0,190v88,9,189,-4,189,-96v0,-84,-93,-99,-189,-94","w":604},"C":{"d":"538,-138r22,120v-27,13,-91,29,-172,29v-233,0,-353,-146,-353,-338v0,-230,164,-357,368,-357v79,0,139,15,166,30r-32,120v-30,-13,-73,-25,-128,-25v-120,0,-214,73,-214,223v0,135,80,220,215,220v47,0,97,-9,128,-22","w":595},"D":{"d":"662,-353v0,263,-161,360,-423,360v-79,0,-136,-5,-173,-10r0,-661v56,-9,129,-15,205,-15v129,0,213,24,277,72v70,52,114,135,114,254xm218,-556r0,441v169,20,283,-52,283,-233v0,-165,-123,-237,-283,-208","w":696},"E":{"d":"467,-409r0,124r-248,0r0,160r277,0r0,125r-429,0r0,-674r415,0r0,125r-263,0r0,140r248,0","w":534},"F":{"d":"67,0r0,-674r411,0r0,125r-259,0r0,154r242,0r0,124r-242,0r0,271r-152,0","w":527},"G":{"d":"404,7v-233,0,-369,-123,-369,-336v0,-224,164,-352,385,-352v87,0,154,17,187,32r-32,123v-37,-17,-82,-29,-156,-29v-127,0,-224,71,-224,218v0,167,131,250,287,212r0,-142r-104,0r0,-119r251,0r0,355v-47,16,-136,38,-225,38","w":682},"H":{"d":"67,-674r152,0r0,259r251,0r0,-259r152,0r0,674r-152,0r0,-282r-251,0r0,282r-152,0r0,-674","w":689},"I":{"d":"67,-674r152,0r0,674r-152,0r0,-674","w":285},"J":{"d":"198,-249r0,-425r152,0r0,426v6,240,-160,289,-351,243r17,-123v93,25,182,22,182,-121","w":411},"K":{"d":"66,0r0,-674r151,0r0,298r2,0v15,-26,31,-50,47,-74r152,-224r188,0r-223,287r234,387r-177,0r-166,-291r-57,71r0,220r-151,0","w":614},"L":{"d":"67,0r0,-674r152,0r0,546r268,0r0,128r-420,0","w":511},"M":{"d":"647,0r-11,-258v-3,-81,-6,-179,-6,-277r-2,0v-22,86,-51,182,-76,261r-82,263r-119,0r-72,-260v-24,-79,-40,-181,-63,-264r-24,535r-141,0r43,-674r203,0r66,225v22,78,42,162,57,241r4,0v36,-161,87,-316,135,-466r200,0r36,674r-148,0","w":846},"N":{"d":"206,0r-140,0r0,-674r178,0v86,155,182,307,250,478r2,0v-16,-145,-11,-316,-12,-478r140,0r0,674r-160,0r-144,-260v-40,-72,-85,-159,-117,-238r-4,0v5,90,7,185,7,295r0,203","w":690},"O":{"d":"363,-686v207,0,320,155,320,342v0,222,-133,355,-331,355v-199,0,-317,-151,-317,-344v0,-202,130,-353,328,-353xm360,-565v-104,0,-164,98,-164,229v0,133,62,226,164,226v103,0,162,-98,162,-229v0,-122,-57,-226,-162,-226","w":717},"P":{"d":"550,-469v6,175,-153,249,-333,227r0,242r-151,0r0,-665v47,-8,113,-14,206,-14v171,-1,273,61,278,210xm217,-558r0,199v90,18,182,-20,182,-105v0,-62,-43,-99,-120,-99v-30,0,-51,2,-62,5","w":581},"Q":{"d":"686,-2r-43,118v-96,-28,-176,-58,-267,-95v-15,-6,-31,-9,-46,-10v-153,-10,-295,-122,-295,-343v0,-203,128,-354,330,-354v205,0,318,156,318,341v0,153,-71,261,-159,301r0,4v51,15,109,28,162,38xm360,-110v103,0,162,-97,162,-229v0,-124,-58,-226,-162,-226v-104,0,-164,102,-164,229v0,128,61,226,164,226","w":717},"R":{"d":"269,-679v169,-1,281,45,281,195v0,85,-61,144,-119,165r0,3v47,19,73,63,90,125v21,77,41,165,54,191r-156,0v-10,-20,-27,-74,-46,-157v-23,-103,-59,-111,-156,-108r0,265r-151,0r0,-665v49,-8,121,-14,203,-14xm217,-560r0,185v97,8,181,-17,181,-97v0,-61,-42,-93,-112,-93v-37,0,-58,2,-69,5","w":593},"S":{"d":"40,-32r31,-125v59,41,276,77,276,-31v0,-42,-32,-66,-113,-94v-112,-40,-186,-102,-186,-200v0,-115,97,-202,255,-202v77,0,132,15,172,34r-34,122v-26,-13,-75,-32,-140,-32v-66,0,-98,31,-98,65v0,43,37,62,125,95v119,44,174,106,174,201v0,113,-86,209,-271,209v-77,0,-153,-21,-191,-42","w":540},"T":{"d":"197,0r0,-546r-182,0r0,-128r518,0r0,128r-184,0r0,546r-152,0","w":548},"U":{"d":"66,-674r152,0r0,387v0,117,45,176,122,176v80,0,124,-56,124,-176r0,-387r152,0r0,378v0,208,-105,307,-281,307v-170,0,-269,-95,-269,-309r0,-376","w":682},"V":{"d":"403,0r-178,0r-216,-674r167,0r82,285v23,81,44,157,60,241r3,0v39,-184,97,-353,147,-526r162,0","w":636},"W":{"d":"342,0r-167,0r-160,-674r163,0r51,277v15,81,29,168,40,236r2,0v11,-73,27,-154,44,-238r57,-275r162,0r54,284v17,78,22,156,38,226v10,-75,23,-154,39,-235r55,-275r155,0r-174,674r-165,0r-57,-290v-15,-66,-20,-136,-34,-208v-27,177,-68,331,-103,498","w":888},"X":{"d":"597,0r-176,0r-121,-243r-2,0v-28,75,-75,165,-108,243r-174,0r195,-341r-188,-333r175,0r110,235r2,0v31,-85,67,-156,103,-235r174,0r-190,329","w":613},"Y":{"d":"374,0r-152,0r0,-276r-213,-398r175,0r120,291r2,0r119,-291r171,0r-222,393r0,281","w":603},"Z":{"d":"24,0r0,-82r321,-462r0,-4r-292,0r0,-126r489,0r0,88r-314,456r0,4r319,0r0,126r-523,0","w":577},"[":{"d":"272,112r-204,0r0,-798r204,0r0,84r-95,0r0,630r95,0r0,84","w":314},"\\":{"d":"314,39r-101,0r-201,-725r101,0","w":330},"]":{"d":"42,-686r204,0r0,798r-204,0r0,-84r95,0r0,-630r-95,0r0,-84","w":314},"^":{"d":"554,-177r-109,0r-146,-356r-3,0r-146,356r-107,0r209,-473r93,0","w":596},"_":{"d":"0,75r500,0r0,50r-500,0r0,-50","w":500},"a":{"d":"468,-289v0,92,-5,213,8,289r-137,0r-9,-49r-3,0v-32,39,-82,60,-140,60v-99,0,-158,-72,-158,-150v0,-127,114,-187,287,-187v11,-98,-172,-73,-224,-33r-28,-98v34,-19,101,-44,190,-44v163,0,214,96,214,212xm239,-96v45,0,83,-31,82,-82r0,-53v-80,0,-142,19,-142,77v0,39,26,58,60,58","w":528},"b":{"d":"61,-146r0,-564r152,0r0,279r2,0v29,-42,80,-69,148,-69v117,0,201,97,201,247v0,176,-111,264,-223,264v-59,0,-112,-25,-149,-79r-6,68r-129,0v2,-32,4,-91,4,-146xm305,-383v-49,1,-93,42,-92,103r0,72v0,59,40,99,92,99v65,0,105,-50,105,-138v0,-76,-34,-136,-105,-136","w":598},"c":{"d":"410,-125r18,112v-27,13,-78,23,-136,23v-158,0,-259,-97,-259,-250v0,-143,98,-260,280,-260v40,0,84,7,116,19r-24,113v-18,-8,-45,-15,-85,-15v-80,0,-131,57,-131,137v0,125,123,162,221,121","w":451},"d":{"d":"383,-710r152,0r0,564v0,55,2,113,4,146r-135,0r-6,-71r-3,0v-30,54,-90,82,-153,82v-116,0,-209,-99,-209,-251v-1,-165,102,-261,219,-261v63,0,105,25,131,55r0,-264xm291,-110v55,0,95,-43,92,-108r0,-64v1,-60,-36,-102,-91,-102v-70,0,-105,62,-105,139v0,83,41,135,104,135","w":596},"e":{"d":"493,-196r-315,0v6,109,182,106,273,72r20,103v-50,21,-111,31,-177,31v-166,0,-261,-96,-261,-249v0,-124,77,-261,247,-261v180,0,235,149,213,304xm177,-300r180,0v0,-37,-16,-99,-86,-99v-64,0,-90,59,-94,99","w":528},"f":{"d":"231,0r-152,0r0,-377r-65,0r0,-112r65,0v-2,-74,13,-137,61,-183v56,-54,140,-57,216,-39r-6,117v-13,-4,-29,-7,-49,-7v-59,1,-75,50,-71,112r98,0r0,112r-97,0r0,377","w":341},"g":{"d":"528,-489v-7,105,-3,294,-4,418v0,94,-19,171,-75,220v-92,80,-267,74,-374,23r30,-116v31,18,84,37,142,37v81,0,142,-59,125,-160v-29,40,-76,63,-132,63v-121,0,-207,-98,-207,-238v0,-158,101,-258,222,-258v69,0,107,32,136,70r5,-59r132,0xm286,-116v54,0,86,-42,86,-102r0,-72v-1,-57,-35,-95,-85,-95v-56,0,-100,50,-100,139v0,73,36,130,99,130","w":585},"h":{"d":"294,-377v-51,0,-80,35,-81,87r0,290r-152,0r0,-710r152,0r0,280r2,0v29,-40,76,-70,139,-70v97,0,171,67,171,215r0,285r-152,0r0,-269v0,-64,-22,-108,-79,-108","w":586},"i":{"d":"213,0r-152,0r0,-489r152,0r0,489xm138,-701v49,0,79,33,80,76v0,42,-31,76,-82,76v-48,0,-79,-34,-79,-76v0,-43,32,-76,81,-76","w":274},"j":{"d":"-39,96v108,-16,119,-38,120,-191r0,-394r152,0r0,431v5,193,-89,269,-257,273xm157,-701v49,0,79,33,80,76v0,42,-31,76,-82,76v-48,0,-79,-34,-79,-76v0,-43,32,-76,81,-76","w":291},"k":{"d":"213,-710r0,427r2,0v40,-74,89,-137,134,-206r183,0r-175,198r200,291r-187,0r-119,-201r-38,48r0,153r-152,0r0,-710r152,0","w":542},"l":{"d":"61,0r0,-710r152,0r0,710r-152,0","w":275},"m":{"d":"286,-378v-53,0,-76,42,-77,93r0,285r-148,0r0,-333v0,-61,-2,-112,-4,-156r129,0r6,66r3,0v21,-32,65,-78,148,-78v66,0,111,37,136,84v36,-49,81,-84,157,-84v94,0,165,66,165,213r0,288r-148,0r0,-266v0,-71,-23,-112,-72,-112v-49,0,-77,38,-76,92r0,286r-148,0r0,-275v0,-61,-22,-103,-71,-103","w":860},"n":{"d":"296,-377v-55,0,-83,38,-83,95r0,282r-152,0r0,-333v0,-61,-2,-112,-4,-156r132,0r7,68r3,0v20,-32,69,-79,151,-79v100,0,175,67,175,211r0,289r-152,0r0,-271v0,-63,-22,-106,-77,-106","w":586},"o":{"d":"295,-501v149,0,249,103,249,251v0,179,-127,261,-258,261v-143,0,-253,-94,-253,-252v0,-159,104,-260,262,-260xm290,-392v-72,0,-100,75,-100,147v0,84,35,147,100,147v60,0,97,-59,97,-148v0,-72,-28,-146,-97,-146","w":577},"p":{"d":"61,198r0,-523v0,-64,-2,-118,-4,-164r132,0v4,21,1,50,9,68v36,-51,92,-79,163,-79v107,0,203,93,203,249v0,178,-113,262,-222,262v-61,0,-103,-27,-129,-56r0,243r-152,0xm307,-381v-51,1,-94,42,-94,104r0,67v-1,63,38,104,92,104v66,0,105,-55,105,-138v0,-78,-35,-137,-103,-137","w":598},"q":{"d":"249,-501v65,0,109,26,139,70r4,-58r146,0v-1,48,-3,96,-3,147r0,540r-152,0r0,-260r-2,0v-31,47,-80,73,-146,73v-106,0,-202,-94,-202,-249v0,-176,111,-263,216,-263xm291,-109v54,0,93,-41,92,-102r0,-73v-1,-57,-35,-98,-91,-98v-69,0,-105,59,-105,138v0,81,40,135,104,135","w":595},"r":{"d":"361,-355v-83,-17,-148,21,-148,107r0,248r-152,0r0,-328v0,-72,-1,-119,-4,-161r130,0r6,90r4,0v35,-82,88,-111,164,-99r0,143","w":380},"s":{"d":"33,-24r27,-108v28,17,86,36,131,36v46,0,65,-15,65,-40v0,-26,-15,-38,-71,-57v-102,-34,-140,-89,-140,-147v0,-92,78,-161,199,-161v57,0,107,14,137,29r-26,105v-30,-21,-164,-54,-164,11v0,24,19,36,79,57v93,32,132,80,132,151v0,92,-71,159,-211,159v-64,0,-121,-15,-158,-35","w":434},"t":{"d":"239,10v-112,0,-158,-62,-157,-187r0,-200r-65,0r0,-112r65,0r0,-91r149,-41r0,132r109,0r0,112r-109,0r0,177v-7,81,42,95,105,82r1,115v-19,7,-56,13,-98,13","w":367},"u":{"d":"288,-112v55,0,82,-35,82,-86r0,-291r152,0r0,332v0,64,2,116,4,157r-132,0r-7,-69r-3,0v-19,30,-65,80,-153,80v-100,0,-172,-62,-172,-213r0,-287r152,0r0,263v0,71,23,114,77,114","w":583},"v":{"d":"9,-489r165,0r66,227v12,42,20,80,28,119r3,0v23,-119,60,-233,90,-346r160,0r-182,489r-152,0","w":530},"w":{"d":"11,-489r155,0r40,201v9,50,19,104,27,160r3,0v24,-130,57,-240,87,-361r120,0r49,195v16,55,23,115,38,166v16,-123,46,-244,70,-361r149,0r-150,489r-142,0r-46,-171v-15,-46,-19,-97,-34,-153v-18,128,-50,213,-80,324r-143,0","w":759},"x":{"d":"7,-489r170,0r88,155r2,0r81,-155r165,0r-161,233r163,256r-172,0r-49,-88v-14,-24,-26,-49,-38,-74r-3,0r-83,162r-167,0r166,-249","w":519},"y":{"d":"55,93v56,-14,121,-49,137,-109v0,-6,-1,-13,-6,-25r-180,-448r169,0r73,241v8,28,18,65,24,91r4,0r82,-332r162,0v-69,187,-188,570,-286,643v-55,42,-108,63,-146,67","w":523},"z":{"d":"22,0r0,-87r154,-193r77,-88r-214,0r0,-121r400,0r0,92r-147,185r-80,91r235,0r0,121r-425,0","w":469},"{":{"d":"95,-24v0,-49,11,-107,11,-157v0,-28,-7,-65,-76,-68r0,-76v68,-3,76,-39,76,-69v0,-49,-11,-108,-11,-157v0,-106,75,-142,187,-135r0,85v-112,-12,-72,109,-69,197v3,78,-34,101,-86,118v56,11,86,40,86,116v0,85,-49,207,69,198r0,84v-110,5,-186,-22,-187,-136","w":314},"|":{"d":"88,-750r106,0r0,1000r-106,0r0,-1000","w":283},"}":{"d":"219,-551v0,50,-10,109,-11,157v0,30,7,66,76,69r0,76v-68,3,-76,40,-76,68v0,49,11,107,11,157v-1,113,-77,142,-187,136r0,-84v113,12,71,-110,69,-198v-3,-79,34,-102,86,-118v-56,-12,-86,-41,-86,-116v0,-85,48,-206,-69,-197r0,-85v112,-6,187,28,187,135","w":314},"~":{"d":"420,-185v-71,0,-178,-89,-235,-89v-25,0,-43,17,-47,82r-95,0v-1,-134,58,-187,139,-187v70,0,177,87,236,87v23,0,38,-21,40,-81r95,0v6,142,-57,188,-133,188","w":596},"'":{"d":"35,-692r135,0r-23,271r-89,0","w":205},"`":{"d":"4,-702r140,0r86,152r-104,0","w":300},"\u00a0":{"w":202}}});;
Cufon.replace('body.not-logged-in h1.title');
// Cufon.replace('h2');
// Cufon.replace('h3');
;

