/****** FILE: sapphire/thirdparty/jquery/jquery.js *****/

(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,xhr);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);};});})();
;
/****** FILE: mysite/javascript/jquery.diagonalTextAlignment.js *****/

$.fn.diagonalTextAlignment=function(settings){settings=jQuery.extend({angle:30},settings);return $(this).each(function(){var count=0;var firstTop=0;var angle=settings.angle;$(this).children().each(function(){$(this).css('position','relative');count++;var top=$(this).offset()['top'];if(count==1){firstTop=top;left=0;}
else{top-=firstTop
left=leftOffset(angle,top);}
$(this).css('left',left);});function leftOffset(angle,top){return-findOppositeLenth(angle,top);}
function findOppositeLenth(angle,adjacent){radian=angle*(Math.PI/180);return adjacent*Math.tan(radian);}});}
;
/****** FILE: mysite/javascript/cufon/cufon-yui.js *****/

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

Cufon.registerFont({"w":583,"face":{"font-family":"PF BeauSans Pro Light","font-weight":300,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 0 0 0 0 2 0 4","ascent":"750","descent":"-250","x-height":"11","bbox":"-28.0078 -779 884 222.238","underline-thickness":"50","underline-position":"-50","stemh":"60","stemv":"73","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":264},"\"":{"d":"147,-689r-20,226v-2,10,-5,14,-18,14r-18,0v-11,0,-15,-4,-15,-12r-21,-228v0,-6,3,-14,14,-14r64,0v11,0,14,8,14,14xm280,-689r-20,226v-1,10,-4,14,-18,14r-18,0v-11,0,-14,-4,-15,-12r-20,-228v0,-6,4,-14,14,-14r63,0v12,0,15,8,14,14","w":336},"#":{"d":"205,-201r157,0r39,-193r-157,0xm58,-153v-8,0,-11,-3,-9,-11r5,-24v2,-8,4,-13,13,-13r85,0r38,-193r-89,0v-9,0,-11,-3,-10,-12r5,-24v2,-8,5,-12,14,-12r90,0r26,-131v2,-8,4,-10,12,-10r30,0v9,0,13,2,12,10r-27,131r157,0r27,-131v1,-8,4,-10,11,-10r30,0v9,0,13,2,12,10r-27,131r90,0v9,0,12,4,11,12r-6,24v-2,9,-4,12,-13,12r-91,0r-39,193r94,0v9,0,12,5,10,13r-4,24v-2,8,-4,11,-14,11r-95,0v-4,18,-25,124,-28,142v-2,9,-3,11,-12,11r-30,0v-8,0,-13,-2,-11,-11r27,-142r-156,0v-4,18,-25,124,-28,142v-2,9,-3,11,-12,11r-30,0v-8,0,-13,-2,-12,-11r28,-142r-84,0"},"$":{"d":"353,5r0,92v0,10,-4,12,-14,12r-16,0v-9,0,-13,-2,-13,-12r0,-860v0,-11,4,-13,13,-13r16,0v10,0,14,2,14,13r0,82v43,4,86,15,130,33v7,3,9,7,6,15r-17,45v-3,7,-7,8,-13,5v-41,-14,-74,-23,-106,-27r0,243v100,40,177,87,177,190v0,103,-71,166,-177,182xm225,-678r0,-85v0,-11,5,-13,15,-13r15,0v10,0,14,2,14,13r0,860v0,10,-4,12,-14,12r-15,0v-10,0,-15,-2,-15,-12r0,-90v-62,-6,-126,-23,-173,-46v-6,-3,-9,-8,-4,-17r19,-42v3,-7,8,-8,15,-5v44,20,97,32,143,39r0,-275v-100,-41,-151,-85,-151,-169v0,-85,53,-150,151,-170xm454,-173v0,-53,-36,-86,-101,-116r0,224v55,-13,101,-47,101,-108xm150,-513v0,45,29,71,75,94r0,-185v-45,14,-75,44,-75,91"},"&":{"d":"412,-164r-141,-178v-70,44,-133,103,-133,181v0,80,50,110,113,110v56,0,117,-40,161,-113xm620,0r-53,0v-13,0,-19,-2,-26,-11r-86,-99v-56,75,-121,123,-211,123v-112,0,-177,-64,-177,-168v0,-96,70,-181,163,-237v-48,-56,-80,-115,-80,-166v0,-94,73,-154,162,-154v89,0,157,57,157,142v0,91,-64,147,-141,195v47,63,78,98,120,152v39,-68,87,-141,165,-167v14,-5,31,-9,45,-10v8,-1,11,2,12,8r7,39v2,9,-4,12,-10,13v-105,17,-135,94,-175,170v18,23,133,156,133,156v4,5,3,14,-5,14xm399,-563v0,-41,-26,-88,-86,-88v-56,0,-91,36,-91,88v0,49,36,100,69,140v47,-30,108,-74,108,-140","w":715},"'":{"d":"150,-689r-20,226v-1,10,-4,14,-18,14r-18,0v-11,0,-15,-4,-16,-12r-19,-228v-1,-6,3,-14,13,-14r64,0v12,0,15,8,14,14","w":209},"(":{"d":"256,56r-26,20v-5,4,-9,3,-13,-1v-106,-100,-187,-235,-187,-399v0,-168,81,-302,186,-402v5,-5,9,-6,14,-2r25,18v6,4,4,7,1,11v-99,110,-142,232,-142,371v0,146,45,267,142,373v3,4,5,7,0,11","w":283},")":{"d":"32,-708r27,-20v5,-4,9,-3,13,1v105,100,186,234,186,399v0,168,-80,302,-185,402v-5,5,-9,6,-14,2r-26,-19v-6,-4,-4,-7,-1,-11v98,-109,142,-232,142,-370v0,-147,-46,-267,-142,-374v-3,-4,-5,-7,0,-10","w":286},"*":{"d":"402,-534r-130,35r88,102v7,8,6,13,-2,18r-29,22v-11,9,-16,7,-21,-3r-70,-114r-71,118v-5,9,-10,9,-17,4r-32,-25v-8,-6,-8,-11,-3,-19r86,-103r-127,-33v-9,-2,-12,-7,-9,-16r11,-36v3,-11,8,-13,18,-8r122,50r-10,-135v-1,-5,2,-11,12,-11r39,0v11,0,13,6,12,12r-11,134r123,-52v9,-4,14,-2,17,6r12,38v3,10,-2,15,-8,16","w":468},"+":{"d":"65,-308v-11,0,-13,-4,-13,-14r0,-44v0,-9,2,-14,13,-14r190,0r0,-197v0,-11,4,-13,14,-13r46,0v10,0,13,2,13,13r0,197r189,0v11,0,13,5,13,14r0,44v0,10,-2,14,-13,14r-189,0r0,198v0,11,-3,13,-13,13r-46,0v-10,0,-14,-2,-14,-13r0,-198r-190,0"},",":{"d":"176,-96r-59,204v-3,10,-6,15,-18,15r-24,0v-11,0,-17,-5,-16,-14r15,-204v1,-9,6,-17,18,-17r69,0v12,0,17,8,15,16","w":223},"-":{"d":"63,-242v-11,0,-13,-3,-13,-13r0,-58v0,-9,2,-13,13,-13r230,0v10,0,12,4,12,13r0,58v0,10,-2,13,-12,13r-230,0","w":355,"k":{"X":40,"T":60,"Y":50,"V":40,"W":40}},".":{"d":"180,-49v0,34,-26,61,-61,61v-34,0,-61,-26,-61,-61v0,-34,27,-60,61,-60v35,0,61,26,61,60","w":238},"\/":{"d":"86,84v-2,9,-7,12,-17,12r-45,0v-8,0,-14,-3,-11,-12r325,-850v2,-9,7,-13,16,-13r48,0v6,0,12,4,10,13","w":421},"0":{"d":"550,-337v0,212,-82,348,-260,348v-173,0,-259,-132,-259,-346v0,-213,87,-348,261,-348v183,0,258,133,258,346xm476,-335v0,-136,-37,-285,-186,-285v-144,0,-184,148,-184,283v0,135,36,286,186,286v145,0,184,-152,184,-284"},"1":{"d":"468,-14v0,10,-2,14,-13,14r-316,0v-11,0,-13,-4,-13,-14r0,-39v0,-10,2,-14,13,-14r120,0r0,-530r-117,19v-12,2,-15,-2,-15,-12r0,-29v0,-11,3,-16,15,-20r137,-40v28,-8,53,-2,53,27r0,585r123,0v11,0,13,4,13,14r0,39"},"2":{"d":"121,0v-48,0,-62,-19,-62,-61v0,-46,28,-109,89,-172v48,-50,107,-91,153,-121v89,-56,128,-92,128,-152v0,-72,-64,-108,-150,-108v-52,0,-110,18,-157,52v-7,5,-14,6,-19,-1r-26,-34v-4,-7,-3,-13,4,-18v57,-42,130,-68,202,-68v123,0,222,58,222,172v0,95,-60,152,-165,215v-77,46,-183,130,-203,229r355,0v11,0,13,4,13,14r0,39v0,10,-2,14,-13,14r-371,0"},"3":{"d":"264,11v-74,0,-157,-15,-214,-61v-6,-5,-7,-10,-3,-16r25,-36v5,-7,12,-8,21,-2v50,33,110,48,164,48v113,0,172,-56,172,-144v0,-71,-71,-123,-156,-123r-25,0v-15,0,-27,-5,-27,-22r0,-24v0,-16,11,-24,24,-24r18,0v86,0,147,-42,147,-116v0,-83,-78,-107,-144,-107v-56,0,-115,17,-160,47v-9,6,-16,5,-21,-2r-23,-33v-4,-5,-3,-10,3,-15v52,-42,134,-65,207,-65v118,0,213,57,213,167v0,69,-44,134,-117,156r0,4v86,16,138,81,138,162v0,118,-90,206,-242,206"},"4":{"d":"387,-154r-323,0v-20,0,-41,-7,-41,-38r0,-11v0,-18,4,-31,18,-49r303,-396v15,-20,30,-38,52,-38r24,0v31,0,42,12,42,43r0,425r76,0v10,0,14,3,14,13r0,37v0,10,-4,13,-14,13r-76,0r0,142v0,11,-5,13,-14,13r-47,0v-10,0,-14,-2,-14,-13r0,-141xm387,-218r0,-369r-3,-1r-278,366r1,4r280,0"},"5":{"d":"530,-215v0,142,-100,228,-254,228v-84,0,-165,-15,-223,-62v-6,-4,-7,-9,-3,-16r25,-36v5,-7,12,-8,21,-2v50,33,113,48,178,48v108,0,181,-58,181,-157v0,-99,-79,-137,-157,-137v-75,0,-118,17,-172,41v-13,6,-23,5,-36,0r-13,-6v-13,-5,-22,-15,-20,-36r27,-271v3,-38,29,-52,53,-52r331,0v12,0,14,4,14,14r0,39v0,10,-3,14,-14,14r-313,0r-24,224v63,-28,127,-34,175,-34v126,0,224,78,224,201"},"6":{"d":"549,-207v0,149,-117,218,-245,218v-169,0,-266,-113,-266,-313v0,-223,91,-384,321,-384v31,0,75,5,105,16v9,3,12,7,8,17r-12,38v-3,9,-7,11,-18,8v-20,-7,-56,-13,-84,-13v-140,0,-225,89,-239,243v66,-24,140,-34,195,-34v129,0,235,66,235,204xm474,-202v0,-81,-53,-142,-161,-142v-65,0,-123,10,-199,33v-1,16,-1,24,-1,34v0,133,75,224,192,224v98,0,169,-52,169,-149"},"7":{"d":"57,-673r417,0v20,0,38,7,38,31r0,17v0,18,-4,30,-15,51r-289,553v-7,15,-13,21,-29,21r-49,0v-10,0,-14,-8,-9,-18r308,-589r-372,0v-11,0,-13,-3,-13,-14r0,-38v0,-11,2,-14,13,-14"},"8":{"d":"289,11v-171,0,-243,-90,-243,-193v0,-77,50,-151,135,-177r0,-2v-86,-29,-109,-101,-109,-142v0,-111,93,-181,217,-181v130,0,215,74,215,176v0,42,-28,117,-108,147r0,1v97,28,134,102,134,176v0,85,-68,195,-241,195xm287,-619v-91,0,-142,53,-142,121v0,70,70,112,142,112v68,0,144,-44,144,-114v0,-70,-56,-119,-144,-119xm288,-325v-78,0,-167,47,-167,139v0,70,48,135,167,135v124,0,167,-74,167,-139v0,-92,-83,-135,-167,-135"},"9":{"d":"31,-468v0,-149,117,-218,246,-218v169,0,265,113,265,313v0,223,-92,384,-321,384v-30,0,-75,-5,-105,-16v-9,-3,-12,-7,-9,-17r14,-39v1,-7,5,-11,16,-8v18,5,58,14,85,14v140,0,225,-90,239,-243v-65,24,-133,33,-188,33v-129,0,-242,-65,-242,-203xm106,-473v0,81,59,142,161,142v65,0,123,-10,199,-33v1,-17,1,-25,1,-34v0,-133,-83,-224,-191,-224v-89,0,-170,51,-170,149"},":":{"d":"192,-443v0,34,-26,61,-60,61v-35,0,-61,-26,-61,-61v0,-33,26,-59,61,-59v34,0,60,25,60,59xm192,-51v0,35,-26,61,-60,61v-35,0,-61,-26,-61,-60v0,-33,26,-60,61,-60v34,0,60,25,60,59","w":261},";":{"d":"79,-442v0,-33,26,-60,60,-60v34,0,60,26,60,60v0,34,-26,60,-60,60v-34,0,-60,-25,-60,-60xm185,-96r-59,204v-3,10,-6,15,-18,15r-24,0v-11,0,-17,-5,-16,-14r15,-204v1,-9,6,-17,18,-17r69,0v12,0,17,8,15,16","w":255},"<":{"d":"73,-382r444,-211v9,-4,13,0,13,10r0,41v0,10,-2,16,-12,20r-373,176r368,170v12,7,15,10,15,22r0,47v0,7,-5,11,-12,8r-443,-208v-12,-6,-20,-10,-21,-21r0,-27v0,-15,5,-19,21,-27"},"=":{"d":"513,-407v0,10,-2,14,-12,14r-419,0v-10,0,-12,-4,-12,-14r0,-41v0,-9,2,-13,12,-13r419,0v10,0,12,4,12,13r0,41xm513,-230v0,10,-2,14,-12,14r-419,0v-10,0,-12,-4,-12,-14r0,-41v0,-9,2,-13,12,-13r419,0v10,0,12,4,12,13r0,41"},">":{"d":"65,-593r444,211v16,8,21,12,21,27r0,27v-1,11,-9,15,-21,21r-443,208v-8,3,-13,-1,-13,-8r0,-47v0,-12,3,-15,16,-22r367,-170r-372,-176v-10,-4,-12,-10,-12,-20r0,-41v0,-10,4,-14,13,-10"},"?":{"d":"261,-709v127,0,215,61,215,175v0,75,-51,128,-105,172v-54,45,-109,86,-111,148r0,37v0,7,-3,12,-12,12r-51,0v-8,0,-11,-5,-11,-11r0,-39v0,-91,69,-138,128,-186v45,-37,86,-76,86,-132v0,-60,-44,-109,-139,-109v-51,0,-114,18,-161,54v-7,5,-14,6,-19,0r-23,-35v-5,-7,-4,-13,3,-19v59,-46,142,-67,200,-67xm280,-49v0,33,-24,59,-58,59v-34,0,-59,-25,-59,-59v0,-33,27,-58,61,-58v20,0,56,13,56,58","w":518},"@":{"d":"624,-419r0,173v0,30,6,77,73,77v79,0,128,-72,128,-180v0,-204,-132,-319,-331,-319v-219,0,-364,153,-364,345v0,205,150,341,357,341v25,0,71,-4,118,-18v10,-3,15,-3,18,7r9,25v3,10,-2,14,-11,18v-44,16,-91,23,-136,23v-248,0,-415,-160,-415,-396v0,-227,180,-400,425,-400v227,0,388,131,389,371v0,143,-81,239,-198,239v-66,0,-104,-28,-116,-63v-34,26,-94,48,-143,48v-91,0,-138,-48,-138,-124v0,-79,56,-141,171,-141r100,0r0,-18v0,-51,-16,-85,-96,-85v-34,0,-78,8,-109,17v-9,3,-15,3,-17,-7r-7,-29v-2,-6,-2,-12,10,-17v37,-14,83,-21,131,-21v104,0,152,47,152,134xm462,-336v-37,0,-109,7,-109,84v0,52,42,71,87,71v29,0,78,-11,120,-41r0,-114r-98,0","w":952},"A":{"d":"580,0r-56,0v-10,0,-16,0,-20,-13r-53,-154r-297,0v-7,19,-46,136,-53,154v-3,9,-8,13,-18,13r-57,0v-11,0,-14,-8,-11,-16r231,-651v10,-28,17,-34,44,-35r26,0v30,0,37,8,46,35r228,651v3,7,1,16,-10,16xm429,-236r-75,-229r-49,-152r-5,0r-48,148r-77,233r254,0","w":605,"k":{"'":40}},"B":{"d":"500,-213v0,-79,-54,-135,-154,-135r-193,0r0,277r194,0v126,0,153,-85,153,-142xm153,-631r0,219r191,0v48,0,125,-22,125,-114v0,-61,-43,-105,-115,-105r-201,0xm458,-389r0,6v92,27,122,106,122,177v0,123,-95,206,-223,206r-235,0v-33,0,-47,-13,-47,-46r0,-608v0,-31,11,-47,47,-47r224,-1v116,0,204,51,204,171v0,59,-31,116,-92,142","w":633,"k":{"Y":20}},"C":{"d":"361,-61v59,0,115,-15,165,-39v13,-5,17,1,20,7r16,35v7,13,4,17,-4,22v-67,40,-150,47,-210,47v-183,0,-293,-109,-293,-351v0,-228,120,-370,299,-370v57,0,118,7,186,42v7,3,10,8,4,20r-19,38v-4,7,-7,10,-16,6v-50,-24,-101,-34,-152,-34v-157,0,-223,143,-223,298v0,159,58,279,227,279","w":588,"k":{"-":40}},"D":{"d":"532,-353v0,-151,-58,-278,-238,-278r-141,0r0,560r146,0v174,0,233,-120,233,-282xm308,0r-186,0v-33,0,-47,-13,-47,-46r0,-608v0,-31,11,-47,47,-47r176,-1v207,-1,314,135,314,347v0,211,-98,355,-304,355","w":667,"k":{"T":10,"Y":10}},"E":{"d":"532,-18v0,12,-3,18,-16,18r-278,0v-125,0,-163,-74,-163,-165r0,-370v0,-91,45,-166,163,-166r271,0v13,0,16,6,16,18r0,35v0,13,-3,17,-16,17r-270,0v-61,0,-87,28,-87,85r0,140r325,0v12,0,15,4,15,17r0,33v0,11,-3,17,-15,17r-325,0r0,184v0,50,23,84,87,84r277,0v13,0,16,5,16,18r0,35","w":567},"F":{"d":"152,-16v0,13,-4,16,-17,16r-42,0v-12,0,-18,-3,-18,-16r0,-519v0,-91,39,-166,163,-166r275,0v13,0,16,6,16,18r0,35v0,13,-3,17,-16,17r-274,0v-61,0,-87,28,-87,85r0,149r321,0v13,0,15,4,15,17r0,33v0,12,-2,18,-15,18r-321,0r0,313","w":555,"k":{"s":20,"r":10,"q":10,"p":10,"o":10,"n":10,"m":10,"i":10,"g":10,"e":10,"d":10,"c":10,"a":30,"J":100,"A":50,".":130,",":130}},"G":{"d":"357,-59v30,0,97,-4,151,-29r0,-239v-19,-4,-42,-5,-60,-5v-47,0,-92,10,-138,33v-11,4,-15,7,-21,-3r-16,-35v-5,-8,-3,-13,5,-19v43,-29,109,-46,167,-46v34,0,56,2,82,6v43,8,57,25,57,69r0,258v0,15,-3,24,-16,31v-73,43,-173,49,-219,49v-182,0,-294,-110,-294,-353v0,-227,119,-368,304,-368v57,0,124,7,192,42v6,4,9,9,4,20r-19,42v-5,8,-8,10,-17,6v-49,-24,-107,-34,-158,-34v-163,0,-227,139,-227,294v0,163,54,281,223,281","w":644},"H":{"d":"154,-13v0,11,-4,13,-14,13r-51,0v-9,0,-14,-2,-14,-13r0,-674v0,-11,5,-13,14,-13r51,0v10,0,14,2,14,13r0,283r374,0r0,-283v0,-11,4,-13,14,-13r49,0v11,0,14,2,14,13r0,674v0,11,-3,13,-14,13r-49,0v-10,0,-14,-2,-14,-13r0,-323r-374,0r0,323","w":680},"I":{"d":"168,-13v0,11,-3,13,-14,13r-50,0v-10,0,-14,-2,-14,-13r0,-674v0,-11,4,-13,14,-13r50,0v11,0,14,2,14,13r0,674","w":259},"J":{"d":"224,11v-58,0,-143,-11,-209,-55v-8,-5,-11,-8,-5,-20r21,-39v4,-7,10,-8,19,-3v49,30,116,47,177,47v129,0,178,-73,178,-212r0,-416v0,-11,5,-13,14,-13r49,0v10,0,14,2,14,13r0,422v0,177,-81,276,-258,276","w":564},"K":{"d":"151,-311r4,1r97,-123r207,-256v6,-7,15,-11,28,-11r62,0v9,0,12,6,6,12r-189,234r244,437v5,10,2,17,-8,17r-54,0v-17,0,-23,-1,-31,-16r-205,-373r-161,200r0,176v0,11,-3,13,-14,13r-48,0v-9,0,-14,-2,-14,-13r0,-674v0,-11,5,-13,14,-13r48,0v11,0,14,2,14,13r0,376","w":621},"L":{"d":"534,-15v0,10,-2,15,-13,15r-285,0v-122,0,-161,-75,-161,-166r0,-522v0,-11,5,-14,14,-14r49,0v10,0,14,3,14,14r0,527v0,60,28,90,91,90r278,0v11,0,13,5,13,14r0,42","w":544,"k":{"'":90,"T":70,"Y":90,"-":70,"C":20,"G":20,"O":20,"Q":20,"V":70,"W":70,"v":30,"w":30,"y":30}},"M":{"d":"398,-154r4,0v10,-23,49,-121,59,-144r151,-367v12,-30,23,-36,48,-36r23,0v35,0,43,17,43,44r0,644v0,11,-5,13,-14,13r-47,0v-10,0,-14,-2,-14,-13r0,-553r-5,0r-50,123v-29,69,-107,259,-137,327v-10,27,-19,35,-45,35r-27,0v-27,0,-36,-8,-46,-35r-140,-330r-46,-112r-6,0r0,545v0,11,-3,13,-14,13r-46,0v-10,0,-14,-2,-14,-13r0,-644v0,-27,8,-44,42,-44r23,0v26,0,36,6,48,36v9,20,131,317,150,363v11,24,50,124,60,148","w":801},"N":{"d":"154,-591r-3,0r0,578v0,11,-4,13,-14,13r-48,0v-9,0,-14,-2,-14,-13r0,-644v0,-29,10,-44,43,-44r22,0v25,0,32,10,48,36r252,412r85,144r4,0r0,-579v0,-11,3,-13,14,-13r48,0v9,0,14,2,14,13r0,644v0,28,-9,44,-42,44r-23,0v-26,0,-33,-10,-49,-37r-261,-426","w":680},"O":{"d":"641,-352v0,232,-101,363,-295,363v-197,0,-291,-136,-291,-360v0,-232,120,-362,293,-362v193,0,293,134,293,359xm562,-349v0,-153,-43,-293,-212,-293v-153,0,-218,134,-218,290v0,167,51,294,215,294v163,0,215,-140,215,-291","w":696,"k":{"T":10,"Y":10}},"P":{"d":"75,-655v0,-31,10,-46,46,-46r231,0v124,0,209,83,209,204v0,74,-41,209,-218,209r-192,0r0,276v0,10,-4,12,-14,12r-49,0v-9,0,-13,-2,-13,-12r0,-643xm151,-630r0,274r183,0v91,0,147,-50,147,-137v0,-60,-33,-137,-148,-137r-182,0","w":595,"k":{"s":20,"q":20,"o":20,"g":20,"e":20,"d":20,"c":20,"a":20,"Y":10,"W":10,"V":10,"A":40,".":140,",":140}},"Q":{"d":"641,-352v0,232,-101,363,-295,363v-197,0,-291,-136,-291,-360v0,-231,120,-362,293,-362v192,0,293,134,293,359xm562,-349v0,-153,-43,-292,-212,-292v-153,0,-218,133,-218,289v0,168,51,294,214,294v164,0,216,-140,216,-291xm422,129r-90,0v-10,0,-12,-5,-12,-14r0,-39v0,-10,2,-13,12,-13r106,0v102,0,188,28,231,58v7,5,10,9,5,18r-20,32v-5,9,-12,11,-21,6v-50,-29,-126,-48,-211,-48","w":696,"k":{"T":10,"Y":10}},"R":{"d":"439,-334r0,3v55,18,76,54,90,104r59,212v2,6,1,15,-11,15r-55,0v-5,0,-13,-1,-16,-11r-54,-194v-23,-82,-73,-102,-141,-102r-157,0r0,294v0,11,-4,13,-14,13r-51,0v-10,0,-14,-2,-14,-13r0,-642v0,-31,11,-47,47,-47r227,0v127,0,207,83,207,194v0,80,-42,148,-117,174xm477,-504v0,-65,-39,-126,-137,-126r-185,0r0,255r179,0v98,0,143,-54,143,-129","w":617,"k":{"Y":20}},"S":{"d":"534,-184v0,127,-100,195,-246,195v-70,0,-171,-13,-249,-54v-6,-3,-8,-9,-4,-17r20,-44v3,-7,8,-8,15,-5v67,32,158,50,219,50v89,0,166,-38,166,-121v0,-74,-59,-112,-178,-152v-147,-48,-215,-93,-215,-196v0,-108,82,-184,225,-184v65,0,135,10,200,41v7,3,9,7,6,15r-19,47v-4,7,-7,7,-12,5v-68,-28,-125,-38,-177,-38v-85,0,-144,44,-144,109v0,74,59,97,176,139v122,42,217,91,217,210","w":562},"T":{"d":"305,-13v0,11,-3,13,-12,13r-53,0v-10,0,-14,-2,-14,-13r0,-619r-200,0v-10,0,-12,-3,-12,-13r0,-41v0,-10,2,-14,12,-14r486,0v11,0,13,4,13,14r0,41v0,10,-2,13,-13,13r-207,0r0,619","w":538,"k":{"-":80,"C":20,"G":20,"O":20,"Q":20,"v":40,"w":40,"y":40,"A":60,"a":60,"c":40,"d":40,"e":40,"g":40,"o":40,"q":40,"i":30,"m":30,"n":30,"p":30,"r":30,"s":50,"u":50,",":90,".":90,":":50,";":50}},"U":{"d":"75,-687v0,-11,3,-13,9,-13r59,0v7,0,10,2,10,13r0,382v0,173,32,248,226,248v22,0,84,-2,146,-14r0,-616v0,-11,2,-13,9,-13r59,0v6,0,8,2,8,13r0,609v0,41,-15,68,-64,77v-50,9,-119,13,-161,13v-221,0,-301,-72,-301,-311r0,-388","w":676},"V":{"d":"599,-690r-230,657v-8,24,-16,32,-39,33r-36,0v-25,0,-35,-6,-45,-33r-232,-657v-3,-6,0,-11,7,-11r60,0v8,0,12,3,15,10v5,16,109,329,153,448v6,19,46,139,55,163r5,0r52,-161r153,-450v4,-10,8,-10,18,-10r58,0v7,0,8,5,6,11","w":616,"k":{"-":60,"C":20,"G":20,"O":20,"Q":20,"A":30,"a":40,"c":30,"d":30,"e":30,"g":30,"o":30,"q":30,"i":20,"m":20,"n":20,"p":20,"r":20,"s":30,",":100,".":100,":":30,";":30}},"W":{"d":"415,-614r-3,0r-33,148r-106,428v-5,24,-15,38,-38,38r-36,0v-24,0,-38,-6,-44,-33r-139,-657v-2,-6,0,-11,7,-11r59,0v9,0,14,3,15,10r85,434r31,165r5,0r39,-166r98,-406v4,-20,14,-37,44,-37r34,0v25,0,35,15,40,37r97,403r38,169r5,0r33,-170r86,-429v1,-7,6,-10,14,-10r58,0v7,0,9,5,7,11r-141,657v-6,27,-20,33,-44,33r-36,0v-22,0,-32,-13,-38,-38r-105,-430","w":827,"k":{"-":60,"C":20,"G":20,"O":20,"Q":20,"A":30,"a":40,"c":30,"d":30,"e":30,"g":30,"o":30,"q":30,"i":20,"m":20,"n":20,"p":20,"r":20,"s":30,",":100,".":100,":":30,";":30}},"X":{"d":"536,-12v3,5,1,12,-7,12r-60,0v-13,0,-18,-4,-23,-12r-173,-290r-173,290v-5,9,-11,12,-23,12r-58,0v-9,0,-11,-6,-7,-12r217,-351r-200,-327v-2,-4,-1,-11,7,-11r58,0v14,0,18,2,23,12r158,262r157,-262v5,-9,11,-12,24,-12r54,0v8,0,10,6,6,13r-198,323","w":548,"k":{"-":30}},"Y":{"d":"535,-691r-222,407r0,271v0,11,-3,13,-13,13r-48,0v-10,0,-14,-2,-14,-13r0,-270r-226,-408v-3,-4,-1,-10,7,-10r62,0v9,0,13,2,17,11r99,185r77,150r4,0r80,-155r96,-180v4,-8,8,-11,17,-11r58,0v7,0,7,7,6,10","w":546,"k":{"-":80,"C":30,"G":30,"O":30,"Q":30,"v":30,"w":30,"y":30,"A":50,"a":50,"c":40,"d":40,"e":40,"g":40,"o":40,"q":40,"i":30,"m":30,"n":30,"p":30,"r":30,"s":50,"u":40,",":110,".":110,":":40,";":40}},"Z":{"d":"93,-701r420,0v30,0,45,10,45,40r0,17v0,21,-11,37,-24,53r-419,519v1,1,2,4,2,5r433,0v10,0,12,3,12,14r0,39v0,10,-2,14,-12,14r-481,0v-27,0,-42,-11,-42,-37r0,-13v0,-20,5,-32,17,-46r432,-534r-1,-3r-382,0v-11,0,-13,-4,-13,-14r0,-40v0,-10,2,-14,13,-14","w":596,"k":{"-":50}},"[":{"d":"274,66v0,10,-2,14,-13,14r-181,0v-10,0,-12,-4,-12,-14r0,-772v0,-10,2,-14,12,-14r181,0v11,0,13,4,13,14r0,31v0,9,-2,13,-13,13r-120,0r0,684r120,0v11,0,13,3,13,13r0,31","w":301},"\\":{"d":"412,84v3,9,-3,12,-11,12r-46,0v-10,0,-14,-3,-17,-12r-325,-850v-3,-9,5,-13,10,-13r47,0v10,0,13,4,17,13","w":421},"]":{"d":"256,65v0,10,-2,14,-12,14r-181,0v-11,0,-13,-4,-13,-14r0,-31v0,-9,2,-13,13,-13r120,0r0,-684r-120,0v-11,0,-13,-3,-13,-13r0,-31v0,-9,2,-14,13,-14r181,0v10,0,12,5,12,14r0,772","w":301},"^":{"d":"35,-393r183,-310v8,-13,14,-23,27,-23r16,0v16,0,20,5,29,21r184,313v5,8,0,13,-8,13r-49,0v-10,0,-16,-3,-20,-12r-141,-246r-2,0r-137,243v-7,12,-10,16,-23,16r-52,0v-10,0,-12,-7,-7,-15","w":518},"_":{"d":"1,122v-10,0,-12,-3,-12,-13r0,-21v0,-9,2,-13,12,-13r498,0v10,0,12,4,12,13r0,21v0,10,-2,13,-12,13r-498,0","w":500},"`":{"d":"311,-599r-25,9v-7,3,-12,2,-18,-6r-101,-147v-5,-6,-4,-12,6,-14r60,-15v10,-1,14,3,17,10r65,149v5,10,3,12,-4,14","w":476},"a":{"d":"465,-46v0,13,-5,20,-14,24v-59,25,-132,33,-194,33v-170,0,-213,-80,-213,-164v0,-100,68,-177,214,-177r133,0r0,-27v0,-68,-21,-115,-128,-115v-44,0,-103,10,-140,22v-9,3,-14,3,-17,-6r-10,-36v-2,-7,-1,-12,8,-15v47,-20,117,-29,171,-29v129,0,190,59,190,169r0,321xm390,-71r0,-195r-129,0v-48,0,-144,10,-144,113v0,81,67,103,139,103v24,0,89,-4,134,-21","w":530},"b":{"d":"507,-269v0,161,-73,280,-239,280v-60,0,-131,-8,-192,-33v-8,-3,-11,-9,-11,-17r0,-679v0,-11,5,-13,14,-13r46,0v10,0,13,2,13,13r0,206v42,-14,104,-24,145,-24v156,0,224,112,224,267xm138,-448r0,377v43,15,95,19,129,19v95,0,165,-62,165,-212v0,-137,-60,-208,-157,-208v-27,0,-85,5,-137,24","w":552},"c":{"d":"282,-52v47,0,94,-14,125,-31v10,-5,14,-1,18,5r16,35v6,8,3,13,-4,18v-50,27,-111,36,-165,36v-148,0,-227,-91,-227,-268v0,-173,91,-279,236,-279v52,0,100,10,146,35v7,4,10,10,5,18r-18,34v-3,7,-6,10,-17,5v-33,-15,-71,-27,-116,-27v-116,0,-163,102,-163,214v0,114,38,205,164,205","w":473,"k":{"-":30}},"d":{"d":"45,-255v0,-149,74,-281,239,-281v34,0,82,3,128,18r0,-200v0,-11,4,-13,14,-13r47,0v9,0,13,2,13,13r0,678v0,8,-2,13,-10,16v-67,29,-144,35,-203,35v-163,0,-228,-101,-228,-266xm121,-255v0,153,66,203,165,203v35,0,91,-7,126,-21r0,-379v-54,-18,-93,-21,-123,-21v-98,0,-168,69,-168,218","w":551},"e":{"d":"273,-536v152,0,217,93,218,224v0,56,-30,69,-67,69r-305,0v1,139,74,190,167,190v44,0,89,-12,118,-28v8,-4,13,-4,17,4r18,35v4,9,2,14,-5,17v-46,28,-102,36,-153,36v-147,0,-236,-82,-236,-271v0,-178,96,-276,228,-276xm421,-303v0,-91,-32,-171,-148,-171v-94,0,-146,76,-151,171r299,0","w":533},"f":{"d":"345,-712r-8,39v-2,6,-6,8,-13,7v-24,-5,-51,-7,-69,-7v-65,0,-82,30,-82,73r0,75r135,0v10,0,12,4,12,13r0,34v0,7,-2,12,-12,12r-135,0r0,454v0,10,-3,12,-13,12r-46,0v-10,0,-14,-2,-14,-12r0,-454r-79,0v-11,0,-13,-5,-13,-12r0,-19v0,-9,3,-13,13,-15v14,-2,65,-12,79,-13r0,-73v0,-86,41,-140,142,-140v23,0,60,2,96,12v9,2,8,7,7,14","w":332,"k":{"-":20,"c":20,"d":20,"e":20,"g":20,"o":20,"q":20,",":50,".":50}},"g":{"d":"413,-76r0,-377v-43,-15,-94,-20,-128,-20v-96,1,-165,63,-165,213v0,137,59,208,157,208v27,0,84,-6,136,-24xm284,-535v60,0,131,7,192,32v8,4,11,9,11,17r0,449v0,178,-90,237,-248,259v-9,1,-13,-1,-15,-9r-6,-46v0,-6,2,-10,10,-11v115,-19,184,-49,184,-163r0,-6v-42,14,-103,24,-143,24v-156,0,-224,-112,-224,-267v0,-161,73,-279,239,-279","w":551},"h":{"d":"491,-304r-1,291v0,11,-4,13,-13,13r-47,0v-10,0,-14,-2,-14,-13r0,-293v0,-112,-46,-166,-145,-166v-38,0,-96,7,-133,24r0,435v0,11,-4,13,-14,13r-45,0v-9,0,-14,-2,-14,-13r0,-705v0,-11,5,-13,14,-13r45,0v10,0,14,2,14,13r0,207v48,-19,107,-25,145,-25v151,0,208,89,208,232","w":555},"i":{"d":"173,-669v0,28,-22,49,-50,49v-27,0,-50,-21,-50,-49v0,-28,23,-51,50,-51v28,0,50,23,50,51xm159,-13v0,11,-4,13,-14,13r-45,0v-9,0,-14,-2,-14,-13r0,-499v0,-11,5,-13,14,-13r45,0v10,0,14,2,14,13r0,499","w":246},"j":{"d":"184,-669v0,28,-23,49,-50,49v-28,0,-50,-21,-50,-49v0,-28,22,-51,50,-51v27,0,50,23,50,51xm171,-61v0,179,-77,247,-169,281v-8,3,-13,-1,-14,-7r-15,-44v-3,-7,1,-11,8,-14v98,-44,116,-118,116,-206r0,-461v0,-11,5,-13,14,-13r47,0v10,0,13,2,13,13r0,451","w":260},"k":{"d":"137,-257r4,2r220,-262v4,-5,7,-8,16,-8r64,0v6,0,8,7,4,11r-135,162r157,342v2,4,1,10,-7,10r-54,0v-11,0,-15,-3,-18,-10r-128,-283r-123,143r0,137v0,11,-3,13,-13,13r-46,0v-9,0,-14,-2,-14,-13r0,-705v0,-11,5,-13,14,-13r46,0v10,0,13,2,13,13r0,461","w":482},"l":{"d":"239,-17v1,10,0,12,-9,16v-22,9,-50,11,-70,11v-64,0,-85,-32,-85,-95r0,-633v0,-11,4,-13,14,-13r46,0v10,0,14,2,14,13r0,611v0,39,8,52,37,52v13,0,26,-2,36,-3v7,-1,11,0,12,8","w":256},"m":{"d":"601,-536v162,0,214,97,214,243r0,281v0,10,-3,12,-13,12r-45,0v-10,0,-14,-2,-14,-12r0,-266v0,-132,-38,-193,-151,-193v-40,0,-104,17,-144,40v18,37,24,83,24,147r0,272v0,10,-4,12,-14,12r-45,0v-9,0,-13,-2,-13,-12r0,-274v0,-119,-34,-185,-161,-185v-16,0,-52,1,-99,10r0,448v0,11,-4,13,-14,13r-45,0v-9,0,-14,-2,-14,-13r0,-447v0,-39,17,-60,54,-66v32,-6,85,-10,115,-10v81,0,132,17,173,57r1,0v50,-34,119,-57,191,-57","w":881},"n":{"d":"490,-13v0,11,-4,13,-14,13r-46,0v-9,0,-14,-2,-14,-13r0,-267v0,-128,-34,-191,-171,-191v-16,0,-60,1,-107,10r0,448v0,11,-4,13,-14,13r-45,0v-9,0,-14,-2,-14,-13r0,-447v0,-39,17,-60,54,-66v32,-6,98,-10,131,-10v171,0,240,71,240,252r0,271","w":555},"o":{"d":"505,-265v0,178,-83,276,-232,276v-147,0,-228,-95,-228,-273v0,-177,96,-274,231,-274v148,0,229,101,229,271xm431,-262v0,-110,-31,-212,-155,-212v-112,0,-158,97,-158,209v0,124,38,215,156,215v121,0,157,-108,157,-212","w":550},"p":{"d":"506,-264v0,154,-75,275,-231,275v-39,0,-87,-4,-137,-19r0,199v0,10,-3,12,-13,12r-46,0v-9,0,-14,-2,-14,-12r0,-675v0,-8,3,-13,11,-16v64,-28,138,-36,201,-36v158,0,229,112,229,272xm430,-264v0,-157,-67,-209,-165,-209v-36,0,-91,7,-127,22r0,378v55,18,96,21,126,21v97,0,166,-60,166,-212","w":551},"q":{"d":"45,-256v0,-161,74,-280,239,-280v60,0,131,8,192,33v9,3,11,9,11,17r0,679v0,11,-4,13,-14,13r-46,0v-10,0,-14,-2,-14,-13r0,-206v-42,14,-104,24,-144,24v-156,0,-224,-112,-224,-267xm413,-77r0,-377v-43,-15,-93,-19,-127,-19v-96,0,-166,62,-166,212v0,137,59,208,158,208v26,0,83,-5,135,-24","w":552},"r":{"d":"407,-453r-31,40v-6,7,-10,5,-15,1v-37,-35,-86,-58,-146,-58v-18,0,-42,1,-69,7r0,450v0,11,-4,13,-14,13r-45,0v-9,0,-13,-2,-13,-13r0,-451v0,-41,11,-59,53,-66v30,-4,56,-6,83,-6v78,0,142,22,196,69v5,5,4,10,1,14","w":408,"k":{"c":20,"d":20,"e":20,"g":20,"o":20,"q":20,",":80,".":80,"f":-20}},"s":{"d":"417,-138v0,99,-80,149,-186,149v-61,0,-136,-11,-189,-39v-7,-3,-11,-9,-6,-18r16,-34v4,-9,8,-11,19,-7v53,25,113,36,160,36v67,0,115,-28,115,-84v0,-54,-47,-78,-130,-109v-114,-41,-158,-75,-158,-151v0,-81,62,-141,175,-141v54,0,105,8,155,29v7,3,9,10,7,17r-16,39v-4,7,-8,6,-14,4v-51,-20,-89,-27,-134,-27v-61,0,-101,31,-101,75v0,50,36,68,126,101v87,33,161,69,161,160","w":454},"t":{"d":"107,-466r-75,0v-10,0,-12,-5,-12,-12r0,-24v0,-9,2,-13,12,-15r79,-13r14,-97v1,-12,5,-14,15,-18r27,-10v8,-2,14,0,14,11r0,119r117,0v10,0,12,5,12,13r0,34v0,8,-2,12,-12,12r-117,0r0,337v0,49,16,74,73,74v16,0,52,-3,77,-8v10,-1,12,1,13,7r8,38v1,7,2,11,-7,15v-37,11,-84,13,-102,13v-102,0,-136,-42,-136,-133r0,-343","w":361},"u":{"d":"65,-513v0,-11,4,-13,14,-13r45,0v10,0,14,2,14,13r0,272v0,130,25,186,166,186v16,0,59,-1,106,-10r0,-448v0,-11,4,-13,14,-13r46,0v9,0,14,2,14,13r0,448v0,38,-17,59,-55,66v-38,6,-98,9,-130,9v-172,0,-234,-64,-234,-245r0,-278","w":549},"v":{"d":"466,-516r-166,481v-10,28,-17,39,-43,39r-33,0v-22,0,-33,-7,-44,-38r-169,-482v-2,-5,0,-9,7,-9r56,0v8,0,10,3,12,8r105,300r48,152r5,0r46,-150r102,-302v1,-5,4,-8,12,-8r55,0v7,0,8,4,7,9","w":477,"k":{",":60,".":60}},"w":{"d":"354,-417r-3,0r-42,151r-74,233v-7,23,-16,37,-42,37r-32,0v-21,0,-34,-7,-41,-40r-109,-481v-2,-6,0,-10,7,-10r56,0v8,0,10,3,12,9r65,314r26,128r5,0r36,-120r81,-273v5,-17,14,-34,42,-34r26,0v25,0,31,15,37,36r79,258r41,139r5,0r27,-139r64,-309v2,-6,4,-9,12,-9r55,0v7,0,9,4,7,10r-109,481v-7,33,-24,40,-44,40r-29,0v-27,0,-35,-8,-43,-37r-73,-236","w":705,"k":{",":60,".":60}},"x":{"d":"423,-514r-154,232r176,270v2,4,4,12,-6,12r-61,0v-13,0,-15,-4,-19,-10r-133,-217r-137,216v-4,7,-8,11,-19,11r-54,0v-8,0,-10,-6,-6,-13r175,-266r-151,-233v-3,-4,-4,-13,6,-13r56,0v11,0,15,4,19,10r114,184r115,-184v4,-6,8,-10,18,-10r54,0v10,0,9,8,7,11","w":454},"y":{"d":"468,-515r-206,603v-31,90,-73,121,-143,121v-18,0,-47,-1,-80,-11v-11,-3,-13,-7,-11,-15r10,-37v3,-9,7,-9,15,-7v28,6,38,8,54,8v42,0,69,-11,88,-69r30,-82r-17,0v-15,0,-27,-1,-36,-29r-160,-482v-2,-7,0,-10,7,-10r55,0v9,0,11,3,13,9r98,297v7,21,41,143,49,165r5,0v16,-47,50,-159,55,-172v7,-19,56,-165,101,-289v2,-7,4,-10,13,-10r52,0v7,0,10,3,8,10","w":479,"k":{",":60,".":60}},"z":{"d":"57,-525r340,0v26,0,37,11,37,34r0,12v0,12,-4,26,-14,38r-320,379r1,2r320,0v12,0,14,5,14,12r0,35v0,9,-3,13,-14,13r-370,0v-25,0,-34,-13,-34,-30r0,-12v0,-15,3,-30,16,-44r317,-376r0,-3r-293,0v-11,0,-13,-3,-13,-12r0,-35v0,-8,2,-13,13,-13","w":452},"{":{"d":"289,90v0,5,-1,8,-8,8v-82,-2,-154,-46,-154,-154r0,-142v0,-65,-18,-96,-60,-107v-7,-2,-10,-4,-10,-12r0,-33v0,-8,3,-11,11,-13v42,-11,59,-43,59,-106r0,-99v0,-110,58,-160,153,-162v8,0,9,3,9,8r0,40v0,6,-1,10,-9,10v-55,2,-79,39,-79,80r0,120v0,63,-21,114,-69,137r0,3v42,19,69,64,69,129r0,160v0,42,26,77,79,81v8,0,9,3,9,9r0,43","w":347},"|":{"d":"140,123v0,11,-4,13,-14,13r-45,0v-9,0,-14,-2,-14,-13r0,-888v0,-11,5,-13,14,-13r45,0v10,0,14,2,14,13r0,888","w":206},"}":{"d":"289,-317v0,8,-4,10,-10,12v-43,11,-61,43,-61,107r0,131v0,109,-62,163,-153,165v-7,0,-9,-3,-9,-8r0,-43v0,-6,2,-8,10,-9v57,-6,78,-43,78,-90r0,-151v0,-65,27,-110,69,-129r0,-3v-43,-22,-69,-65,-69,-128r0,-122v0,-44,-23,-83,-79,-87v-7,0,-9,-4,-9,-10r0,-40v0,-5,2,-8,10,-8v94,2,152,46,152,162r0,99v0,65,18,96,59,106v9,2,12,5,12,13r0,33","w":347},"~":{"d":"516,-316v-33,56,-71,81,-125,81v-66,0,-141,-67,-199,-67v-37,0,-62,19,-85,46v-6,7,-10,8,-16,3r-22,-18v-6,-5,-7,-10,-3,-15v41,-55,83,-75,127,-75v67,0,146,69,203,69v35,0,52,-21,74,-55v5,-7,11,-6,17,-2r25,16v8,5,8,10,4,17"},"!":{"d":"173,-686r-16,491v0,10,-4,14,-18,14r-17,0v-12,0,-16,-4,-16,-12r-17,-493v0,-7,3,-14,14,-14r57,0v11,0,14,7,13,14xm188,-47v0,32,-24,57,-56,57v-33,0,-57,-25,-57,-57v0,-31,25,-56,57,-56v32,0,56,24,56,56","w":263},"%":{"d":"836,-202v0,127,-56,208,-174,208v-115,0,-172,-78,-172,-207v0,-127,58,-208,174,-208v121,0,172,79,172,207xm773,-201v0,-75,-22,-157,-111,-157v-85,0,-109,82,-109,156v0,75,21,158,111,158v87,0,109,-84,109,-157xm389,-470v0,127,-56,208,-174,208v-115,0,-172,-79,-172,-207v0,-127,58,-209,174,-209v121,0,172,80,172,208xm326,-469v0,-75,-22,-157,-111,-157v-85,0,-109,82,-109,156v0,75,21,158,111,158v87,0,109,-84,109,-157xm263,11v-5,9,-9,12,-18,12r-26,0v-8,0,-13,-3,-8,-12r409,-698v6,-9,8,-12,17,-12r30,0v6,0,12,3,7,12","w":880},"\u00a0":{"w":264}}});Cufon.registerFont({"w":617,"face":{"font-family":"PF BeauSans Pro SemiBold","font-weight":600,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 3 0 0 0 2 0 4","ascent":"750","descent":"-250","x-height":"11","bbox":"-21.9427 -786.444 906 225.686","underline-thickness":"50","underline-position":"-50","stemh":"97","stemv":"116","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":280},"!":{"d":"206,-681r-23,443v0,15,-6,18,-23,18r-38,0v-15,0,-20,-4,-21,-16r-22,-445v-1,-10,4,-19,19,-19r88,0v17,0,21,10,20,19xm223,-70v0,44,-35,79,-80,79v-45,0,-80,-34,-80,-79v0,-43,36,-79,80,-79v45,0,80,35,80,79","w":285},"\"":{"d":"355,-683r-25,245v-2,15,-7,18,-24,18r-35,0v-15,0,-20,-4,-21,-16r-25,-247v-1,-10,5,-19,20,-19r90,0v18,0,21,10,20,19xm187,-683r-25,245v-2,15,-7,18,-24,18r-34,0v-16,0,-21,-4,-22,-16r-24,-247v-2,-10,4,-19,19,-19r90,0v18,0,21,10,20,19","w":413},"#":{"d":"586,-430r-9,39v-3,12,-6,16,-17,16r-83,0r-34,165r83,0v11,0,14,6,12,16r-9,40v-2,11,-6,15,-16,15r-84,0r-26,126v-3,10,-4,13,-17,13r-48,0v-10,0,-17,-2,-14,-14r25,-125r-131,0r-26,126v-3,10,-4,13,-16,13r-48,0v-11,0,-18,-2,-15,-14r26,-125r-82,0v-11,0,-14,-4,-11,-15r8,-41v2,-10,4,-15,17,-15r82,0r34,-165r-84,0v-13,0,-14,-5,-13,-16r9,-40v2,-9,5,-15,18,-15r85,0r26,-126v3,-11,6,-13,17,-13r46,0v13,0,18,2,16,14r-26,125r132,0r26,-126v2,-11,5,-13,17,-13r46,0v12,0,17,2,15,14r-26,125r82,0v12,0,14,5,13,16xm398,-375r-131,0r-35,165r132,0"},"$":{"d":"291,-761r0,860v0,14,-5,14,-18,14r-18,0v-11,0,-17,0,-17,-14r0,-93v-58,-6,-118,-23,-168,-52v-8,-4,-10,-11,-5,-23v2,-6,24,-59,26,-66v5,-10,11,-11,20,-8v38,17,83,31,127,39r0,-218v-95,-42,-152,-88,-152,-177v-1,-88,50,-157,152,-178r0,-84v0,-14,6,-14,17,-14r18,0v13,0,18,0,18,14xm325,99r0,-860v0,-14,6,-14,18,-14r16,0v13,0,18,0,18,14r0,82v42,5,87,17,125,35v9,4,11,9,7,20r-24,67v-4,12,-8,12,-17,9v-32,-10,-64,-18,-91,-23r0,193v89,39,171,88,171,194v0,112,-72,172,-171,189r0,94v0,14,-5,14,-18,14r-16,0v-12,0,-18,0,-18,-14xm438,-182v0,-36,-21,-60,-61,-83r0,162v39,-13,61,-42,61,-79xm198,-505v0,27,12,47,40,66r0,-127v-28,14,-40,37,-40,61"},"&":{"d":"685,-410r10,68v2,9,-4,13,-13,14v-90,16,-129,77,-160,144r144,165v5,5,5,19,-8,19r-89,0v-14,0,-24,-2,-33,-13v0,0,-66,-73,-71,-79v-48,56,-113,104,-207,104v-117,0,-190,-68,-190,-179v0,-98,68,-179,149,-227v-36,-42,-69,-101,-69,-153v0,-101,81,-165,178,-165v98,0,173,60,173,150v0,96,-67,154,-130,194v33,44,59,72,85,103v39,-69,95,-127,168,-146v17,-5,32,-7,50,-8v8,0,11,3,13,9xm269,-89v48,0,101,-40,130,-84r-118,-145v-54,34,-102,80,-102,142v0,58,32,87,90,87xm391,-551v0,-32,-21,-67,-64,-67v-43,0,-69,28,-69,68v0,37,28,80,53,109v34,-22,80,-58,80,-110","w":750},"'":{"d":"187,-683r-25,245v-2,15,-7,18,-24,18r-34,0v-16,0,-21,-4,-22,-16r-24,-247v-1,-10,4,-19,19,-19r90,0v18,0,21,10,20,19","w":245},"(":{"d":"291,31v6,7,6,12,-1,18r-43,30v-9,8,-14,5,-22,-3v-101,-101,-188,-226,-188,-396v0,-174,87,-303,187,-404v9,-9,14,-9,23,-2r42,29v8,6,8,9,2,16v-85,104,-130,213,-130,355v0,152,47,257,130,357","w":316},")":{"d":"40,32v85,-104,130,-211,130,-353v0,-152,-47,-259,-130,-359v-5,-7,-6,-11,2,-16r42,-30v10,-8,15,-7,23,1v100,101,187,230,187,400v0,174,-86,300,-187,400v-8,9,-13,11,-23,4r-42,-29v-8,-6,-7,-11,-2,-18","w":322},"*":{"d":"411,-589r16,50v4,12,0,18,-9,19r-119,30r79,91v10,11,7,17,-3,24r-40,30v-13,10,-17,9,-24,-4v-4,-8,-59,-98,-63,-105r-63,107v-7,13,-13,12,-22,5v-4,-4,-39,-30,-43,-34v-10,-7,-12,-12,-3,-22r79,-93r-114,-29v-12,-4,-15,-7,-11,-21r15,-48v3,-12,9,-15,22,-9r111,47r-12,-123v-1,-9,3,-14,16,-14r53,0v13,0,15,4,14,14r-11,124r110,-48v14,-6,19,-1,22,9","w":493},"+":{"d":"557,-311v0,14,-3,19,-17,19r-175,0r0,182v0,15,-4,17,-19,17r-74,0v-13,0,-19,-3,-19,-17r0,-182r-176,0v-14,0,-17,-5,-17,-19r0,-66v0,-15,3,-20,17,-20r176,0r0,-181v0,-14,6,-17,19,-17r74,0v15,0,19,2,19,17r0,181r175,0v15,0,17,5,17,20r0,66"},",":{"d":"218,-135r-73,245v-4,14,-7,18,-21,18r-42,0v-15,0,-22,-5,-21,-16r14,-247v1,-11,5,-20,20,-20r104,0v17,0,21,10,19,20","w":263},"-":{"d":"325,-250v0,13,-3,19,-17,19r-241,0v-14,0,-17,-6,-17,-19r0,-82v0,-14,2,-19,17,-19r241,0v14,0,17,5,17,19r0,82","w":375,"k":{"X":40,"T":60,"Y":50,"V":40,"W":40}},".":{"d":"227,-71v0,46,-36,83,-85,83v-46,0,-84,-36,-84,-83v0,-47,38,-84,84,-84v49,0,85,36,85,84","w":284},"\/":{"d":"438,-761r-313,841v-4,12,-11,16,-26,16r-69,0v-12,0,-19,-5,-15,-17r314,-841v4,-12,10,-16,24,-16r72,0v9,0,18,4,13,17","w":449},"0":{"d":"582,-337v0,207,-86,348,-275,348v-185,0,-272,-137,-272,-346v0,-209,89,-348,274,-348v193,0,273,137,273,346xm464,-335v0,-131,-38,-250,-157,-250v-117,0,-153,117,-153,248v0,130,35,250,155,250v118,0,155,-120,155,-248"},"1":{"d":"507,-19v0,14,-3,19,-17,19r-348,0v-14,0,-17,-5,-17,-19r0,-62v0,-15,2,-19,17,-19r113,0r0,-461r-111,18v-14,3,-17,-2,-17,-14r0,-57v0,-12,2,-18,17,-23r157,-44v36,-11,70,-3,70,37r0,544r119,0v14,0,17,4,17,19r0,62"},"2":{"d":"536,-19v0,14,-3,19,-17,19r-375,0v-59,0,-83,-20,-83,-83v0,-44,31,-107,89,-166v54,-55,117,-97,158,-122v83,-51,108,-79,108,-125v0,-48,-39,-82,-118,-82v-50,0,-105,17,-153,52v-10,6,-19,8,-26,-2r-39,-55v-6,-9,-5,-17,4,-24v64,-49,142,-76,222,-76v125,0,230,59,230,181v0,99,-65,157,-164,214v-74,43,-154,108,-183,188r330,0v14,0,17,4,17,19r0,62"},"3":{"d":"410,-359r0,5v77,15,125,78,125,155v0,123,-99,210,-252,210v-85,0,-168,-16,-231,-68v-8,-7,-8,-12,-2,-22r37,-58v7,-12,15,-13,29,-4v49,34,105,48,157,48v96,0,141,-48,141,-119v0,-49,-39,-96,-128,-96r-28,0v-23,0,-31,-5,-31,-30r0,-33v0,-25,7,-33,26,-33r27,0v75,0,117,-36,117,-92v0,-60,-58,-83,-114,-83v-53,0,-112,17,-153,46v-14,9,-22,7,-29,-4r-34,-53v-6,-9,-7,-15,2,-22v57,-49,148,-72,224,-72v120,0,223,56,223,173v0,69,-44,129,-106,152"},"4":{"d":"583,-161v0,14,-5,18,-19,18r-67,0r0,126v0,14,-6,17,-20,17r-78,0v-13,0,-18,-3,-18,-17r0,-125r-294,0v-29,0,-57,-8,-57,-52r0,-17v0,-24,6,-45,23,-68r279,-361v16,-21,36,-46,72,-46r38,0v41,0,55,16,55,58r0,389r67,0v14,0,19,3,19,18r0,60xm380,-239r0,-290r-3,-3r-221,289r2,4r222,0"},"5":{"d":"561,-224v0,150,-109,237,-266,237v-85,0,-174,-14,-240,-70v-8,-7,-9,-13,-4,-21r40,-61v7,-11,16,-11,30,-2v49,33,108,48,167,48v97,0,155,-49,155,-126v0,-77,-60,-110,-127,-110v-68,0,-98,16,-149,38v-17,7,-34,7,-50,1r-23,-8v-22,-8,-33,-22,-30,-52r25,-254v5,-47,33,-68,68,-68r339,0v16,0,19,4,19,20r0,62v0,15,-4,20,-19,20r-298,0r-18,165v48,-20,102,-24,148,-24v132,0,233,79,233,205"},"6":{"d":"461,-211v0,-68,-42,-116,-130,-116v-58,0,-109,7,-169,24v-1,17,-1,23,-1,31v0,109,66,182,162,182v83,0,138,-43,138,-121xm580,-218v0,158,-125,229,-258,229v-183,0,-279,-119,-279,-315v0,-214,94,-382,329,-382v38,0,90,5,125,19v10,3,16,7,10,23r-19,64v-4,12,-11,13,-24,9v-22,-7,-60,-13,-91,-13v-116,0,-186,72,-203,181v42,-14,113,-24,163,-24v133,0,247,63,247,209"},"7":{"d":"67,-673r425,0v28,0,50,11,50,43r0,28v0,21,-6,39,-16,59r-284,525v-8,14,-14,18,-32,18r-86,0v-12,0,-20,-11,-13,-24r296,-547r-340,0v-15,0,-18,-5,-18,-20r0,-61v0,-16,3,-21,18,-21"},"8":{"d":"444,-363r0,3v83,25,119,97,119,167v0,101,-84,204,-257,204v-170,0,-257,-86,-257,-202v0,-75,50,-146,119,-169r0,-3v-69,-26,-93,-90,-93,-131v0,-121,104,-192,232,-192v142,0,230,77,230,183v0,41,-26,111,-93,140xm443,-200v0,-72,-61,-111,-137,-111v-73,0,-137,43,-137,114v0,55,35,110,137,110v104,0,137,-61,137,-113xm421,-489v0,-54,-38,-96,-116,-96v-78,0,-114,47,-114,99v0,50,50,86,114,86v62,0,116,-39,116,-89"},"9":{"d":"155,-464v0,67,49,116,129,116v59,0,110,-7,169,-24v2,-17,2,-24,2,-32v0,-108,-75,-182,-162,-182v-72,0,-138,44,-138,122xm36,-457v0,-158,125,-229,258,-229v182,0,279,119,279,315v0,214,-95,382,-330,382v-37,0,-89,-5,-124,-19v-10,-4,-16,-7,-11,-23r20,-64v2,-11,9,-15,22,-11v18,6,62,15,92,15v116,0,186,-72,204,-181v-42,14,-106,24,-156,24v-133,0,-254,-63,-254,-209"},":":{"d":"226,-448v0,46,-37,83,-84,83v-47,0,-84,-36,-84,-83v0,-46,37,-83,84,-83v48,0,84,36,84,83xm226,-74v0,47,-37,83,-84,83v-47,0,-84,-35,-84,-82v0,-46,37,-83,84,-83v48,0,84,35,84,82","w":283},";":{"d":"236,-448v0,46,-37,83,-84,83v-48,0,-84,-36,-84,-83v0,-46,36,-83,84,-83v47,0,84,36,84,83xm222,-135r-72,244v-5,15,-7,19,-22,19r-41,0v-15,0,-23,-5,-22,-17r15,-246v1,-10,5,-20,20,-20r103,0v18,0,21,11,19,20","w":278},"<":{"d":"539,-495r-331,149r327,145v18,10,21,14,21,33r0,68v0,10,-4,19,-18,12r-448,-205v-18,-9,-28,-16,-30,-31r0,-34v0,-23,10,-29,30,-38r447,-207v16,-7,19,1,19,14r0,64v0,15,-2,23,-17,30"},"=":{"d":"537,-405v0,14,-3,19,-17,19r-423,0v-14,0,-17,-5,-17,-19r0,-63v0,-14,2,-19,17,-19r423,0v15,0,17,5,17,19r0,63xm538,-216v0,14,-3,19,-17,19r-424,0v-14,0,-17,-5,-17,-18r0,-64v0,-13,2,-18,16,-18r425,0v14,0,17,5,17,19r0,62"},">":{"d":"409,-346r-331,-149v-15,-7,-17,-15,-17,-30r0,-64v0,-13,3,-21,19,-14r447,207v20,9,30,15,30,38r0,34v-2,15,-12,22,-30,31r-448,205v-14,7,-18,-2,-18,-12r0,-68v0,-19,3,-23,21,-33"},"?":{"d":"277,-707v126,0,226,55,226,176v0,73,-51,125,-102,171v-50,46,-101,85,-101,135r0,21v0,9,-3,15,-15,15r-85,0v-12,0,-15,-6,-15,-15r0,-28v0,-84,64,-130,118,-177v39,-34,74,-68,74,-117v0,-31,-22,-75,-105,-75v-50,0,-103,17,-152,50v-10,7,-18,9,-25,-2r-36,-59v-5,-8,-5,-16,5,-23v64,-49,153,-72,213,-72xm322,-67v0,45,-35,81,-82,81v-46,0,-83,-35,-83,-81v0,-45,39,-81,85,-81v32,0,80,21,80,81","w":549},"@":{"d":"652,-414r0,160v0,20,3,64,60,64v71,0,108,-65,108,-156v0,-181,-117,-303,-305,-303v-210,0,-349,144,-349,324v0,190,135,320,333,320v26,0,78,-5,130,-23v11,-4,18,-5,22,7r15,43v4,12,-1,17,-12,22v-48,22,-110,31,-158,31v-257,0,-418,-164,-418,-399v0,-233,189,-405,437,-405v240,0,391,149,391,380v0,143,-85,240,-209,240v-68,0,-112,-27,-124,-63v-30,23,-81,44,-125,44v-99,0,-150,-46,-150,-129v0,-74,47,-144,174,-144r83,0r0,-9v0,-38,-12,-65,-75,-65v-35,0,-79,8,-107,15v-14,3,-21,3,-24,-10r-10,-44v-3,-11,-1,-17,13,-23v43,-14,89,-21,141,-21v111,0,159,51,159,144xm554,-237r0,-87r-72,0v-34,0,-85,5,-85,64v0,41,34,52,69,52v22,0,58,-8,88,-29","w":983},"A":{"d":"490,-16r-44,-137r-254,0r-44,136v-4,12,-10,17,-26,17r-92,0v-14,0,-18,-10,-14,-21r216,-633v13,-39,26,-47,64,-48r43,0v42,0,54,9,67,48r217,633v4,10,1,21,-13,21r-92,0v-14,0,-23,-1,-28,-16xm274,-428r-52,171r192,0r-52,-168r-42,-142r-5,0","w":639,"k":{"'":40}},"B":{"d":"500,-391r0,7v76,29,109,102,109,173v0,126,-104,211,-234,211r-244,0v-42,0,-56,-17,-56,-57r0,-587v0,-39,14,-57,56,-57r232,-1v124,0,216,50,216,174v0,59,-34,112,-79,137xm483,-219v0,-64,-42,-109,-120,-109r-166,0r0,218r165,0v95,0,121,-63,121,-109xm197,-593r0,164r162,0v38,0,93,-15,93,-86v0,-48,-34,-78,-87,-78r-168,0","w":664,"k":{"Y":20}},"C":{"d":"380,-102v60,0,110,-17,154,-34v18,-8,24,0,28,10r26,57v9,19,5,24,-5,30v-67,40,-150,50,-221,50v-201,0,-307,-119,-307,-353v0,-221,127,-368,315,-368v60,0,124,8,189,42v11,5,15,11,7,29r-28,58v-5,13,-9,17,-23,11v-44,-17,-89,-28,-140,-28v-133,0,-193,122,-193,256v0,133,45,240,198,240","w":620,"k":{"-":40}},"D":{"d":"326,0r-195,0v-42,0,-56,-17,-56,-57r0,-587v0,-39,14,-57,56,-57r185,-1v217,0,317,145,317,347v0,200,-87,355,-307,355xm507,-353v0,-135,-45,-240,-201,-240r-108,0r0,484r111,0v154,0,198,-103,198,-244","w":688,"k":{"T":10,"Y":10}},"E":{"d":"559,-23v0,15,-4,23,-21,23r-285,0v-140,0,-178,-87,-178,-179r0,-342v0,-94,49,-180,178,-180r279,0v17,0,20,7,20,23r0,63v0,17,-3,22,-20,22r-266,0v-51,0,-69,23,-69,66r0,105r302,0v17,0,20,6,20,24r0,55v0,16,-3,23,-20,23r-302,0r0,146v0,43,21,65,69,65r272,0v18,0,21,6,21,24r0,62","w":598},"F":{"d":"197,-21v0,18,-5,21,-23,21r-76,0v-15,0,-23,-4,-23,-21r0,-500v0,-94,42,-180,178,-180r281,0v18,0,21,7,21,23r0,62v0,17,-4,23,-21,23r-268,0v-51,0,-69,22,-69,65r0,117r300,0v17,0,20,5,20,23r0,57v0,15,-3,23,-20,23r-300,0r0,287","w":584,"k":{"s":20,"r":10,"q":10,"p":10,"o":10,"n":10,"m":10,"i":10,"g":10,"e":10,"d":10,"c":10,"a":30,"J":100,"A":50,".":130,",":130}},"G":{"d":"374,-100v20,0,70,-1,113,-18r0,-188v-8,-1,-17,-1,-26,-1v-41,0,-84,9,-129,28v-16,6,-22,9,-28,-4r-23,-63v-5,-11,-4,-17,8,-24v45,-26,113,-44,174,-44v34,0,54,2,75,6v58,11,75,37,75,98r0,233v0,16,-4,27,-19,36v-75,46,-187,52,-232,52v-201,0,-307,-120,-307,-355v0,-221,116,-366,315,-366v61,0,131,8,196,42v11,5,15,11,6,29r-27,62v-6,13,-9,16,-24,11v-44,-17,-96,-28,-148,-28v-139,0,-191,118,-191,252v0,137,39,242,192,242","w":671},"H":{"d":"631,-21v0,18,-5,21,-23,21r-76,0v-16,0,-23,-4,-23,-21r0,-294r-311,0r0,294v0,18,-5,21,-24,21r-76,0v-15,0,-23,-4,-23,-21r0,-658v0,-17,8,-21,23,-21r76,0v19,0,24,3,24,21r0,259r311,0r0,-259v0,-17,7,-21,23,-21r76,0v18,0,23,3,23,21r0,658","w":706},"I":{"d":"210,-21v0,18,-6,21,-24,21r-76,0v-16,0,-23,-4,-23,-21r0,-658v0,-17,7,-21,23,-21r76,0v18,0,24,3,24,21r0,658","w":296},"J":{"d":"230,11v-57,0,-150,-12,-213,-50v-10,-6,-14,-9,-6,-26r30,-64v5,-11,12,-11,24,-6v44,20,104,36,162,36v114,0,149,-68,149,-187r-1,-393v0,-18,8,-21,23,-21r77,0v17,0,23,3,23,21v0,187,-1,280,-1,406v0,176,-76,284,-267,284","w":576},"K":{"d":"602,-683r-195,235r238,425v8,14,4,23,-10,23r-89,0v-25,0,-32,0,-44,-21r-179,-326r-127,156r0,170v0,18,-5,21,-23,21r-75,0v-15,0,-23,-4,-23,-21r0,-658v0,-17,8,-21,23,-21r75,0v18,0,23,3,23,21r0,304r4,2r100,-127r152,-186v8,-9,19,-14,39,-14r102,0v12,0,17,8,9,17","w":656},"L":{"d":"75,-179r0,-501v0,-17,7,-21,23,-21r75,0v19,0,24,3,24,21r0,501v0,52,28,71,73,71r268,0v15,0,17,5,17,19r0,70v0,13,-3,19,-17,19r-287,0v-138,0,-176,-87,-176,-179","w":566,"k":{"'":90,"T":70,"Y":90,"-":70,"C":20,"G":20,"O":20,"Q":20,"V":70,"W":70,"v":30,"w":30,"y":30}},"M":{"d":"647,-21r0,-462r-6,0r-53,136r-89,221v-14,34,-24,44,-57,44r-45,0v-33,0,-43,-10,-56,-44r-88,-211r-54,-134r-6,0r0,450v0,18,-6,21,-23,21r-72,0v-15,0,-23,-3,-23,-21r0,-619v0,-41,13,-61,58,-61r41,0v34,0,48,9,63,45r119,293r62,155r4,0r62,-156r118,-292v15,-36,30,-45,65,-45r38,0v43,0,58,18,58,59r0,621v0,18,-6,21,-23,21r-71,0v-15,0,-22,-3,-22,-21","w":838},"N":{"d":"199,-518r-4,0r0,497v0,18,-5,21,-23,21r-74,0v-15,0,-23,-4,-23,-21r0,-619v0,-43,14,-61,58,-61r35,0v35,0,45,10,66,44r199,331r85,144r4,0r0,-498v0,-17,6,-21,23,-21r74,0v17,0,23,4,23,21r0,620v0,38,-13,60,-58,60r-35,0v-35,0,-45,-10,-66,-43r-200,-332","w":717},"O":{"d":"664,-353v0,231,-102,364,-308,364v-200,0,-301,-126,-301,-360v0,-229,126,-362,304,-362v201,0,305,136,305,358xm538,-349v0,-133,-32,-252,-177,-252v-122,0,-181,112,-181,247v0,154,42,255,179,255v137,0,179,-120,179,-250","w":719,"k":{"T":10,"Y":10}},"P":{"d":"196,-267r0,246v0,18,-5,21,-23,21r-75,0v-15,0,-23,-4,-23,-21r0,-624v0,-37,14,-57,56,-57r238,0v134,0,225,88,225,214v0,71,-35,221,-235,221r-163,0xm468,-480v0,-46,-24,-112,-123,-112r-148,0r0,222r150,0v84,0,121,-46,121,-110","w":625,"k":{"s":20,"q":20,"o":20,"g":20,"e":20,"d":20,"c":20,"a":20,"Y":10,"W":10,"V":10,"A":40,".":140,",":140}},"Q":{"d":"664,-353v0,231,-102,364,-308,364v-200,0,-301,-126,-301,-360v0,-229,126,-362,304,-362v201,0,305,136,305,358xm538,-349v0,-133,-32,-252,-177,-252v-122,0,-181,112,-181,247v0,154,42,255,179,255v137,0,179,-120,179,-250xm416,149r-86,0v-15,0,-17,-6,-17,-18r0,-61v0,-13,2,-18,17,-18r113,0v111,0,204,30,246,61v11,8,13,13,7,25r-29,51v-7,12,-16,16,-31,7v-52,-29,-129,-47,-220,-47","w":719,"k":{"T":10,"Y":10}},"R":{"d":"564,-228r55,207v3,9,-1,21,-13,21r-89,0v-10,0,-23,-1,-28,-16r-48,-185v-20,-71,-53,-91,-124,-91r-118,0r0,271v0,18,-5,21,-23,21r-78,0v-15,0,-23,-4,-23,-21r0,-624v0,-39,14,-57,56,-57r236,0v134,0,221,82,221,202v0,78,-42,140,-103,165r0,4v47,20,66,55,79,103xm464,-494v0,-40,-19,-98,-109,-98r-155,0r0,198r148,0v81,0,116,-45,116,-100","w":647,"k":{"Y":20}},"S":{"d":"62,-521v0,-111,74,-191,226,-191v71,0,160,15,220,42v11,6,13,10,8,23r-24,68v-5,14,-9,14,-19,11v-66,-22,-133,-34,-187,-34v-69,0,-99,33,-99,72v0,49,45,73,153,117v115,47,216,93,216,220v0,139,-109,204,-251,204v-83,0,-182,-13,-260,-56v-9,-4,-12,-11,-6,-24r30,-68v5,-11,11,-13,22,-9v64,27,136,47,199,47v101,0,139,-39,139,-91v0,-55,-43,-82,-138,-119v-145,-56,-229,-107,-229,-212","w":586},"T":{"d":"549,-612v0,13,-4,18,-18,18r-190,0r0,573v0,18,-5,21,-23,21r-78,0v-16,0,-23,-4,-23,-21r0,-573r-186,0v-14,0,-17,-5,-17,-18r0,-69v0,-14,3,-19,17,-19r500,0v15,0,18,5,18,19r0,69","w":562,"k":{"-":80,"C":20,"G":20,"O":20,"Q":20,"v":40,"w":40,"y":40,"A":60,"a":60,"c":40,"d":40,"e":40,"g":40,"o":40,"q":40,"i":30,"m":30,"n":30,"p":30,"r":30,"s":50,"u":50,",":90,".":90,":":50,";":50}},"U":{"d":"622,-679r0,582v0,51,-19,85,-79,97v-51,10,-117,12,-157,12v-225,0,-311,-74,-311,-312r-1,-379v0,-17,8,-21,23,-21r78,0v18,0,23,3,23,21r0,381v0,137,31,202,188,202v20,0,68,-1,115,-10r0,-573v0,-17,7,-21,23,-21r78,0v18,0,20,3,20,21","w":697},"V":{"d":"272,-289r50,159r6,0r46,-157r131,-400v4,-13,11,-14,24,-14r95,0v10,0,12,7,9,15r-221,640v-12,36,-26,45,-58,46r-54,0v-34,0,-50,-8,-64,-46r-220,-640v-3,-8,0,-15,10,-15r96,0v14,0,19,5,22,15","w":649,"k":{"-":60,"C":20,"G":20,"O":20,"Q":20,"A":30,"a":40,"c":30,"d":30,"e":30,"g":30,"o":30,"q":30,"i":20,"m":20,"n":20,"p":20,"r":20,"s":30,",":100,".":100,":":30,";":30}},"W":{"d":"435,-553r-5,0r-35,169r-73,333v-8,37,-22,52,-55,52r-53,0v-33,0,-52,-5,-61,-45r-138,-641v-3,-12,1,-16,12,-16r97,0v14,0,21,3,24,16r64,361r29,168r6,0r34,-168r68,-324v7,-34,20,-53,62,-53r49,0v37,0,49,19,56,51r67,326r34,166r6,0r29,-167r65,-359v3,-13,9,-17,22,-17r97,0v11,0,14,5,11,16r-138,640v-9,40,-27,46,-61,46r-51,0v-33,0,-48,-14,-57,-52r-71,-333","w":862,"k":{"-":60,"C":20,"G":20,"O":20,"Q":20,"A":30,"a":40,"c":30,"d":30,"e":30,"g":30,"o":30,"q":30,"i":20,"m":20,"n":20,"p":20,"r":20,"s":30,",":100,".":100,":":30,";":30}},"X":{"d":"435,-18r-142,-245r-142,245v-8,14,-15,18,-35,18r-96,0v-11,0,-13,-9,-9,-16r214,-345r-199,-325v-4,-6,-2,-15,10,-15r94,0v21,0,27,3,35,18r131,224r130,-224v8,-15,14,-18,35,-18r90,0v12,0,14,9,9,17r-196,321r214,347v4,7,1,16,-10,16r-98,0v-20,0,-27,-4,-35,-18","w":589,"k":{"-":30}},"Y":{"d":"298,-379r5,0r77,-158r75,-148v6,-12,11,-16,24,-16r97,0v12,0,12,8,9,14r-224,417r0,252v0,15,-4,18,-19,18r-83,0v-13,0,-19,-4,-19,-18r0,-251r-229,-417v-3,-6,-1,-15,10,-15r101,0v14,0,19,4,25,17r78,153","w":596,"k":{"-":80,"C":30,"G":30,"O":30,"Q":30,"v":30,"w":30,"y":30,"A":50,"a":50,"c":40,"d":40,"e":40,"g":40,"o":40,"q":40,"i":30,"m":30,"n":30,"p":30,"r":30,"s":50,"u":40,",":110,".":110,":":40,";":40}},"Z":{"d":"578,-647r0,26v0,28,-13,49,-30,70r-367,440r2,6r385,0v15,0,17,5,17,20r0,66v0,14,-3,19,-17,19r-482,0v-36,0,-56,-15,-56,-51r0,-19v0,-29,9,-46,27,-67r380,-455r-1,-4r-339,0v-14,0,-17,-6,-17,-19r0,-66v0,-15,2,-20,17,-20r423,0v40,0,58,13,58,54","w":622,"k":{"-":50}},"[":{"d":"303,19r0,53v0,13,-2,18,-16,18r-202,0v-14,0,-17,-7,-17,-19r0,-772v0,-12,3,-19,17,-19r202,0v14,0,16,6,16,17r0,54v0,12,-2,16,-17,16r-105,0r0,636r106,0v14,0,16,4,16,16","w":333},"\\":{"d":"438,79v4,12,-3,17,-15,17r-69,0v-15,0,-22,-4,-26,-17r-313,-840v-5,-12,5,-17,13,-17r72,0v15,0,20,5,25,17","w":449},"]":{"d":"292,71v0,12,-3,19,-18,19r-202,0v-13,0,-15,-5,-15,-18r0,-53v0,-12,2,-16,16,-16r106,0r0,-636r-106,0v-14,0,-16,-5,-16,-16r0,-53v0,-13,2,-18,16,-18r201,0v15,0,18,7,18,19r0,772","w":335},"^":{"d":"509,-397v8,12,1,18,-10,18r-76,0v-13,0,-22,-3,-28,-15r-121,-206r-3,0r-118,202v-9,16,-14,20,-31,20r-78,0v-13,0,-16,-8,-10,-17r186,-304v9,-15,19,-28,37,-28r26,0v24,0,29,8,40,25","w":550},"_":{"d":"517,117v0,14,-3,19,-17,19r-500,0v-14,0,-16,-5,-16,-19r0,-27v0,-14,2,-20,16,-20r500,0v14,0,17,6,17,20r0,27","w":500},"`":{"d":"333,-611v6,13,3,16,-7,19r-41,15v-10,3,-15,2,-23,-9r-112,-160v-5,-7,-4,-15,7,-17r87,-23v14,-2,19,3,22,10","w":538},"a":{"d":"492,-57v0,16,-5,26,-19,33v-59,27,-140,35,-204,35v-176,0,-224,-76,-224,-167v0,-93,59,-179,218,-179r112,0r0,-17v0,-51,-17,-88,-103,-88v-45,0,-106,10,-139,20v-14,4,-20,2,-23,-10r-14,-57v-3,-11,-1,-17,9,-21v56,-21,128,-29,186,-29v138,0,201,64,201,180r0,300xm374,-99r0,-147r-96,0v-44,0,-114,6,-114,86v0,57,42,77,106,77v19,0,69,-3,104,-16","w":557},"b":{"d":"536,-268v0,160,-76,279,-253,279v-67,0,-143,-10,-203,-36v-12,-5,-15,-12,-15,-24r0,-664v0,-15,6,-18,20,-18r78,0v14,0,19,2,19,18r0,194v39,-12,89,-18,125,-18v160,0,229,113,229,269xm416,-263v0,-116,-48,-174,-128,-174v-21,0,-63,3,-106,16r0,320v32,10,70,13,96,13v83,0,138,-48,138,-175","w":581},"c":{"d":"294,-91v43,0,89,-13,117,-26v15,-7,19,-4,23,7r25,58v7,12,5,19,-6,25v-54,30,-123,38,-177,38v-149,0,-231,-92,-231,-270v0,-169,93,-278,242,-278v54,0,107,11,152,35v12,6,15,12,8,25r-25,59v-5,11,-9,13,-25,7v-32,-12,-67,-22,-105,-22v-91,0,-128,82,-128,174v0,93,27,168,130,168","w":493,"k":{"-":30}},"d":{"d":"45,-255v0,-150,73,-281,245,-281v26,0,64,1,107,12r0,-189v0,-15,5,-17,20,-17r78,0v13,0,19,2,19,17r0,663v0,50,-182,61,-228,61v-178,0,-241,-107,-241,-266xm166,-255v0,123,50,167,136,167v28,0,72,-6,95,-15r0,-321v-41,-10,-69,-12,-96,-12v-78,0,-135,51,-135,181","w":580},"e":{"d":"284,-537v153,0,226,85,226,221v0,70,-35,87,-80,88r-266,0v2,104,63,139,140,139v42,0,87,-12,117,-27v12,-5,17,-4,22,6r27,57v5,11,3,18,-7,23v-50,31,-115,41,-169,41v-161,0,-249,-83,-249,-271v0,-175,100,-277,239,-277xm286,-440v-71,0,-114,61,-118,128r230,0v0,-71,-22,-128,-112,-128","w":552},"f":{"d":"376,-706r-13,64v-2,10,-8,12,-18,10v-26,-5,-52,-7,-69,-7v-49,0,-63,24,-63,55r0,59r121,0v14,0,16,4,16,16r0,58v0,10,-2,16,-16,16r-121,0r0,418v0,15,-5,17,-19,17r-78,0v-13,0,-19,-2,-19,-17r0,-418r-72,0v-15,0,-16,-7,-16,-16r0,-38v0,-12,3,-17,17,-20r71,-16r0,-63v0,-92,46,-152,155,-152v20,0,71,2,115,15v12,4,11,10,9,19","w":368,"k":{"-":20,"c":20,"d":20,"e":20,"g":20,"o":20,"q":20,",":50,".":50}},"g":{"d":"516,-476r0,428v0,182,-91,250,-266,273v-12,2,-17,0,-19,-11r-10,-76v-1,-10,2,-14,12,-16v99,-15,164,-42,164,-127r0,-6v-39,12,-87,18,-124,18v-158,0,-228,-108,-228,-265v0,-160,78,-277,253,-277v67,0,142,9,202,35v13,6,16,13,16,24xm165,-263v0,116,48,170,128,170v21,0,63,-3,105,-15r0,-316v-32,-9,-69,-13,-95,-13v-83,1,-138,47,-138,174","w":580},"h":{"d":"520,-17v0,15,-5,17,-20,17r-79,0v-13,0,-19,-3,-19,-17r0,-280v0,-90,-34,-139,-117,-139v-34,0,-76,4,-104,16r0,403v0,15,-4,17,-19,17r-78,0v-13,0,-19,-3,-19,-17r0,-697v0,-14,6,-17,19,-17r78,0v15,0,19,3,19,17r0,196v38,-13,89,-19,125,-19v147,0,214,87,214,232r0,288","w":584},"i":{"d":"216,-662v0,40,-32,72,-72,72v-40,0,-72,-32,-72,-72v0,-40,32,-72,72,-72v40,0,72,32,72,72xm201,-17v0,15,-5,17,-20,17r-77,0v-13,0,-19,-3,-19,-17r0,-491v0,-14,6,-17,19,-17r77,0v15,0,20,2,20,17r0,491","w":286},"j":{"d":"210,-508r0,431v0,192,-80,262,-182,297v-14,4,-20,1,-23,-8r-25,-70v-5,-13,0,-16,11,-22v87,-41,102,-104,102,-184r0,-444v0,-14,6,-17,19,-17r79,0v15,0,19,2,19,17xm224,-662v0,40,-32,72,-72,72v-39,0,-72,-32,-72,-72v0,-40,33,-72,72,-72v40,0,72,32,72,72","w":298},"k":{"d":"487,-509r-133,159r154,335v3,8,1,15,-11,15r-90,0v-14,0,-21,-3,-25,-14r-109,-244r-93,106r0,135v0,14,-4,17,-19,17r-78,0v-13,0,-19,-3,-19,-17r0,-697v0,-14,6,-17,19,-17r78,0v15,0,19,2,19,17r0,400r4,2r171,-203v6,-7,10,-10,24,-10r101,0v12,0,13,9,7,16","w":522},"l":{"d":"278,-80r7,56v2,13,1,16,-12,22v-26,10,-65,13,-91,13v-74,0,-108,-31,-108,-117r0,-608v0,-15,6,-17,19,-17r79,0v14,0,20,2,20,17r0,580v0,35,8,45,34,45v11,0,27,-2,36,-3v11,-1,15,1,16,12","w":303},"m":{"d":"181,-17v0,15,-4,17,-19,17r-78,0v-13,0,-19,-3,-19,-17r0,-425v0,-48,10,-73,67,-86v20,-4,86,-9,118,-9v81,0,136,15,180,50v46,-31,113,-50,184,-50v166,0,231,100,231,245r0,275v0,15,-5,17,-20,17r-77,0v-13,0,-19,-3,-19,-17r0,-260v0,-107,-34,-159,-130,-159v-34,0,-84,10,-110,24v16,37,20,80,20,130r0,265v0,15,-5,17,-20,17r-78,0v-13,0,-19,-3,-19,-17r0,-267v0,-93,-23,-153,-135,-153v-16,0,-57,2,-76,6r0,414","w":910},"n":{"d":"260,-437v-14,0,-43,0,-79,6r0,414v0,15,-4,17,-19,17r-78,0v-13,0,-19,-3,-19,-17r0,-428v0,-48,13,-74,67,-83v28,-4,96,-9,131,-9v177,0,256,71,256,256r0,264v0,15,-4,17,-19,17r-79,0v-13,0,-19,-3,-19,-17r0,-266v0,-104,-30,-154,-142,-154","w":584},"o":{"d":"530,-265v0,176,-83,276,-245,276v-161,0,-240,-96,-240,-273v0,-175,100,-275,243,-275v159,0,242,103,242,272xm411,-262v0,-96,-24,-177,-121,-177v-86,0,-127,75,-127,174v0,110,31,178,123,178v94,0,125,-82,125,-175","w":575},"p":{"d":"182,-4r0,190v0,15,-4,17,-19,17r-79,0v-13,0,-19,-3,-19,-17r0,-660v0,-12,3,-18,16,-24v66,-29,145,-38,211,-38v174,0,243,120,243,273v0,149,-76,273,-234,273v-36,0,-73,-3,-119,-14xm414,-264v0,-127,-53,-172,-139,-172v-27,0,-69,6,-93,14r0,318v41,11,71,14,98,14v78,0,134,-44,134,-174","w":580},"q":{"d":"516,189v0,14,-5,17,-20,17r-78,0v-14,0,-20,-3,-20,-17r0,-197v-38,12,-88,18,-125,18v-159,0,-228,-110,-228,-266v0,-162,77,-280,253,-280v67,0,142,10,202,36v13,6,16,13,16,24r0,665xm165,-262v0,116,48,172,128,172v21,0,63,-3,105,-16r0,-318v-32,-10,-69,-13,-95,-13v-83,1,-138,48,-138,175","w":581},"r":{"d":"190,-17v0,15,-5,17,-20,17r-77,0v-13,0,-19,-3,-19,-17r0,-429v0,-53,13,-77,70,-85v24,-3,49,-5,74,-5v81,0,159,20,220,70v9,7,7,13,3,19r-46,66v-7,11,-13,7,-22,1v-38,-33,-83,-52,-136,-52v-16,0,-32,1,-47,4r0,411","w":440,"k":{"c":20,"d":20,"e":20,"g":20,"o":20,"q":20,",":80,".":80,"f":-20}},"s":{"d":"444,-147v0,107,-85,158,-197,158v-65,0,-147,-12,-203,-44v-9,-5,-13,-12,-7,-24r24,-56v6,-12,11,-15,26,-9v48,22,113,36,158,36v56,0,84,-24,84,-59v0,-38,-37,-57,-108,-83v-108,-40,-163,-77,-163,-158v0,-87,64,-151,187,-151v56,0,113,10,165,31v11,5,12,13,9,24r-23,57v-4,11,-10,11,-20,7v-52,-18,-87,-24,-132,-24v-49,0,-71,25,-71,50v0,36,28,51,102,79v86,32,169,68,169,166","w":482},"t":{"d":"382,-23v1,8,3,14,-9,19v-45,14,-96,15,-121,15v-109,0,-150,-46,-150,-142r0,-305r-71,0v-14,0,-16,-7,-16,-17r0,-41v0,-12,3,-16,16,-19r76,-17r13,-95v2,-15,8,-18,22,-23r58,-20v11,-2,18,1,18,16r0,127r107,0v14,0,16,7,16,16r0,56v0,12,-1,17,-16,17r-107,0r0,290v0,42,20,56,61,56v17,0,56,-4,75,-7v13,-2,16,1,17,10","w":393},"u":{"d":"314,-89v14,0,43,0,79,-6r0,-414v0,-14,4,-17,19,-17r78,0v13,0,19,3,19,17r0,428v0,47,-20,74,-67,83v-34,6,-95,9,-130,9v-180,0,-247,-71,-247,-256r0,-264v0,-14,4,-17,19,-17r78,0v13,0,19,3,19,17r0,266v0,104,21,154,133,154","w":574},"v":{"d":"510,-512r-156,468v-13,39,-26,49,-61,49r-56,0v-29,0,-45,-7,-60,-49r-162,-467v-3,-10,1,-14,11,-14r90,0v14,0,18,3,21,13r77,237r49,170r6,0r49,-169r74,-237v3,-11,6,-14,20,-14r88,0v9,0,13,5,10,13","w":525,"k":{",":60,".":60}},"w":{"d":"386,-368r-4,0r-44,162r-51,164v-11,34,-23,47,-58,47r-47,0v-28,0,-46,-8,-56,-50r-107,-468v-3,-10,1,-14,11,-14r90,0v13,0,17,2,19,13r44,234r27,152r6,0r37,-129r57,-203v8,-26,19,-44,57,-44r41,0v33,0,40,18,49,46r55,190r41,146r6,0r26,-156r43,-236v2,-10,5,-12,18,-12r92,-1v9,0,13,4,11,14r-108,468v-11,42,-31,50,-59,50r-45,0v-35,0,-46,-8,-58,-47r-50,-169","w":768,"k":{",":60,".":60}},"x":{"d":"353,-17r-106,-179r-108,179v-7,11,-14,17,-30,17r-89,0v-12,0,-15,-7,-8,-19r171,-258r-151,-231v-4,-6,-4,-17,8,-17r93,0v16,0,23,5,29,15r88,153r91,-153v6,-10,13,-15,28,-15r90,0v14,0,13,10,10,15r-155,229r173,263v5,8,5,18,-9,18r-95,0v-19,0,-23,-6,-30,-17","w":498},"y":{"d":"312,86r0,-1v-31,92,-83,126,-167,126v-21,0,-55,-2,-88,-12v-14,-3,-17,-7,-14,-19r14,-61v3,-13,8,-13,20,-11v22,5,32,7,49,7v47,0,72,-15,88,-63r21,-63r-24,0v-24,0,-38,-3,-50,-41r-150,-459v-3,-10,2,-14,11,-14r92,0v14,0,18,3,21,13r68,230r52,181r6,0r56,-183r74,-227v3,-10,6,-14,20,-14r91,0v9,0,13,5,10,13","w":522,"k":{",":60,".":60}},"z":{"d":"457,-484r0,24v0,18,-5,37,-19,53r-275,309r2,3r276,0v14,0,17,6,17,17r0,61v0,12,-3,17,-17,17r-375,0v-33,0,-45,-17,-45,-40r0,-21v0,-20,4,-40,22,-60r273,-307r-1,-3r-252,0v-15,0,-17,-5,-17,-17r0,-60v0,-11,3,-17,17,-17r346,0v33,0,48,9,48,41","w":481},"{":{"d":"325,90v0,7,-2,11,-10,11v-111,-3,-187,-52,-187,-178r0,-121v0,-58,-20,-82,-55,-86v-9,-2,-12,-4,-12,-15r0,-54v0,-9,2,-12,13,-14v35,-5,54,-28,54,-86r0,-94v0,-126,70,-171,186,-174v9,-1,11,3,11,10r0,64v0,7,-3,12,-11,13v-57,3,-73,33,-73,77r0,103v0,68,-28,110,-69,128r0,4v41,17,69,58,69,128r0,128v0,42,16,74,72,78v10,1,12,4,12,11r0,67","w":383},"|":{"d":"173,129v0,15,-4,18,-19,18r-66,0v-13,0,-19,-4,-19,-18r0,-894v0,-14,6,-18,19,-18r66,0v15,0,19,3,19,18r0,894","w":237},"}":{"d":"328,-299v0,10,-3,13,-12,14v-35,5,-55,29,-55,87r0,121v0,126,-76,174,-188,177v-8,0,-10,-3,-10,-10r0,-67v0,-7,3,-10,12,-11v56,-4,72,-36,72,-79r0,-127v0,-70,29,-111,70,-129r0,-3v-42,-18,-70,-60,-70,-129r0,-103v0,-44,-16,-74,-73,-77v-8,-1,-11,-5,-11,-13r0,-63v0,-7,3,-11,11,-11v117,3,187,49,187,174r0,95v0,57,19,81,53,86v12,1,14,5,14,14r0,54","w":383},"~":{"d":"549,-312v-33,55,-79,90,-140,90v-71,0,-142,-59,-199,-59v-30,0,-55,14,-80,40v-7,7,-12,9,-20,3r-39,-30v-7,-6,-8,-12,-3,-19v43,-57,86,-85,141,-85v74,0,145,60,201,60v31,0,48,-19,72,-49v6,-9,13,-8,21,-3r43,30v9,7,8,13,3,22"},"%":{"d":"896,-203v0,124,-58,209,-184,209v-123,0,-182,-82,-182,-208v0,-126,60,-210,184,-210v129,0,182,82,182,209xm801,-202v0,-70,-21,-133,-89,-133v-66,0,-86,63,-86,132v0,69,20,133,88,133v66,0,87,-64,87,-132xm410,-470v0,124,-58,209,-184,209v-123,0,-182,-82,-182,-208v0,-126,60,-210,184,-210v129,0,182,82,182,209xm315,-469v0,-70,-21,-133,-89,-133v-66,0,-86,63,-86,132v0,69,20,133,88,133v66,0,87,-64,87,-132xm717,-681r-410,690v-7,12,-13,17,-28,17r-41,0v-12,0,-17,-6,-10,-17r411,-692v6,-12,9,-16,22,-16r47,0v8,0,16,5,9,18","w":940},"\u00a0":{"w":280}}});
;
/****** FILE: mysite/javascript/main.js *****/

