/* jquery */ (function(){var
window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;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&&elem.id!=match[3])
return jQuery().find(selector);var ret=jQuery(elem||[]);ret.context=document;ret.selector=selector;return ret;}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))
return jQuery(document).ready(selector);if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context;}
return this.setArray(jQuery.isArray(selector)?selector:jQuery.makeArray(selector));},selector:"",jquery:"1.3.2",size:function(){return this.length;},get:function(num){return num===undefined?Array.prototype.slice.call(this):this[num];},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find")
ret.selector=this.selector+(this.selector?" ":"")+selector;else if(name)
ret.selector=this.selector+"."+name+"("+selector+")";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){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(typeof name==="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]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode)
wrap.insertBefore(this[0]);wrap.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,function(elem){if(this.nodeType==1)
this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)
this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},push:[].push,sort:[].sort,splice:[].splice,find:function(selector){if(this.length===1){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret;}else{return this.pushStack(jQuery.unique(jQuery.map(this,function(elem){return jQuery.find(selector,elem);})),"find",selector);}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML;if(!html){var div=this.ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0];}else
return this.cloneNode(true);});if(events===true){var orig=this.find("*").andSelf(),i=0;ret.find("*").andSelf().each(function(){if(this.nodeName!==orig[i].nodeName)
return;var events=jQuery.data(orig[i],"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}
i++;});}
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,jQuery.grep(this,function(elem){return elem.nodeType===1;})),"filter",selector);},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null,closer=0;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector)){jQuery.data(cur,"closest",closer);return cur;}
cur=cur.parentNode;closer++;}});},not:function(selector){if(typeof selector==="string")
if(isSimple.test(selector))
return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector);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!!selector&&this.is("."+selector);},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,'option'))
return(elem.attributes.value||{}).specified?elem.value:elem.text;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(option).val();if(one)
return value;values.push(value);}}
return values;}
return(elem.value||"").replace(/\r/g,"");}
return undefined;}
if(typeof value==="number")
value+='';return this.each(function(){if(this.nodeType!=1)
return;if(jQuery.isArray(value)&&/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.replace(/ jQuery\d+="(?:\d+|null)"/g,""):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),"slice",Array.prototype.slice.call(arguments).join(","));},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);},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild;if(first)
for(var i=0,l=this.length;i<l;i++)
callback.call(root(this[i],first),this.length>1||i>0?fragment.cloneNode(true):fragment);if(scripts)
jQuery.each(scripts,evalScript);}
return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}};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(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target))
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 exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)
window.jQuery=_jQuery;return jQuery;},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isXMLDoc:function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&jQuery.isXMLDoc(elem.ownerDocument);},globalEval:function(data){if(data&&/\S/.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval)
script.appendChild(document.createTextNode(data));else
script.text=data;head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},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 typeof value==="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 elem&&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,extra){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;if(extra==="border")
return;jQuery.each(which,function(){if(!extra)
val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;if(extra==="margin")
val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;else
val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});}
if(elem.offsetWidth!==0)
getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,Math.round(val));}
return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}
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)
ret=computedStyle.getPropertyValue(name);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,fragment){context=context||document;if(typeof context.createElement==="undefined")
context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match)
return[context.createElement(match[1])];}
var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number")
elem+='';if(!elem)
return;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=elem.replace(/^\s+/,"").substring(0,10).toLowerCase();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.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)
div=div.lastChild;if(!jQuery.support.tbody){var hasBody=/<tbody/i.test(elem),tbody=!tags.indexOf("<table")&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&!hasBody?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(!jQuery.support.leadingWhitespace&&/^\s/.test(elem))
div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);elem=jQuery.makeArray(div.childNodes);}
if(elem.nodeType)
ret.push(elem);else
ret=jQuery.merge(ret,elem);});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1)
ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));fragment.appendChild(ret[i]);}}
return scripts;}
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;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode)
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;if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/(button|input|object|select|textarea)/i)?0:elem.nodeName.match(/^(a|area)$/i)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name=="style")
return jQuery.attr(elem.style,"cssText",value);if(set)
elem.setAttribute(name,""+value);var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
if(!jQuery.support.opacity&&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||typeof array==="string"||jQuery.isFunction(array)||array.setInterval)
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.support.getAll){while((elem=second[i++])!=null)
if(elem.nodeType!=8)
first[pos++]=elem;}else
while((elem=second[i++])!=null)
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.]+)/)||[0,'0'])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};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),name,selector);};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,selector);};});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,state){if(typeof state!=="boolean")
state=!jQuery.className.has(this,classNames);jQuery.className[state?"add":"remove"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).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).children().remove();while(this.firstChild)
this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}
var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({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];}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data))
q=jQuery.data(elem,type,jQuery.makeArray(data));else if(data)
q.push(data);}
return q;},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx")
fn=queue[0];if(fn!==undefined)
fn.call(elem);}});jQuery.fn.extend({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);});},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined)
return jQuery.queue(this[0],type);return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1)
queue[0].call(this);});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});}});(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9)
return[];if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector])
selector+=parts.shift();set=posProcess(selector,set);}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context,isXML(context));set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,isXML(context));}}
if(!checkSet){checkSet=set;}
if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,context,results,seed);if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break;}}
old=expr;}
return curLoop;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace)
result.push(elem);}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){}
return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase();},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return/h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON";},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0==i;},eq:function(elem,i,match){return match[3]-0==i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while(node=node.previousSibling){if(node.nodeType===1)return false;}
if(type=='first')return true;node=elem;case'last':while(node=node.nextSibling){if(node.nodeType===1)return false;}
return true;case'nth':var first=match[2],last=match[3];if(first==1&&last==0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first==0){return diff==0;}else{return(diff%first==0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);}
var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}})();if(document.querySelectorAll)(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches;})();if(document.getElementsByClassName&&document.documentElement.getElementsByClassName)(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0)
return;div.lastChild.className="e";if(div.getElementsByClassName("e").length===1)
return;Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&isXML(elem.ownerDocument);};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return elem.offsetWidth===0||elem.offsetHeight===0;};Sizzle.selectors.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0;};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")";}
return Sizzle.matches(expr,elems);};jQuery.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;};jQuery.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;};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)
r.push(n);}
return r;};return;window.Sizzle=Sizzle;})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)
return;if(elem.setInterval&&elem!=window)
elem=window;if(!handler.guid)
handler.guid=this.guid++;if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data;}
var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].setup.call(elem,data,namespaces);if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===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 namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler)
delete events[type][handler.guid];else
for(var handle in events[type])
if(namespace.test(events[type][handle].type))
delete events[type][handle];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].teardown.call(elem,namespaces);for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===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(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(this.global[type])
jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type])
jQuery.event.trigger(event,data,this.handle.elem);});}
if(!elem||elem.nodeType==3||elem.nodeType==8)
return undefined;event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle)
handle.apply(elem,data);if((!elem[type]||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)
event.result=false;if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}
this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent)
jQuery.event.trigger(event,data,parent,true);}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped())
break;}}},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 toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando])
return event;var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
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=proxy||function(){return fn.apply(this,arguments);};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler);},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type))
remove++;});if(remove<1)
jQuery.event.remove(this,namespaces[0],liveHandler);}}}}};jQuery.Event=function(src){if(!this.preventDefault)
return new jQuery.Event(src);if(src&&src.type){this.originalEvent=src;this.type=src.type;}else
this.type=src;this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.preventDefault)
e.preventDefault();e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.stopPropagation)
e.stopPropagation();e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this)
try{parent=parent.parentNode;}
catch(e){parent=this;}
if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}};jQuery.each({mouseover:'mouseenter',mouseout:'mouseleave'},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix);},teardown:function(){jQuery.event.remove(this,orig,withinElement);}};});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){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},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.mouseenter(fnOver).mouseleave(fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)
fn.call(document,jQuery);else
jQuery.readyList.push(fn);return this;},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this;},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this;}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem)
elems.push({elem:elem,fn:fn});}});elems.sort(function(a,b){return jQuery.data(a.elem,"closest")-jQuery.data(b.elem,"closest");});jQuery.each(elems,function(){if(this.fn.call(this.elem,event,this.fn.data)===false)
return(stop=false);});return stop;}
function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".");}
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);});jQuery.readyList=null;}
jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready();},false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready();}});if(document.documentElement.doScroll&&window==window.top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){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,mouseenter,mouseleave,"+"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);};});jQuery(window).bind('unload',function(){for(var id in jQuery.cache)
if(id!=1&&jQuery.cache[id].handle)
jQuery.event.remove(jQuery.cache[id].handle.elem);});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee);});div.cloneNode(true).fireEvent("onclick");}
jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';});})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};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);}
var type="GET";if(params)
if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){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);if(callback)
self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?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",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();},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 parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=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();script.onload=script.onreadystatechange=null;head.removeChild(script);}};}
head.appendChild(script);return undefined;}
var requestDone=false;var xhr=s.xhr();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){if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");xhr.abort();return false;}
if(s.global)
jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}}else 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);}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(isTimeout)
xhr.abort();if(s.async)
xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)
setTimeout(function(){if(xhr&&!requestDone)
onreadystatechange("timeout");},s.timeout);}
try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}
if(!s.async)
onreadystatechange();function success(){if(s.success)
s.success(data,status);if(s.global)
jQuery.event.trigger("ajaxSuccess",[xhr,s]);}
function complete(){if(s.complete)
s.complete(xhr,status);if(s.global)
jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}
return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)
jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223;}catch(e){}
return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url];}catch(e){}
return false;},httpData:function(xhr,type,s){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(s&&s.dataFilter)
data=s.dataFilter(data,type);if(typeof data==="string"){if(type=="script")
jQuery.globalEval(data);if(type=="json")
data=window["eval"]("("+data+")");}
return data;},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+'='+encodeURIComponent(value);};if(jQuery.isArray(a)||a.jquery)
jQuery.each(a,function(){add(this.name,this.value);});else
for(var j in a)
if(jQuery.isArray(a[j]))
jQuery.each(a[j],function(){add(j,this);});else
add(j,jQuery.isFunction(a[j])?a[j]():a[j]);return s.join("&").replace(/%20/g,"+");}});var elemdisplay={},timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName];}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none")
display="block";elem.remove();elemdisplay[tagName]=display;}
jQuery.data(this[i],"olddisplay",display);}}
for(var i=0,l=this.length;i<l;i++){this[i].style.display=jQuery.data(this[i],"olddisplay")||"";}
return this;}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none")
jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));}
for(var i=0,l=this.length;i<l;i++){this[i].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();}):this.animate(genFx("toggle",3),fn,fn2);},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(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&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")&&this.style){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;});},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;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;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:[],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)
this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||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;var self=this;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){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(timerId);timerId=undefined;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());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)
jQuery(this.elem).hide();if(this.options.hide||this.options.show)
for(var p in this.options.curAnim)
jQuery.attr(this.elem.style,p,this.options.orig[p]);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,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null)
fx.elem.style[fx.prop]=fx.now+fx.unit;else
fx.elem[fx.prop]=fx.now;}}});if(document.documentElement["getBoundingClientRect"])
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};else
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName)))
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible")
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static")
top+=body.offsetTop,left+=body.offsetLeft;if(prevComputedStyle.position==="fixed")
top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft);return{top:top,left:left};};jQuery.offset={initialize:function(){if(this.initialized)return;var body=document.body,container=document.createElement('div'),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';rules={position:'absolute',top:0,left:0,margin:0,border:0,width:'1px',height:'1px',visibility:'hidden'};for(prop in rules)container.style[prop]=rules[prop];container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow='hidden',innerDiv.style.position='relative';this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop='1px';this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true;},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset)
top+=parseInt(jQuery.curCSS(body,'marginTop',true),10)||0,left+=parseInt(jQuery.curCSS(body,'marginLeft',true),10)||0;return{top:top,left:left};}};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||document.body;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 null;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",lower=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],lower,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],lower,false,margin?"margin":"border"):null;};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px");};});})();
/* jquery.effects.all */ ;jQuery.effects||(function($){$.effects={version:"1.7",save:function(element,set){for(var i=0;i<set.length;i++){if(set[i]!==null)element.data("ec.storage."+set[i],element[0].style[set[i]]);}},restore:function(element,set){for(var i=0;i<set.length;i++){if(set[i]!==null)element.css(set[i],element.data("ec.storage."+set[i]));}},setMode:function(el,mode){if(mode=='toggle')mode=el.is(':hidden')?'show':'hide';return mode;},getBaseline:function(origin,original){var y,x;switch(origin[0]){case'top':y=0;break;case'middle':y=0.5;break;case'bottom':y=1;break;default:y=origin[0]/original.height;};switch(origin[1]){case'left':x=0;break;case'center':x=0.5;break;case'right':x=1;break;default:x=origin[1]/original.width;};return{x:x,y:y};},createWrapper:function(element){if(element.parent().is('.ui-effects-wrapper'))
return element.parent();var props={width:element.outerWidth(true),height:element.outerHeight(true),'float':element.css('float')};element.wrap('<div class="ui-effects-wrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');var wrapper=element.parent();if(element.css('position')=='static'){wrapper.css({position:'relative'});element.css({position:'relative'});}else{var top=element.css('top');if(isNaN(parseInt(top,10)))top='auto';var left=element.css('left');if(isNaN(parseInt(left,10)))left='auto';wrapper.css({position:element.css('position'),top:top,left:left,zIndex:element.css('z-index')}).show();element.css({position:'relative',top:0,left:0});}
wrapper.css(props);return wrapper;},removeWrapper:function(element){if(element.parent().is('.ui-effects-wrapper'))
return element.parent().replaceWith(element);return element;},setTransition:function(element,list,factor,value){value=value||{};$.each(list,function(i,x){unit=element.cssUnit(x);if(unit[0]>0)value[x]=unit[0]*factor+unit[1];});return value;},animateClass:function(value,duration,easing,callback){var cb=(typeof easing=="function"?easing:(callback?callback:null));var ea=(typeof easing=="string"?easing:null);return this.each(function(){var offset={};var that=$(this);var oldStyleAttr=that.attr("style")||'';if(typeof oldStyleAttr=='object')oldStyleAttr=oldStyleAttr["cssText"];if(value.toggle){that.hasClass(value.toggle)?value.remove=value.toggle:value.add=value.toggle;}
var oldStyle=$.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(value.add)that.addClass(value.add);if(value.remove)that.removeClass(value.remove);var newStyle=$.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(value.add)that.removeClass(value.add);if(value.remove)that.addClass(value.remove);for(var n in newStyle){if(typeof newStyle[n]!="function"&&newStyle[n]&&n.indexOf("Moz")==-1&&n.indexOf("length")==-1&&newStyle[n]!=oldStyle[n]&&(n.match(/color/i)||(!n.match(/color/i)&&!isNaN(parseInt(newStyle[n],10))))&&(oldStyle.position!="static"||(oldStyle.position=="static"&&!n.match(/left|top|bottom|right/))))offset[n]=newStyle[n];}
that.animate(offset,duration,ea,function(){if(typeof $(this).attr("style")=='object'){$(this).attr("style")["cssText"]="";$(this).attr("style")["cssText"]=oldStyleAttr;}else $(this).attr("style",oldStyleAttr);if(value.add)$(this).addClass(value.add);if(value.remove)$(this).removeClass(value.remove);if(cb)cb.apply(this,arguments);});});}};function _normalizeArguments(a,m){var o=a[1]&&a[1].constructor==Object?a[1]:{};if(m)o.mode=m;var speed=a[1]&&a[1].constructor!=Object?a[1]:(o.duration?o.duration:a[2]);speed=$.fx.off?0:typeof speed==="number"?speed:$.fx.speeds[speed]||$.fx.speeds._default;var callback=o.callback||($.isFunction(a[1])&&a[1])||($.isFunction(a[2])&&a[2])||($.isFunction(a[3])&&a[3]);return[a[0],o,speed,callback];}
$.fn.extend({_show:$.fn.show,_hide:$.fn.hide,__toggle:$.fn.toggle,_addClass:$.fn.addClass,_removeClass:$.fn.removeClass,_toggleClass:$.fn.toggleClass,effect:function(fx,options,speed,callback){return $.effects[fx]?$.effects[fx].call(this,{method:fx,options:options||{},duration:speed,callback:callback}):null;},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0])))
return this._show.apply(this,arguments);else{return this.effect.apply(this,_normalizeArguments(arguments,'show'));}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0])))
return this._hide.apply(this,arguments);else{return this.effect.apply(this,_normalizeArguments(arguments,'hide'));}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))||(arguments[0].constructor==Function))
return this.__toggle.apply(this,arguments);else{return this.effect.apply(this,_normalizeArguments(arguments,'toggle'));}},addClass:function(classNames,speed,easing,callback){return speed?$.effects.animateClass.apply(this,[{add:classNames},speed,easing,callback]):this._addClass(classNames);},removeClass:function(classNames,speed,easing,callback){return speed?$.effects.animateClass.apply(this,[{remove:classNames},speed,easing,callback]):this._removeClass(classNames);},toggleClass:function(classNames,speed,easing,callback){return((typeof speed!=="boolean")&&speed)?$.effects.animateClass.apply(this,[{toggle:classNames},speed,easing,callback]):this._toggleClass(classNames,speed);},morph:function(remove,add,speed,easing,callback){return $.effects.animateClass.apply(this,[{add:add,remove:remove},speed,easing,callback]);},switchClass:function(){return this.morph.apply(this,arguments);},cssUnit:function(key){var style=this.css(key),val=[];$.each(['em','px','%','pt'],function(i,unit){if(style.indexOf(unit)>0)
val=[parseFloat(style),unit];});return val;}});$.each(['backgroundColor','borderBottomColor','borderLeftColor','borderRightColor','borderTopColor','color','outlineColor'],function(i,attr){$.fx.step[attr]=function(fx){if(fx.state==0){fx.start=getColor(fx.elem,attr);fx.end=getRGB(fx.end);}
fx.elem.style[attr]="rgb("+[Math.max(Math.min(parseInt((fx.pos*(fx.end[0]-fx.start[0]))+fx.start[0],10),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[1]-fx.start[1]))+fx.start[1],10),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[2]-fx.start[2]))+fx.start[2],10),255),0)].join(",")+")";};});function getRGB(color){var result;if(color&&color.constructor==Array&&color.length==3)
return color;if(result=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
return[parseInt(result[1],10),parseInt(result[2],10),parseInt(result[3],10)];if(result=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
return[parseFloat(result[1])*2.55,parseFloat(result[2])*2.55,parseFloat(result[3])*2.55];if(result=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
return[parseInt(result[1],16),parseInt(result[2],16),parseInt(result[3],16)];if(result=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
return[parseInt(result[1]+result[1],16),parseInt(result[2]+result[2],16),parseInt(result[3]+result[3],16)];if(result=/rgba\(0, 0, 0, 0\)/.exec(color))
return colors['transparent'];return colors[$.trim(color).toLowerCase()];}
function getColor(elem,attr){var color;do{color=$.curCSS(elem,attr);if(color!=''&&color!='transparent'||$.nodeName(elem,"body"))
break;attr="backgroundColor";}while(elem=elem.parentNode);return getRGB(color);};var colors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]};$.easing.jswing=$.easing.swing;$.extend($.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return $.easing[$.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-$.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return $.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return $.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});})(jQuery);(function($){$.effects.blind=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'vertical';$.effects.save(el,props);el.show();var wrapper=$.effects.createWrapper(el).css({overflow:'hidden'});var ref=(direction=='vertical')?'height':'width';var distance=(direction=='vertical')?wrapper.height():wrapper.width();if(mode=='show')wrapper.css(ref,0);var animation={};animation[ref]=mode=='show'?distance:0;wrapper.animate(animation,o.duration,o.options.easing,function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(el[0],arguments);el.dequeue();});});};})(jQuery);(function($){$.effects.bounce=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'effect');var direction=o.options.direction||'up';var distance=o.options.distance||20;var times=o.options.times||5;var speed=o.duration||250;if(/show|hide/.test(mode))props.push('opacity');$.effects.save(el,props);el.show();$.effects.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true})/3:el.outerWidth({margin:true})/3);if(mode=='show')el.css('opacity',0).css(ref,motion=='pos'?-distance:distance);if(mode=='hide')distance=distance/(times*2);if(mode!='hide')times--;if(mode=='show'){var animation={opacity:1};animation[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation,speed/2,o.options.easing);distance=distance/2;times--;};for(var i=0;i<times;i++){var animation1={},animation2={};animation1[ref]=(motion=='pos'?'-=':'+=')+distance;animation2[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation1,speed/2,o.options.easing).animate(animation2,speed/2,o.options.easing);distance=(mode=='hide')?distance*2:distance/2;};if(mode=='hide'){var animation={opacity:0};animation[ref]=(motion=='pos'?'-=':'+=')+distance;el.animate(animation,speed/2,o.options.easing,function(){el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});}else{var animation1={},animation2={};animation1[ref]=(motion=='pos'?'-=':'+=')+distance;animation2[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation1,speed/2,o.options.easing).animate(animation2,speed/2,o.options.easing,function(){$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});};el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.effects.clip=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','height','width'];var mode=$.effects.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'vertical';$.effects.save(el,props);el.show();var wrapper=$.effects.createWrapper(el).css({overflow:'hidden'});var animate=el[0].tagName=='IMG'?wrapper:el;var ref={size:(direction=='vertical')?'height':'width',position:(direction=='vertical')?'top':'left'};var distance=(direction=='vertical')?animate.height():animate.width();if(mode=='show'){animate.css(ref.size,0);animate.css(ref.position,distance/2);}
var animation={};animation[ref.size]=mode=='show'?distance:0;animation[ref.position]=mode=='show'?0:distance/2;animate.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(el[0],arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.drop=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','opacity'];var mode=$.effects.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'left';$.effects.save(el,props);el.show();$.effects.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true})/2:el.outerWidth({margin:true})/2);if(mode=='show')el.css('opacity',0).css(ref,motion=='pos'?-distance:distance);var animation={opacity:mode=='show'?1:0};animation[ref]=(mode=='show'?(motion=='pos'?'+=':'-='):(motion=='pos'?'-=':'+='))+distance;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.explode=function(o){return this.queue(function(){var rows=o.options.pieces?Math.round(Math.sqrt(o.options.pieces)):3;var cells=o.options.pieces?Math.round(Math.sqrt(o.options.pieces)):3;o.options.mode=o.options.mode=='toggle'?($(this).is(':visible')?'hide':'show'):o.options.mode;var el=$(this).show().css('visibility','hidden');var offset=el.offset();offset.top-=parseInt(el.css("marginTop"),10)||0;offset.left-=parseInt(el.css("marginLeft"),10)||0;var width=el.outerWidth(true);var height=el.outerHeight(true);for(var i=0;i<rows;i++){for(var j=0;j<cells;j++){el.clone().appendTo('body').wrap('<div></div>').css({position:'absolute',visibility:'visible',left:-j*(width/cells),top:-i*(height/rows)}).parent().addClass('ui-effects-explode').css({position:'absolute',overflow:'hidden',width:width/cells,height:height/rows,left:offset.left+j*(width/cells)+(o.options.mode=='show'?(j-Math.floor(cells/2))*(width/cells):0),top:offset.top+i*(height/rows)+(o.options.mode=='show'?(i-Math.floor(rows/2))*(height/rows):0),opacity:o.options.mode=='show'?0:1}).animate({left:offset.left+j*(width/cells)+(o.options.mode=='show'?0:(j-Math.floor(cells/2))*(width/cells)),top:offset.top+i*(height/rows)+(o.options.mode=='show'?0:(i-Math.floor(rows/2))*(height/rows)),opacity:o.options.mode=='show'?1:0},o.duration||500);}}
setTimeout(function(){o.options.mode=='show'?el.css({visibility:'visible'}):el.css({visibility:'visible'}).hide();if(o.callback)o.callback.apply(el[0]);el.dequeue();$('div.ui-effects-explode').remove();},o.duration||500);});};})(jQuery);(function($){$.effects.fold=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'hide');var size=o.options.size||15;var horizFirst=!(!o.options.horizFirst);var duration=o.duration?o.duration/2:$.fx.speeds._default/2;$.effects.save(el,props);el.show();var wrapper=$.effects.createWrapper(el).css({overflow:'hidden'});var widthFirst=((mode=='show')!=horizFirst);var ref=widthFirst?['width','height']:['height','width'];var distance=widthFirst?[wrapper.width(),wrapper.height()]:[wrapper.height(),wrapper.width()];var percent=/([0-9]+)%/.exec(size);if(percent)size=parseInt(percent[1],10)/100*distance[mode=='hide'?0:1];if(mode=='show')wrapper.css(horizFirst?{height:0,width:size}:{height:size,width:0});var animation1={},animation2={};animation1[ref[0]]=mode=='show'?distance[0]:size;animation2[ref[1]]=mode=='show'?distance[1]:0;wrapper.animate(animation1,duration,o.options.easing).animate(animation2,duration,o.options.easing,function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(el[0],arguments);el.dequeue();});});};})(jQuery);(function($){$.effects.highlight=function(o){return this.queue(function(){var el=$(this),props=['backgroundImage','backgroundColor','opacity'];var mode=$.effects.setMode(el,o.options.mode||'show');var color=o.options.color||"#ffff99";var oldColor=el.css("backgroundColor");$.effects.save(el,props);el.show();el.css({backgroundImage:'none',backgroundColor:color});var animation={backgroundColor:oldColor};if(mode=="hide")animation['opacity']=0;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=="hide")el.hide();$.effects.restore(el,props);if(mode=="show"&&$.browser.msie)this.style.removeAttribute('filter');if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.pulsate=function(o){return this.queue(function(){var el=$(this);var mode=$.effects.setMode(el,o.options.mode||'show');var times=o.options.times||5;var duration=o.duration?o.duration/2:$.fx.speeds._default/2;if(mode=='hide')times--;if(el.is(':hidden')){el.css('opacity',0);el.show();el.animate({opacity:1},duration,o.options.easing);times=times-2;}
for(var i=0;i<times;i++){el.animate({opacity:0},duration,o.options.easing).animate({opacity:1},duration,o.options.easing);};if(mode=='hide'){el.animate({opacity:0},duration,o.options.easing,function(){el.hide();if(o.callback)o.callback.apply(this,arguments);});}else{el.animate({opacity:0},duration,o.options.easing).animate({opacity:1},duration,o.options.easing,function(){if(o.callback)o.callback.apply(this,arguments);});};el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.effects.puff=function(o){return this.queue(function(){var el=$(this);var options=$.extend(true,{},o.options);var mode=$.effects.setMode(el,o.options.mode||'hide');var percent=parseInt(o.options.percent,10)||150;options.fade=true;var original={height:el.height(),width:el.width()};var factor=percent/100;el.from=(mode=='hide')?original:{height:original.height*factor,width:original.width*factor};options.from=el.from;options.percent=(mode=='hide')?percent:100;options.mode=mode;el.effect('scale',options,o.duration,o.callback);el.dequeue();});};$.effects.scale=function(o){return this.queue(function(){var el=$(this);var options=$.extend(true,{},o.options);var mode=$.effects.setMode(el,o.options.mode||'effect');var percent=parseInt(o.options.percent,10)||(parseInt(o.options.percent,10)==0?0:(mode=='hide'?0:100));var direction=o.options.direction||'both';var origin=o.options.origin;if(mode!='effect'){options.origin=origin||['middle','center'];options.restore=true;}
var original={height:el.height(),width:el.width()};el.from=o.options.from||(mode=='show'?{height:0,width:0}:original);var factor={y:direction!='horizontal'?(percent/100):1,x:direction!='vertical'?(percent/100):1};el.to={height:original.height*factor.y,width:original.width*factor.x};if(o.options.fade){if(mode=='show'){el.from.opacity=0;el.to.opacity=1;};if(mode=='hide'){el.from.opacity=1;el.to.opacity=0;};};options.from=el.from;options.to=el.to;options.mode=mode;el.effect('size',options,o.duration,o.callback);el.dequeue();});};$.effects.size=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','width','height','overflow','opacity'];var props1=['position','top','left','overflow','opacity'];var props2=['width','height','overflow'];var cProps=['fontSize'];var vProps=['borderTopWidth','borderBottomWidth','paddingTop','paddingBottom'];var hProps=['borderLeftWidth','borderRightWidth','paddingLeft','paddingRight'];var mode=$.effects.setMode(el,o.options.mode||'effect');var restore=o.options.restore||false;var scale=o.options.scale||'both';var origin=o.options.origin;var original={height:el.height(),width:el.width()};el.from=o.options.from||original;el.to=o.options.to||original;if(origin){var baseline=$.effects.getBaseline(origin,original);el.from.top=(original.height-el.from.height)*baseline.y;el.from.left=(original.width-el.from.width)*baseline.x;el.to.top=(original.height-el.to.height)*baseline.y;el.to.left=(original.width-el.to.width)*baseline.x;};var factor={from:{y:el.from.height/original.height,x:el.from.width/original.width},to:{y:el.to.height/original.height,x:el.to.width/original.width}};if(scale=='box'||scale=='both'){if(factor.from.y!=factor.to.y){props=props.concat(vProps);el.from=$.effects.setTransition(el,vProps,factor.from.y,el.from);el.to=$.effects.setTransition(el,vProps,factor.to.y,el.to);};if(factor.from.x!=factor.to.x){props=props.concat(hProps);el.from=$.effects.setTransition(el,hProps,factor.from.x,el.from);el.to=$.effects.setTransition(el,hProps,factor.to.x,el.to);};};if(scale=='content'||scale=='both'){if(factor.from.y!=factor.to.y){props=props.concat(cProps);el.from=$.effects.setTransition(el,cProps,factor.from.y,el.from);el.to=$.effects.setTransition(el,cProps,factor.to.y,el.to);};};$.effects.save(el,restore?props:props1);el.show();$.effects.createWrapper(el);el.css('overflow','hidden').css(el.from);if(scale=='content'||scale=='both'){vProps=vProps.concat(['marginTop','marginBottom']).concat(cProps);hProps=hProps.concat(['marginLeft','marginRight']);props2=props.concat(vProps).concat(hProps);el.find("*[width]").each(function(){child=$(this);if(restore)$.effects.save(child,props2);var c_original={height:child.height(),width:child.width()};child.from={height:c_original.height*factor.from.y,width:c_original.width*factor.from.x};child.to={height:c_original.height*factor.to.y,width:c_original.width*factor.to.x};if(factor.from.y!=factor.to.y){child.from=$.effects.setTransition(child,vProps,factor.from.y,child.from);child.to=$.effects.setTransition(child,vProps,factor.to.y,child.to);};if(factor.from.x!=factor.to.x){child.from=$.effects.setTransition(child,hProps,factor.from.x,child.from);child.to=$.effects.setTransition(child,hProps,factor.to.x,child.to);};child.css(child.from);child.animate(child.to,o.duration,o.options.easing,function(){if(restore)$.effects.restore(child,props2);});});};el.animate(el.to,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,restore?props:props1);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.shake=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'effect');var direction=o.options.direction||'left';var distance=o.options.distance||20;var times=o.options.times||3;var speed=o.duration||o.options.duration||140;$.effects.save(el,props);el.show();$.effects.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var animation={},animation1={},animation2={};animation[ref]=(motion=='pos'?'-=':'+=')+distance;animation1[ref]=(motion=='pos'?'+=':'-=')+distance*2;animation2[ref]=(motion=='pos'?'-=':'+=')+distance*2;el.animate(animation,speed,o.options.easing);for(var i=1;i<times;i++){el.animate(animation1,speed,o.options.easing).animate(animation2,speed,o.options.easing);};el.animate(animation1,speed,o.options.easing).animate(animation,speed/2,o.options.easing,function(){$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.effects.slide=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'show');var direction=o.options.direction||'left';$.effects.save(el,props);el.show();$.effects.createWrapper(el).css({overflow:'hidden'});var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true}):el.outerWidth({margin:true}));if(mode=='show')el.css(ref,motion=='pos'?-distance:distance);var animation={};animation[ref]=(mode=='show'?(motion=='pos'?'+=':'-='):(motion=='pos'?'-=':'+='))+distance;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.transfer=function(o){return this.queue(function(){var elem=$(this),target=$(o.options.to),endPosition=target.offset(),animation={top:endPosition.top,left:endPosition.left,height:target.innerHeight(),width:target.innerWidth()},startPosition=elem.offset(),transfer=$('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(o.options.className).css({top:startPosition.top,left:startPosition.left,height:elem.innerHeight(),width:elem.innerWidth(),position:'absolute'}).animate(animation,o.duration,o.options.easing,function(){transfer.remove();(o.callback&&o.callback.apply(elem[0],arguments));elem.dequeue();});});};})(jQuery);
/* cufon.core */ 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-1]-=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}})());
/* cufon.font.estryas */ Cufon.registerFont({"w":1070,"face":{"font-family":"ChampagneLimousines","font-weight":300,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 2 2 2 2 4 2 6 7","ascent":"1638","descent":"-410","x-height":"24","bbox":"-61 -1546 1953 331","underline-thickness":"150","underline-position":"-292","unicode-range":"U+0020-U+2192"},"glyphs":{" ":{"w":508},"\u00a0":{"w":508},"!":{"d":"190,-123v16,15,24,34,24,56v0,22,-8,41,-24,56v-15,15,-34,23,-55,23v-22,0,-41,-8,-57,-23v-15,-15,-23,-34,-23,-56v0,-22,8,-41,23,-56v16,-15,35,-23,57,-23v21,0,40,8,55,23xm173,-1414r0,1170r-80,0r0,-1170r80,0","w":269},"\"":{"d":"55,-881r0,-530r80,0r0,530r-80,0xm263,-881r0,-530r79,0r0,530r-79,0","w":397},"#":{"d":"302,-542r34,-270r-285,0r10,-80r285,0r57,-461r80,0r-57,461r270,0r57,-461r80,0r-57,461r285,0r-10,80r-285,0r-34,270r286,0r-10,80r-286,0r-57,462r-80,0r57,-462r-270,0r-57,462r-80,0r57,-462r-284,0r10,-80r284,0xm416,-812r-34,270r270,0r34,-270r-270,0"},"$":{"d":"579,-756r0,589v59,-9,110,-35,155,-80v55,-55,83,-123,83,-202v0,-78,-28,-145,-83,-200v-43,-44,-95,-80,-155,-107xm499,-1249v-36,6,-68,23,-95,51v-36,35,-54,78,-54,129v0,51,18,94,53,129v25,25,57,48,96,70r0,-379xm499,-787v-61,-27,-111,-60,-150,-99v-51,-50,-76,-111,-76,-183v0,-70,25,-130,76,-181v43,-43,93,-68,150,-75r0,-144r80,0r0,146v52,9,98,33,137,72v27,27,47,58,59,95r-69,28v-10,-27,-25,-51,-45,-71v-24,-23,-51,-39,-82,-47r0,410v81,31,150,76,208,134v71,70,106,154,106,253v0,100,-35,185,-106,255v-59,60,-129,95,-208,104r0,124r-80,0r0,-123v-85,-7,-158,-42,-221,-105v-56,-56,-90,-122,-102,-199r72,-27v7,68,35,126,84,173v47,48,103,75,167,82r0,-622"},"%":{"d":"973,-1161r-811,1158r-65,-45r811,-1158xm414,-1014v40,40,60,88,60,145v0,56,-20,104,-60,144v-39,40,-87,60,-144,60v-57,0,-105,-20,-144,-60v-40,-40,-60,-88,-60,-144v0,-57,20,-105,60,-145v39,-40,87,-60,144,-60v57,0,105,20,144,60xm270,-997v-35,0,-65,13,-90,37v-25,26,-37,56,-37,91v0,35,12,65,37,90v25,25,55,37,90,37v35,0,64,-12,90,-37v24,-25,37,-55,37,-90v0,-35,-13,-65,-37,-91v-26,-24,-55,-37,-90,-37xm944,-484v40,40,60,88,60,145v0,57,-20,105,-60,145v-39,39,-87,59,-144,59v-57,0,-105,-20,-144,-59v-40,-40,-60,-88,-60,-145v0,-57,20,-105,60,-145v39,-39,87,-59,144,-59v57,0,105,20,144,59xm800,-467v-35,0,-65,13,-90,37v-25,26,-37,56,-37,91v0,35,12,65,37,90v25,25,55,37,90,37v35,0,65,-12,90,-37v25,-25,38,-55,38,-90v0,-35,-13,-65,-38,-91v-25,-24,-55,-37,-90,-37"},"&":{"d":"815,-292v-7,-3,-15,-7,-22,-11v-28,-16,-63,-46,-106,-90v-28,-26,-48,-42,-60,-49v-13,-7,-26,-10,-39,-10v-7,0,-15,1,-22,2v-21,6,-37,18,-48,37v-7,13,-11,26,-11,39v0,7,1,15,3,22v6,21,18,37,35,46v11,6,27,9,46,9v11,0,23,-1,36,-3r-8,73v-15,4,-29,6,-44,6v-23,0,-46,-6,-69,-18v-35,-20,-59,-51,-70,-92v-4,-15,-6,-29,-6,-43v0,-26,7,-51,21,-76v22,-37,54,-62,95,-73v15,-4,29,-6,43,-6v26,0,51,7,75,21v23,13,54,39,92,79v34,31,59,51,75,60v18,10,36,15,55,15v11,0,21,-2,32,-5v31,-8,54,-26,70,-54v10,-18,15,-36,15,-55v0,-10,-2,-20,-5,-31v-8,-30,-26,-53,-53,-69v-17,-9,-35,-14,-56,-14v-15,0,-30,2,-47,7r-1,-79v17,-5,33,-7,49,-7v31,0,62,9,92,26v46,26,76,64,90,115v5,18,7,35,7,52v0,32,-8,63,-25,92v-26,46,-65,76,-117,91v-15,4,-30,6,-44,7v-19,63,-54,120,-105,171v-82,83,-181,124,-296,124v-115,0,-214,-41,-296,-123v-82,-82,-123,-181,-123,-297v0,-115,40,-216,121,-302v55,-59,127,-104,216,-134v-43,-18,-86,-51,-130,-98v-45,-47,-67,-113,-67,-196v0,-81,29,-151,87,-210v59,-59,129,-88,212,-88v83,0,153,29,212,88v33,31,55,66,67,105r-71,28v-11,-29,-28,-55,-52,-79v-43,-43,-95,-64,-156,-64v-61,0,-112,21,-156,64v-42,43,-64,95,-64,156v0,61,21,113,62,157v42,45,81,74,116,87v35,13,79,20,132,21r0,75r-63,1v-129,25,-226,72,-291,143v-65,71,-97,153,-97,246v0,94,33,174,99,241v67,67,147,100,242,100v93,0,173,-33,240,-100v39,-39,66,-82,83,-130","w":1167},"'":{"d":"55,-881r0,-530r80,0r0,530r-80,0","w":190},"(":{"d":"497,-1483v-55,33,-117,96,-186,188v-100,136,-150,323,-150,561v0,15,0,30,1,45v-1,15,-1,30,-1,45v0,239,50,426,150,562v69,92,131,155,186,188r-89,0v-51,-35,-98,-79,-142,-130v-141,-162,-211,-384,-211,-665v0,-281,70,-502,211,-664v44,-51,91,-95,142,-130r89,0","w":552},")":{"d":"144,-1483v51,35,98,79,142,130v141,162,211,383,211,664v0,281,-70,503,-211,665v-44,51,-91,95,-142,130r-89,0v55,-33,117,-96,186,-188v100,-136,150,-323,150,-562v0,-15,0,-30,-1,-45v1,-15,1,-30,1,-45v0,-238,-50,-425,-150,-561v-69,-92,-131,-155,-186,-188r89,0","w":552},"*":{"d":"355,-1223r154,-108r46,66r-171,119r171,119r-46,66r-154,-108r0,188r-79,0r0,-189r-155,109r-46,-66r171,-119r-171,-119r46,-66r155,109r0,-189r79,0r0,188","w":630},"+":{"d":"495,-483r-410,0r0,-80r410,0r0,-410r80,0r0,410r410,0r0,80r-410,0r0,410r-80,0r0,-410"},",":{"d":"238,-147r-164,341r-74,0r91,-341r147,0","w":336},"-":{"d":"48,-563r500,0r0,80r-500,0r0,-80","w":596},"\u00ad":{"d":"48,-563r500,0r0,80r-500,0r0,-80","w":596},".":{"d":"190,-123v16,15,24,34,24,56v0,22,-8,41,-24,56v-15,15,-34,23,-55,23v-22,0,-41,-8,-57,-23v-15,-15,-23,-34,-23,-56v0,-22,8,-41,23,-56v16,-15,35,-23,57,-23v21,0,40,8,55,23","w":269},"\/":{"d":"588,-1414r91,0r-641,1414r-90,0","w":627},"0":{"d":"936,-695v0,-200,-39,-356,-118,-467v-78,-111,-172,-167,-283,-167v-111,0,-205,56,-283,167v-79,111,-118,267,-118,467v0,201,39,357,118,468v78,111,172,167,283,167v111,0,205,-56,283,-167v79,-111,118,-267,118,-468xm1020,-695v0,223,-47,399,-142,527v-94,129,-208,193,-342,193v-134,0,-248,-64,-344,-193v-94,-128,-142,-304,-142,-527v0,-223,48,-398,142,-527v96,-128,210,-192,344,-192v134,0,248,64,342,192v95,129,142,304,142,527"},"1":{"d":"499,-80r0,-1176r-147,96r-62,-45r288,-209r0,1334r307,0r0,80r-700,0r0,-80r314,0"},"2":{"d":"170,0v370,-565,569,-872,598,-922v29,-51,43,-99,43,-145v0,-23,-3,-46,-8,-69v-17,-73,-56,-130,-119,-169v-45,-27,-91,-40,-139,-40v-21,0,-43,2,-64,7v-72,17,-128,56,-167,119v-22,35,-35,69,-40,103r-82,-12v4,-45,20,-89,49,-134v53,-83,127,-136,221,-157v29,-7,57,-10,84,-10v65,0,127,18,185,55v83,52,135,125,156,219v8,35,12,68,12,99v0,55,-16,112,-47,168v-32,58,-207,327,-524,808r571,0r0,80r-729,0"},"3":{"d":"485,-789r-66,-2r0,-79v55,-1,99,-8,135,-22v34,-13,72,-42,114,-86v40,-43,61,-95,61,-155v0,-61,-21,-112,-63,-154v-43,-42,-94,-63,-154,-63v-59,0,-111,21,-154,63v-23,24,-41,51,-52,81r-76,-30v13,-41,35,-78,68,-109v59,-59,131,-88,214,-88v84,0,155,29,214,89v59,58,88,129,88,211v0,84,-22,150,-67,198v-45,48,-87,80,-126,96v85,28,156,72,212,132v81,87,121,188,121,304v0,117,-41,216,-124,299v-82,82,-181,123,-298,123v-116,0,-215,-41,-298,-124v-65,-66,-105,-143,-118,-232r80,-29v9,79,41,146,98,203v66,65,145,98,238,98v94,0,174,-33,240,-99v66,-65,99,-145,99,-239v0,-93,-32,-175,-97,-245v-64,-70,-160,-117,-289,-141"},"4":{"d":"799,-1474r0,1031r135,0r0,79r-135,0r0,364r-80,0r0,-364r-583,0xm719,-1192r-446,749r446,0r0,-749"},"5":{"d":"231,-975v29,-9,62,-18,99,-26v37,-7,74,-10,109,-10v65,0,128,10,187,31v133,45,232,129,297,251v41,76,61,154,61,233v0,50,-8,100,-23,150v-41,132,-122,231,-244,297v-75,39,-151,59,-230,59v-50,0,-101,-8,-153,-24v-106,-33,-189,-90,-249,-172r57,-62v50,74,122,125,217,154v43,13,84,20,125,20v66,0,130,-17,193,-50v102,-54,170,-136,204,-247v13,-43,20,-85,20,-126v0,-66,-17,-130,-51,-193v-54,-101,-136,-171,-247,-210v-48,-17,-100,-25,-157,-25v-75,0,-159,14,-250,43r-63,-55r162,-448r0,-29r442,0r0,80r-375,0"},"6":{"d":"226,-373v0,85,30,158,90,217v61,60,134,90,219,90v85,0,157,-30,217,-90v61,-59,91,-132,91,-217v0,-85,-30,-158,-91,-219v-60,-60,-132,-90,-217,-90v-85,0,-158,30,-219,90v-60,61,-90,134,-90,219xm297,-687v69,-53,148,-80,238,-80v109,0,201,38,277,115v77,77,115,170,115,279v0,108,-38,201,-115,277v-76,78,-168,116,-277,116v-108,0,-201,-38,-277,-116v-78,-76,-116,-169,-116,-277r0,-16v6,-141,50,-295,130,-460v82,-165,175,-326,281,-481r54,-84r106,0v-19,33,-41,67,-65,101v-121,173,-221,341,-298,503v-20,43,-38,84,-53,123"},"7":{"d":"764,-924v-121,173,-221,341,-298,504v-77,162,-119,302,-125,420r-83,0v6,-141,50,-295,130,-460v82,-165,175,-326,280,-481v106,-155,170,-286,193,-393r-743,0r0,-80r833,0v-3,153,-66,317,-187,490"},"8":{"d":"534,-66r2,0v11,1,23,1,35,1v93,0,173,-33,239,-99v66,-65,99,-145,99,-239v0,-93,-32,-175,-96,-245v-63,-68,-155,-114,-278,-139v-123,25,-216,71,-279,139v-64,70,-96,152,-96,245v0,94,33,174,99,239v66,66,146,99,239,99v12,0,24,0,36,-1xm535,18v-12,1,-24,1,-37,1v-116,0,-215,-41,-298,-123v-82,-83,-123,-182,-123,-299v0,-116,40,-217,121,-304v56,-60,126,-104,211,-132v-39,-16,-80,-48,-125,-96v-45,-48,-67,-114,-67,-198v0,-82,29,-153,87,-211v59,-60,130,-89,215,-89r32,0v84,0,155,29,214,89v59,58,88,129,88,211v0,84,-23,150,-67,198v-46,48,-87,80,-126,96v85,28,155,72,211,132v81,87,121,188,121,304v0,117,-41,216,-123,299v-82,82,-181,123,-298,123v-12,0,-24,0,-36,-1xm534,-1349v-5,-1,-10,-1,-15,-1v-60,0,-111,21,-154,63v-43,42,-64,93,-64,154v0,60,21,112,61,155v42,44,79,73,114,86v18,7,38,12,59,15v21,-3,41,-8,58,-15v35,-13,73,-42,113,-86v42,-43,62,-95,62,-155v0,-61,-21,-112,-64,-154v-42,-42,-93,-63,-153,-63v-5,0,-10,0,-15,1r-2,0"},"9":{"d":"843,-1041v0,-85,-30,-158,-91,-217v-60,-60,-133,-90,-218,-90v-85,0,-157,30,-218,90v-60,59,-90,132,-90,217v0,85,30,158,90,219v61,60,133,90,218,90v85,0,158,-30,218,-90v61,-61,91,-134,91,-219xm772,-727v-69,53,-148,80,-238,80v-109,0,-201,-38,-278,-115v-76,-77,-114,-170,-114,-279v0,-108,38,-201,114,-277v77,-78,169,-116,278,-116v108,0,200,38,278,116v76,76,115,169,115,277r0,16v-6,141,-49,295,-131,460v-80,165,-174,326,-280,481r-54,84r-106,0v19,-33,41,-67,65,-101v121,-173,221,-341,298,-504v20,-42,38,-83,53,-122"},":":{"d":"190,-123v16,15,24,34,24,56v0,22,-8,41,-24,56v-15,15,-34,23,-55,23v-22,0,-41,-8,-57,-23v-15,-15,-23,-34,-23,-56v0,-22,8,-41,23,-56v16,-15,35,-23,57,-23v21,0,40,8,55,23xm190,-740v16,15,24,34,24,56v0,22,-8,41,-24,56v-15,15,-34,23,-55,23v-22,0,-41,-8,-57,-23v-15,-15,-23,-34,-23,-56v0,-22,8,-41,23,-56v16,-15,35,-23,57,-23v21,0,40,8,55,23","w":269},";":{"d":"238,-147r-164,341r-74,0r91,-341r147,0xm168,-740v15,15,23,34,23,56v0,22,-8,41,-23,56v-16,15,-35,23,-56,23v-22,0,-41,-8,-56,-23v-16,-15,-24,-34,-24,-56v0,-22,8,-41,24,-56v15,-15,34,-23,56,-23v21,0,40,8,56,23","w":293},"\u037e":{"d":"238,-147r-164,341r-74,0r91,-341r147,0xm168,-740v15,15,23,34,23,56v0,22,-8,41,-23,56v-16,15,-35,23,-56,23v-22,0,-41,-8,-56,-23v-16,-15,-24,-34,-24,-56v0,-22,8,-41,24,-56v15,-15,34,-23,56,-23v21,0,40,8,56,23","w":293},"<":{"d":"258,-622r723,334r0,92r-892,-426r892,-426r0,92"},"=":{"d":"85,-705r900,0r0,80r-900,0r0,-80xm89,-422r892,0r0,80r-892,0r0,-80"},">":{"d":"89,-956r0,-92r892,426r-892,426r0,-92r723,-334"},"?":{"d":"322,-246v-27,-29,-45,-71,-54,-126v-3,-18,-5,-36,-5,-54v0,-57,17,-110,52,-159v29,-42,87,-97,172,-166v74,-67,122,-117,145,-150v34,-47,51,-99,51,-154v0,-16,-1,-32,-4,-49v-13,-75,-51,-135,-114,-179v-49,-33,-101,-50,-156,-50v-16,0,-32,1,-49,4v-73,13,-132,51,-175,113v-35,50,-53,100,-53,151v0,13,1,26,4,39r-85,-6v-3,-13,-4,-27,-4,-41v0,-60,23,-123,69,-189v55,-81,132,-130,230,-147v23,-4,45,-6,67,-6v71,0,137,21,199,64v80,57,129,134,146,233v4,22,6,44,6,65v0,70,-21,137,-64,200v-37,52,-104,116,-199,192v-61,55,-101,96,-119,123v-25,35,-37,74,-37,115v0,12,1,24,3,37v6,32,16,57,30,75xm422,-123v15,15,23,34,23,56v0,22,-8,41,-23,56v-16,15,-35,23,-56,23v-22,0,-41,-8,-56,-23v-16,-15,-24,-34,-24,-56v0,-22,8,-41,24,-56v15,-15,34,-23,56,-23v21,0,40,8,56,23","w":795},"@":{"d":"906,-467r0,-116v-10,-45,-32,-84,-65,-117v-49,-49,-107,-73,-175,-73v-69,0,-127,24,-175,73v-48,48,-72,107,-72,176v0,67,24,125,72,174v48,48,106,72,175,72v68,0,126,-24,175,-72v33,-34,55,-73,65,-117xm904,-317v-71,75,-151,113,-240,113v-89,0,-164,-32,-228,-94v-62,-64,-94,-139,-94,-226v0,-89,32,-166,94,-228v64,-64,139,-95,228,-95v89,0,169,37,240,112r0,-100r72,0r0,572v11,25,27,38,48,38v26,0,62,-33,108,-97v46,-66,69,-132,69,-201v0,-148,-53,-275,-157,-380v-106,-105,-232,-158,-380,-158v-148,0,-274,53,-379,158v-105,105,-157,232,-157,380v0,147,52,273,157,378v105,105,231,157,379,157v101,0,175,-14,222,-43r50,53v-71,41,-161,62,-272,62v-167,0,-311,-60,-430,-178v-119,-120,-179,-262,-179,-429v0,-167,60,-311,179,-430v119,-119,263,-179,430,-179v168,0,311,60,430,179v118,119,177,263,177,430v0,75,-27,155,-82,240v-55,85,-115,128,-181,128v-7,0,-15,-1,-22,-2v-51,-11,-78,-40,-82,-88r0,-72","w":1326},"A":{"d":"774,-601r-215,-593r-216,593r431,0xm992,0r-189,-522r-489,0r-190,522r-85,0r520,-1426r517,1426r-84,0","w":1116,"k":{"Y":192,"W":66,"V":223,"T":66}},"B":{"d":"519,-80v105,0,194,-37,268,-112v74,-74,111,-164,111,-269v0,-105,-37,-195,-111,-270v-74,-75,-163,-112,-268,-112r-327,0r0,763r327,0xm192,-1335r0,412r360,0v58,-6,101,-23,130,-52v41,-41,61,-90,61,-149v0,-58,-21,-108,-61,-149v-42,-41,-91,-62,-149,-62r-341,0xm703,-887v52,22,100,55,143,99v90,90,135,199,135,327v0,127,-45,236,-135,326v-75,75,-167,120,-275,135r-459,0r0,-1414r422,0v81,0,149,28,206,85v56,57,84,125,84,205v0,80,-28,148,-85,205v-12,13,-24,23,-36,32","w":1033},"C":{"d":"1224,-225r61,54v-138,125,-300,188,-487,188v-201,0,-372,-71,-512,-211v-142,-142,-212,-312,-212,-513v0,-199,70,-370,212,-511v140,-142,311,-213,512,-213v187,0,349,63,487,189r-61,54v-121,-107,-263,-161,-426,-161v-177,0,-329,63,-454,188v-126,125,-189,277,-189,454v0,178,63,330,189,455v125,125,277,188,454,188v163,0,305,-54,426,-161","w":1347},"D":{"d":"374,-1414v233,1,413,66,541,195v141,142,212,313,212,512v0,201,-71,372,-212,513v-128,128,-308,193,-541,194r-262,0r0,-1414r262,0xm192,-1331r0,1249r181,0v203,0,364,-57,481,-170v125,-125,188,-277,188,-455v0,-177,-63,-329,-188,-455v-117,-113,-278,-169,-481,-169r-181,0","w":1189},"E":{"d":"819,-1414r0,80r-627,0r0,587r627,0r0,80r-627,0r0,587r627,0r0,80r-707,0r0,-1414r707,0","w":931},"F":{"d":"731,-1414r0,80r-539,0r0,587r539,0r0,80r-539,0r0,667r-80,0r0,-1414r619,0","w":783,"k":{".":313,",":321}},"G":{"d":"1279,-176v-134,129,-294,193,-481,193v-201,0,-372,-71,-512,-211v-142,-142,-212,-312,-212,-513v0,-199,70,-370,212,-511v140,-142,311,-213,512,-213v187,0,349,63,487,189r-61,54v-121,-107,-263,-161,-426,-161v-177,0,-329,63,-454,188v-126,125,-189,277,-189,454v0,178,63,330,189,455v125,125,277,188,454,188v152,0,286,-47,402,-140r0,-431r79,0r0,459","w":1359},"H":{"d":"174,-667r0,667r-80,0r0,-1414r80,0r0,667r724,0r0,-667r80,0r0,1414r-80,0r0,-667r-724,0","w":1072},"I":{"d":"202,-1414r0,1414r-80,0r0,-1414r80,0","w":324},"J":{"d":"192,27v0,72,-24,133,-73,181v-49,50,-109,74,-180,74r0,-80v49,0,90,-17,124,-50v33,-33,49,-78,49,-135r0,-1431r80,0r0,1441","w":306},"K":{"d":"762,-1414r-367,531r618,883r-97,0r-572,-817r-152,218r0,599r-80,0r0,-1414r80,0r0,677r473,-677r97,0","w":999},"L":{"d":"112,0r0,-1414r80,0r0,1334r539,0r0,80r-619,0","w":783,"k":{"Y":227,"W":101,"V":258,"T":101}},"M":{"d":"721,-353r627,-1088r0,1441r-80,0r0,-1140r-548,947r-546,-945r0,1138r-80,0r0,-1439","w":1442},"N":{"d":"974,-223r0,-1191r80,0r0,1442r-865,-1214r0,1186r-80,0r0,-1436","w":1163},"O":{"d":"1300,-1222v142,142,213,313,213,513v0,201,-71,372,-213,513v-141,142,-312,213,-513,213v-200,0,-371,-71,-513,-213v-141,-141,-212,-312,-212,-513v0,-200,71,-371,212,-513v142,-141,313,-212,513,-212v201,0,372,71,513,212xm787,-1353v-177,0,-329,63,-455,189v-126,126,-189,278,-189,455v0,178,63,330,189,456v126,126,278,189,455,189v178,0,330,-63,456,-189v126,-126,189,-278,189,-456v0,-177,-63,-329,-189,-455v-126,-126,-278,-189,-456,-189","w":1575},"P":{"d":"192,-490r0,490r-80,0r0,-1414r371,0v108,15,200,60,275,135v90,91,135,199,135,326v0,128,-45,237,-135,327v-90,91,-199,136,-326,136r-240,0xm192,-1333r0,762r240,0v105,0,194,-37,269,-111v75,-75,112,-165,112,-271v0,-105,-37,-195,-112,-269v-75,-74,-164,-111,-269,-111r-240,0","w":959,"k":{"A":63,".":489,",":497}},"Q":{"d":"787,-1353v-177,0,-329,63,-455,189v-126,126,-189,278,-189,455v0,178,63,330,189,456v126,126,278,189,455,189v178,0,330,-63,456,-189v126,-126,189,-278,189,-456v0,-177,-63,-329,-189,-455v-126,-126,-278,-189,-456,-189xm779,17v-197,-2,-365,-73,-504,-213v-142,-141,-213,-312,-213,-513v0,-200,71,-371,212,-513v142,-141,313,-212,513,-212v201,0,372,71,513,212v142,142,213,313,213,513v0,201,-71,372,-212,513v-103,103,-220,168,-353,196r9,3v43,11,101,40,174,86v49,27,84,43,104,49v13,3,25,5,37,5v21,0,41,-6,62,-17v31,-17,51,-43,60,-77v3,-10,5,-20,6,-29r80,0v-1,16,-4,32,-9,49v-16,55,-49,97,-99,125v-31,19,-64,28,-99,28v-19,0,-39,-3,-59,-9v-35,-9,-85,-35,-150,-76v-60,-32,-103,-51,-128,-58v-17,-5,-34,-7,-50,-7v-30,0,-58,8,-85,23v-44,25,-72,61,-85,108v-3,7,-4,14,-5,21r-80,0v1,-14,4,-28,8,-43v19,-68,60,-120,123,-155v6,-3,12,-6,17,-9","w":1575},"R":{"d":"192,-1333r0,762r240,0v105,0,194,-37,269,-111v75,-75,112,-165,112,-271v0,-105,-37,-195,-112,-269v-75,-74,-164,-111,-269,-111r-240,0xm456,-491v-8,1,-16,1,-24,1r-240,0r0,490r-80,0r0,-1414r371,0v108,15,200,60,275,135v90,91,135,199,135,326v0,128,-45,237,-135,327v-63,63,-134,104,-215,123r326,503r-98,0","w":959},"S":{"d":"495,-783v-101,-33,-180,-79,-239,-137v-58,-59,-87,-130,-87,-213v0,-81,29,-151,87,-210v59,-59,130,-88,213,-88v82,0,153,29,212,88v32,31,54,66,67,105r-72,28v-11,-29,-28,-55,-52,-79v-43,-43,-94,-64,-155,-64v-61,0,-113,21,-155,64v-44,43,-65,95,-65,156v0,61,21,113,64,156v40,39,95,75,166,108v113,37,209,94,286,171v81,81,122,180,122,295v0,116,-41,215,-123,297v-81,82,-180,123,-295,123v-116,0,-215,-41,-296,-124v-66,-65,-105,-141,-118,-228r75,-27v8,77,41,143,98,200v67,67,147,100,241,100v94,0,174,-33,241,-100v67,-67,100,-147,100,-241v0,-93,-33,-173,-100,-240v-59,-59,-130,-105,-215,-140","w":942},"T":{"d":"469,-1334r0,1334r-79,0r0,-1334r-358,0r0,-80r795,0r0,80r-358,0","w":859,"k":{"y":51,"u":123,"s":91,"r":113,"o":108,"i":115,"e":88,"c":88,"a":110,"O":66,"A":75,";":67,":":91,".":91,"-":84,",":99}},"U":{"d":"955,-1414r80,0r0,1016v-15,108,-60,200,-135,275v-90,90,-199,135,-326,135v-128,0,-237,-45,-327,-135v-90,-90,-135,-199,-135,-326r0,-965r80,0r0,965v0,105,37,194,112,269v75,75,165,112,270,112v105,0,195,-37,270,-112v74,-75,111,-164,111,-269r0,-965","w":1147},"V":{"d":"116,-1414r442,1214r442,-1214r84,0r-526,1447r-526,-1447r84,0","w":1116,"k":{"o":50,"a":52,"A":206,".":222,",":230}},"W":{"d":"432,-229r394,-978r395,978r318,-1185r83,0r-385,1434r-410,-1014r-410,1016r-385,-1436r82,0r317,1185r1,0","w":1654,"k":{"A":82,".":98,",":106}},"X":{"d":"15,0r448,-777r-368,-637r91,0r322,559r323,-559r91,0r-369,637r450,777r-91,0r-404,-698r-403,698r-90,0","w":1018},"Y":{"d":"518,-572r-486,-842r91,0r435,754r435,-754r91,0r-486,842r0,572r-80,0r0,-572","w":1116,"k":{"u":65,"q":195,"p":70,"o":207,"e":187,"a":209,"A":206,";":104,":":127,".":222,"-":215,",":230}},"Z":{"d":"854,-1334r-770,0r0,-80r907,0r-771,1334r771,0r0,80r-907,0","w":1075},"[":{"d":"135,40r194,0r0,79r-274,0r0,-1665r274,0r0,79r-194,0r0,1507","w":384},"\\":{"d":"679,0r-90,0r-641,-1414r91,0","w":627},"]":{"d":"249,-1467r-194,0r0,-79r274,0r0,1665r-274,0r0,-79r194,0r0,-1507","w":384},"^":{"d":"463,-1414r272,472r-92,0r-226,-391r-226,391r-93,0r273,-472r92,0","w":833},"_":{"d":"-45,27r884,0r0,79r-884,0r0,-79","w":794},"`":{"d":"222,-1237r144,165r-75,0r-216,-165r147,0","w":441},"a":{"d":"1033,0r-80,0r0,-177v-15,21,-32,40,-50,59v-95,95,-209,143,-344,143v-133,0,-247,-47,-343,-143v-94,-94,-142,-209,-142,-342v0,-135,48,-249,142,-344v96,-95,210,-142,343,-142v135,0,249,47,344,142v18,19,35,38,50,59r0,-123r80,0r0,868xm953,-382r0,-157v-15,-78,-51,-146,-110,-205v-79,-79,-173,-118,-284,-118v-111,0,-205,39,-283,118v-79,79,-118,173,-118,284v0,111,39,205,118,283v78,78,172,117,283,117v111,0,205,-39,284,-118v59,-59,95,-127,110,-204","w":1122},"b":{"d":"99,-1414r80,0r0,668v15,-20,31,-39,50,-58v95,-95,209,-142,343,-142v134,0,248,47,343,142v95,95,142,209,142,344v0,133,-47,248,-142,342v-95,96,-209,143,-343,143v-134,0,-248,-48,-343,-143v-19,-19,-35,-38,-50,-58r0,176r-80,0r0,-1414xm179,-543r0,166v15,75,51,142,109,199v79,79,173,118,284,118v111,0,205,-39,284,-117v78,-78,117,-172,117,-283v0,-111,-39,-205,-117,-284v-79,-79,-173,-118,-284,-118v-111,0,-205,39,-284,118v-58,58,-94,125,-109,201","w":1131},"c":{"d":"849,-209r84,31v-15,21,-33,41,-52,60v-95,95,-209,143,-344,143v-133,0,-247,-47,-343,-143v-94,-94,-142,-209,-142,-343v0,-134,48,-248,142,-343v96,-95,210,-142,343,-142v135,0,249,47,344,142v19,19,37,39,52,60r-84,31v-9,-11,-18,-21,-28,-32v-79,-78,-173,-117,-284,-117v-110,0,-204,39,-283,118v-78,78,-117,172,-117,283v0,111,39,205,117,283v79,79,173,118,283,118v111,0,205,-39,284,-118v10,-10,19,-20,28,-31","w":985},"d":{"d":"1033,0r-80,0r0,-177v-15,21,-32,40,-50,59v-95,95,-209,143,-344,143v-133,0,-247,-47,-343,-143v-94,-94,-142,-209,-142,-342v0,-135,48,-249,142,-344v96,-95,210,-142,343,-142v135,0,249,47,344,142v18,19,35,38,50,59r0,-669r80,0r0,1414xm953,-382r0,-157v-15,-78,-51,-146,-110,-205v-79,-79,-173,-118,-284,-118v-111,0,-205,39,-283,118v-79,79,-118,173,-118,284v0,111,39,205,118,283v78,78,172,117,283,117v111,0,205,-39,284,-118v59,-59,95,-127,110,-204","w":1122},"e":{"d":"154,-586r762,0v-19,-61,-50,-113,-95,-158v-79,-79,-173,-118,-284,-118v-111,0,-205,39,-284,118v-47,47,-80,100,-99,158xm139,-505v-2,14,-3,29,-3,45v0,111,39,205,118,283v78,78,172,117,283,117v111,0,205,-39,284,-118v13,-13,26,-27,38,-42r85,30v-10,17,-31,41,-63,72v-95,95,-209,143,-344,143v-133,0,-247,-47,-343,-143v-94,-94,-142,-209,-142,-342v0,-135,48,-249,142,-344v96,-95,210,-142,343,-142v135,0,249,47,344,142v83,84,125,184,125,299r-867,0","w":1042},"f":{"d":"190,-788r0,788r-80,0r0,-788r-88,0r0,-80r88,0r0,-235v4,-65,29,-122,75,-169v49,-45,104,-67,167,-67v33,0,68,6,105,19r-25,71v-25,-11,-49,-16,-72,-16v-41,0,-81,17,-118,50v-33,33,-50,72,-52,118r0,229r177,0r0,80r-177,0","w":383},"g":{"d":"930,-543v-15,-76,-52,-143,-109,-201v-79,-79,-173,-118,-284,-118v-111,0,-205,39,-283,118v-79,79,-118,173,-118,284v0,111,39,205,118,284v78,78,172,117,283,117v111,0,205,-39,284,-118v57,-57,93,-123,109,-199r0,-167xm929,-172v-15,19,-31,37,-48,54v-95,95,-209,143,-344,143v-133,0,-247,-47,-343,-143v-94,-94,-142,-209,-142,-342v0,-135,48,-249,142,-344v96,-94,210,-141,343,-141v135,0,249,47,344,141v18,19,35,38,50,59r0,-123r80,0r0,674v0,131,-46,242,-139,334v-95,95,-209,143,-343,143v-134,0,-249,-48,-344,-143v-19,-19,-37,-39,-52,-60r84,-31v9,11,18,21,29,31v78,79,172,118,283,118v110,0,204,-39,283,-118v71,-71,110,-155,117,-252","w":1083},"h":{"d":"94,-1414r80,0r0,591v67,-65,147,-97,242,-97v102,0,185,32,250,96v64,65,97,146,99,243r0,581r-80,0r0,-573v0,-74,-27,-137,-80,-189v-53,-52,-116,-78,-189,-78v-73,0,-136,26,-189,77v-24,23,-42,48,-53,73r0,690r-80,0r0,-1414","w":859},"i":{"d":"198,-868r0,868r-79,0r0,-868r79,0xm214,-1152v16,15,24,34,24,55v0,23,-8,42,-24,57v-15,15,-34,23,-55,23v-22,0,-41,-8,-57,-23v-15,-15,-23,-34,-23,-57v0,-21,8,-40,23,-55v16,-15,35,-23,57,-23v21,0,40,8,55,23","w":317},"j":{"d":"-11,122v71,-8,107,-48,107,-120r0,-870r79,0r0,868v0,124,-62,191,-186,201r0,-79xm192,-1152v15,15,23,34,23,55v0,23,-8,42,-23,57v-16,15,-35,23,-56,23v-22,0,-41,-8,-56,-23v-16,-15,-24,-34,-24,-57v0,-21,8,-40,24,-55v15,-15,34,-23,56,-23v21,0,40,8,56,23","w":284},"k":{"d":"522,-868r-214,265r341,603r-98,0r-295,-539r-77,96r0,443r-80,0r0,-1237r80,0r0,667r241,-298r102,0","w":635},"l":{"d":"190,-1414r0,1414r-80,0r0,-1414r80,0","w":300},"m":{"d":"99,-868r80,0r0,21v49,-48,108,-72,177,-72v71,0,132,25,182,75v13,13,25,28,35,44v11,-15,23,-30,37,-44v50,-50,111,-75,182,-75v71,0,132,25,182,75v47,49,72,107,75,174r0,670r-80,0r0,-670r1,0v-2,-46,-19,-85,-52,-117v-35,-35,-77,-52,-126,-52v-49,0,-92,17,-126,52v-36,35,-53,78,-53,130r0,657r-79,0r0,-670r1,0v-3,-46,-20,-85,-53,-117v-35,-35,-77,-52,-126,-52v-49,0,-90,17,-125,52v-31,30,-48,67,-52,110r0,677r-80,0r0,-868","w":1148},"n":{"d":"179,-674r0,674r-80,0r0,-868r80,0r0,56v72,-72,156,-108,252,-108v103,0,186,32,251,96v64,65,97,146,98,243r0,581r-79,0r0,-573v0,-74,-27,-137,-80,-189v-53,-52,-117,-78,-190,-78v-73,0,-136,26,-189,77v-29,29,-50,58,-63,89","w":879},"o":{"d":"557,-946v135,0,249,47,343,142v95,95,142,209,142,344v0,133,-47,248,-142,342v-94,96,-208,143,-343,143v-133,0,-247,-47,-343,-143v-94,-94,-142,-209,-142,-342v0,-135,48,-249,142,-344v96,-95,210,-142,343,-142xm274,-744v-79,79,-118,173,-118,284v0,111,39,205,118,283v78,78,172,117,283,117v111,0,205,-39,283,-117v79,-78,118,-172,118,-283v0,-111,-39,-205,-118,-284v-78,-79,-172,-118,-283,-118v-111,0,-205,39,-283,118","w":1114},"p":{"d":"92,-868r80,0r0,122v15,-20,31,-39,50,-58v95,-94,209,-141,343,-141v134,0,248,47,343,141v95,95,142,209,142,344v0,133,-47,248,-142,342v-95,96,-209,143,-343,143v-134,0,-248,-48,-343,-143v-19,-19,-35,-38,-50,-58r0,507r-80,0r0,-1199xm172,-543r0,166v15,76,51,143,109,200v79,79,173,118,284,118v111,0,205,-39,283,-117v79,-79,118,-173,118,-284v0,-111,-39,-205,-118,-284v-78,-79,-172,-118,-283,-118v-111,0,-205,39,-284,118v-58,58,-94,125,-109,201","w":1110},"q":{"d":"1019,331r-80,0r0,-508v-15,21,-32,40,-50,59v-95,95,-209,143,-344,143v-133,0,-247,-47,-343,-143v-94,-94,-142,-209,-142,-342v0,-135,48,-249,142,-344v96,-94,210,-141,343,-141v135,0,249,47,344,141v18,19,35,38,50,59r0,-123r80,0r0,1199xm939,-382r0,-157v-15,-78,-51,-146,-110,-205v-79,-79,-173,-118,-284,-118v-111,0,-205,39,-283,118v-79,79,-118,173,-118,284v0,111,39,205,118,284v78,78,172,117,283,117v111,0,205,-39,284,-118v59,-59,95,-127,110,-205","w":1107},"r":{"d":"406,-798v-43,9,-87,36,-132,81v-75,75,-114,164,-117,269r0,448r-80,0r0,-868r80,0r0,158v16,-23,35,-46,57,-68v49,-49,98,-81,148,-97","w":406},"s":{"d":"324,-466v-67,-37,-114,-68,-140,-94v-41,-41,-61,-90,-61,-147v0,-57,20,-107,61,-147v41,-42,90,-62,147,-62v57,0,105,19,143,57v37,37,55,79,55,126r0,4r-69,28v-6,-45,-20,-78,-42,-101v-22,-23,-51,-34,-87,-34v-35,0,-66,13,-91,38v-25,25,-38,56,-38,91v0,35,13,66,38,91v15,15,46,38,93,68v75,41,129,77,161,109v50,51,75,111,75,181v0,72,-25,133,-75,184v-50,50,-111,75,-182,75v-71,0,-132,-25,-182,-75v-50,-51,-75,-106,-75,-166r79,-20v0,51,18,94,52,130v36,34,77,52,126,52v49,0,91,-18,126,-52v35,-36,53,-78,53,-128v0,-49,-18,-90,-53,-125v-19,-19,-57,-46,-114,-83","w":644},"t":{"d":"209,-868r0,-369r79,0r0,369r177,0r0,80r-177,0r0,788r-79,0r0,-788r-177,0r0,-80r177,0","w":497},"u":{"d":"445,12v-109,0,-195,-32,-259,-96v-64,-64,-97,-145,-99,-243r0,-542r80,0r0,535v0,73,27,136,80,188v53,53,118,79,197,79v73,0,136,-26,190,-79v52,-52,79,-115,79,-188r0,-535r80,0r0,542v-2,98,-35,179,-99,243v-64,64,-147,96,-249,96","w":880},"v":{"d":"438,-145r334,-723r92,0r-426,892r-426,-892r92,0","w":876,"k":{".":65,",":73}},"w":{"d":"98,-868r239,659r201,-552r42,-117r43,117r200,552r239,-659r85,0r-281,775r-43,117r-42,-117r-201,-550r-200,550r-43,117r-42,-117r-283,-775r86,0","w":1159},"x":{"d":"600,-868r-223,387r-3,5r3,4r272,472r-92,0r-226,-391r-226,391r-93,0r273,-472r3,-4r-3,-5r-224,-387r92,0r178,307r177,-307r92,0","w":661},"y":{"d":"434,-163r-229,493r-89,0r229,-491r-330,-707r89,0r285,606r286,-606r89,0r-329,705r-1,0","w":779,"k":{".":59,",":67}},"z":{"d":"510,-776r-448,0r0,-79r585,0r-46,79r-403,696r483,0r0,80r-619,0r46,-80","w":743},"{":{"d":"55,-757v7,1,13,1,19,1v35,0,71,-10,106,-30v63,-36,105,-89,124,-158v11,-39,16,-81,16,-124v0,-24,-2,-49,-5,-74v-8,-40,-12,-78,-12,-113v0,-38,5,-74,14,-108v17,-64,56,-113,116,-146v39,-22,79,-33,120,-33v11,0,25,1,41,4r0,80v-17,-2,-30,-3,-39,-3v-28,0,-55,7,-81,21v-40,22,-66,55,-78,99v-8,30,-12,64,-12,101v0,17,0,34,1,52v10,43,15,85,15,126v0,47,-6,94,-19,140v-25,90,-83,160,-173,211v90,51,148,121,173,211v13,45,19,92,19,139v0,41,-5,83,-15,126v-1,18,-1,35,-1,52v0,38,4,72,12,102v11,43,37,76,78,98v27,15,54,22,83,22v9,0,21,-1,37,-3r0,80v-16,2,-30,3,-41,3v-41,0,-81,-11,-120,-32v-60,-34,-99,-83,-116,-148v-9,-33,-14,-69,-14,-107v0,-36,4,-74,12,-113v3,-25,5,-50,5,-73v0,-44,-5,-86,-16,-125v-19,-69,-61,-121,-124,-157v-35,-20,-71,-30,-106,-30v-6,0,-12,0,-19,1r0,-92","w":649},"|":{"d":"135,-1546r0,1670r-80,0r0,-1670r80,0","w":190},"}":{"d":"594,-665v-7,-1,-13,-1,-19,-1v-35,0,-71,10,-106,30v-63,36,-105,88,-124,157v-11,39,-16,81,-16,125v0,23,2,48,5,73v8,39,12,77,12,113v0,38,-5,74,-14,107v-17,65,-56,114,-116,148v-39,21,-79,32,-120,32v-11,0,-25,-1,-41,-3r0,-80v16,2,28,3,37,3v29,0,56,-7,83,-22v41,-22,67,-55,78,-98v8,-30,12,-64,12,-102v0,-17,0,-34,-1,-52v-10,-43,-15,-85,-15,-126v0,-47,6,-94,19,-139v25,-90,83,-160,173,-211v-90,-51,-148,-121,-173,-211v-13,-46,-19,-93,-19,-140v0,-41,5,-83,15,-126v1,-18,1,-35,1,-52v0,-37,-4,-71,-12,-101v-12,-44,-38,-77,-78,-99v-26,-14,-53,-21,-81,-21v-9,0,-22,1,-39,3r0,-80v16,-3,30,-4,41,-4v41,0,81,11,120,33v60,33,99,82,116,146v9,34,14,70,14,108v0,35,-4,73,-12,113v-3,25,-5,50,-5,74v0,43,5,85,16,124v19,69,61,122,124,158v35,20,71,30,106,30v6,0,12,0,19,-1r0,92","w":649},"~":{"d":"528,-761v111,65,191,97,242,97v9,0,16,-1,23,-3v45,-13,77,-43,96,-88v9,-23,13,-46,13,-69r80,13v-2,28,-9,57,-20,86v-27,65,-73,109,-138,130v-15,5,-31,7,-49,7v-62,0,-144,-29,-246,-87v-112,-64,-193,-96,-242,-96v-8,0,-16,1,-23,2v-45,14,-77,44,-95,89v-9,23,-14,45,-14,68r-80,-13v1,-28,8,-56,19,-85v27,-65,74,-109,139,-131v15,-5,31,-7,49,-7v62,0,144,29,246,87","w":1057},"\u2190":{"d":"164,-563r1789,0r0,80r-1789,0r254,271r0,114r-396,-425r396,-425r0,113","w":1975},"\u2192":{"d":"1557,-835r0,-113r396,425r-396,425r0,-114r254,-271r-1789,0r0,-80r1789,0","w":1975}},"kerning":{}});Cufon.registerFont({"w":309,"face":{"font-family":"ChampagneLimousines","font-weight":700,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 5 2 2 2 4 2 6 7","ascent":"1638","descent":"-410","x-height":"24","bbox":"-61 -1530 1930 318","underline-thickness":"150","underline-position":"-292","unicode-range":"U+0020-U+2192"},"glyphs":{" ":{"w":508},"\u00a0":{"w":508},"!":{"d":"224,-158v20,20,30,43,30,71v0,27,-10,51,-30,70v-19,19,-42,29,-69,29v-27,0,-51,-10,-71,-29v-19,-19,-29,-43,-29,-70v0,-28,10,-51,29,-71v20,-18,44,-28,71,-28v27,0,50,10,69,28xm214,-1403r0,1169r-123,0r0,-1169r123,0"},"\"":{"d":"55,-846r0,-555r123,0r0,555r-123,0xm255,-846r0,-555r122,0r0,555r-122,0","w":432},"#":{"d":"296,-566r27,-214r-274,0r16,-122r273,0r55,-443r123,0r-55,443r213,0r55,-443r123,0r-55,443r274,0r-15,122r-274,0r-27,214r275,0r-16,122r-274,0r-55,444r-123,0r55,-444r-213,0r-55,444r-123,0r55,-444r-273,0r15,-122r273,0xm446,-780r-27,214r213,0r27,-214r-213,0","w":1080},"$":{"d":"612,-713r0,503v33,-5,70,-27,109,-66v49,-49,73,-108,73,-178v0,-69,-24,-127,-73,-176v-40,-40,-76,-68,-109,-83xm489,-1195v-12,2,-29,15,-52,38v-30,29,-45,65,-45,108v0,42,15,78,44,107v22,23,40,38,53,45r0,-298xm489,-764v-52,-23,-98,-54,-138,-93v-53,-53,-79,-117,-79,-192v0,-74,26,-137,79,-190v45,-45,91,-71,138,-76r0,-141r123,0r0,144v41,7,83,31,124,72v29,28,52,68,69,120r-108,44v-14,-38,-29,-65,-46,-82v-20,-19,-33,-30,-39,-31r0,348v71,27,135,70,192,128v73,71,109,158,109,259v0,103,-36,190,-109,261v-61,61,-125,96,-192,104r0,122r-123,0r0,-120v-73,-6,-142,-41,-206,-106v-57,-57,-93,-131,-107,-222r114,-43v9,79,35,140,78,182v41,42,82,65,121,69r0,-557","w":1089},"%":{"d":"992,-1143r-805,1149r-100,-69r805,-1150xm440,-1012v43,42,64,94,64,155v0,60,-21,111,-64,155v-43,42,-94,64,-155,64v-61,0,-112,-22,-155,-64v-43,-44,-64,-95,-64,-155v0,-61,21,-113,64,-155v43,-44,94,-65,155,-65v61,0,112,21,155,65xm285,-957v-27,0,-51,10,-70,29v-19,19,-29,43,-29,71v0,27,10,51,28,70v20,19,43,29,71,29v27,0,50,-10,69,-29v20,-19,30,-43,30,-70v0,-28,-10,-52,-30,-71v-19,-19,-42,-29,-69,-29xm948,-504v43,43,64,95,64,156v0,61,-21,112,-64,154v-42,43,-93,64,-154,64v-61,0,-112,-21,-155,-64v-43,-42,-64,-93,-64,-154v0,-61,21,-113,64,-156v43,-42,94,-63,155,-63v61,0,112,21,154,63xm794,-448v-28,0,-52,10,-70,29v-20,19,-29,43,-29,71v0,27,9,50,29,70v18,18,42,28,70,28v27,0,50,-10,70,-28v20,-20,30,-43,30,-70v0,-28,-10,-52,-30,-71v-20,-19,-43,-29,-70,-29","w":1078},"&":{"d":"779,-289v0,-1,-2,-4,-6,-10v-29,-16,-64,-46,-105,-89v-26,-24,-44,-39,-54,-44v-10,-5,-20,-8,-30,-8v-6,0,-12,1,-17,2v-15,4,-27,13,-35,27v-5,10,-8,20,-8,29v0,5,1,11,2,17v5,15,13,26,25,33v9,5,21,7,36,7v9,0,27,-2,54,-6r-11,103v-23,7,-43,10,-58,10v-25,0,-50,-7,-74,-20v-39,-21,-64,-54,-76,-98v-4,-16,-6,-31,-6,-46v0,-28,7,-55,22,-82v23,-39,57,-65,102,-77v15,-5,30,-7,45,-7v28,0,55,8,81,23v23,13,54,39,92,78v31,29,54,47,68,55v15,8,29,12,44,12v9,0,18,-1,27,-4v25,-7,44,-21,57,-44v8,-15,12,-29,12,-44v0,-8,-1,-16,-4,-25v-7,-25,-21,-44,-43,-57v-13,-7,-29,-11,-46,-11v-12,0,-32,4,-61,12r-2,-111v26,-7,47,-11,64,-11v33,0,66,9,97,28v48,27,79,67,94,120v5,19,8,38,8,55v0,33,-9,65,-26,96v-27,49,-68,81,-123,96v-16,4,-27,6,-34,7v-17,55,-51,108,-102,159v-82,83,-181,124,-296,124v-115,0,-214,-41,-296,-123v-82,-82,-123,-181,-123,-297v0,-115,40,-216,121,-301v55,-59,112,-99,172,-119v-16,-7,-46,-34,-92,-82v-44,-48,-67,-114,-67,-199v0,-83,30,-154,89,-213v59,-60,131,-90,215,-90v85,0,157,30,216,90v33,32,58,73,73,123r-99,39v-13,-36,-31,-65,-52,-86v-38,-38,-84,-57,-138,-57v-53,0,-99,19,-137,57v-38,37,-57,83,-57,137v0,54,19,101,57,141v37,40,72,66,104,78v31,12,77,18,137,19r0,105r-76,2v-119,23,-209,66,-268,131v-59,65,-89,140,-89,225v0,85,30,158,90,219v61,61,134,91,220,91v85,0,158,-30,219,-91v35,-35,58,-67,68,-98","w":1161},"'":{"d":"55,-846r0,-555r123,0r0,555r-123,0","w":233},"(":{"d":"585,-1470v-98,59,-179,132,-243,217v-93,127,-139,302,-139,525v0,14,0,29,1,44v-1,15,-1,29,-1,43v0,224,46,399,139,526v64,85,145,158,243,217r-175,0v-55,-38,-104,-82,-147,-133v-139,-160,-208,-378,-208,-653v0,-275,69,-493,208,-653v43,-51,92,-95,147,-133r175,0","w":640},")":{"d":"230,-1470v55,38,104,82,147,133v139,160,208,378,208,653v0,275,-69,493,-208,653v-43,51,-92,95,-147,133r-175,0v98,-59,179,-132,243,-217v93,-127,139,-302,139,-526v0,-14,0,-28,-1,-43v1,-15,1,-30,1,-44v0,-223,-46,-398,-139,-525v-64,-85,-145,-158,-243,-217r175,0","w":640},"*":{"d":"399,-1241r130,-92r71,101r-156,109r156,108r-71,102r-130,-92r0,159r-122,0r0,-160r-131,93r-71,-102r156,-108r-156,-109r71,-101r131,93r0,-161r122,0r0,160","w":675},"+":{"d":"479,-464r-394,0r0,-122r394,0r0,-394r122,0r0,394r394,0r0,122r-394,0r0,394r-122,0r0,-394","w":1080},",":{"d":"295,-187r-180,373r-115,0r100,-373r195,0","w":393},"-":{"d":"48,-586r526,0r0,122r-526,0r0,-122","w":622},"\u00ad":{"d":"48,-586r526,0r0,122r-526,0r0,-122","w":622},".":{"d":"224,-158v20,20,30,43,30,71v0,27,-10,51,-30,70v-19,19,-42,29,-69,29v-27,0,-51,-10,-71,-29v-19,-19,-29,-43,-29,-70v0,-28,10,-51,29,-71v20,-18,44,-28,71,-28v27,0,50,10,69,28"},"\/":{"d":"583,-1403r138,0r-636,1403r-137,0","w":669},"0":{"d":"901,-690v0,-187,-36,-332,-107,-434v-72,-101,-157,-152,-255,-152v-99,0,-184,51,-255,152v-71,102,-107,247,-107,434v0,187,36,332,107,434v71,101,156,152,255,152v98,0,183,-51,255,-152v71,-102,107,-247,107,-434xm1027,-690v0,219,-47,393,-141,522v-95,128,-210,192,-346,192v-137,0,-252,-64,-348,-192v-94,-129,-142,-303,-142,-522v0,-219,48,-392,142,-520v96,-129,211,-193,348,-193v136,0,251,64,346,193v94,128,141,301,141,520","w":1077},"1":{"d":"486,-123r0,-1063r-118,77r-98,-71r338,-246r0,1303r295,0r0,123r-718,0r0,-123r301,0","w":1088},"2":{"d":"170,0v371,-565,569,-871,596,-918v26,-46,39,-89,39,-129v0,-20,-2,-40,-7,-61v-15,-65,-49,-114,-104,-148v-39,-23,-80,-35,-121,-35v-19,0,-38,2,-57,6v-63,15,-111,49,-146,104v-19,31,-32,68,-38,113r-123,-18v5,-61,23,-115,52,-161v55,-85,130,-139,227,-161v29,-7,58,-10,86,-10v67,0,130,19,189,57v85,53,138,127,160,224v8,35,12,69,12,100v0,57,-16,114,-47,171v-31,57,-192,304,-481,743r528,0r0,123r-765,0","w":1107},"3":{"d":"493,-758r-84,-2r0,-121v65,-1,113,-7,144,-19v31,-12,64,-37,100,-76v36,-38,54,-83,54,-135v0,-51,-18,-95,-54,-131v-36,-36,-80,-54,-131,-54v-51,0,-95,18,-132,54v-20,21,-38,51,-53,91r-114,-45v17,-57,43,-102,77,-135v61,-61,135,-91,222,-91v87,0,160,31,222,92v60,61,91,134,91,219v0,87,-23,155,-69,205v-47,49,-71,74,-73,75v46,15,97,53,154,114v81,87,122,190,122,307v0,119,-42,220,-125,303v-84,83,-185,125,-303,125v-118,0,-219,-42,-302,-126v-67,-67,-108,-151,-123,-254r122,-44v10,89,40,159,91,210v59,59,129,88,212,88v84,0,155,-29,214,-88v59,-59,88,-130,88,-214v0,-83,-29,-157,-87,-220v-58,-63,-146,-106,-263,-128","w":1084},"4":{"d":"836,-1521r0,1050r130,0r0,122r-130,0r0,349r-123,0r0,-349r-577,0xm713,-1084r-364,613r364,0r0,-613","w":1101},"5":{"d":"293,-995r52,-12v38,-7,75,-10,110,-10v65,0,128,10,187,31v133,46,232,130,297,252v41,77,62,155,62,235v0,50,-8,100,-23,151v-41,133,-123,232,-246,298v-75,40,-152,60,-231,60v-51,0,-102,-8,-154,-24v-107,-33,-194,-96,-262,-189r87,-95v56,83,127,137,213,163v39,12,76,18,113,18v59,0,117,-15,174,-45v93,-49,154,-124,185,-224v12,-39,18,-77,18,-114v0,-59,-15,-118,-46,-175v-49,-92,-124,-155,-225,-190v-43,-15,-91,-23,-143,-23v-70,0,-152,15,-245,44r-82,-72r159,-441r0,-46r471,0r0,122r-367,0","w":1087},"6":{"d":"269,-381v0,75,27,139,80,193v53,52,118,79,193,79v75,0,140,-27,193,-79v53,-54,80,-118,80,-193v0,-75,-27,-140,-80,-193v-53,-54,-118,-81,-193,-81v-75,0,-140,27,-193,81v-53,53,-80,118,-80,193xm356,-745v33,-25,95,-37,186,-37v111,0,205,39,283,117v78,78,117,173,117,284v0,110,-39,204,-117,283v-78,78,-172,117,-283,117v-110,0,-204,-39,-282,-117v-79,-79,-118,-173,-118,-283r0,-16v6,-139,48,-289,127,-450v79,-161,169,-316,272,-466r57,-90r155,0v-32,55,-60,100,-83,133v-116,165,-221,340,-314,525","w":1085},"7":{"d":"782,-900v-117,167,-213,328,-286,482v-73,154,-113,293,-119,418r-126,0v7,-155,49,-312,128,-473v79,-161,169,-315,269,-463v102,-149,161,-264,178,-345r-708,0r0,-122r846,0v-3,167,-64,335,-182,503","w":1083},"8":{"d":"538,-109r3,0v11,1,22,1,33,1v83,0,154,-29,214,-88v58,-59,88,-130,88,-214v0,-83,-29,-157,-86,-220v-57,-61,-141,-103,-250,-125v-111,22,-194,64,-251,125v-57,63,-86,137,-86,220v0,84,29,155,88,214v59,59,130,88,213,88v11,0,23,0,34,-1xm540,17v-11,1,-23,1,-36,1v-117,0,-218,-42,-302,-125v-83,-83,-125,-184,-125,-303v0,-117,41,-220,122,-307v57,-61,108,-99,154,-114v-2,-1,-26,-26,-73,-75v-46,-50,-69,-118,-69,-205v0,-85,30,-158,91,-219v61,-61,135,-92,222,-92r31,0v87,0,161,31,222,92v61,61,91,134,91,219v0,87,-23,155,-70,205v-46,49,-70,74,-72,75v45,15,96,53,153,114v81,87,122,190,122,307v0,119,-41,220,-125,303v-82,83,-183,125,-302,125v-12,0,-23,0,-34,-1xm537,-1295v-5,-1,-9,-1,-13,-1v-51,0,-95,18,-132,54v-36,36,-54,80,-54,131v0,52,18,97,54,135v36,39,69,64,99,75v16,6,32,10,49,13v16,-3,32,-7,47,-13v30,-11,63,-36,99,-75v36,-38,54,-83,54,-135v0,-51,-18,-95,-54,-131v-36,-36,-80,-54,-131,-54v-4,0,-8,0,-13,1r-5,0","w":1079},"9":{"d":"815,-1022v0,-76,-27,-140,-80,-193v-53,-53,-118,-79,-194,-79v-75,0,-139,26,-192,79v-53,53,-80,117,-80,193v0,75,27,140,80,193v53,53,117,80,192,80v76,0,141,-27,194,-80v53,-53,80,-118,80,-193xm541,-621v-111,0,-205,-39,-283,-117v-77,-78,-116,-173,-116,-284v0,-110,39,-204,116,-283v78,-79,172,-118,283,-118v110,0,204,39,283,118v79,79,118,173,118,283r0,15v-6,139,-48,289,-127,450v-79,161,-169,316,-272,466r-58,91r-154,0v32,-55,60,-100,83,-133v116,-165,221,-341,314,-528v-33,27,-95,40,-187,40","w":1085},":":{"d":"224,-158v20,20,30,43,30,71v0,27,-10,51,-30,70v-19,19,-42,29,-69,29v-27,0,-51,-10,-71,-29v-19,-19,-29,-43,-29,-70v0,-28,10,-51,29,-71v20,-18,44,-28,71,-28v27,0,50,10,69,28xm224,-750v20,20,30,43,30,70v0,28,-10,52,-30,70v-19,20,-42,29,-69,29v-27,0,-51,-9,-71,-29v-19,-18,-29,-42,-29,-70v0,-27,10,-50,29,-70v20,-18,44,-28,71,-28v27,0,50,10,69,28"},";":{"d":"295,-187r-180,373r-115,0r100,-373r195,0xm207,-750v19,20,29,43,29,70v0,28,-10,52,-29,70v-19,20,-43,29,-70,29v-27,0,-51,-9,-70,-29v-19,-18,-29,-42,-29,-70v0,-27,10,-50,29,-70v19,-18,43,-28,70,-28v27,0,51,10,70,28","w":350},"\u037e":{"d":"295,-187r-180,373r-115,0r100,-373r195,0xm207,-750v19,20,29,43,29,70v0,28,-10,52,-29,70v-19,20,-43,29,-70,29v-27,0,-51,-9,-70,-29v-19,-18,-29,-42,-29,-70v0,-27,10,-50,29,-70v19,-18,43,-28,70,-28v27,0,51,10,70,28","w":350},"<":{"d":"359,-620r663,306r0,139r-933,-445r933,-446r0,140","w":1110},"=":{"d":"85,-723r910,0r0,123r-910,0r0,-123xm89,-451r902,0r0,123r-902,0r0,-123","w":1080},">":{"d":"89,-926r0,-140r933,446r-933,445r0,-139r662,-306","w":1110},"?":{"d":"334,-224v-40,-45,-65,-95,-74,-152v-4,-19,-6,-37,-6,-56v0,-59,18,-115,54,-166v30,-42,86,-96,169,-163v70,-63,115,-110,136,-140v30,-42,45,-87,45,-135v0,-14,-1,-28,-4,-43v-11,-66,-45,-118,-100,-157v-43,-29,-89,-44,-136,-44v-15,0,-29,1,-44,4v-64,11,-115,44,-153,99v-31,44,-46,88,-46,132v0,11,3,31,9,62r-129,-9v-5,-26,-8,-46,-8,-61v0,-63,23,-128,70,-195v57,-83,135,-133,236,-150v23,-4,46,-6,68,-6v73,0,141,22,205,65v82,58,132,138,149,239v4,22,6,44,6,66v0,72,-22,140,-65,205v-37,52,-102,115,-195,189v-57,51,-94,89,-110,114v-21,30,-32,62,-32,97v0,10,1,21,3,32v5,27,16,52,35,76xm446,-158v19,20,29,43,29,71v0,27,-10,51,-29,70v-20,19,-43,29,-70,29v-27,0,-51,-10,-70,-29v-20,-19,-30,-43,-30,-70v0,-28,10,-51,30,-71v19,-18,43,-28,70,-28v27,0,50,10,70,28","w":812},"@":{"d":"872,-474r0,-106v-8,-37,-27,-70,-56,-99v-42,-42,-92,-63,-151,-63v-60,0,-111,21,-153,63v-41,42,-62,93,-62,153v0,58,21,108,62,150v42,42,93,63,153,63v59,0,109,-21,151,-62v29,-29,48,-62,56,-99xm870,-270v-47,49,-116,74,-207,74v-92,0,-170,-32,-235,-98v-65,-64,-97,-142,-97,-232v0,-92,32,-170,97,-236v65,-64,143,-97,235,-97v91,0,160,24,207,73r0,-62r115,0r0,568v5,12,13,18,23,18v17,0,46,-29,86,-86v41,-57,61,-116,61,-177v0,-136,-48,-252,-145,-349v-96,-97,-212,-145,-347,-145v-136,0,-252,48,-348,145v-96,97,-144,213,-144,349v0,135,48,251,144,347v96,96,212,144,348,144v93,0,165,-16,217,-48r80,85v-88,52,-187,78,-297,78v-167,0,-311,-59,-429,-179v-120,-118,-179,-261,-179,-427v0,-167,59,-311,179,-429v118,-120,262,-179,429,-179v167,0,310,59,428,179v118,118,177,262,177,429v0,76,-28,158,-84,245v-55,87,-119,131,-191,131v-9,0,-17,-1,-26,-2v-60,-13,-92,-48,-97,-106r0,-13","w":1323},"A":{"d":"745,-623r-174,-479r-174,479r348,0xm971,0r-182,-501r-437,0r-182,501r-131,0r532,-1459r529,1459r-129,0","w":1141,"k":{"Y":192,"W":91,"V":223,"T":59}},"B":{"d":"526,-123v94,0,174,-33,241,-100v67,-67,100,-148,100,-243v0,-95,-33,-176,-100,-242v-67,-68,-147,-101,-241,-101r-291,0r0,686r291,0xm235,-1282r0,350r321,0v49,-5,86,-20,110,-43v35,-35,52,-77,52,-127v0,-49,-18,-92,-52,-127v-36,-35,-78,-53,-127,-53r-304,0xm742,-883v32,14,70,43,114,87v91,91,136,201,136,330v0,129,-45,239,-136,330v-76,76,-169,121,-279,136r-465,0r0,-1403r428,0v84,0,155,29,214,88v59,59,88,130,88,213v0,83,-30,154,-89,213r1,-1v-1,0,-5,2,-12,7","w":1044},"C":{"d":"1201,-270r93,83v-149,135,-317,203,-502,203v-199,0,-368,-70,-508,-210v-140,-139,-210,-309,-210,-508v0,-197,70,-366,210,-507v140,-141,309,-211,508,-211v185,0,353,68,502,205r-93,82v-122,-108,-258,-162,-409,-162v-164,0,-304,58,-420,173v-116,116,-174,256,-174,420v0,165,58,305,174,421v116,116,256,174,420,174v151,0,287,-54,409,-163","w":1356},"D":{"d":"387,-1403v229,1,408,66,535,194v140,141,210,310,210,507v0,199,-70,369,-210,509v-127,127,-306,192,-535,193r-275,0r0,-1403r275,0xm235,-1278r0,1153r151,0v189,0,337,-52,445,-156v116,-116,174,-256,174,-421v0,-164,-58,-304,-174,-420v-108,-104,-256,-156,-445,-156r-151,0","w":1194},"E":{"d":"837,-1403r0,122r-602,0r0,518r602,0r0,123r-602,0r0,517r602,0r0,123r-725,0r0,-1403r725,0","w":949},"F":{"d":"752,-1403r0,122r-517,0r0,518r517,0r0,123r-517,0r0,640r-123,0r0,-1403r640,0","w":804,"k":{".":313,",":279}},"G":{"d":"1277,-182v-138,132,-300,198,-485,198v-199,0,-368,-70,-508,-210v-140,-139,-210,-309,-210,-508v0,-197,70,-366,210,-507v140,-141,309,-211,508,-211v185,0,353,68,502,205r-93,82v-122,-108,-258,-162,-409,-162v-164,0,-304,58,-420,173v-116,116,-174,256,-174,420v0,165,58,305,174,421v116,116,256,174,420,174v141,0,262,-41,363,-123r0,-426r122,0r0,474","w":1368},"H":{"d":"217,-640r0,640r-123,0r0,-1403r123,0r0,640r649,0r0,-640r123,0r0,1403r-123,0r0,-640r-649,0","w":1083},"I":{"d":"245,-1403r0,1403r-123,0r0,-1403r123,0","w":367},"J":{"d":"228,3v0,75,-26,139,-77,191v-51,51,-122,77,-212,77r0,-123v56,0,98,-14,126,-41v27,-27,40,-65,40,-114r0,-1396r123,0r0,1406","w":342},"K":{"d":"803,-1403r-368,532r609,871r-149,0r-537,-767r-123,176r0,591r-123,0r0,-1403r123,0r0,599r419,-599r149,0","w":1030},"L":{"d":"112,0r0,-1403r123,0r0,1280r517,0r0,123r-640,0","w":804,"k":{"Y":227,"W":90,"V":216,"T":90}},"M":{"d":"719,-408r625,-1084r0,1492r-123,0r0,-1032r-503,870r-501,-868r0,1030r-123,0r0,-1490","w":1438},"N":{"d":"939,-309r0,-1094r123,0r0,1479r-830,-1166r0,1090r-123,0r0,-1473","w":1171},"O":{"d":"1290,-1212v141,141,211,310,211,508v0,199,-70,369,-211,510v-141,140,-310,210,-509,210v-199,0,-368,-70,-509,-210v-140,-141,-210,-311,-210,-510v0,-198,70,-367,210,-508v141,-141,310,-211,509,-211v199,0,368,70,509,211xm781,-1299v-164,0,-304,58,-421,175v-116,117,-174,257,-174,420v0,165,58,305,174,422v117,117,257,175,421,175v165,0,305,-58,421,-175v117,-117,175,-257,175,-422v0,-163,-58,-303,-175,-420v-116,-117,-256,-175,-421,-175","w":1563},"P":{"d":"235,-470r0,470r-123,0r0,-1403r381,0v109,15,202,60,278,136v91,91,137,201,137,329v0,129,-46,240,-136,331v-92,91,-201,137,-330,137r-207,0xm235,-1280r0,686r207,0v94,0,175,-34,242,-100v67,-68,101,-149,101,-244v0,-95,-34,-175,-101,-242v-67,-67,-148,-100,-242,-100r-207,0","w":974,"k":{"A":78,".":489,",":497}},"Q":{"d":"781,-1299v-164,0,-304,58,-421,175v-116,117,-174,257,-174,420v0,165,58,305,174,422v117,117,257,175,421,175v165,0,305,-58,421,-175v117,-117,175,-257,175,-422v0,-163,-58,-303,-175,-420v-116,-117,-256,-175,-421,-175xm691,15v-141,-1,-280,-71,-418,-210v-141,-140,-211,-310,-211,-509v0,-198,70,-367,210,-508v141,-141,310,-211,509,-211v199,0,368,70,509,211v141,141,211,310,211,508v0,199,-70,369,-210,509v-102,102,-198,162,-287,181r1,0v18,0,57,19,118,57v45,24,77,39,94,44v10,3,20,4,30,4v15,0,31,-4,48,-13v24,-13,40,-34,47,-61v3,-8,5,-23,6,-44r123,0v-3,33,-6,59,-11,77v-17,59,-53,103,-106,133v-33,20,-69,30,-106,30v-21,0,-42,-3,-63,-9v-36,-10,-86,-35,-150,-76v-55,-29,-94,-47,-117,-53v-15,-4,-29,-6,-42,-6v-25,0,-48,6,-70,19v-37,21,-60,51,-71,91v-2,6,-4,18,-6,36r-123,0v3,-31,6,-55,11,-70v20,-72,45,-115,74,-130","w":1563},"R":{"d":"235,-1280r0,686r207,0v94,0,175,-34,242,-100v67,-68,101,-149,101,-244v0,-95,-34,-175,-101,-242v-67,-67,-148,-100,-242,-100r-207,0xm453,-470r-218,0r0,470r-123,0r0,-1403r381,0v109,15,202,60,278,136v91,91,137,201,137,329v0,129,-46,239,-137,330v-63,63,-124,102,-185,117r318,491r-149,0","w":974},"S":{"d":"495,-753v-99,-33,-179,-80,-239,-139v-59,-59,-89,-132,-89,-219v0,-84,30,-157,91,-217v60,-62,133,-92,220,-92v85,0,158,30,220,91v33,33,59,76,76,131r-111,43v-15,-39,-32,-68,-53,-89v-36,-37,-80,-55,-132,-55v-52,0,-96,18,-133,55v-37,37,-55,81,-55,133v0,52,18,97,54,134v37,36,87,69,152,98v111,36,205,93,282,170v83,83,124,182,124,299v0,118,-41,218,-124,302v-83,82,-183,124,-300,124v-118,0,-218,-42,-301,-125v-67,-67,-107,-150,-122,-251r117,-42v9,87,40,156,91,207v59,59,131,89,215,89v84,0,156,-30,215,-89v59,-59,89,-131,89,-215v0,-83,-30,-155,-89,-214v-54,-54,-120,-97,-198,-129","w":957},"T":{"d":"498,-1281r0,1281r-122,0r0,-1281r-344,0r0,-122r809,0r0,122r-343,0","w":873,"k":{"y":51,"u":105,"s":73,"r":95,"o":90,"i":97,"e":70,"c":70,"a":92,"O":66,"A":57,";":50,":":73,".":73,"-":66,",":50}},"U":{"d":"921,-1403r123,0r0,999v-15,110,-60,203,-136,279v-91,91,-201,137,-329,137v-129,0,-239,-46,-331,-136v-90,-92,-136,-201,-136,-330r0,-949r123,0r0,949v0,94,33,175,101,242v66,67,148,101,243,101v95,0,175,-34,242,-101v67,-67,100,-148,100,-242r0,-949","w":1156},"V":{"d":"162,-1403r408,1121r408,-1121r130,0r-538,1479r-538,-1479r130,0","w":1140,"k":{"o":74,"a":76,"A":230,".":183,",":230}},"W":{"d":"449,-313r375,-930r375,928r292,-1088r127,0r-395,1471r-398,-984r-398,987r-395,-1474r126,0","w":1650,"k":{"A":82,".":63,",":71}},"X":{"d":"15,0r443,-769r-366,-634r140,0r296,513r297,-513r140,0r-367,634r445,769r-140,0r-375,-647r-374,647r-139,0","w":1057},"Y":{"d":"515,-566r-483,-837r140,0r405,700r404,-700r141,0r-484,837r0,566r-123,0r0,-566","w":1153,"k":{"u":65,"q":195,"p":70,"o":207,"e":187,"a":209,"A":206,";":104,":":127,".":222,"-":189,",":204}},"Z":{"d":"823,-1281r-722,0r0,-122r933,0r-740,1280r724,0r0,123r-934,0","w":1118},"[":{"d":"178,-8r186,0r0,122r-309,0r0,-1644r309,0r0,122r-186,0r0,1400","w":419},"\\":{"d":"721,0r-137,0r-636,-1403r138,0","w":669},"]":{"d":"241,-1408r-186,0r0,-122r309,0r0,1644r-309,0r0,-122r186,0r0,-1400","w":419},"^":{"d":"502,-1403r287,499r-141,0r-204,-353r-204,353r-142,0r289,-499r115,0","w":887},"_":{"d":"-45,-20r895,0r0,122r-895,0r0,-122","w":805},"`":{"d":"295,-1286r178,205r-130,0r-268,-205r220,0","w":547},"a":{"d":"1041,0r-123,0r0,-133v-101,105,-220,157,-355,157v-135,0,-250,-48,-345,-144v-96,-95,-144,-210,-144,-345v0,-135,48,-251,144,-346v95,-95,210,-143,345,-143v135,0,254,52,355,156r0,-81r123,0r0,879xm918,-392r0,-146v-13,-69,-46,-130,-99,-183v-71,-71,-157,-107,-256,-107v-100,0,-185,36,-256,107v-71,71,-106,157,-106,256v0,100,35,185,106,255v71,71,156,106,256,106v99,0,185,-35,256,-106v53,-53,86,-114,99,-182","w":1130},"b":{"d":"99,-1403r123,0r0,604v5,-8,8,-12,9,-12v95,-95,210,-143,345,-143v135,0,251,48,346,143v95,95,143,211,143,346v0,135,-48,250,-143,345v-95,96,-211,144,-346,144v-135,0,-250,-48,-345,-144v-1,0,-4,-4,-9,-12r0,132r-123,0r0,-1403xm222,-542r0,155v13,66,45,125,98,177v71,71,156,106,256,106v100,0,185,-35,256,-106v71,-70,106,-155,106,-255v0,-99,-35,-185,-106,-256v-71,-71,-156,-107,-256,-107v-100,0,-185,36,-256,107v-53,53,-85,112,-98,179","w":1139},"c":{"d":"833,-251r125,46v-28,37,-52,66,-71,85v-95,96,-211,144,-346,144v-135,0,-250,-48,-345,-144v-96,-95,-144,-211,-144,-346v0,-135,48,-250,144,-345v95,-95,210,-143,345,-143v135,0,251,48,346,143v19,19,43,48,71,85r-125,46v-15,-19,-27,-33,-36,-42v-71,-71,-157,-106,-256,-106v-99,0,-184,36,-255,106v-71,72,-106,157,-106,256v0,100,35,185,106,256v71,71,156,106,255,106v99,0,185,-35,256,-106v9,-9,21,-23,36,-41","w":1010},"d":{"d":"1041,0r-123,0r0,-133v-101,105,-220,157,-355,157v-135,0,-250,-48,-345,-144v-96,-95,-144,-210,-144,-345v0,-135,48,-251,144,-346v95,-95,210,-143,345,-143v135,0,254,52,355,156r0,-605r123,0r0,1403xm918,-392r0,-146v-13,-69,-46,-130,-99,-183v-71,-71,-157,-107,-256,-107v-100,0,-185,36,-256,107v-71,71,-106,157,-106,256v0,100,35,185,106,255v71,71,156,106,256,106v99,0,185,-35,256,-106v53,-53,86,-114,99,-182","w":1130},"e":{"d":"205,-609r668,0v-11,-35,-36,-72,-76,-112v-71,-71,-157,-107,-256,-107v-100,0,-186,36,-257,107v-42,43,-68,80,-79,112xm178,-485v1,113,36,205,107,275v71,71,156,106,256,106v99,0,185,-35,256,-106r45,-51r124,43v-21,34,-47,67,-79,98v-95,96,-211,144,-346,144v-135,0,-250,-48,-345,-144v-96,-95,-144,-210,-144,-345v0,-135,48,-251,144,-346v95,-95,210,-143,345,-143v135,0,251,48,346,143v85,85,127,194,127,326r-836,0","w":1050},"f":{"d":"229,-756r0,756r-123,0r0,-756r-84,0r0,-123r84,0r0,-204v5,-69,31,-128,79,-178v52,-47,111,-70,177,-70v35,0,78,9,130,27r-40,113v-36,-15,-64,-23,-83,-23v-33,0,-66,14,-97,41v-27,27,-41,60,-43,97r0,197r170,0r0,123r-170,0","w":419},"g":{"d":"895,-542v-13,-67,-46,-126,-98,-179v-71,-71,-157,-107,-256,-107v-100,0,-185,36,-256,107v-71,71,-106,157,-106,256v0,100,35,185,106,256v71,71,156,106,256,106v99,0,185,-35,256,-106v51,-51,84,-110,98,-177r0,-156xm890,-128v-97,101,-214,152,-349,152v-135,0,-250,-48,-345,-144v-96,-95,-144,-210,-144,-345v0,-135,48,-251,144,-345v95,-96,210,-143,345,-143v135,0,254,52,355,155r0,-81r123,0r0,670v0,131,-47,244,-141,337v-95,96,-210,144,-345,144v-135,0,-251,-48,-347,-144v-19,-19,-43,-48,-70,-85r125,-46v15,18,27,31,36,40v71,71,156,107,256,107v99,0,184,-35,255,-106v65,-65,99,-120,102,-166","w":1091},"h":{"d":"94,-1403r123,0r0,536v42,-41,112,-62,209,-62v105,0,190,33,256,99v66,66,100,149,102,249r0,581r-123,0r0,-573v0,-65,-23,-120,-70,-165v-47,-45,-102,-68,-165,-68v-64,0,-119,22,-165,67v-21,21,-36,40,-44,59r0,680r-123,0r0,-1403","w":878},"i":{"d":"239,-879r0,879r-122,0r0,-879r122,0xm248,-1146v20,20,30,43,30,70v0,28,-10,52,-30,71v-19,19,-42,29,-69,29v-27,0,-51,-10,-71,-29v-19,-19,-29,-43,-29,-71v0,-27,10,-50,29,-70v20,-18,44,-28,71,-28v27,0,50,10,69,28","w":357},"j":{"d":"-11,74v69,-8,103,-40,103,-95r0,-858r122,0r0,856v0,133,-75,206,-225,218r0,-121xm222,-1146v20,20,30,43,30,70v0,28,-10,52,-30,71v-19,19,-42,29,-69,29v-27,0,-51,-10,-71,-29v-19,-19,-29,-43,-29,-71v0,-27,10,-50,29,-70v20,-18,44,-28,71,-28v27,0,50,10,69,28","w":321},"k":{"d":"576,-879r-226,279r339,600r-147,0r-273,-499r-47,59r0,440r-123,0r0,-1234r123,0r0,599r197,-244r157,0","w":675},"l":{"d":"233,-1403r0,1403r-123,0r0,-1403r123,0","w":343},"m":{"d":"99,-873r117,0v27,-33,76,-49,147,-49v73,0,142,30,209,89v67,-59,136,-89,209,-89v73,0,136,26,187,77v49,50,74,109,77,178r0,661r-111,0r0,-677v-1,-28,-15,-56,-44,-83v-31,-30,-67,-45,-109,-45v-43,0,-79,15,-109,45v-31,29,-46,67,-46,112r0,648r-109,0r0,-683r-1,0v-1,-24,-16,-50,-44,-77v-31,-30,-67,-45,-109,-45v-42,0,-78,15,-108,45v-27,25,-42,57,-45,94r0,666r-111,0r0,-867","w":1144},"n":{"d":"222,-665r0,665r-123,0r0,-879r123,0r0,21v47,-47,120,-71,219,-71v105,0,190,33,257,99v66,66,100,149,101,249r0,581r-122,0r0,-573v0,-65,-23,-120,-70,-165v-47,-45,-102,-68,-166,-68v-64,0,-119,22,-166,67v-25,25,-43,50,-53,74","w":898},"o":{"d":"561,-954v135,0,251,48,345,143v96,95,143,211,143,346v0,135,-47,250,-143,345v-94,96,-210,144,-345,144v-135,0,-250,-48,-345,-144v-96,-95,-144,-210,-144,-345v0,-135,48,-251,144,-346v95,-95,210,-143,345,-143xm305,-721v-71,71,-106,157,-106,256v0,100,35,185,106,255v71,71,156,106,256,106v99,0,185,-35,255,-106v72,-70,107,-155,107,-255v0,-99,-35,-185,-107,-256v-70,-71,-156,-107,-255,-107v-100,0,-185,36,-256,107","w":1121},"p":{"d":"92,-879r123,0r0,80v5,-8,8,-12,9,-12v95,-95,210,-142,345,-142v135,0,251,47,346,143v95,94,143,210,143,345v0,135,-48,250,-143,345v-95,96,-211,144,-346,144v-135,0,-250,-48,-345,-144v-1,0,-4,-4,-9,-12r0,450r-123,0r0,-1197xm215,-542r0,155v13,67,45,126,98,178v71,71,156,106,256,106v100,0,185,-35,256,-106v71,-71,106,-156,106,-256v0,-99,-35,-185,-106,-256v-71,-71,-156,-107,-256,-107v-100,0,-185,36,-256,107v-53,53,-85,112,-98,179","w":1118},"q":{"d":"1027,318r-123,0r0,-451v-7,9,-10,13,-10,14r1,-1v-95,96,-211,144,-346,144v-135,0,-250,-48,-345,-144v-96,-95,-144,-210,-144,-345v0,-135,48,-251,144,-345v95,-96,210,-143,345,-143v135,0,254,52,355,155r0,-81r123,0r0,1197xm904,-392r0,-146v-13,-69,-46,-130,-99,-183v-71,-71,-157,-107,-256,-107v-100,0,-185,36,-256,107v-71,71,-106,157,-106,256v0,100,35,185,106,256v71,71,156,106,256,106v99,0,185,-35,256,-106v53,-53,86,-114,99,-183","w":1115},"r":{"d":"452,-773v-58,12,-107,38,-147,78v-68,67,-103,148,-105,242r0,453r-123,0r0,-879r123,0r0,111v3,-5,8,-11,15,-18v49,-49,106,-84,169,-105","w":452},"s":{"d":"325,-451v-67,-36,-113,-67,-139,-93v-44,-44,-66,-97,-66,-158v0,-61,22,-114,66,-158v43,-43,96,-65,157,-65v61,0,113,20,154,61v39,40,59,86,59,137r0,20r-108,44v-8,-58,-20,-96,-38,-113v-16,-18,-39,-27,-67,-27v-27,0,-51,10,-71,30v-20,20,-30,44,-30,71v0,28,10,52,30,72v13,13,41,34,85,61v73,40,126,76,159,108v52,53,78,117,78,190v0,75,-26,139,-78,193v-53,52,-116,79,-191,79v-75,0,-139,-27,-191,-79v-53,-54,-79,-118,-79,-193r122,-31v0,63,15,108,43,138v30,28,64,43,105,43v40,0,75,-15,105,-43v29,-30,44,-65,44,-107v0,-40,-15,-74,-45,-103v-17,-17,-51,-43,-104,-77","w":669},"t":{"d":"202,-879r0,-355r122,0r0,355r170,0r0,123r-170,0r0,756r-122,0r0,-756r-170,0r0,-123r170,0","w":526},"u":{"d":"454,12v-111,0,-199,-33,-265,-99v-66,-66,-100,-149,-102,-250r0,-543r123,0r0,536v0,64,23,119,70,164v46,47,104,70,173,70v64,0,119,-23,165,-69v47,-46,70,-101,70,-165r0,-536r123,0r0,543v-2,101,-36,184,-102,250v-66,66,-151,99,-255,99","w":898},"v":{"d":"457,-217r306,-662r140,0r-446,932r-445,-932r140,0","w":915,"k":{".":65,",":73}},"w":{"d":"144,-879r213,588r171,-470r62,-172r63,172r170,470r214,-588r130,0r-281,775r-63,171r-62,-171r-171,-469r-170,469r-63,171r-62,-171r-283,-775r132,0","w":1180},"x":{"d":"656,-879r-237,411r284,468r-141,0r-204,-352r-204,352r-142,0r282,-473r-235,-406r141,0r158,271r157,-271r141,0","w":715},"y":{"d":"248,317r-136,0r231,-495r-328,-701r136,0r259,551r260,-551r136,0","w":821,"k":{".":59,",":67}},"z":{"d":"492,-745r-413,0r0,-122r624,0r-431,744r447,0r0,123r-657,0","w":781},"{":{"d":"55,-775v23,2,36,3,41,3v30,0,60,-9,91,-26v55,-31,91,-77,108,-137v9,-36,14,-74,14,-113v0,-22,-1,-45,-4,-68v-8,-39,-12,-77,-12,-112v0,-39,5,-75,14,-110v19,-67,60,-119,123,-154v40,-23,82,-34,126,-34v12,0,33,2,62,7r0,122v-32,-4,-52,-6,-60,-6v-23,0,-46,6,-67,18v-33,18,-54,45,-63,81v-7,27,-11,57,-11,91v0,15,0,31,1,46v9,41,14,83,14,124v0,48,-6,95,-19,141v-26,93,-73,158,-141,196v68,39,115,104,141,197v13,45,19,92,19,139v0,42,-5,83,-14,124v-1,16,-1,32,-1,47v0,35,4,65,11,92v9,35,30,62,63,80v23,12,46,18,69,18v7,0,27,-2,58,-5r0,123v-29,3,-50,5,-62,5v-43,0,-85,-11,-126,-33v-63,-36,-104,-88,-123,-156v-9,-34,-14,-70,-14,-109v0,-36,4,-74,12,-113v3,-23,4,-45,4,-66v0,-40,-5,-78,-14,-114v-17,-59,-53,-105,-108,-137v-31,-17,-61,-25,-91,-25v-5,0,-18,1,-41,3r0,-139","w":673},"|":{"d":"178,-1530r0,1649r-123,0r0,-1649r123,0","w":233},"}":{"d":"618,-636v-22,-2,-36,-3,-41,-3v-30,0,-60,8,-90,25v-55,32,-91,78,-108,137v-10,36,-15,74,-15,114v0,21,2,43,5,66v7,39,11,77,11,113v0,39,-5,75,-14,109v-18,68,-59,120,-122,156v-41,22,-83,33,-127,33v-11,0,-32,-2,-62,-5r0,-123v31,3,51,5,59,5v23,0,46,-6,68,-18v33,-18,55,-45,64,-80v7,-27,11,-57,11,-92v0,-15,0,-31,-1,-47v-10,-41,-15,-82,-15,-124v0,-47,6,-94,19,-139v26,-93,73,-158,142,-197v-69,-38,-116,-103,-142,-196v-13,-46,-19,-93,-19,-141v0,-41,5,-83,15,-124v1,-15,1,-31,1,-46v0,-34,-4,-64,-11,-91v-10,-36,-31,-63,-64,-81v-21,-12,-44,-18,-67,-18v-8,0,-28,2,-60,6r0,-122v29,-5,50,-7,62,-7v44,0,86,11,127,34v63,35,104,87,122,154v9,35,14,71,14,110v0,35,-4,73,-11,112v-3,23,-5,46,-5,68v0,39,5,77,15,113v17,60,53,106,108,137v30,17,60,26,90,26v5,0,19,-1,41,-3r0,139","w":673},"~":{"d":"545,-773v103,60,176,90,221,90v6,0,11,-1,16,-2v36,-11,62,-34,77,-71v7,-19,11,-48,11,-85r124,20v-3,43,-11,80,-22,111v-29,69,-78,115,-147,138v-17,5,-35,8,-54,8v-63,0,-146,-29,-248,-87v-104,-59,-178,-89,-221,-89v-6,0,-11,0,-16,1v-36,11,-61,35,-75,72v-8,19,-12,47,-12,84r-124,-21v2,-43,9,-79,21,-109v29,-69,78,-116,147,-139v17,-5,35,-8,55,-8v63,0,146,29,247,87","w":1069},"\u2190":{"d":"243,-586r1687,0r0,122r-1687,0r214,228r0,177r-435,-466r435,-467r0,176","w":1952},"\u2192":{"d":"1496,-816r0,-176r434,467r-434,466r0,-177r213,-228r-1687,0r0,-122r1687,0","w":1952}},"kerning":{}});Cufon.registerFont({"w":200,"face":{"font-family":"harrison","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"-90.077 -343.004 316.077 274","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"!":{"d":"16,-314v30,10,13,40,13,72v0,21,4,71,13,149v-5,3,-7,8,-13,9v-5,0,-12,-50,-20,-151v-1,-22,2,-48,-2,-66v1,-8,4,-13,9,-13xm40,6v-22,4,-34,-25,-13,-31v22,-3,25,22,13,31","w":61},"\"":{"d":"54,-314v6,-14,26,-12,31,5v-21,39,-30,87,-43,131v-19,2,-13,-27,-13,-44v0,-17,9,-48,25,-92xm95,-311v13,1,18,9,23,18v-13,31,-26,67,-38,107v-11,11,-16,11,-18,-15v7,-49,18,-86,33,-110","w":127},"#":{"d":"164,-277v14,-2,19,9,19,18v-17,49,-26,84,-26,104v3,3,6,6,5,13v-6,0,-11,30,-18,90v-4,33,-11,51,-26,44r4,-53v-38,7,-57,14,-57,22v1,11,-7,31,-15,22r0,-29v-30,2,-81,12,-76,-26v0,-3,4,-6,11,-8v21,9,24,11,41,11v45,0,25,-32,33,-59v-53,-5,-84,-18,-83,-38r9,-8v24,9,47,19,80,19v16,-69,28,-103,48,-102v12,6,16,12,16,22v-25,16,-34,52,-37,83v14,0,31,1,41,-3v10,-71,20,-112,31,-122xm129,-131v-56,-5,-49,24,-53,53v32,-3,47,-7,48,-13"},"$":{"d":"84,-341v10,-6,22,2,22,17r-11,55v33,7,73,16,81,53v-2,4,-7,5,-13,4v-21,-24,-45,-35,-70,-35r-11,81v67,66,102,127,-3,158v-18,-6,-8,51,-24,49v-29,-3,-9,-30,-8,-46v-39,1,-77,-30,-77,-84v0,-34,4,-61,21,-72v11,16,-3,51,0,77v4,45,20,62,58,59r13,-134v-27,-30,-39,-47,-39,-66v0,-22,17,-36,50,-42v6,-26,10,-50,11,-74xm71,-243v-39,3,-25,47,-7,56xm80,-142r-9,115v81,-24,59,-63,9,-115"},"%":{"d":"0,-234v10,-34,40,-67,81,-73v19,5,29,12,29,20v8,-1,35,-12,81,-32v12,4,17,11,16,24v-53,58,-90,113,-118,162v-29,52,-46,92,-46,122v31,-26,46,-54,46,-83v0,-16,7,-24,21,-24v18,-27,59,-36,66,6v3,20,-32,53,-71,48v-10,24,-28,54,-54,75v-22,1,-31,-8,-35,-32v10,-62,58,-145,132,-251v-6,4,-23,10,-53,20v-30,31,-55,47,-75,47v-13,-5,-20,-15,-20,-29xm26,-232v31,-16,48,-25,41,-45v-19,14,-33,28,-41,45xm122,-90v15,-9,24,-17,26,-26v-18,9,-26,17,-26,26","w":211},"&":{"d":"56,-167v12,10,69,-4,61,32v-2,10,-19,12,-28,7v-21,2,-40,12,-60,30r-2,10v29,15,48,-8,78,-22v4,0,10,5,16,16v-20,39,-32,83,-28,148v0,8,-3,13,-11,12v-7,0,-11,-16,-12,-49v-1,-33,2,-53,10,-84v-27,12,-77,6,-77,-27v0,-14,15,-32,45,-51v-12,-6,-27,-15,-27,-35v0,-13,40,-26,119,-38v-3,-16,-31,-76,-2,-90v17,5,16,23,14,42v-2,20,10,41,22,60v-1,30,-22,14,-43,16v-24,3,-49,8,-75,17r0,6","w":162},"'":{"d":"34,-296v-2,-10,-7,-27,8,-24v26,15,-8,90,-19,77v1,-20,8,-35,11,-53","w":68},"(":{"d":"120,29v-50,-17,-106,-107,-105,-181v0,-57,14,-111,42,-163v11,-10,35,-14,34,11v-33,28,-49,83,-49,165v0,54,28,109,85,163v1,5,-4,4,-7,5","w":119},")":{"d":"13,-310v-1,-9,2,-13,10,-12v15,0,22,24,39,66v41,102,40,269,-44,323v-4,0,-6,0,-7,-3v72,-116,71,-236,2,-374","w":119},"*":{"d":"67,-288v16,0,12,19,13,34v15,-9,50,-7,47,14v-1,8,-12,17,-30,28v0,2,12,14,36,37v1,8,-3,10,-8,13v-27,-8,-47,-16,-59,-25v-10,0,-14,8,-14,22v0,6,6,17,20,32v0,2,-2,4,-6,4v-30,-16,-34,-37,-25,-68v-26,-9,-39,-22,-22,-31v10,3,17,10,30,10v5,0,10,-15,13,-44v-2,-6,-6,-26,5,-26xm109,-242v-10,-2,-28,7,-19,12v5,-1,12,-6,19,-12xm82,-207v-4,2,-13,0,-12,7v9,3,20,11,27,11","w":140},"+":{"d":"49,-246v0,-6,4,-14,13,-13v18,2,19,48,18,79v28,1,70,-5,79,13v0,7,-26,12,-77,15v0,27,3,54,11,88v-3,11,-6,16,-11,16v-10,0,-17,-33,-22,-97r-5,-4v-35,4,-64,10,-87,17v-19,5,-22,-32,-9,-33v61,-7,101,-12,99,-17v0,-17,-3,-38,-9,-64","w":143},",":{"d":"49,-69v11,-12,22,-7,24,20v0,7,-15,41,-45,102v-11,12,-22,26,-24,8","w":80},"-":{"d":"9,-178v6,-13,31,-2,51,-4v45,-4,66,6,40,16r-82,2v-6,-3,-9,-8,-9,-14","w":119},"\u00ad":{"d":"9,-178v6,-13,31,-2,51,-4v45,-4,66,6,40,16r-82,2v-6,-3,-9,-8,-9,-14","w":119},".":{"d":"33,-49v10,-19,39,-18,39,13v0,8,-8,16,-23,24v-17,-4,-17,-18,-16,-37","w":94},"\/":{"d":"123,-319v7,0,7,6,7,14r-13,43v-54,108,-86,190,-94,248v-3,3,-5,7,-12,6r-7,-20v23,-97,66,-191,119,-291","w":100},"0":{"d":"9,-199v35,-47,59,-65,111,-65v47,0,74,74,72,168v0,50,-37,82,-111,97v-117,-15,-94,-117,-40,-193v-14,3,-22,1,-32,-7xm22,-78v3,33,20,49,50,49v93,-19,105,-91,84,-179r-45,-9v-31,17,-61,64,-89,139","w":168},"1":{"d":"37,-273v63,15,16,89,16,137v0,43,15,80,25,124v-4,3,-5,9,-12,8v-31,6,-56,-62,-53,-132v4,-92,15,-137,24,-137","w":93},"2":{"d":"95,-265v23,0,42,38,42,82v0,27,-15,60,-45,100v0,3,-1,6,3,5v40,5,49,7,49,36v0,12,-33,21,-97,27v0,4,-8,10,-25,14v-14,3,-24,-26,-24,-59v59,-52,94,-99,104,-141v-24,-15,-46,10,-83,27v-9,-16,-14,-33,-14,-50v26,-27,56,-41,90,-41","w":151},"3":{"d":"56,-239v45,-7,75,11,75,52v0,14,-14,33,-41,56r0,4v62,52,75,127,-34,127v-31,0,-53,-8,-52,-34v5,-4,31,-10,78,-18v21,-18,-10,-29,-41,-64v-12,-36,3,-41,41,-75v-32,-12,-62,32,-82,-3v-4,-40,5,-38,56,-45","w":138},"4":{"d":"35,-252v29,3,43,18,43,39r-47,76v20,-2,35,-6,54,0v11,-40,4,-54,29,-51v43,23,10,62,14,105r7,75v-37,22,-34,-9,-50,-83v-30,3,-57,10,-90,11v-17,-8,-25,-26,-25,-54","w":140},"5":{"d":"154,-230v23,13,34,27,34,42v0,38,-40,23,-72,23v-35,0,-58,6,-62,27v2,2,5,3,4,8v50,-12,96,2,92,61v0,13,-33,36,-99,69v-17,0,-26,-12,-27,-34r30,-31v-23,0,-41,-20,-53,-61v0,-51,19,-77,57,-77","w":194},"6":{"d":"82,-246v27,-5,31,9,34,41v-38,34,-58,64,-61,89v34,18,51,41,51,68v10,25,-11,48,-44,48v-31,0,-51,-26,-62,-79v5,-49,33,-105,82,-167xm51,-75v-15,2,-14,21,-7,31v13,1,23,-1,28,-7v0,-9,-7,-17,-21,-24","w":123},"7":{"d":"12,-237v45,21,117,-36,120,33r-21,54v14,-1,24,-2,24,15v0,9,-13,17,-39,24v-5,9,-9,28,-12,57v3,17,21,43,3,54v-36,-7,-33,-53,-33,-96v-11,6,-16,18,-36,15v-30,-25,-26,-48,36,-54v11,-5,23,-26,36,-63v-34,-3,-91,32,-90,-30v0,-5,4,-8,12,-9","w":133},"8":{"d":"29,-156v-10,-41,-43,-115,26,-106v56,7,82,24,80,62v0,5,-8,10,-22,15v-6,21,-15,32,-26,32v5,51,52,122,0,153v-96,-8,-112,-89,-58,-156xm51,-204r11,19r40,-12v-7,-21,-17,-18,-40,-18xm51,-116v-11,17,-16,30,-15,50v8,18,29,31,37,12v-7,-42,-14,-62,-22,-62","w":140},"9":{"d":"63,-234v36,15,54,34,54,57v0,75,-28,127,-51,162v-9,7,-14,18,-33,15v-4,0,-6,-3,-6,-9v30,-58,45,-98,45,-120v-42,8,-82,-11,-72,-54v8,-34,31,-51,63,-51xm39,-162v14,0,24,-9,30,-27v-17,-14,-49,12,-30,27","w":121},":":{"d":"38,-211v16,-25,53,-19,47,25v-3,25,-41,21,-47,0r0,-25xm30,-52v0,-10,9,-26,29,-25v39,3,35,47,11,65v-31,3,-28,-5,-40,-40","w":121},";":{"d":"77,-182v9,-15,32,-14,33,10v0,6,-7,12,-20,19v-12,-4,-14,-14,-13,-29xm62,-101v11,-7,24,-7,26,14v0,5,-16,30,-47,73v-12,8,-23,19,-26,6","w":116},"\u037e":{"d":"77,-182v9,-15,32,-14,33,10v0,6,-7,12,-20,19v-12,-4,-14,-14,-13,-29xm62,-101v11,-7,24,-7,26,14v0,5,-16,30,-47,73v-12,8,-23,19,-26,6","w":116},"<":{"d":"165,-221v30,-2,32,-1,39,35v-51,34,-108,63,-151,105v1,7,43,20,126,39r28,24v-4,12,-11,18,-21,18v-63,-24,-160,-16,-186,-77v-13,-29,118,-104,165,-144","w":210},"=":{"d":"60,-201v40,0,108,-23,133,8v3,23,-27,15,-95,19r-51,14v-10,-6,-15,-6,-14,-16v0,-17,9,-25,27,-25xm9,-133v65,-1,124,-11,187,-5r14,13v0,10,-54,19,-160,27v-22,7,-51,17,-49,-19v1,-11,4,-16,8,-16","w":210},">":{"d":"0,-208v8,-17,17,-14,37,-14v13,8,55,17,124,28v29,12,42,23,40,48v0,7,-29,46,-88,118v3,19,-23,37,-36,20v-8,-39,44,-81,84,-144v0,-13,-39,-23,-117,-23v-28,0,-45,-7,-44,-33","w":210},"?":{"d":"73,-321v27,5,40,18,40,36v0,17,-17,44,-45,88v-30,48,-41,79,-41,109v0,17,8,24,14,36v0,3,-3,5,-7,5v-17,-7,-26,-23,-26,-46v0,-33,24,-86,72,-159v7,-17,28,-43,-5,-48v-6,-1,-21,8,-38,12v-19,-20,-3,-24,36,-33xm37,27v-16,-7,-17,-36,7,-32v20,6,17,33,-7,32","w":118},"@":{"d":"7,-69v-34,-101,46,-227,141,-227v51,0,86,67,86,137v0,53,-43,93,-130,121v-34,2,-51,-2,-55,-37v7,-41,15,-61,42,-58v19,2,48,24,62,9v-1,-22,2,-49,-7,-60v-7,-2,-13,19,-22,38v-19,2,-27,-6,-25,-26v40,-70,76,-64,82,37r5,20v16,-10,24,-28,24,-53v0,-60,-11,-106,-64,-106v-53,0,-100,43,-122,132v-18,70,17,110,64,140v-31,8,-65,-19,-81,-67xm93,-99v-20,2,-33,40,-6,41r47,-21r0,-4","w":228},"A":{"d":"99,-269v9,-18,-5,-56,21,-51v5,3,8,7,8,12r-6,174v3,14,0,22,0,37v0,4,12,6,36,6v4,0,4,3,6,4v0,3,-7,8,-22,10v-7,1,-16,-1,-18,4v0,85,15,151,44,199v4,0,4,0,2,-2r0,-23v15,4,14,27,25,53v-5,12,-8,10,-21,10v-44,-32,-66,-151,-73,-239v-16,-4,-37,2,-54,-2v-12,31,-24,49,-16,69v-12,12,-30,4,-29,-12v4,0,12,-17,22,-51v0,-8,-3,-12,-10,-12v-26,-15,-56,-19,-44,-43r12,0v15,17,32,25,53,25xm101,-227r-48,130v13,3,36,8,48,0r3,-105v-7,-5,3,-15,0,-25r-3,0","w":141},"B":{"d":"67,57v-55,0,-86,-27,-86,-88v0,-24,8,-46,24,-67r7,5r-12,69v0,42,23,59,67,59v39,0,79,-19,120,-56v37,-58,5,-119,-54,-151v-15,-1,-36,-11,-47,-7v2,53,0,108,13,150v-3,7,-9,10,-18,10v-9,-4,-14,-19,-14,-47v0,-18,-6,-79,-8,-182v-9,-6,-5,-26,8,-27v23,-2,19,35,19,59v28,-6,59,-25,94,-57v6,-20,-2,-27,-32,-27v-40,0,-89,17,-145,50v-17,10,-25,20,-25,32v0,9,-8,7,-15,7v-10,-5,-15,-14,-15,-27v64,-58,132,-86,205,-86v32,0,52,16,59,49v-3,16,-32,42,-86,76r0,3v25,0,55,19,81,64v16,26,20,55,20,81v0,42,-83,108,-160,108","w":197},"C":{"d":"233,-280v-3,4,-7,6,-15,5v-10,-15,-20,-22,-30,-22v-24,0,-61,25,-101,74v-49,59,-59,99,-62,146v-2,33,28,54,77,55v23,0,74,-12,153,-35v1,2,3,2,3,5v-9,9,-33,23,-72,40v-2,-1,-2,-3,-5,-3v-25,10,-55,15,-89,15v-62,0,-92,-36,-92,-79v0,-79,47,-153,139,-225v26,-20,89,-36,94,24","w":242},"D":{"d":"129,-321v63,0,105,52,105,134v0,99,-58,183,-175,253v-12,-1,-24,-1,-20,-13v95,-61,174,-123,173,-255v0,-65,-29,-97,-88,-97v-66,0,-127,29,-183,86v-3,10,-10,15,-19,15v-4,-6,-13,-8,-12,-19v62,-69,136,-104,219,-104xm49,-277v13,-11,32,4,29,20v-7,58,-6,208,10,216v-4,13,-5,15,-17,15v-15,0,-22,-51,-22,-154v0,-32,4,-67,0,-97","w":237},"E":{"d":"3,-261v24,-23,115,-67,203,-65v11,0,17,3,16,10v0,7,-31,15,-92,26v-63,12,-46,44,-67,84r2,0v53,-12,94,-19,125,-21v2,5,9,2,13,0v2,3,6,5,6,10v-15,12,-66,26,-154,42v-18,58,-26,98,-26,133v0,8,12,14,36,16r144,-34r5,16v0,7,-42,22,-125,41v-44,10,-89,-10,-89,-47v0,-19,8,-61,24,-125v-15,-10,-15,-41,13,-36r13,-45v-19,4,-36,30,-47,0r0,-5","w":211},"F":{"d":"188,-325v28,7,35,9,29,30v-67,-5,-152,17,-161,28v-2,8,-10,38,-4,63r21,9v67,-12,104,-27,117,-18v2,22,-36,25,-115,44v-8,-1,-22,-9,-27,-5v-7,70,-14,125,-22,166v-12,9,-26,-4,-25,-14v20,-28,20,-149,31,-201v-2,-14,2,-42,0,-63v0,-10,52,-23,156,-39","w":195},"G":{"d":"181,-315v24,-7,72,-17,69,18v-4,10,-18,8,-28,3v-35,0,-87,30,-147,95v-34,37,-46,72,-46,100v-1,45,28,62,77,59v60,-4,90,-13,90,-25r21,-75r-118,72v-13,-4,-17,-12,-16,-26r149,-92v18,-2,28,9,26,31v-51,108,-71,269,-51,421v0,4,-5,8,-13,8v-13,0,-23,-67,-23,-128v0,-36,2,-96,10,-114v-10,-19,5,-13,5,-59v-73,22,-183,26,-183,-77v0,-73,60,-144,178,-211","w":261},"H":{"d":"164,-293v-5,-8,-8,-33,5,-31v20,3,24,15,22,36v-10,96,-22,194,-15,302r-10,7v-10,0,-19,-17,-19,-50r0,-119v3,-1,4,-6,0,-7v-39,5,-73,13,-101,24r-17,119v1,11,-15,8,-17,2v0,-36,9,-79,5,-111r-39,12v-9,-4,-12,-11,-12,-22v0,-4,17,-11,51,-19v4,0,12,-41,26,-121v6,-31,13,-46,20,-46v12,0,19,6,19,19v-9,19,-24,67,-34,136r104,-20v1,-18,7,-37,3,-53v5,0,8,-19,9,-58","w":185},"I":{"d":"52,-294v0,-15,-4,-34,12,-33v11,0,27,11,24,31v-16,21,-31,107,-43,256r5,31v-14,12,-29,12,-36,-12v8,-80,16,-149,26,-206","w":87},"J":{"d":"163,-43v0,70,-5,119,-65,119v-36,0,-67,-13,-74,-46v9,-17,20,-30,28,-18v-1,13,-12,20,-10,27v40,43,103,23,103,-49v0,-85,14,-181,41,-285v-12,6,-42,28,-46,2v-1,-11,6,-9,25,-13v14,-8,24,-15,29,-20v12,0,18,4,17,15v-32,109,-48,198,-48,268","w":180},"K":{"d":"263,-6v-120,0,-219,-23,-190,-142r-29,31v-6,9,-4,56,-13,105v-15,1,-26,-2,-24,-18v12,-112,31,-211,68,-296v8,-7,21,-3,24,9v-29,79,-51,131,-44,149v80,-64,128,-106,165,-153v10,-1,11,9,10,20v0,10,-37,48,-111,113v-15,22,-24,52,-29,84v-10,64,96,83,191,76v23,-2,51,19,24,29v-9,-4,-23,-7,-42,-7","w":270},"L":{"d":"81,-311v11,-11,30,9,26,21v-28,81,-52,170,-76,256v62,-23,106,-33,165,-31v47,2,65,5,50,31v-97,-6,-122,-3,-226,34v-13,-1,-17,-10,-20,-21v26,-78,52,-175,81,-290"},"M":{"d":"205,-298v-73,171,-84,234,-97,370v-7,7,-24,4,-27,-5v18,-112,32,-186,43,-221r-5,0v-14,26,-28,38,-43,38v-36,-2,-25,-53,-29,-84v-65,114,-90,175,-95,196v-17,2,-25,-9,-25,-20v5,0,10,-20,29,-55r120,-221v-3,-24,21,-19,29,-10v-19,77,-50,120,-29,169v24,-16,60,-82,106,-175v15,-1,23,5,23,18","w":201},"N":{"d":"71,-243v-6,93,-14,195,36,255v38,-231,72,-347,101,-347v10,1,21,3,20,16v0,3,-6,6,-18,8v-37,60,-72,248,-81,343v-4,5,-9,10,-20,8v-41,-27,-63,-99,-64,-202v-2,0,-9,17,-21,51v3,6,-44,90,-42,105v-13,15,-29,-5,-28,-16v15,-5,84,-185,97,-231v12,-2,15,5,20,10","w":214},"O":{"d":"116,-18v-67,55,-150,7,-150,-83v0,-71,37,-138,111,-201v12,-11,44,-17,97,-17v35,0,69,38,69,90v0,71,-42,142,-127,211xm215,-236v0,-38,-20,-61,-41,-54v9,10,7,38,-14,32v-11,-7,-17,-15,-17,-24v-20,-1,-23,6,-58,26r-16,0v-50,58,-75,116,-75,175v8,40,27,60,58,60v27,0,73,-31,124,-104v30,-43,39,-83,39,-111","w":249},"P":{"d":"70,-299v64,-15,136,-6,131,72v9,34,-81,74,-166,85r-3,-2v-10,47,-22,84,-35,112v5,17,-4,35,-21,31v-5,-7,-15,-9,-15,-20v37,-70,53,-145,78,-244v-1,-16,-6,-37,14,-36xm41,-171v85,-13,138,-40,135,-72v-3,-28,-24,-36,-58,-36v-38,0,-56,9,-56,27","w":138},"Q":{"d":"2,-88v-7,-76,92,-219,207,-217v28,0,48,9,59,28v27,101,-9,173,-91,237r-4,0r22,91v-2,1,-2,4,-6,4v-6,0,-22,-33,-34,-83v-70,47,-145,23,-153,-60xm24,-106v-9,48,15,82,61,82v14,0,34,-9,62,-26r-12,-74v3,-4,5,-10,14,-8v11,-2,12,43,18,70v61,-47,92,-100,92,-159v0,-24,-8,-50,-36,-52v-9,0,-21,8,-38,26v-8,1,-16,4,-18,-4v9,-21,19,-21,20,-30v-75,16,-147,92,-163,175","w":280},"R":{"d":"110,-151v55,21,63,191,110,166v9,8,4,19,-15,19v-11,0,-27,-11,-38,-37v-37,-92,-60,-139,-77,-139v-10,0,-18,-3,-24,-8r-29,145v-10,4,-24,1,-22,-14v6,-12,6,-63,31,-142r42,-132v-3,-3,-33,35,-36,3v48,-50,156,-51,192,17r3,19v9,28,-76,84,-137,103xm103,-301v2,6,12,5,9,19v-13,22,-27,61,-42,117r20,1v63,-17,108,-43,134,-78v23,-53,-61,-80,-121,-59","w":259},"S":{"d":"74,-319v39,-12,91,21,70,49v-12,1,-11,-8,-20,-24v-32,-20,-82,-1,-91,27v0,7,20,34,57,82v27,35,36,79,36,117v0,30,-22,50,-64,61v-64,16,-131,18,-131,-39v0,-14,2,-25,12,-27v6,0,8,23,5,32v-1,17,18,27,47,27v74,0,110,-25,110,-52v0,-56,-18,-105,-55,-146v-48,-55,-54,-84,24,-107","w":151},"T":{"d":"208,-313v34,2,86,-18,108,0v0,6,-27,10,-81,14v-73,6,-229,36,-256,72v-10,0,-13,-7,-13,-15v0,-21,80,-45,242,-71xm138,-255v0,-12,3,-12,12,-11v6,3,8,8,8,16v-17,43,-44,120,-84,233v-7,20,-16,25,-27,11v-1,-9,4,-13,16,-32","w":219},"U":{"d":"69,0v-47,0,-69,-44,-69,-92v0,-55,23,-128,69,-220v3,-7,6,-11,11,-11v9,5,14,11,14,18v-50,82,-75,157,-75,223v1,33,12,58,40,66v55,4,177,-224,177,-279v0,-11,-8,-30,9,-28v6,4,10,11,10,21v0,57,-37,146,-120,257v-25,33,-50,45,-66,45","w":259},"V":{"d":"266,-309v-70,56,-155,210,-161,301v-2,5,-6,8,-13,8v-39,-28,-68,-213,-81,-245v-11,-3,-17,-26,0,-27v12,0,26,54,48,161v7,33,17,61,31,80v25,-107,86,-213,153,-284v14,-14,23,-8,23,6","w":240},"W":{"d":"193,-294v8,-41,17,-53,25,-27v-18,67,-57,216,-64,347v0,6,-6,10,-18,11v-17,-8,-33,-22,-40,-45v-33,-105,-35,-132,-68,-11v0,13,-5,19,-16,18v-13,-4,-11,-17,-11,-32v0,-34,25,-180,32,-278v-2,-9,-8,-19,1,-23v21,1,15,21,15,41v4,16,-24,161,-27,225v11,-35,23,-53,35,-53v21,0,35,28,47,80v7,29,18,46,27,53v17,-105,42,-206,62,-306","w":205},"X":{"d":"114,-146v38,82,74,119,128,141v-49,13,-85,-38,-135,-122r-3,0v-35,93,-65,182,-89,269v-3,4,-12,12,-12,0v0,-43,31,-141,91,-293v-22,-36,-38,-87,-48,-155v2,-1,2,-3,5,-3v11,0,17,15,17,44v1,11,10,47,34,95v23,-57,46,-100,71,-129v10,-10,35,-11,34,7v-18,5,-28,14,-34,24v-28,49,-48,89,-59,122","w":240},"Y":{"d":"219,-303v-34,17,-49,80,-64,116v15,14,24,18,9,23r-15,-5v-30,90,-54,177,-68,263v-7,40,-7,52,-31,38v25,-134,51,-240,78,-315v-50,-35,-81,-62,-93,-83v-21,-22,-39,-35,-28,-45v19,-1,24,13,43,36v23,28,47,58,84,74v34,-83,53,-124,60,-124v13,0,22,7,25,22","w":186},"Z":{"d":"307,12v-88,-44,-239,17,-307,-37v1,-22,23,-23,33,-36v16,-11,58,-58,129,-143r79,-76v0,-9,-20,-15,-61,-15v-20,0,-51,4,-92,13v-9,-4,-15,-19,-6,-25v37,5,73,-10,109,-5v45,6,71,7,68,37v-7,11,-34,32,-71,71v-102,110,-153,171,-162,172v-1,9,10,12,35,12v68,0,247,-7,254,24v0,3,-3,6,-8,8","w":259},"[":{"d":"94,-327v16,29,7,29,-44,42v-11,3,-16,11,-16,26v0,87,-11,166,-6,254v16,-4,57,-18,61,2v0,7,-14,13,-42,17r-31,26v-7,0,-13,-9,-16,-26v16,-44,7,-86,7,-137v0,-52,3,-102,11,-150v-6,-15,5,-35,15,-45v20,7,41,-6,61,-9","w":100},"\\":{"d":"6,-323v25,55,33,106,87,208v10,39,31,74,36,115v-26,-46,-94,-191,-121,-266v-7,-8,-14,-48,-2,-57","w":100},"]":{"d":"88,-325v6,-7,13,2,19,14v0,6,-6,23,-17,49v-16,106,-22,183,2,277v-3,11,-6,13,-18,12v-11,0,-30,-6,-58,-19v-4,-12,22,-10,48,-22v-18,-91,-9,-165,6,-272v-26,2,-67,27,-70,-10v-1,-12,10,-15,25,-15v21,0,42,-5,63,-14","w":100},"^":{"d":"7,-213v15,-4,25,-56,49,-113v14,0,20,12,20,38v0,47,14,80,42,100v2,6,2,12,-5,13v-18,6,-49,-51,-59,-86v0,7,-6,25,-18,55v0,8,-3,17,-11,17v-10,0,-16,-8,-18,-24","w":118},"_":{"d":"7,-47v58,8,241,-8,237,26v-9,23,-37,16,-65,17r-158,4v-19,-6,-28,-32,-14,-47"},"`":{"d":"15,-282v-15,-6,-22,-45,2,-41v59,72,89,120,92,144v-2,1,-2,4,-6,3","w":113},"a":{"d":"-1,-54v0,-32,33,-78,83,-78v25,0,52,16,81,47v-4,-46,4,-92,-4,-134r-4,0r-61,58v-23,-20,0,-23,25,-52v39,-46,59,-44,60,31v1,47,-7,120,19,137v1,11,-3,18,-14,18v-5,-1,-10,-16,-25,-37v-45,-63,-105,-70,-139,4v-6,26,2,31,35,40v29,-4,47,-7,104,-29r4,4v-27,25,-54,43,-98,43v-44,0,-66,-17,-66,-52"},"b":{"d":"41,-277v0,0,-10,-50,13,-47v9,6,14,15,14,27v-32,128,-48,215,-48,261v14,14,53,7,79,7v36,0,68,-12,95,-36r2,-7v-28,-46,-54,-68,-92,-68v-34,0,-50,22,-63,52v-5,0,-7,-7,-7,-22v-1,-24,26,-52,70,-52v42,0,87,36,108,97v2,41,-93,65,-176,60v-12,5,-29,7,-36,-4v0,-56,14,-145,41,-268","w":177},"c":{"d":"0,-48v-13,-62,89,-114,191,-121v24,-2,30,38,7,39v-46,-33,-69,-3,-134,25v-28,26,-42,39,-41,59v23,37,119,17,171,14r7,9v0,5,-21,12,-62,21r0,-3v-9,5,-40,5,-61,5v-44,0,-71,-16,-78,-48","w":180},"d":{"d":"94,-265v-9,-14,-3,-39,18,-34v19,0,52,36,76,113v37,116,3,139,-128,184v-34,12,-68,-8,-60,-46v14,-64,64,-109,144,-109v12,0,25,4,38,12v-23,-86,-49,-130,-77,-130v-3,7,-6,10,-11,10xm41,-82v-22,25,-36,53,-4,55v44,3,77,-19,137,-65v5,-8,10,-18,7,-24r-7,3v-9,-18,-28,-15,-43,-17v-37,8,-68,23,-90,48"},"e":{"d":"100,-2v-70,12,-128,-51,-85,-124v0,-5,5,-12,16,-18v36,-42,73,-63,111,-63v44,11,59,21,59,58v0,13,-41,29,-124,49v-17,0,-33,0,-48,-2v-29,50,10,86,73,81r80,-6r0,6v-17,8,-58,24,-82,19xm52,-123v43,1,77,-11,128,-38v-6,-17,-20,-22,-38,-21v-32,0,-65,18,-96,54"},"f":{"d":"-45,-122v0,-22,72,-15,85,-33v5,-87,11,-136,20,-146v7,-15,15,-23,25,-23v36,0,58,53,60,85v-3,7,-4,12,-9,12v-5,0,-9,-14,-12,-43v-11,-21,-24,-31,-39,-31v-16,0,-26,49,-31,148v33,-4,65,-12,88,-4v0,8,-29,22,-88,22v-2,0,-14,32,-9,96r9,107v-6,9,-18,12,-20,-8v13,-26,0,-69,0,-107v0,-27,7,-61,3,-85v-11,0,-35,8,-72,23v-7,-2,-10,-7,-10,-13","w":128},"g":{"d":"24,-146v-8,-53,109,-127,150,-64v-1,14,-7,21,-18,21r50,232v4,23,-35,33,-67,33v-37,0,-89,-14,-126,-42v-1,-11,5,-16,19,-21v-2,36,53,46,111,46v62,0,36,-29,26,-92r-13,-78v-52,22,-122,28,-132,-35xm48,-158v-22,58,57,56,102,33r-18,-78v2,-5,11,-3,13,-7v-38,-17,-79,6,-97,52"},"h":{"d":"22,-313v0,-13,-3,-31,11,-29v26,19,1,36,6,72v-10,23,-1,226,4,204v9,-37,23,-72,49,-100v46,-25,80,19,80,100v0,21,19,57,0,70v-9,0,-19,-39,-31,-117v-10,-26,-17,-39,-23,-39v-21,0,-43,42,-65,125v4,10,2,20,-8,24v-34,-5,-23,-101,-31,-139v6,-17,-5,-47,2,-67v-2,-29,5,-70,6,-104"},"i":{"d":"18,-316v11,-10,27,3,31,14v0,11,-6,18,-20,16v-6,0,-10,-10,-11,-30xm27,-101v0,-46,-1,-133,20,-120v12,0,18,5,18,17v-30,50,-9,137,0,197v-3,2,-4,7,-9,7v-9,0,-29,-33,-29,-101","w":79},"j":{"d":"72,-220v-18,5,-28,-18,-9,-19v10,-2,24,15,9,19xm63,-163v16,-12,23,-16,32,-4v-21,70,-11,160,4,223v-31,33,-127,20,-140,-30v6,-10,18,-13,18,8v29,28,76,42,100,15v-11,-72,-18,-128,-5,-199v-21,5,-29,13,-42,1v-2,-15,6,-8,33,-14","w":104},"k":{"d":"17,-297v-1,-17,20,-16,23,-2v-3,27,-16,71,-9,123v-4,8,2,23,0,36v33,-30,62,-62,88,-95v3,4,10,5,8,13v-5,17,-24,40,-54,68v6,9,1,21,0,33v-4,64,44,101,107,88v9,15,-9,20,-31,20v-20,0,-44,-7,-68,-27v-23,-19,-24,-57,-30,-90r-18,23v3,38,6,70,11,98v-3,7,-2,10,-9,9v-9,0,-13,-8,-13,-24v-4,-18,-5,-39,-5,-64v-7,0,-18,-5,-17,-17v26,-12,6,-43,13,-68v-4,-38,4,-83,4,-124","w":139},"l":{"d":"17,-322v13,-7,17,-4,27,13v-8,106,-12,205,13,301v-5,14,-32,9,-30,-8r3,0v-21,-103,-11,-200,-13,-306","w":63},"m":{"d":"182,25v-43,-9,-36,-154,-34,-208r-4,-4v-18,77,-34,117,-18,167v0,6,-4,13,-14,19v-15,2,-24,-21,-17,-37v-5,-16,-11,-69,-18,-159v-7,10,-18,63,-32,159v1,16,7,35,-11,39v-5,0,-12,-3,-20,-9r-2,-112v1,-22,3,-44,0,-65v12,-10,22,-8,29,12v0,17,-9,39,-3,53v12,-76,21,-114,27,-114r14,0v16,10,25,46,25,98r4,0v18,-68,25,-101,38,-100v34,2,25,93,25,137v0,34,8,73,18,117","w":204},"n":{"d":"121,-218v21,0,31,30,31,91v0,74,24,120,36,139v19,31,40,44,60,44v14,-4,30,-23,42,-10v5,21,-18,25,-42,33v-119,-14,-100,-161,-129,-272v-18,13,-36,40,-50,81v-17,53,-25,85,-25,98v-7,10,-20,6,-31,-4v4,-31,0,-65,0,-98v0,-27,6,-57,2,-81v10,-10,32,-9,29,10v-5,27,-10,64,-4,92v25,-82,52,-123,81,-123"},"o":{"d":"133,-6v-74,25,-127,-34,-126,-119v1,-64,32,-101,98,-100v32,0,59,43,82,130v3,43,-14,60,-54,89xm98,-203v-49,-2,-69,42,-67,95v5,114,110,117,134,21v-13,-71,-27,-101,-67,-116"},"p":{"d":"18,-180v38,-22,97,-4,110,41v19,63,-12,95,-78,136v0,25,9,87,28,188v-18,15,-34,-7,-28,-29r-25,-157v-14,-4,-8,-20,0,-22v-7,-43,1,-95,-2,-134v-3,0,-5,2,-5,6v-4,-3,-12,12,-18,10v-7,15,-32,28,-20,46v-10,11,-35,-3,-30,-15v14,-34,40,-54,68,-70xm48,-29v42,-25,65,-50,62,-81v-4,-43,-18,-60,-51,-60v-15,0,-17,108,-11,141","w":148},"q":{"d":"108,-208v9,1,14,4,14,10v-12,-1,-17,38,-16,81v12,-13,10,-25,20,-13v1,11,-9,21,-18,34v0,33,7,86,23,158v2,7,-15,17,-21,8r3,-9v-11,-38,-14,-96,-27,-151v-36,6,-83,-11,-78,-31v-6,-58,33,-97,89,-78v0,-4,4,-7,11,-9xm67,-191v-27,0,-45,37,-43,65v-4,19,39,31,64,22v-3,-30,2,-50,4,-77v0,-6,-9,-10,-25,-10","w":121},"r":{"d":"112,-180v-61,-14,-70,73,-69,137v5,15,21,43,-10,43v-12,0,-22,-48,-31,-143v0,-13,-4,-35,6,-37v27,0,8,30,16,47r-3,0v2,7,0,17,4,22v11,-61,29,-92,73,-89v17,1,24,12,14,20","w":119},"s":{"d":"46,-208v39,-2,65,9,70,41v-2,3,-5,3,-10,3v-23,-24,-16,-28,-40,-28v-27,0,-43,12,-50,36v0,12,25,28,69,58v33,23,46,47,46,65v0,18,-15,33,-46,33v-49,0,-82,-15,-82,-62r5,-5v10,28,21,42,35,42v18,15,70,10,70,-13v0,-17,-23,-42,-72,-70v-56,-32,-54,-80,5,-100","w":139},"t":{"d":"41,-211v6,-7,19,0,18,7r-5,82v21,2,51,-4,67,4v2,13,-53,6,-67,13v0,41,8,72,25,94v8,-1,6,9,2,11v-35,0,-36,-65,-42,-106v-38,-8,-52,-2,-51,-20v9,-13,30,7,51,3","w":81},"u":{"d":"104,-213v0,-4,5,-4,7,-6v15,6,22,17,22,32v7,19,13,50,14,93v1,42,-27,80,-75,94v-52,3,-78,-50,-72,-127v3,-45,1,-65,20,-62v8,0,15,3,14,12v-24,40,-22,155,30,155v27,0,61,-27,61,-76v0,-55,-7,-93,-21,-115","w":157},"v":{"d":"86,-39v9,-43,23,-102,49,-161v14,-1,15,0,20,16v-7,1,-36,109,-47,151v4,15,4,38,-18,33v-51,-46,-53,-86,-88,-139v-2,-10,-2,-17,6,-20v12,-1,28,8,25,18v0,9,19,67,53,102","w":132},"w":{"d":"161,-244v12,-11,17,-13,33,-12v9,7,16,17,13,27v-10,2,-13,-6,-19,-6v-26,-4,-61,104,-58,186v1,24,14,66,0,81v-27,2,-34,-20,-60,-65v-26,-25,-24,-5,-55,28v-12,1,-16,-10,-16,-16r54,-137v19,-3,15,16,13,26v-8,6,-19,32,-34,76v43,-30,47,25,86,66v-10,-98,1,-190,43,-254","w":155},"x":{"d":"48,-71v50,-78,64,-115,95,-113v10,1,15,6,15,14v0,6,-8,9,-23,9v-32,35,-58,70,-76,106v27,38,62,27,104,27v-21,42,-92,13,-113,-11r-97,181v-8,-20,29,-82,84,-198v-23,-25,-32,-59,-30,-89v1,-23,15,-25,23,-7v-6,33,-3,47,14,81r4,0","w":180},"y":{"d":"28,-237v9,2,12,6,12,15v-14,30,-21,48,-21,56v0,25,82,33,117,19v0,-24,4,-51,0,-73v5,-18,16,-9,25,-2v1,21,-7,50,-2,67v6,-4,15,-14,22,-5v2,18,-6,17,-26,32v1,74,-4,134,13,198v-5,14,-28,10,-28,-8v0,-51,-10,-120,-6,-186v-59,4,-126,10,-134,-48v11,-44,20,-65,28,-65","w":163},"z":{"d":"167,-25v-66,-7,-129,12,-165,30v-2,0,-6,-5,-6,-13v36,-36,147,-123,157,-148v-36,-4,-56,11,-94,23v-11,-7,-12,-25,12,-23v48,-15,77,-32,102,-3v-2,29,-102,99,-132,131v34,-11,78,-13,121,-16v13,2,12,13,5,19","w":155},"{":{"d":"98,-317v38,0,55,40,34,58v-27,2,-3,-36,-42,-36v-16,0,-26,11,-30,34v24,100,40,124,-12,188v2,5,-28,46,-28,70v0,23,9,43,32,48v21,5,31,-42,30,-106r4,-4v20,-2,14,56,14,72v0,31,-13,55,-44,58v-44,4,-75,-75,-44,-126v-11,-14,-9,-37,22,-34v22,-24,28,-38,26,-72v0,-9,-7,-42,-22,-98v0,-35,20,-52,60,-52","w":120},"|":{"d":"27,-314v9,-16,32,-14,37,9v-24,129,-23,231,0,369v-2,8,-12,10,-24,9v-19,-10,-11,-25,-10,-45v-6,-44,-14,-152,-8,-223v-6,-24,9,-60,5,-119","w":63},"}":{"d":"21,-286v24,-28,39,-41,56,-40v19,5,26,11,25,29v3,21,-22,87,-35,151v0,13,5,20,16,20v19,21,27,35,-12,42v3,67,30,151,-40,157v-15,1,-27,-14,-27,-38v0,-23,5,-37,13,-42v7,12,10,30,10,55v24,4,25,-13,32,-46v-5,-39,-19,-78,-7,-117v-17,-63,8,-72,29,-182v-13,-9,-25,12,-37,32v-16,1,-24,-5,-23,-21","w":99},"~":{"d":"179,-184v3,-3,4,-8,10,-8v3,0,7,12,7,35v0,33,-12,50,-37,50v-16,0,-38,-14,-67,-42v-33,-10,-50,8,-55,52v-9,10,-25,-3,-25,-18v0,-23,27,-67,62,-67v11,0,33,13,65,40v29,8,25,-2,40,-42","w":210},"\u00c4":{"w":240},"\u00c5":{"w":240},"\u00c7":{"w":259},"\u00c9":{"w":240},"\u00d1":{"w":259},"\u00d6":{"w":280},"\u00dc":{"w":259},"\u00e1":{},"\u00e0":{},"\u00e2":{},"\u00e4":{},"\u00e3":{},"\u00e5":{},"\u00e7":{"w":180},"\u00e9":{},"\u00e8":{},"\u00ea":{},"\u00eb":{},"\u00ed":{"w":100},"\u00ec":{"w":100},"\u00ee":{"w":100},"\u00ef":{"w":100},"\u00f1":{},"\u00f3":{},"\u00f2":{},"\u00f4":{},"\u00f6":{},"\u00f5":{},"\u00fa":{},"\u00f9":{},"\u00fb":{},"\u00fc":{},"\u00b0":{"w":143},"\u00a2":{},"\u00a3":{},"\u00a7":{},"\u00b6":{"w":193},"\u00df":{"w":219},"\u00ae":{"w":265},"\u00a9":{"w":265},"\u00b4":{"w":119},"\u00a8":{"w":119},"\u00c6":{"w":360},"\u00d8":{"w":280},"\u00b1":{"w":197},"\u00a5":{},"\u00b5":{"w":207},"\u00aa":{"w":133},"\u00ba":{"w":131},"\u00e6":{"w":320},"\u00f8":{"w":219},"\u00bf":{"w":219},"\u00a1":{"w":119},"\u00ac":{"w":210},"\u00ab":{},"\u00bb":{},"\u00c0":{"w":240},"\u00c3":{"w":240},"\u00d5":{"w":280},"\u00f7":{"w":197},"\u00ff":{"w":180},"\u00b7":{"w":100},"\u2219":{"w":100},"\u00c2":{"w":240},"\u00ca":{"w":240},"\u00c1":{"w":240},"\u00cb":{"w":240},"\u00c8":{"w":240},"\u00cd":{"w":100},"\u00ce":{"w":100},"\u00cf":{"w":100},"\u00cc":{"w":100},"\u00d3":{"w":280},"\u00d4":{"w":280},"\u00d2":{"w":280},"\u00da":{"w":259},"\u00db":{"w":259},"\u00d9":{"w":259},"\u00b8":{"w":119},"\u00a6":{"w":93},"\u00d0":{"w":259},"\u00f0":{},"\u00dd":{"w":240},"\u00fd":{"w":180},"\u00de":{"w":240},"\u00fe":{},"\u00d7":{"w":210},"\u00b9":{"w":119},"\u00b2":{"w":119},"\u00b3":{"w":119},"\u00bd":{"w":300},"\u00bc":{"w":300},"\u00be":{"w":300},"\u00a4":{},"\u00af":{"w":198}}});$(document).ready(function(){Cufon.set('fontFamily','ChampagneLimousines');Cufon.replace('#head h1 a',{hover:true,textShadow:'#ccc 1px 1px'});Cufon.set('fontFamily',"harrison");Cufon.replace('#head p',{textShadow:'#ccc 1px 1px'});Cufon.replace('span#menu_indicator',{textShadow:'#ccc 1px 1px'});Cufon.replace('#foot .navigation',{textShadow:'#ccc 1px 1px'});});
/* jquery.hoverIntent */ ﻿
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}
if(p==this){return false;}
var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}
if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);
/* borreli */ (function($){$.extend($.fx.step,{backgroundPosition:function(fx){if(fx.state===0&&typeof fx.end=='string'){var start=$.curCSS(fx.elem,'backgroundPosition');start=toArray(start);fx.start=[start[0],start[2]];var end=toArray(fx.end);fx.end=[end[0],end[2]];fx.unit=[end[1],end[3]];}
var nowPosX=[];nowPosX[0]=((fx.end[0]-fx.start[0])*fx.pos)+fx.start[0]+fx.unit[0];nowPosX[1]=((fx.end[1]-fx.start[1])*fx.pos)+fx.start[1]+fx.unit[1];fx.elem.style.backgroundPosition=nowPosX[0]+' '+nowPosX[1];function toArray(strg){strg=strg.replace(/left|top/g,'0px');strg=strg.replace(/right|bottom/g,'100%');strg=strg.replace(/([0-9\.]+)(\s|\)|$)/g,"$1px$2");var res=strg.match(/(-?[0-9\.]+)(px|\%|em|pt)\s(-?[0-9\.]+)(px|\%|em|pt)/);return[parseFloat(res[1],10),res[2],parseFloat(res[3],10),res[4]];}}});})(jQuery);function hidify(){$("body").stop().animate({backgroundPosition:"(0 -50px)"},{duration:600,easing:"easeInOutBack"}).find("#menu").animate({marginTop:"-41px"},{duration:600,easing:"easeInOutBack"});$("span#menu_indicator").animate({opacity:"0"},{duration:200}).animate({paddingTop:"0",opacity:"1"},{duration:500,easing:'swing'});}
$(document).ready(function(){$('#wrap').removeClass("nojs");$("#menu").hoverIntent(function(){$('body').stop().animate({backgroundPosition:"(0 -30px)"},{duration:600,easing:'easeOutBounce'}).find("#menu").animate({marginTop:"-21px"},{duration:600,easing:'easeOutBounce'});$("span#menu_indicator").animate({paddingTop:"20px",opacity:"0"},{duration:400,easing:'swing'});},function(){setTimeout('hidify()',600);});var bodyClass=$('body').attr('class');$('#menu ul li').hover(function(){var currentClass=$(this).attr('id');if(currentClass!=bodyClass){$('body').addClass(currentClass);$('body').removeClass(bodyClass);}},function(){var currentClass=$(this).attr('id');if(currentClass!=bodyClass){$('body').removeClass(currentClass);$('body').removeClass(bodyClass);$('body').addClass(bodyClass);}});});
/* jquery.plugin.biggerlink2 */ (function($){$.fn.biggerlink=function(options){var settings={biggerclass:'bl-bigger',hoverclass:'bl-hover',hoverclass2:'bl-hover2',clickableclass:'bl-hot',otherstriggermaster:true,follow:'auto'};if(options){$.extend(settings,options);}
$(this).filter(function(){return $('a',this).length>0;}).addClass(settings.clickableclass).css('cursor','pointer').each(function(i){var big=$(this).data('biggerlink',{hovered:false,focused:false,hovered2:false,focused2:false});var links={all:$('a',this),big:$(this),master:$('a:first',this).data('biggerlink',{status:'master'}).addClass(settings.biggerclass),other:$('a',this).not($('a:first',this)).data('biggerlink',{status:'other'})};$('a',this).andSelf().each(function(){var newdata=$.extend($(this).data('biggerlink'),links);$(this).data('biggerlink',newdata);});var thistitle=big.attr('title');var newtitle=big.data('biggerlink').master.attr('title');if(newtitle&&!thistitle)
{big.attr('title',newtitle);}
big.mouseover(function(event){window.status=$(this).data('biggerlink').master.get(0).href;$(this).addClass(settings.hoverclass);$(this).data('biggerlink').hovered=true;}).mouseout(function(event){window.status='';if(!$(this).data('biggerlink').focused)
{$(this).removeClass(settings.hoverclass);}
$(this).data('biggerlink').hovered=false;}).bind('click',function(event){if(!$(event.target).closest('a').length)
{$(this).data('biggerlink').master.trigger({type:'click',source:'biggerlink'});event.stopPropagation();}});links.all.bind('focus',function(){$(this).data('biggerlink').big.addClass(settings.hoverclass);$(this).data('biggerlink').big.data('biggerlink').focused=true;}).bind('blur',function(){if(!$(this).data('biggerlink').big.data('biggerlink').hovered)
{$(this).data('biggerlink').big.removeClass(settings.hoverclass);}
$(this).data('biggerlink').big.data('biggerlink').focused=false;});links.master.bind('click',function(event){if(event.source=='biggerlink')
{if(settings.follow===true||settings.follow=='auto'&&event.result!==false)
{window.location=$(this).attr('href');}
else
{event.stopPropagation();}}});if(settings.otherstriggermaster)
{links.other.addClass(settings.biggerclass).bind('click',function(event){$(this).data('biggerlink').master.trigger({type:'click',source:'biggerlink'});event.preventDefault();event.stopPropagation();});}
else
{links.other.bind('focus',function(){$(this).data('biggerlink').big.addClass(settings.hoverclass2);$(this).data('biggerlink').big.data('biggerlink').focused2=true;}).bind('blur',function(){if(!$(this).data('biggerlink').big.data('biggerlink').hovered2)
{$(this).data('biggerlink').big.removeClass(settings.hoverclass2);}
$(this).data('biggerlink').big.data('biggerlink').focused2=false;}).bind('mouseover',function(event){$(this).data('biggerlink').big.addClass(settings.hoverclass2);$(this).data('biggerlink').big.data('biggerlink').hovered2=true;event.stopPropagation();}).bind('mouseout',function(event){if(!$(this).data('biggerlink').big.data('biggerlink').focused2)
{$(this).data('biggerlink').big.removeClass(settings.hoverclass2);}
$(this).data('biggerlink').big.data('biggerlink').hovered2=false;event.stopPropagation();});if(!links.other.attr('title'))
{links.other.attr('title','');}}});return this;};})(jQuery);
/* jquery.target.blank.external */ $(function(){$('#wrap a[rel*=external]').click(function(){$(this).attr("target","_blank");});});
/* planet */ $(document).ready(function(){$('#content div.entry').biggerlink({otherstriggermaster:false});$('#menu ul li').biggerlink();$("#content div.entry_info").hover(function(){$(this).stop().fadeTo("fast",0.9);},function(){$(this).stop().fadeTo("fast",0);});});