(function(){$("blockquote").children(':first-child').addClass("first");$('#homeIntro .content').diagonalTextAlignment({angle:24.5});$('#homeHighlights .content').diagonalTextAlignment({angle:24.5});$('#homeHighlights .content ul').diagonalTextAlignment({angle:24.5});Cufon.set('Beau Sans').replace('#topContactInfo p',{hover:true});Cufon.set('Beau Sans').replace('#menu a',{hover:true});Cufon.set('Beau Sans').replace('h1, h2, h3, h4, h5',{hover:true});Cufon.now();$.fn.loginForm=function(){$(this).each(function(){var theForm=$(this).find("form");var inputLogoutUrl=$(this).find("input.logoutUrl");var inputUsername=$(this).find("input.username");var inputPassword=$(this).find("input.password");var inputPasswordDummy=$(this).find("input.passwordDummy");var inputSubmit=$(this).find("input.submit");var linkForgotPassword=$(this).find("a.forgetPasswordLink");var dummyUsernameLabel="Username";if((inputUsername.val()==""||inputUsername.val()==dummyUsernameLabel)&&inputPasswordDummy.length>0){inputUsername.val(dummyUsernameLabel);inputPassword.hide();inputPasswordDummy.val('Password');inputPasswordDummy.show();}
inputUsername.focus(function(){if(inputUsername.val()==dummyUsernameLabel)inputUsername.val('');});inputPasswordDummy.focus(function(){$(this).hide();inputPassword.show();inputPassword.focus();});inputSubmit.click(function(){username=$(this).getUsername();password=$(this).getPassword();if($(this).validate()){return true;}
else{if(username==''){alert("Please enter your email address");}
else if(!validateEmail(username)){alert("Please enter a correct email address");}
else if(password==''){alert("Please enter your password");}
return false;}});linkForgotPassword.click(function(){username=$(this).getUsername();password=$(this).getPassword();if(username!=''&&validateEmail(username)){window.location="https://obe.sabrepacific.net.au/resetPwd.do?appName=anz&logoutUrl="+inputLogoutUrl.val()+'&username='+username;return false;}
else{if(username==''){alert("Please enter your email address");}
else if(!validateEmail(username)){alert("Please enter a correct email address");}}
return false;});$.fn.getUsername=function(){return inputUsername.val().replace(/^\s+|\s+$/g,"");}
$.fn.getPassword=function(){return inputPassword.val().replace(/^\s+|\s+$/g,"");}
$.fn.validate=function(){if(username!=''&&validateEmail(username)&&(password!='')){return true;}
else{return false;}}
function validateEmail(email){return(email.match(/^[\w\._-]+@[\w._-]*\.[\w]{1,6}$/)!=null);}});}
$.fn.inputBox=function(settings){settings=$.extend({defaultValue:""},settings);$(this).val(settings.defaultValue);$(this).data('ss.inputbox.changed',false);$(this).focus(function(){if($(this).changed()||settings.defaultValue=="")return;$(this).val('');});$(this).change(function(){$(this).data('ss.inputbox.changed',true);});$(this).blur(function(){if($(this).changed()||settings.defaultValue=="")return;$(this).val(settings.defaultValue);});$.fn.changed=function(){return $(this).data('ss.inputbox.changed');}}
$(document).ready(function(){$("#loginForm").loginForm();$("#MemberLoginFormWrapper").loginForm();$("#SearchForm_SearchForm_Search").inputBox({defaultValue:"Search"});});if(jQuery.browser.msie&&jQuery.browser.version<7.0){$("#loginForm input.submit, #SearchForm_SearchForm input.action").mouseover(function(){$(this).addClass("hover");});$("#loginForm input.submit, #SearchForm_SearchForm input.action").mouseout(function(){$(this).removeClass("hover");});}})(jQuery);
;
