(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");};});})();var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})(),root:function(){return document.documentElement||document.body;}};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},addClass:function(el,className){var current=el.className;el.className=current+(current&&' ')+className;return el;},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),fontStretch:cached(function(value){if(typeof value=='number')return value;if(/%$/.test(value))return parseFloat(value)/100;return{'ultra-condensed':0.5,'extra-condensed':0.625,condensed:0.75,'semi-condensed':0.875,'semi-expanded':1.125,expanded:1.25,'extra-expanded':1.5,'ultra-expanded':2}[value]||1;}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]]);}
return gradient;}),quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list;}),recognizesMedia:cached(function(media){var el=document.createElement('style'),sheet,container,supported;el.type='text/css';el.media=media;try{el.appendChild(document.createTextNode('/**/'));}catch(e){}
container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported;}),removeClass:function(el,className){var re=RegExp('(?:^|\\s+)'+className+'(?=\\s|$)','g');el.className=el.className.replace(re,'');return el;},supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={};offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),textTransform:(function(){var map={uppercase:function(s){return s.toUpperCase();},lowercase:function(s){return s.toLowerCase();},capitalize:function(s){return s.replace(/\b./g,function($0){return $0.toUpperCase();});}};return function(text,style){var transform=map[style.get('textTransform')];return transform?transform(text):text;};})(),whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};var wsStart=/^\s+/,wsEnd=/\s+$/;return function(text,style,node,previousElement){if(previousElement){if(previousElement.nodeName.toLowerCase()=='br'){text=text.replace(wsStart,'');}}
if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(wsStart,'');if(!node.nextSibling)text=text.replace(wsEnd,'');return text;};})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var links=elementsByTagName('link'),styles=elementsByTagName('style');function isContainerReady(el){return el.disabled||isSheetReady(el.sheet,el.media||'screen');}
function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||'all'))return true;if(!sheet||sheet.disabled)return false;try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText))return false;break;default:break search;}}}}
catch(e){}
return true;}
function allStylesLoaded(){if(document.createStyleSheet)return true;var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=='stylesheet'&&!isContainerReady(el))return false;}
for(i=0;el=styles[i];++i){if(!isContainerReady(el))return false;}
return true;}
DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})();function Font(data){var face=this.face=data.face,wordSeparators={'\u0020':1,'\u00a0':1,'\u3000':1};this.glyphs=data.glyphs;this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ');};return box;})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(chars,letterSpacing,wordSpacing){var glyphs=this.glyphs,glyph,kerning,k,jumps=[],width=0,i=-1,j=-1,chr;while(chr=chars[++i]){glyph=glyphs[chr]||this.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j]-=k;}
width+=jumps[++j]=~~(glyph.w||this.w)+letterSpacing+(wordSeparators[chr]?wordSpacing:0);kerning=glyph.k;}
jumps.total=width;return jumps;};}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>=weight&&b>=weight)?a<b:a>b:(a<=weight&&b<=weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
function onOverOut(e){var related=e.relatedTarget;if(!related||contains(this,related))return;trigger(this,e.type=='mouseover');}
function onEnterLeave(e){trigger(this,e.type=='mouseenter');}
function trigger(el,hoverState){setTimeout(function(){var options=sharedStorage.get(el).options;api.replace(el,hoverState?merge(options,options.hover):options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};}
function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values;}
this.add=function(key,args){map[key]=list.push(args)-1;};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true);};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property];}
return this;};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.isUsable=function(){return!!style;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,function(){return listener.call(el,window.event);});}}
function attach(el,options){var storage=sharedStorage.get(el);if(storage.options)return el;if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0;family=families[i];++i){if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function hasOwnProperty(obj,property){return obj.hasOwnProperty(property);}
function merge(){var merged={},arg,key;for(var i=0,l=arguments.length;arg=arguments[i],i<l;++i){for(key in arg){if(hasOwnProperty(arg,key))merged[key]=arg[key];}}
return merged;}
function process(font,text,style,options,node,el){var fragment=document.createDocumentFragment(),processed;if(text==='')return fragment;var separate=options.separate;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function replaceElement(el,options){var name=el.nodeName.toLowerCase();if(options.ignore[name])return;var replace=!options.textless[name];var style=CSS.getStyle(attach(el,options)).extend(options);var font=getFont(el,style),node,type,next,anchor,text,lastElement;if(!font)return;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(replace&&type==3){if(anchor){anchor.appendData(node.data);el.removeChild(node);}
else anchor=node;if(next)continue;}
if(anchor){el.replaceChild(process(font,CSS.whiteSpace(anchor.data,style,anchor,lastElement),style,options,node,el),anchor);anchor=null;}
if(type==1){if(node.firstChild){if(node.nodeName.toLowerCase()=='cufon'){engines[options.engine](font,null,style,options,node,el);}
else arguments.callee(node,options);}
lastElement=node;}}}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var engines={},fonts={},defaultOptions={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:'none'};var separators={words:/\s/.test('\u00a0')?/[^\S\u00a0]+/:/\s+/,characters:'',none:/^/};api.now=function(){DOM.ready();return api;};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){if(!data)return api;var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"');};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(!initialized){CSS.addClass(DOM.root(),'cufon-active cufon-loading');CSS.ready(function(){CSS.addClass(CSS.removeClass(DOM.root(),'cufon-loading'),'cufon-ready');});initialized=true;}
if(options.hover)options.forceHitArea=true;if(options.autoDetect)delete options.fontFamily;if(typeof options.textShadow=='string'){options.textShadow=CSS.textShadow(options.textShadow);}
if(typeof options.color=='string'&&/^-/.test(options.color)){options.textGradient=CSS.gradient(options.color);}
else delete options.textGradient;if(!ignoreHistory)replaceHistory.add(elements,arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('cufon{text-indent:0;}'+'@media screen,projection{'+'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;'+
(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'cufon canvas{position:relative;}':'cufon canvas{position:absolute;}')+'}'+'@media print{'+'cufon{padding:0;}'+'cufon canvas{display:none;}'+'}').replace(/;/g,'!important;')));document.getElementsByTagName('head')[0].appendChild(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.getAttribute('alt');var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,~~size.convertFrom(parseFloat(style.get('letterSpacing'))||0),~~size.convertFrom(parseFloat(style.get('wordSpacing'))||0));if(!jumps.length)return null;var width=jumps.total;expandRight+=viewBox.width-jumps[jumps.length-1];expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-canvas';wrapper.setAttribute('alt',text);canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+'px';cStyle.height=canvasHeight+'px';expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.max(Math.ceil(size.convert(stretchedWidth)),0)+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.save();function renderText(){var glyphs=font.glyphs,glyph,i=-1,j=-1,chr;g.scale(stretchFactor,1);while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill();}
g.translate(jumps[++j],0);}
g.restore();}
if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();}}
var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i]);}
g.fillStyle=fill;}
else g.fillStyle=style.get('color');renderText();return wrapper;};})());Cufon.registerEngine('vml',(function(){var ns=document.namespaces;if(!ns)return;ns.add('cvml','urn:schemas-microsoft-com:vml');ns=null;var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;var HAS_BROKEN_LINEHEIGHT=(document.documentMode||0)<8;document.write(('<style type="text/css">'+'cufoncanvas{text-indent:0;}'+'@media screen{'+'cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}'+'cufoncanvas{position:absolute;text-align:left;}'+'cufon{display:inline-block;position:relative;vertical-align:'+
(HAS_BROKEN_LINEHEIGHT?'middle':'text-bottom')+';}'+'cufon cufontext{position:absolute;left:-10000in;font-size:1px;}'+'a cufon{cursor:pointer}'+'}'+'@media print{'+'cufon cufoncanvas{display:none;}'+'}'+'</style>').replace(/;/g,'!important;'));function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$|^[a-z-]+$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(value==='0')return 0;if(/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace('%','em');var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
function getSpacingValue(el,style,size,property){var key='computed'+property,value=style[key];if(isNaN(value)){value=style.get(property);style[key]=value=(value=='normal')?0:~~size.convertFrom(getSizeInPixels(el,value));}
return value;}
var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='sigma';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1]);}
fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill;}
return fills[id];}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('cufoncanvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,getSpacingValue(el,style,size,'letterSpacing'),getSpacingValue(el,style,size,'wordSpacing'));if(!jumps.length)return null;var width=jumps.total;var fullWidth=-minX+width+(viewBox.width-jumps[jumps.length-1]);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);var glyphs=font.glyphs,offsetX=0;var shadows=options.textShadow;var i=-1,j=0,chr;while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph,shape;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild);}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY;}
shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow);}
offsetX+=jumps[j++];}
var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement('cvml:rect');cover.stroked='f';cover.className='cufon-vml-cover';coverFill=document.createElement('cvml:fill');coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover);}
vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight;}
else if(cover)canvas.removeChild(cover);wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get('lineHeight');if(lineHeight=='normal')lineHeight='1em';else if(!isNaN(lineHeight))lineHeight+='em';style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height));}
if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+'px';wStyle.marginBottom=yAdjust+'px';}}
return wrapper;};})());Cufon.registerFont({"w":494,"face":{"font-family":"Tagettes","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","cap-height":"28","bbox":"-564.983 -478 1136 271","underline-thickness":"8.78906","underline-position":"-71.1914","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":133},"!":{"d":"75,-100v31,-96,108,-193,185,-243v14,-10,42,-13,42,10v0,28,-34,28,-57,37v-64,33,-124,117,-151,188v-5,14,-9,16,-19,8xm55,0v-15,0,-23,-8,-23,-23v0,-14,8,-20,22,-20v14,0,21,6,22,20v-1,15,-8,23,-21,23","w":152},"\"":{"d":"185,-317v-11,-12,-3,-39,17,-36v42,10,9,77,-14,84v-10,7,-33,9,-31,-6v2,-15,19,0,28,-11v7,-5,12,-13,16,-27v-7,2,-12,0,-16,-4xm282,-328v-4,35,-20,64,-56,64v-7,0,-10,-5,-9,-11v3,-15,17,0,28,-11v5,-6,12,-13,15,-26v-13,1,-20,-6,-20,-20v0,-11,8,-22,21,-21v14,2,21,10,21,25","w":224},"#":{"d":"229,-309v-152,77,-207,332,-301,450v-31,35,-69,65,-126,70v-37,0,-40,-31,-15,-40v27,-8,54,0,83,-14v85,-41,123,-191,173,-273v51,-88,120,-193,201,-244v16,-10,44,-13,46,11v-5,29,-37,28,-61,40","w":88},"\u017f":{"d":"229,-309v-152,77,-207,332,-301,450v-31,35,-69,65,-126,70v-37,0,-40,-31,-15,-40v27,-8,54,0,83,-14v85,-41,123,-191,173,-273v51,-88,120,-193,201,-244v16,-10,44,-13,46,11v-5,29,-37,28,-61,40","w":88},"$":{"d":"409,-393v-81,-56,-150,57,-91,130xm376,-317v-8,11,1,25,14,25v43,6,56,-65,30,-91xm118,22r116,-163v-81,-29,-175,2,-173,89v0,38,25,67,57,74xm263,-150v58,17,54,123,-5,132v-5,1,-7,-1,-6,-5v7,-18,35,-23,35,-51v1,-31,-11,-47,-35,-59r-112,164v119,22,251,-19,213,-149v-7,-22,-23,-54,-47,-95xm327,-247v40,86,59,88,63,166v-6,121,-138,151,-262,131r-44,71r-32,0r53,-79v-37,-16,-67,-40,-66,-95v0,-100,112,-138,207,-105r49,-72v-55,-80,-21,-213,88,-198v11,2,24,7,39,14r30,-43r16,3r-32,50v43,40,16,142,-51,127v-9,-2,-17,-9,-23,-21"},"%":{"d":"66,42r-31,1r374,-521r18,1xm187,-279v-43,35,-101,13,-96,-46v10,-72,52,-138,122,-138v89,0,39,127,4,156v-9,11,-19,20,-30,28xm166,-291v46,-19,84,-67,80,-135v-22,-55,-91,-4,-106,26v-39,36,-39,136,26,109xm295,0v-34,-3,-47,-28,-47,-64v0,-73,53,-125,123,-138v43,-4,57,33,48,72v-15,61,-55,120,-124,130xm275,-101v-18,40,3,90,48,71v43,-24,84,-66,80,-134v-6,-38,-56,-28,-76,-7v-18,15,-44,47,-52,70","w":474},"&":{"d":"146,-154v36,-5,57,-12,62,-22v-25,-21,-52,-4,-62,22xm437,-304v-12,-34,-76,-57,-117,-36v10,11,17,34,16,56v3,-18,25,-34,50,-25v17,5,31,5,51,5xm348,-245v-12,-1,-15,-8,-15,-22v-4,19,-14,38,-25,51v44,17,87,-27,61,-69v-6,-5,-16,-3,-16,4v-2,7,15,8,12,18v0,11,-6,18,-17,18xm290,-226v21,-21,37,-73,10,-103v-31,15,-43,76,-10,103xm291,-197v-15,21,-46,17,-63,33v-20,39,-117,5,-97,88v20,85,149,77,211,29v66,-41,110,-104,111,-201v-2,-21,-4,-32,-8,-33v-27,6,-52,-16,-47,21v6,53,-56,85,-107,63xm306,-356v57,-29,135,-2,154,48v34,-4,69,-43,52,-83v-7,-14,-17,-17,-30,-11v-6,8,18,9,10,23v-1,20,-40,23,-39,-1v-2,-26,14,-40,41,-40v76,18,31,127,-26,133v27,155,-66,244,-179,288v-104,37,-210,-22,-175,-136v10,-45,61,-98,114,-63v17,11,36,-4,46,-12v-40,-30,-26,-113,12,-133v-46,-44,-151,-22,-130,57v7,27,53,41,60,10v4,-21,-16,4,-23,-11v-16,-15,4,-40,25,-30v35,18,12,94,-38,76v-55,-8,-54,-110,-8,-129v40,-26,106,-15,134,14"},"'":{"d":"176,-252v-2,36,-23,63,-53,69v-22,4,-33,-25,-21,-37v10,-1,4,20,18,18v21,0,30,-15,36,-39v-24,10,-36,-16,-25,-34v15,-17,49,-6,45,23","w":185},"(":{"d":"146,111v-88,-7,-100,-119,-78,-212v42,-155,162,-296,295,-360v42,-17,67,-18,101,-2v9,5,16,11,8,16v-31,-7,-67,-18,-103,4v-106,51,-232,194,-267,323v-20,75,-23,154,13,192v12,13,30,16,46,14v17,-3,25,0,25,8v1,16,-25,17,-40,17","w":176},")":{"d":"188,-474v89,5,101,120,79,211v-45,147,-150,300,-283,359v-42,16,-121,27,-146,-9v14,-12,40,13,69,6v127,-16,179,-91,251,-187v58,-76,91,-167,88,-273v-6,-54,-25,-85,-73,-82v-16,2,-24,-1,-24,-8v-2,-17,24,-17,39,-17","w":299},"*":{"d":"136,-441v-7,20,-9,40,-9,73r-6,1v0,-32,1,-56,-6,-75v3,-10,20,-10,21,1xm128,-351v0,32,1,56,6,75v-3,10,-20,10,-21,-1v8,-20,9,-40,9,-73xm117,-359v0,-9,15,-9,15,0v0,8,-11,11,-14,4v0,-1,-1,-3,-1,-4xm133,-356v22,21,35,36,58,48v5,14,-14,23,-20,8v-7,-20,-21,-30,-42,-51xm116,-362v-22,-23,-34,-37,-57,-49v-5,-8,7,-21,15,-14v13,22,22,35,46,58xm181,-427v16,6,6,23,-7,25r-42,39r-3,-4v22,-24,34,-35,45,-58v3,-3,5,-3,7,-2xm59,-306v22,-14,35,-26,58,-49r3,5v-22,23,-34,34,-45,58v-9,5,-18,-3,-16,-14xm133,-362v32,0,54,-2,75,-7v9,2,9,20,-1,21v-21,-7,-40,-9,-74,-9r0,-5xm115,-356v-33,0,-53,1,-73,9v-11,-2,-10,-18,-1,-21v19,4,43,7,74,6r0,6xm133,-392v-3,-4,1,-12,6,-11v8,-1,10,11,4,14v-3,3,-10,0,-10,-3xm158,-367v-7,-7,-1,-18,8,-14v6,5,3,17,-8,14xm158,-338v-7,-5,-1,-18,8,-13v7,5,1,19,-8,13xm136,-316v-8,-5,-1,-19,8,-13v7,4,1,18,-8,13xm111,-315v-8,0,-9,-15,0,-15v8,0,10,11,4,14v-1,0,-2,1,-4,1xm85,-338v-7,-6,0,-18,8,-13v8,5,3,15,-8,13xm86,-367v-8,-5,-2,-18,7,-14v8,5,4,17,-7,14xm104,-392v-3,-4,1,-12,6,-11v5,-1,9,6,6,11v-1,5,-11,5,-12,0","w":252},"+":{"d":"234,-73v-19,-10,-38,-14,-73,-14r-1,-9v29,-2,53,2,68,-9v11,-8,13,8,15,15v-2,6,-2,16,-9,17xm143,-87v-34,0,-55,4,-74,14v-14,-4,-8,-45,7,-33v13,12,39,7,67,9r0,10xm170,-173v-10,19,-14,38,-14,73r-9,1v-2,-29,1,-52,-9,-68v-10,-10,8,-13,15,-15v7,2,15,2,17,9xm156,-82v0,34,3,55,14,73v-3,15,-43,9,-32,-6v10,-14,6,-39,9,-67r9,0","w":297},",":{"d":"42,-6v-14,-14,-5,-45,19,-42v42,3,24,66,7,84v-11,12,-29,27,-50,29v-10,-2,-10,-15,2,-17v15,-5,38,-26,38,-49v-6,1,-12,-1,-16,-5","w":116},"-":{"d":"51,-120v66,5,157,-35,195,12v-9,10,-23,0,-37,0v-49,5,-125,29,-160,-6v0,-3,1,-4,2,-6","w":270},"\u2010":{"d":"51,-120v66,5,157,-35,195,12v-9,10,-23,0,-37,0v-49,5,-125,29,-160,-6v0,-3,1,-4,2,-6","w":270},".":{"d":"79,0v-16,0,-24,-8,-24,-25v0,-15,8,-22,23,-22v16,0,24,7,24,22v0,17,-8,25,-23,25","w":130},"\/":{"d":"42,4r-26,-3r232,-373r43,-75r19,2","w":204},"0":{"d":"173,-25v-60,49,-147,19,-138,-65v15,-106,75,-186,176,-200v99,-14,77,127,39,180v-20,32,-47,61,-77,85xm70,-143v-27,60,4,135,72,107v58,-28,102,-85,120,-156v13,-56,-18,-100,-73,-79v-52,18,-98,77,-119,128","w":256},"1":{"d":"43,-154r128,-103v29,-21,48,-37,55,-36v-8,70,-119,182,-138,244v-10,31,-10,36,14,32v5,-1,7,2,7,8v-4,15,-43,10,-50,-3v-6,-13,-6,-27,-1,-42v24,-51,110,-151,143,-211r-147,116v-7,2,-11,0,-11,-5","w":166},"2":{"d":"20,-20v3,-31,48,-29,74,-15v62,-36,149,-78,169,-157v10,-65,-43,-102,-103,-73v-30,14,-58,46,-56,82v0,36,59,33,64,0v6,0,8,6,5,16v-6,33,-67,46,-86,16v-25,-50,21,-102,54,-123v57,-36,146,-9,142,64v-2,96,-102,144,-169,183v36,20,94,11,127,-7v24,-10,33,-7,36,13v-1,13,-6,20,-22,21v-34,1,-131,6,-161,-15v-23,10,-27,15,-52,15v-13,-2,-22,-7,-22,-20xm72,-25v-9,-10,-54,4,-28,9v6,-1,15,-4,28,-9","w":275},"3":{"d":"287,-258v13,9,41,-7,19,-10v-6,1,-12,4,-19,10xm331,-263v-3,25,-37,30,-59,15v-39,30,-54,31,-108,67v88,-10,109,115,49,159v-16,15,-48,38,-81,37v-65,2,-133,-31,-106,-96v11,-31,73,-33,75,5v0,11,-14,25,-24,24v-8,-7,25,-21,5,-33v-30,-16,-49,22,-33,51v12,22,41,33,75,33v55,-2,106,-41,108,-97v0,-56,-53,-80,-104,-54v-19,-24,1,-20,32,-44v24,-15,56,-34,93,-59v-29,-30,-63,17,-94,7v-28,-10,-81,18,-64,-30v13,-17,50,-9,69,2v23,17,53,-14,70,-8v9,2,20,7,33,15v20,-17,57,-25,64,6","w":250},"4":{"d":"73,-124v-16,-11,-48,6,-22,9v6,0,13,-3,22,-9xm27,-118v-1,-25,42,-28,62,-20v53,-24,99,-66,130,-111v18,-17,4,-56,28,-63v8,91,-86,150,-135,184v16,9,35,14,53,15v24,-33,50,-65,75,-89v8,-9,18,-13,28,-12v-33,32,-59,67,-79,103v33,7,55,-25,80,-25v5,3,7,9,8,16v-4,35,-53,30,-97,29v-4,6,-32,65,-22,75v9,3,24,-6,22,7v-4,15,-42,9,-47,-3v-14,-33,10,-61,22,-84v-25,-5,-45,-11,-60,-20v-18,18,-61,28,-68,-2","w":267},"5":{"d":"175,-287v28,13,80,5,113,-2v26,-2,34,25,17,37v-18,8,-41,-15,-66,-10v-25,4,-52,-5,-62,11v-16,22,-38,53,-63,75v78,-28,131,40,101,110v-20,40,-46,65,-102,68v-56,2,-89,-20,-96,-64v-7,-45,68,-67,79,-24v1,12,-11,28,-20,27v-3,-7,23,-40,-13,-35v-41,6,-16,75,17,77v80,28,146,-54,110,-125v-24,-27,-65,-23,-101,-1v-27,-10,-3,-30,14,-46v22,-22,42,-43,54,-74v6,-14,12,-22,18,-24","w":233},"6":{"d":"95,-17v48,-12,107,-85,73,-136v-51,-19,-93,35,-112,72v-12,35,3,68,39,64xm160,-181v65,0,44,91,13,122v-25,29,-44,55,-90,59v-57,1,-61,-58,-41,-104v61,-121,146,-255,325,-257v25,-2,34,26,16,35v-22,5,-46,-14,-79,-7v-113,16,-169,112,-222,190v33,-26,39,-38,78,-38","w":208},"7":{"d":"319,-269v0,26,-35,32,-58,17v-84,59,-201,165,-172,316v5,34,48,51,71,28v10,-11,2,-39,-15,-33v-6,2,-9,9,-9,20v-15,-1,-11,-22,-1,-28v30,-23,62,21,38,48v-8,11,-20,18,-41,18v-56,-1,-75,-45,-75,-102v0,-136,96,-201,185,-274v-30,-30,-63,18,-95,8v-27,-10,-81,18,-63,-30v13,-16,50,-9,68,2v24,17,53,-14,71,-9v8,2,19,7,33,14v15,-12,63,-27,63,5xm276,-263v13,10,40,-7,19,-9v-6,0,-12,3,-19,9","w":216},"8":{"d":"165,-184v60,4,74,-79,17,-89v-31,-4,-67,19,-48,54v7,12,17,24,31,35xm138,-164v-57,12,-109,52,-83,115v21,40,106,46,126,-1v22,-47,-15,-92,-43,-114xm128,-175v-13,-17,-22,-23,-23,-49v-5,-71,142,-91,142,-21v0,51,-28,65,-75,72v38,30,49,98,13,139v-19,22,-43,36,-80,38v-47,-1,-82,-30,-82,-74v0,-63,51,-89,105,-105","w":230},"9":{"d":"177,-274v-47,13,-106,83,-73,136v56,18,109,-40,115,-96v1,-26,-18,-41,-42,-40xm184,-139v-34,33,-116,48,-115,-21v7,-56,45,-98,85,-122v40,-22,99,0,87,49v-38,158,-144,293,-335,303v-25,3,-35,-26,-16,-35v22,-5,46,14,79,7v108,-16,165,-103,215,-181","w":214},":":{"d":"77,-97v-15,0,-23,-8,-23,-23v0,-14,8,-20,22,-20v14,0,21,6,22,20v-1,15,-8,23,-21,23xm48,0v-15,0,-22,-8,-22,-23v0,-14,7,-21,21,-21v14,0,22,7,22,21v0,15,-7,23,-21,23","w":143},";":{"d":"42,-6v-14,-14,-5,-45,19,-42v42,3,24,66,7,84v-11,12,-29,27,-50,29v-10,-2,-10,-15,2,-17v15,-5,38,-26,38,-49v-6,1,-12,-1,-16,-5xm88,-97v-15,0,-22,-7,-22,-22v0,-14,7,-21,22,-21v14,0,21,7,22,20v-1,16,-8,23,-22,23","w":140},"<":{"d":"38,-148v2,-15,34,-28,57,-24v15,1,31,11,48,30v45,-12,70,-52,100,-77v12,-12,52,-13,54,5v0,30,-29,9,-48,21v-31,20,-43,46,-96,66v27,42,54,84,123,79v20,-3,22,17,7,25v-6,5,-17,7,-31,7v-54,-12,-96,-58,-123,-98v-38,26,-84,2,-91,-34xm114,-130v-11,-15,-30,-21,-51,-17v-7,11,10,28,30,25v8,-1,15,-3,21,-8","w":341},"=":{"d":"211,-117v-7,7,-17,-1,-28,0v-38,3,-95,23,-122,-5v9,-13,39,-2,66,-11v31,-10,71,-5,84,16xm207,-76v-8,7,-16,-1,-28,0v-36,2,-94,23,-121,-5v9,-13,40,-3,66,-11v31,-10,70,-6,83,16","w":285},">":{"d":"297,-96v-1,15,-34,28,-56,24v-15,-1,-31,-11,-48,-30v-46,12,-70,52,-100,77v-13,13,-52,13,-55,-5v1,-29,28,-11,49,-21v30,-22,44,-45,96,-66v-27,-42,-54,-84,-123,-79v-20,3,-22,-19,-8,-25v67,-27,122,48,155,91v37,-26,86,-4,90,34xm222,-114v11,15,31,21,51,17v9,-11,-12,-28,-30,-25v-8,1,-15,3,-21,8","w":341},"?":{"d":"103,0v-15,0,-22,-7,-22,-22v0,-14,7,-21,21,-21v15,0,22,7,23,20v-1,16,-8,23,-22,23xm236,-353v57,-6,82,43,58,90v-25,49,-128,68,-159,110v-14,21,-3,41,16,38v8,-1,13,-6,16,-15v23,7,3,28,-9,31v-53,13,-63,-58,-25,-86v40,-30,139,-44,144,-111v15,-45,-52,-57,-68,-28v-9,23,5,29,25,21v11,1,21,16,10,27v-21,27,-71,1,-63,-31v4,-28,22,-46,55,-46","w":205},"@":{"d":"219,-130v-16,42,11,31,26,11v9,-12,18,-29,26,-49v19,-45,-8,-42,-25,-13v-11,16,-20,33,-27,51xm274,-123v-4,30,38,31,46,7v12,-27,0,-67,-22,-75v-15,34,-23,57,-24,68xm195,-113v2,-30,23,-74,45,-91v-70,-4,-112,90,-64,140v38,39,146,36,175,-16v32,-36,36,-113,1,-148v-39,-48,-152,-54,-201,-10v-70,40,-73,180,-2,222v35,27,111,41,157,20v10,-5,16,-8,20,-8v-4,16,-41,34,-72,31v-104,0,-174,-47,-178,-147v5,-103,71,-159,178,-162v78,4,137,42,137,122v3,99,-80,153,-181,131v-63,-8,-95,-97,-48,-148v20,-23,47,-41,89,-40v19,-18,46,-20,48,13v50,14,52,127,-13,121v-17,-1,-27,-10,-29,-27v-15,17,-27,26,-35,26v-18,0,-27,-10,-27,-29","w":457},"A":{"d":"506,-159v17,-49,43,-87,70,-130v-42,43,-61,77,-104,129xm58,-2v1,-36,23,-61,58,-61v34,-2,45,56,8,61v-23,6,-43,-21,-27,-36v4,-3,5,-5,4,-7v-18,2,-35,35,-22,61v14,28,68,29,110,20v85,-23,147,-58,210,-132v97,-108,152,-204,255,-292v26,-23,58,-41,97,-56v-219,-15,-431,75,-535,203v-45,45,-76,180,32,181v81,0,143,-62,154,-130v1,-20,10,-26,11,-2v-1,92,-90,160,-194,147v-42,-8,-81,-46,-77,-101v13,-124,137,-198,233,-244v102,-46,247,-83,390,-66v14,2,29,14,9,20v-176,51,-227,261,-316,399v-12,19,-26,32,-43,42v85,-16,107,-39,146,-87v6,-9,11,-12,14,-8v-12,64,-97,104,-173,109v-14,1,-31,15,-46,8v-11,-30,40,-16,58,-39v33,-25,57,-88,81,-128r-34,-1v-96,110,-150,179,-317,199v-51,1,-83,-21,-86,-60","w":562},"B":{"d":"217,15v41,7,81,-15,100,-31v13,15,-19,29,-33,37v-66,18,-143,19,-221,30v-25,0,-44,-15,-30,-30v50,4,70,-11,120,-4v80,-8,121,-57,162,-114v34,-46,104,-200,142,-241v31,-38,62,-73,99,-92v-25,-20,-75,-21,-124,-14v-126,34,-245,131,-292,244v-17,40,-19,105,18,123v79,35,155,-30,146,-116v-5,-33,-46,-57,-75,-30v-9,7,-23,30,-33,26v4,-43,86,-80,112,-31v47,91,-30,202,-145,178v-70,-9,-80,-117,-44,-176v44,-89,132,-161,228,-207v59,-29,181,-50,229,-5v12,-4,23,-5,34,-4r1,7v-7,0,-17,3,-28,8v51,112,-88,159,-147,217v-16,18,-4,23,7,41v21,33,67,73,52,137v-13,61,-94,94,-159,67v-31,-27,10,-88,47,-64v24,16,0,60,-27,43v-8,-1,-4,-22,-13,-14v-9,18,10,34,36,32v61,-2,108,-45,86,-115v-15,-49,-101,-93,-39,-140v48,-48,132,-76,147,-157v1,-15,-2,-28,-9,-39v-162,92,-171,355,-347,434","w":541},"C":{"d":"337,-443v68,-30,186,-34,193,41v-3,88,-93,138,-182,118v-24,-6,-43,-28,-32,-50v8,5,7,25,24,28v73,23,173,-18,171,-94v-7,-50,-71,-50,-126,-39v-80,23,-190,94,-238,176v-37,55,-58,104,-62,148v-16,111,53,155,152,145v58,-9,115,-88,75,-147v-19,-18,-45,-25,-73,-14v-9,5,-16,6,-19,4v1,-20,46,-34,77,-23v67,17,58,126,12,163v-28,23,-59,44,-111,44v-135,7,-174,-133,-119,-245v47,-114,147,-207,258,-255","w":398},"D":{"d":"207,16v202,21,324,-64,379,-206v22,-70,15,-182,-33,-215v-19,-14,-27,-33,-44,-12v-116,122,-140,352,-302,433xm142,26v-14,-2,-36,-7,-49,-3v-4,2,-5,4,-2,8v10,7,41,5,51,-5xm56,28v12,-41,90,-13,133,-19v144,-78,189,-288,288,-413v9,-10,18,-19,29,-27v-201,-31,-342,93,-401,242v-28,62,9,138,82,112v55,-16,96,-66,102,-131v2,-26,-18,-53,-39,-35v-4,4,-8,6,-9,6v-8,-15,14,-26,34,-19v59,27,14,132,-16,158v-40,72,-205,74,-192,-40v6,-107,73,-164,135,-222v71,-60,193,-115,319,-84v12,-8,32,-17,52,-20v7,16,-32,13,-39,25v100,35,105,232,42,323v-71,103,-193,167,-373,148v-60,-8,-53,18,-107,19v-26,-2,-37,-3,-40,-23","w":604},"E":{"d":"299,7v-76,83,-260,57,-248,-81v10,-154,97,-251,200,-315v46,-29,148,-51,147,27v-3,26,-24,46,-51,45v-25,2,-22,-13,-4,-13v37,5,56,-61,15,-67v-83,-12,-160,55,-194,113v-29,103,112,95,195,59v74,-29,139,-83,154,-166v20,-62,-58,-81,-80,-36v-4,7,1,12,4,6v4,-15,41,-16,41,8v0,31,-45,43,-58,14v-11,-37,16,-68,57,-68v91,13,41,140,3,182v-58,63,-197,134,-312,93v-23,-14,-35,-36,-30,-68v-55,64,-111,256,13,284v90,23,175,-32,148,-123v-12,-34,-69,-38,-84,-6v-11,19,14,19,13,30v-8,9,-33,-2,-30,-18v-5,-60,96,-65,118,-18v21,35,12,90,-17,118","w":376},"F":{"d":"134,51v-109,17,-137,-108,-53,-141v36,-20,93,3,70,46v-6,17,-41,25,-51,6v-10,-18,0,-35,15,-40v7,-3,6,-4,-2,-4v-72,-7,-89,104,-13,110v157,21,243,-80,301,-181v-73,6,-130,18,-168,51v-25,19,-20,80,26,59v33,-6,54,-39,73,-57v3,-3,5,-3,6,0v-10,45,-75,97,-135,68v-25,-22,-18,-69,13,-87v46,-35,119,-45,193,-52v64,-127,147,-230,285,-273v-143,-6,-285,52,-362,128v-31,23,-52,95,2,107v46,4,88,-20,88,-65v-4,-12,0,-21,9,-17v33,69,-74,135,-142,93v-51,-49,3,-125,43,-149v88,-68,221,-115,370,-115v24,0,32,-1,39,14v-14,14,-34,6,-55,17v-112,46,-206,151,-255,261v24,2,42,7,53,20v0,22,-20,2,-33,0v-7,-2,-17,-3,-29,-3v-61,107,-128,201,-288,204","w":453},"G":{"d":"409,-443v117,-30,338,-49,338,80v0,136,-203,177,-325,122v-10,-6,-17,-12,-21,-17v-3,-5,-3,-8,2,-8v49,18,89,47,169,30v80,-7,137,-47,154,-112v-9,-128,-217,-85,-321,-62v-125,37,-266,104,-304,226v3,127,233,56,273,0v7,-10,27,-14,30,0v-13,28,-56,36,-69,70v-22,56,-71,116,-128,139v97,-5,173,-49,226,-98v16,-18,26,-25,30,-23v5,2,0,13,-15,33v-57,63,-155,113,-275,110v-44,1,-79,14,-121,7v-9,-1,-14,-6,-16,-15v26,-34,116,6,158,-21v30,-20,78,-57,99,-94v23,-35,23,-35,39,-57v-52,33,-144,50,-215,25v-34,-17,-46,-69,-27,-116v52,-112,189,-182,319,-219","w":444},"H":{"d":"118,67v-69,4,-113,-58,-76,-113v17,-31,82,-44,97,-5v11,33,-38,60,-56,28v-10,-21,15,-31,24,-36v-31,-8,-66,18,-66,49v0,83,146,64,200,28v176,-119,205,-404,440,-465v-149,4,-312,69,-379,165v-29,41,-11,103,38,96v32,-5,59,-26,66,-54v1,-8,8,-20,15,-14v6,75,-144,125,-165,40v-17,-70,34,-102,82,-140v86,-61,211,-109,353,-110v15,0,33,3,27,14v-50,23,-123,51,-164,99v-50,48,-80,98,-115,156r63,0v63,-105,126,-188,245,-225v24,-5,48,-7,51,19v-5,34,-48,13,-80,19v-51,9,-65,26,-107,71v-82,83,-123,197,-186,291v-10,16,-24,30,-41,42v65,-5,136,-36,169,-72v9,-9,15,-12,18,-8v-28,81,-157,104,-270,102v-2,-26,29,-15,47,-25v76,-32,94,-109,140,-190r-64,0v-83,117,-124,232,-306,238","w":570},"I":{"d":"258,25v-74,40,-265,47,-225,-74v15,-35,80,-68,115,-32v24,31,-25,74,-51,43v-9,-19,0,-34,15,-40v7,-3,7,-4,-1,-4v-73,-8,-90,103,-14,110v153,20,245,-69,295,-171v59,-130,153,-258,300,-301v-143,-6,-286,51,-362,128v-45,29,-45,126,32,106v27,-8,63,-28,57,-64v-2,-12,0,-21,9,-17v34,67,-78,141,-141,93v-56,-42,2,-125,43,-149v88,-69,221,-115,370,-115v23,0,33,-1,39,14v-14,13,-34,6,-56,17v-122,53,-212,161,-267,284v-37,73,-85,138,-158,172","w":441},"J":{"d":"230,107v-89,58,-238,7,-192,-112v11,-41,108,-57,107,7v4,38,-47,51,-57,16v-8,-20,14,-30,16,-42v-36,-16,-73,44,-53,87v20,61,127,59,178,22v121,-79,175,-260,263,-373v50,-70,105,-136,201,-154v-42,-18,-103,5,-156,14v-109,32,-207,89,-245,189v-16,41,-12,91,35,85v40,1,69,-44,82,-66v2,-3,5,-3,7,-1v-3,42,-53,86,-99,86v-95,0,-53,-149,-6,-191v92,-82,219,-145,392,-135v19,1,26,23,4,28v-256,74,-280,409,-477,540","w":451},"K":{"d":"798,-395v0,33,-52,16,-75,26v-83,42,-142,156,-257,184v38,25,36,98,56,145v12,85,161,118,188,26v12,-48,-19,-87,-67,-73v-21,4,-26,35,-40,40v-13,-34,38,-77,83,-58v24,8,46,33,45,68v7,105,-144,136,-202,62v-47,-37,-34,-144,-72,-188v-24,-22,-56,-1,-65,19v-63,98,-123,195,-273,199v-55,-2,-86,-23,-90,-72v1,-46,50,-81,94,-61v28,16,8,68,-26,57v-21,-2,-21,-39,0,-43v7,-1,9,-3,8,-5v-40,-10,-80,38,-55,76v33,51,140,32,186,0v107,-70,140,-190,221,-290v52,-78,101,-129,189,-162v9,-3,8,-4,-2,-4v-134,0,-266,64,-335,144v-21,24,-49,74,-18,101v43,30,92,-6,102,-43v2,-10,6,-18,13,-12v7,73,-131,121,-158,40v-13,-68,40,-107,81,-140v88,-57,202,-96,335,-105v15,0,32,3,27,14v-126,39,-211,146,-270,255v0,5,5,6,16,3v85,-27,123,-50,189,-121v53,-54,67,-73,115,-94v20,-9,55,-11,57,12","w":783},"L":{"d":"45,28v7,11,92,-8,20,-10v-13,4,-20,7,-20,10xm139,26v-26,7,-68,32,-103,18v-20,-25,19,-45,51,-42v58,6,74,-5,110,-41v149,-132,160,-410,429,-425v59,3,106,35,106,93v0,99,-106,156,-214,160v-43,-1,-86,-21,-72,-68v3,-9,9,-13,14,-12v11,7,-11,25,2,36v52,57,186,1,214,-43v32,-27,50,-96,6,-120v-102,-38,-219,19,-266,84v-65,78,-102,194,-170,269v-23,27,-51,52,-83,75v104,23,249,23,304,-43v16,-19,24,-42,43,-42v-19,77,-108,126,-211,129v-68,1,-115,-14,-160,-28","w":501},"M":{"d":"205,60v-87,22,-200,-2,-169,-96v11,-28,75,-54,102,-21v16,26,-9,55,-40,45v-17,-1,-23,-36,-6,-41v7,-2,16,-4,6,-7v-34,1,-70,40,-43,76v59,62,181,28,250,-9v222,-101,271,-386,533,-447v-252,-41,-490,74,-577,254v-15,39,-30,93,6,112v84,44,160,-43,184,-114v3,-9,7,-14,12,-13v4,99,-130,207,-227,136v-69,-85,31,-209,88,-252v106,-89,255,-147,449,-146v46,1,70,1,83,22v3,14,-8,15,-23,17v-163,40,-236,225,-315,349v-7,12,-18,27,-14,40v19,-5,35,-35,57,-59v110,-142,210,-309,410,-361v30,-7,30,8,9,12v-192,40,-246,241,-332,389v-10,23,-44,45,-48,62v61,3,126,-41,165,-70v11,-10,17,-13,20,-8v-33,61,-131,97,-232,97v-16,0,-21,-4,-16,-16v41,-4,49,-15,74,-45v58,-84,107,-213,168,-292v5,-5,4,-6,-2,-3v-72,67,-145,166,-207,249v-33,39,-41,59,-77,68v-20,-12,-11,-37,4,-62r91,-153v23,-38,39,-53,59,-81v5,-7,6,-10,3,-7v-112,112,-183,269,-344,339v-43,21,-77,33,-101,36","w":773},"N":{"d":"203,43v-88,21,-197,2,-169,-92v11,-25,74,-53,98,-20v17,24,-8,53,-38,44v-16,-3,-23,-35,-5,-40v6,-1,14,-4,5,-7v-33,1,-68,39,-41,73v51,61,170,25,235,-4v157,-60,225,-257,351,-351v42,-36,99,-64,146,-79v11,-3,14,-5,8,-8v-246,-28,-455,79,-543,246v-15,35,-29,92,6,110v82,42,152,-43,177,-110v3,-8,6,-12,11,-12v-4,81,-81,169,-184,150v-77,-19,-61,-136,-13,-193v106,-125,259,-201,478,-211v34,0,78,2,93,15v3,23,-16,20,-45,34v-120,74,-227,243,-268,397v74,-72,151,-212,224,-283v89,-85,172,-161,332,-171v33,1,67,10,75,29v-10,13,-19,10,-26,-4v-58,-29,-152,4,-203,30v-146,74,-249,227,-340,359v-28,35,-36,54,-70,59v-21,-15,-8,-36,5,-72v38,-106,93,-204,170,-280v30,-30,33,-36,9,-19v-73,58,-109,102,-178,197v-84,125,-154,175,-300,213","w":653},"O":{"d":"228,-275v65,-23,117,-64,149,-116v8,-13,11,-26,10,-40v-75,19,-136,86,-159,156xm202,-267v32,-79,87,-148,167,-180v-70,-8,-101,30,-143,65v-39,36,-70,80,-89,127v29,-4,51,-8,65,-12xm199,-249v-23,5,-47,10,-71,13v-48,83,-59,275,73,264v89,-6,140,-73,187,-130v48,-61,100,-172,76,-280v-9,-33,-27,-48,-61,-50v-4,55,-37,84,-68,116v-31,27,-68,49,-116,62v-24,46,-27,150,54,134v35,-7,56,-37,85,-43v-17,54,-142,97,-166,18v-11,-31,-4,-77,7,-104xm188,51v-145,1,-145,-190,-91,-294v43,-96,114,-167,204,-212v17,-7,34,-10,51,-10v36,-3,31,15,57,16v71,9,93,50,94,138v-11,106,-58,173,-111,242v-52,54,-113,116,-204,120","w":457},"P":{"d":"574,-428v-211,-56,-396,86,-443,265v-28,78,14,139,99,118v42,-8,77,-45,103,-70v67,-71,96,-204,173,-266v17,-16,40,-32,68,-47xm295,-60v-66,61,-208,43,-201,-63v2,-97,40,-129,92,-191v80,-84,158,-138,305,-147v48,1,74,8,104,22v17,-7,54,-15,62,0v-6,13,-32,6,-47,13v18,16,35,49,35,84v-3,97,-63,152,-154,160v-51,3,-53,-66,-17,-83v35,-18,63,33,29,48v-14,8,-24,3,-32,-5v-3,-4,-5,-4,-7,-1v3,29,49,26,77,13v57,-26,121,-144,48,-205v-130,60,-169,224,-240,341v-25,40,-69,72,-114,92v99,-3,174,-16,217,-68v9,-11,14,-22,13,-31v7,-21,-43,-5,-15,-22v29,-17,39,25,26,49v-60,113,-281,73,-422,106v-14,-1,-22,-5,-24,-11v28,-54,142,-1,204,-40v40,-25,86,-61,107,-96v-14,2,-34,24,-46,35","w":529},"Q":{"d":"209,271v-105,-3,-177,-37,-177,-132v0,-75,30,-108,75,-144v40,-34,228,-119,269,-160v51,-51,89,-95,104,-170v17,-79,-18,-133,-96,-104v-77,26,-136,101,-160,179v-14,60,1,107,59,103v18,6,90,-62,97,-54v-21,42,-121,114,-175,59v-41,-76,9,-178,53,-222v36,-41,103,-90,164,-90v95,0,99,113,57,195v-46,95,-115,151,-226,201v-96,47,-147,74,-184,145v-63,153,162,235,267,129v30,-29,46,-94,20,-131v-31,-46,-137,-48,-148,13v-5,20,15,24,13,35v-26,6,-38,-35,-19,-60v12,-21,45,-37,77,-37v65,5,108,33,107,105v-4,48,-44,107,-89,121v-28,11,-57,18,-88,19","w":412},"R":{"d":"369,-188v73,-26,116,-46,159,-97v39,-49,35,-109,-25,-134v-57,64,-95,122,-134,231xm646,-109v84,35,38,178,-53,172v-107,0,-140,-77,-152,-174v-6,-40,-21,-74,-60,-62v-37,20,-30,41,-60,85v-18,45,-76,83,-104,107v-7,7,1,8,26,5v46,-6,86,-29,106,-58v9,-14,15,-19,19,-17v12,32,-40,63,-64,75v-64,25,-195,36,-279,21v-8,-9,-4,-21,13,-23v44,-4,124,8,160,-15v145,-80,166,-325,289,-431v-146,-20,-260,65,-327,151v-33,44,-74,109,-55,171v11,37,86,40,122,17v26,-17,49,-47,69,-57v5,0,5,5,0,15v-27,49,-132,118,-202,62v-61,-76,12,-189,56,-235v75,-81,195,-161,351,-138v15,-11,71,-19,81,-36v12,27,-43,32,-60,44v43,16,68,66,45,122v-25,57,-70,87,-141,120v38,25,37,99,56,144v12,85,160,119,188,27v14,-47,-18,-85,-66,-73v-23,6,-26,34,-41,40v-11,-35,36,-75,83,-59","w":735},"S":{"d":"192,56v-101,0,-182,-72,-143,-172v29,-82,196,-98,252,-25v39,33,19,117,-28,114v-1,-17,29,-23,29,-46v2,-64,-52,-98,-122,-97v-83,-3,-151,74,-106,151v44,81,243,66,291,-2v83,-135,-95,-207,-74,-359v10,-43,48,-86,102,-85v91,-16,129,104,65,149v-29,23,-86,5,-72,-39v3,-10,16,-23,23,-14v-7,16,-13,51,21,47v47,-7,45,-95,6,-114v-64,-33,-130,18,-116,95v22,78,91,142,98,234v-3,120,-98,166,-226,163","w":456},"T":{"d":"356,160v-136,76,-340,18,-318,-159v16,-201,165,-329,316,-402v83,-34,150,-42,233,-12v55,19,78,29,124,12v34,-9,37,-67,-8,-64v-16,-2,-30,11,-41,8v11,-28,94,-28,89,18v2,62,-78,70,-134,56v-44,-9,-76,15,-104,44v-71,79,-105,226,-161,318v-25,42,-104,100,-158,57v-33,-41,15,-110,62,-81v18,17,6,57,-24,50v-15,2,-14,-28,-27,-18v-8,11,-7,36,10,42v152,11,160,-188,226,-291v31,-59,62,-110,124,-132v6,-3,-2,-7,-26,-12v-109,-22,-192,28,-265,75v-89,66,-181,169,-202,299v-18,133,56,216,195,198v67,-11,123,-48,165,-81v10,-9,17,-12,20,-8v-9,35,-62,64,-96,83","w":440},"U":{"d":"220,-66v1,-74,20,-120,48,-173v-23,-3,-40,3,-47,18v-4,7,-7,10,-10,10v-9,-28,26,-53,66,-43v42,-80,108,-158,186,-196v-124,-3,-214,66,-280,129v-43,48,-81,107,-66,195v10,40,49,71,103,60xm240,-68v47,-17,91,-48,83,-109v-4,-26,-16,-44,-38,-54v-23,40,-49,102,-45,163xm416,27v-81,55,-186,21,-194,-70v-86,16,-142,-27,-141,-115v9,-148,123,-217,227,-272v50,-22,88,-33,154,-34v37,-1,45,15,18,23v-82,36,-140,117,-186,195v33,15,48,47,46,93v-4,50,-49,90,-96,106v9,73,78,104,147,65v102,-59,197,-167,197,-321v2,-64,-51,-73,-84,-35v-25,28,-53,84,-32,125v7,14,27,-17,32,-11v10,13,-18,45,-41,29v-40,-68,13,-187,94,-188v113,36,41,233,-7,286v-32,44,-86,99,-134,124","w":581},"V":{"d":"247,-106v26,-32,46,-63,27,-103v-13,36,-22,71,-27,103xm198,8v-21,17,-34,26,-37,51v-1,8,2,10,7,6v17,-14,19,-26,30,-57xm191,-208v7,-26,37,-37,73,-28v34,-88,103,-175,181,-218v-106,8,-157,42,-227,100v-66,60,-126,114,-125,223v4,64,85,86,130,40v9,-55,18,-89,34,-128v-23,-10,-47,-2,-53,13v-3,6,-6,9,-9,8v-4,0,-5,-3,-4,-10xm169,-49v-103,23,-129,-90,-91,-171v45,-98,174,-201,284,-235v34,-9,64,-13,92,-13v31,0,35,12,13,21v-87,38,-142,130,-184,220v37,55,2,115,-40,145r-6,32v97,-82,229,-142,304,-241v22,-32,43,-76,32,-119v-11,-34,-86,-15,-62,17v7,9,39,-11,27,12v-10,19,-47,7,-48,-15v-9,-50,73,-68,97,-29v32,74,-25,147,-73,192v-73,71,-192,136,-273,203v-43,33,-25,109,-88,122v-26,-3,-17,-46,-5,-65v24,-37,72,-30,73,-97v-17,10,-34,18,-52,21","w":450},"W":{"d":"247,-106v26,-32,46,-63,27,-103v-13,36,-22,71,-27,103xm202,-1v-25,24,-46,35,-47,63v8,12,22,-4,27,-13v4,-7,10,-24,20,-50xm194,-198v-10,-28,31,-55,70,-38v34,-88,103,-175,181,-218v-106,8,-157,42,-227,100v-66,60,-126,114,-125,223v4,64,85,86,130,40v9,-55,18,-89,34,-128v-24,-14,-43,-5,-53,11v-4,7,-8,11,-10,10xm466,50v-106,27,-163,-65,-119,-162v-60,38,-60,41,-119,91v-27,69,-24,92,-75,113v-39,-15,-6,-76,15,-89v9,-9,24,-22,45,-39r8,-34v-35,26,-104,33,-136,-2v-30,-33,-28,-101,-7,-148v45,-98,174,-201,284,-235v34,-9,64,-13,92,-13v31,0,35,12,13,21v-88,40,-142,129,-185,221v39,53,2,114,-39,144r-6,29v51,-42,64,-49,115,-83v29,-53,62,-86,111,-99v24,-5,40,14,30,37v-26,56,-120,38,-136,107v-17,63,4,118,66,123v105,0,167,-92,209,-166v33,-58,68,-174,30,-240v-61,-34,-105,73,-90,141v11,22,19,-8,30,-5v8,14,-14,38,-34,28v-43,-62,4,-191,81,-195v106,41,39,242,-6,301v-40,59,-100,136,-177,154xm378,-150v37,-26,73,-27,92,-52v5,-6,3,-12,-2,-16v-33,1,-68,33,-90,68","w":672},"X":{"d":"186,-83v-10,15,-20,-10,-39,-4v-38,1,-55,74,-21,92v44,24,91,-3,115,-34v45,-49,85,-110,130,-182v-36,-82,-65,-153,-117,-211v-32,-33,-98,-21,-107,22v-16,49,10,96,63,89v7,-2,11,-1,12,3v1,8,-39,20,-52,10v-61,-14,-64,-123,-10,-152v80,-41,133,24,168,82v18,29,40,70,66,124v50,-87,96,-183,204,-208v35,-12,61,32,27,45v-18,5,-51,-5,-71,-1v-30,6,-71,56,-88,80v-11,17,-32,52,-61,105v20,40,38,73,54,100v37,52,50,135,140,128v67,-1,104,-137,27,-157v-47,-15,-93,31,-70,72v3,6,6,10,5,14v-9,9,-25,-3,-27,-19v-18,-69,66,-118,125,-74v62,55,22,186,-68,186v-91,-6,-104,-42,-148,-108v-19,-32,-39,-68,-59,-109r-57,84v-50,64,-101,173,-208,131v-53,-21,-33,-129,35,-129v13,0,34,10,32,21","w":723},"Y":{"d":"576,-374v79,9,189,4,202,-61v-3,-21,-31,-22,-59,-19v-56,11,-100,37,-143,80xm475,-256v17,-40,31,-59,62,-97v-23,-8,-43,-30,-45,-60v-19,22,-37,48,-53,75xm374,-28v24,-68,39,-107,81,-196r-37,-83v-43,73,-80,128,-82,221v2,32,15,51,38,58xm394,-23v104,10,105,-109,72,-181r-43,101xm250,131v-33,-27,-126,-92,-181,-49v-28,49,29,85,90,77v34,-1,72,-12,91,-28xm485,-235v48,96,46,246,-97,234v-19,51,-57,103,-96,129v28,23,57,58,106,41v28,-7,41,-64,6,-73v-9,-3,-21,3,-33,19v-11,-2,-13,-6,-8,-14v10,-15,36,-34,60,-14v13,9,20,21,20,38v3,47,-26,68,-69,70v-50,-3,-62,-21,-103,-49v-58,45,-224,59,-229,-37v3,-54,55,-70,115,-52v27,7,65,26,115,59v48,-29,75,-70,95,-121v-92,-34,-40,-179,-6,-238v13,-25,28,-52,46,-83v-33,-66,-94,-138,-202,-109v-82,17,-95,152,-26,201v19,15,49,24,88,24v5,6,3,11,-6,15v-91,-1,-139,-49,-147,-131v-14,-145,191,-173,268,-81v18,18,32,37,43,55v23,-36,54,-89,93,-107v9,0,13,4,11,13v-25,23,3,59,25,66v51,-50,101,-86,188,-92v63,-3,74,42,40,74v-47,44,-125,62,-224,52v-25,28,-53,68,-73,111","w":545},"Z":{"d":"99,25v9,-57,65,-93,135,-93r111,-151v32,-46,71,-96,116,-150v-86,-13,-159,-78,-257,-67v-46,4,-97,78,-57,120v37,36,119,-5,98,-52v-10,-7,-18,2,-21,-8v13,-21,47,-4,45,23v-5,80,-157,99,-156,3v1,-69,52,-106,118,-111v98,6,156,40,249,65v27,-27,67,-56,114,-39v28,45,-57,76,-111,70v-77,90,-153,203,-228,299v90,13,179,74,263,93v73,7,130,-37,117,-115v-10,-55,-114,-62,-136,-11v-28,34,9,81,44,57v4,-3,8,-9,12,-17v20,24,-15,44,-43,39v-37,-2,-48,-45,-32,-81v24,-55,140,-73,171,-11v49,108,-69,198,-188,157v-59,-21,-153,-78,-220,-90v-32,35,-64,88,-122,94v-14,0,-21,-8,-22,-24xm218,-45v-43,-4,-77,24,-90,54v-4,10,0,15,9,14v29,-7,61,-42,81,-68xm505,-391v28,6,77,-8,76,-31v-28,-9,-53,13,-76,31","w":706},"[":{"d":"63,-101v20,-16,60,-75,84,-96v34,-31,61,-93,96,-123v28,-23,46,-44,81,-51v26,-2,24,24,13,42v-6,11,-16,24,-31,40v29,47,134,33,163,-7v35,-30,41,-123,-7,-141v-85,-32,-158,13,-213,58v-87,68,-147,168,-186,278xm272,-291v-14,-20,7,-34,22,-21v17,-16,23,-25,17,-29v-31,5,-78,59,-95,93v22,-14,41,-28,56,-43xm213,-81v-27,37,-62,77,-121,84v-36,1,-43,-24,-20,-39v40,-13,42,-99,73,-132v-30,34,-58,77,-94,104v-27,12,-15,65,-51,64v-5,0,-10,-6,-14,-18v6,-51,43,-46,58,-93v63,-151,154,-297,317,-349v74,-20,168,1,165,82v2,111,-116,159,-219,121v-8,-3,-15,-9,-21,-17v-35,30,-86,54,-114,101v-29,40,-41,72,-52,115v-3,12,-9,21,-18,25v-10,5,-10,9,-3,11v24,4,77,-35,91,-50v12,-11,19,-14,23,-9","w":191},"\\":{"d":"203,4r-268,-449r19,-2r43,75r232,373","w":247},"]":{"d":"-131,138v103,-1,139,-96,187,-161v22,-37,44,-80,58,-109v-17,0,-29,-1,-38,-1v-58,115,-98,201,-207,271xm217,-362v23,-15,58,4,36,26v-25,11,-65,12,-82,36v-39,33,-63,96,-89,149r40,-1v47,-96,84,-160,171,-207v14,-2,29,2,28,17v-1,29,-40,20,-62,31v-56,40,-75,81,-113,159v30,2,48,2,54,2v6,-1,9,1,9,7v-4,8,-27,11,-70,10v-29,57,-29,57,-48,91v-40,70,-78,140,-149,176v66,-8,102,-26,143,-53v16,-12,30,-31,30,-50v-3,-8,5,-17,11,-15v14,115,-139,121,-235,147v-19,5,-44,12,-57,2v-5,-3,-5,-7,-2,-10v3,-3,2,-3,-3,-1v-25,10,-68,24,-110,27v-92,-4,-160,-18,-160,-104v0,-68,50,-101,105,-118r1,11v-47,18,-85,46,-85,103v0,119,218,81,288,38v88,-53,135,-149,185,-243v-8,-1,-13,-3,-14,-6v0,-12,5,-13,21,-13v40,-80,77,-171,157,-211","w":155},"^":{"d":"188,-306v12,35,83,36,83,79v0,17,-32,18,-36,1v-9,-29,-55,-41,-70,-70v-32,14,-69,19,-71,54v9,24,-17,40,-34,25v-5,-4,-8,-10,-8,-18v19,-34,61,-62,102,-78v-9,-31,7,-56,32,-61v32,6,32,54,2,68xm178,-325v12,-2,16,-24,9,-30v-13,-4,-20,20,-9,30","w":334},"_":{"d":"81,99v-26,32,16,50,52,48v37,-1,63,-11,87,-35v-56,-18,-99,-37,-139,-13xm230,95v28,-82,-93,-97,-170,-74v-59,20,-123,57,-114,132v39,72,193,54,262,20v22,-9,45,-22,69,-38r-45,-19v-33,34,-102,60,-159,34v-41,-24,-12,-86,36,-78v48,-3,79,10,121,23xm353,46v34,-31,71,-130,7,-150v-61,-18,-83,65,-49,110v10,14,23,27,42,40xm411,72v15,6,59,17,69,-4v5,-15,-23,-20,-39,-14v-10,3,-20,9,-30,18xm349,131v6,-14,20,-39,32,-50v-9,-4,-17,-7,-23,-11v-15,20,-25,35,-43,51xm639,220v-92,1,-218,-28,-284,-51v-16,47,29,99,69,67v12,-9,21,-16,32,-6v9,14,-2,23,-17,27v-70,22,-118,-25,-100,-95r-48,-20v-80,61,-197,97,-320,60v-27,-11,-47,-34,-47,-70v12,-92,105,-133,205,-138v72,-1,151,33,117,106r53,15v21,-17,31,-33,45,-53v-42,-24,-89,-68,-72,-136v11,-28,35,-51,76,-50v59,-1,79,65,56,117v-6,16,-18,36,-37,61v8,6,17,9,27,12v21,-26,65,-40,98,-21v26,15,9,52,-15,54v-27,6,-59,-4,-80,-12v-17,16,-21,23,-34,48v86,26,310,90,397,17v45,-30,68,-114,24,-161v-54,-73,-235,-54,-224,57v-1,32,49,50,69,29v9,-10,23,-1,19,11v-26,36,-107,9,-107,-40v0,-80,62,-117,143,-117v88,0,144,44,144,122v0,110,-73,164,-189,167","w":687},"`":{"d":"26,-219v-13,-9,-3,-30,13,-29v13,1,14,17,23,25v4,11,62,33,41,47v-20,-2,-54,-39,-77,-43","w":125},"a":{"d":"15,-49v-3,14,0,21,10,21v30,-4,37,-36,53,-64v10,-19,11,-31,4,-36v-19,-10,-64,62,-67,79xm137,-46v-4,34,-69,76,-75,15v-18,20,-31,31,-41,31v-73,0,-1,-105,18,-126v18,-20,36,-37,62,-23v26,25,-23,78,-19,103v-3,24,14,26,28,15v13,-8,10,-16,27,-15","w":144},"b":{"d":"21,-21v23,7,50,-52,60,-75v8,-21,9,-31,2,-31v-30,3,-55,60,-67,82v-2,10,0,17,5,24xm306,-345v-10,39,-66,12,-97,35v-59,22,-104,110,-135,158v-7,13,-6,16,1,10v31,-22,49,-6,32,39v-20,50,-38,98,-98,103v-13,0,-20,-8,-20,-23v0,-58,48,-103,80,-159v40,-64,85,-120,137,-159v20,-14,43,-24,68,-24v21,0,32,9,32,20","w":129},"c":{"d":"50,-15v-19,24,-64,19,-61,-19v7,-44,47,-97,77,-116v19,-13,48,-2,49,18v-5,12,-24,-3,-36,1v-16,0,-59,65,-62,80v-7,26,21,25,34,10v12,-9,16,-23,28,-22v2,13,-18,36,-29,48","w":107},"d":{"d":"17,-46v0,24,21,19,33,0v9,-12,43,-60,30,-80v-14,-8,-64,69,-63,80xm141,-54v-7,26,-25,54,-60,55v-12,-1,-18,-11,-19,-32v-17,20,-31,31,-41,31v-73,0,-1,-105,19,-126v17,-20,40,-40,61,-20v4,6,16,-9,36,-43v34,-61,82,-119,132,-155v20,-15,43,-23,69,-25v20,3,31,10,31,21v-9,39,-63,15,-97,34v-76,42,-118,136,-167,210v-17,28,-30,50,-19,77v14,9,38,-16,43,-23v4,-6,8,-7,12,-4","w":150},"e":{"d":"87,-154v34,-2,36,30,16,49v-19,30,-73,39,-89,69v7,38,70,-2,81,-14v3,-3,6,-3,8,-1v-4,28,-47,52,-87,52v-17,0,-26,-8,-26,-24v6,-54,44,-125,97,-131xm28,-72v25,-13,60,-32,65,-54v-24,-24,-56,31,-65,54","w":119},"f":{"d":"674,-345v-14,103,-138,138,-254,119v-38,-9,-88,-39,-86,-77v15,4,23,32,45,43v94,55,299,20,271,-109v-44,-86,-224,-84,-322,-42v-117,49,-195,148,-250,261v19,0,42,0,69,1v2,32,-49,15,-76,19v-61,110,-98,258,-201,320v-21,12,-44,19,-69,21v-36,0,-40,-31,-15,-40v26,-8,55,0,83,-14v90,-47,128,-196,181,-287v-37,-3,-55,3,-52,-15v8,-13,38,-2,60,-6v84,-165,182,-292,402,-313v99,-1,164,20,204,76v8,11,10,26,10,43","w":108},"g":{"d":"75,-133v-31,5,-51,56,-51,92v0,11,6,12,17,5v21,-11,43,-49,45,-76v0,-13,-3,-20,-11,-21xm109,-131v-4,59,-33,99,-62,150v-61,100,-179,189,-302,226v-79,23,-215,26,-263,-20v-37,-22,-65,-86,-33,-130v9,-15,39,-36,55,-33v-11,18,-48,31,-51,61v2,153,257,133,367,70v73,-32,162,-110,201,-170v18,-28,23,-39,15,-33v-30,21,-39,-6,-34,-45v6,-49,29,-99,77,-99v19,0,30,9,30,23","w":124},"h":{"d":"102,-155v31,3,22,31,9,58v-8,20,-30,55,-29,75v14,17,33,-19,48,-12v2,18,-52,56,-68,21v-9,-29,18,-62,28,-89v13,-36,-10,-32,-26,-20v-31,21,-50,67,-58,111v-1,8,-6,11,-14,11v-12,-8,-2,-40,3,-53v44,-110,131,-247,226,-307v16,-9,45,-13,45,11v0,29,-36,31,-60,40v-69,37,-115,105,-158,182v22,-15,28,-26,54,-28","w":148},"i":{"d":"63,-154v13,-2,19,4,15,15v-17,25,-71,71,-57,113v19,10,34,-22,49,-21v7,22,-28,46,-59,47v-29,-3,-17,-50,-7,-70v8,-21,39,-79,59,-84xm103,-211v15,6,11,34,-9,30v-11,2,-18,-21,-8,-26v5,-3,11,-4,17,-4","w":91},"j":{"d":"-239,190v0,-40,56,-5,89,-22v94,-50,160,-180,206,-279v14,-31,-24,-12,-28,-28v0,-6,4,-9,11,-9v20,1,37,-11,59,-6v5,1,6,4,5,8v-2,5,-8,7,-19,8v-43,123,-120,254,-220,324v-25,16,-49,25,-71,25v-21,0,-32,-9,-32,-21xm99,-211v15,6,11,34,-9,30v-11,2,-18,-21,-8,-26v5,-3,11,-4,17,-4","w":98},"k":{"d":"122,-133v0,33,-34,58,-68,62v4,39,36,68,64,38v7,-6,12,-7,14,-4v0,20,-53,57,-75,27v-14,-18,-18,-37,-20,-71v30,-5,40,-8,54,-31v6,-12,5,-18,-3,-18v-54,0,-69,68,-82,118v-4,15,-27,18,-21,-7v34,-135,133,-270,235,-341v16,-10,44,-13,46,11v-5,29,-37,28,-61,40v-70,34,-115,105,-158,182v22,-15,28,-26,54,-28v16,-1,21,8,21,22","w":145},"l":{"d":"-4,-53v46,-110,132,-248,227,-307v16,-9,45,-13,45,11v-3,29,-36,30,-60,40v-90,48,-159,165,-192,272v-3,16,6,18,18,11v8,-5,18,-21,27,-18v13,14,-18,31,-27,39v-12,7,-43,11,-43,-15v0,-11,2,-22,5,-33","w":95},"m":{"d":"193,-31v0,30,-63,48,-68,10v-1,-34,36,-69,36,-103v-10,-15,-30,6,-34,15r-42,98v-6,8,-11,12,-22,11v-10,-32,43,-84,40,-126v-45,-13,-47,78,-75,107v-8,13,-11,18,-24,19v-15,-6,0,-19,8,-37v13,-30,33,-52,33,-87v-14,-21,-32,15,-45,8v7,-23,20,-37,46,-39v15,1,27,9,26,24v9,-5,23,-25,41,-24v14,4,16,7,17,28v9,-21,53,-43,58,-7v1,20,-36,88,-39,105v4,31,31,1,44,-2","w":215},"n":{"d":"72,-23v0,-35,40,-69,36,-106v-63,-1,-48,115,-104,129v-11,-7,-1,-14,5,-29v9,-22,40,-70,37,-98v-12,-23,-32,15,-42,7v5,-20,21,-33,45,-35v16,3,26,10,23,32v17,-16,22,-31,46,-31v20,0,22,22,14,40v-2,19,-43,77,-32,97v15,12,27,-14,42,-13v-4,28,-70,49,-70,7","w":162},"o":{"d":"19,-30v36,17,49,-30,64,-56v7,-13,8,-25,6,-33v-3,-8,-9,-9,-18,-3v-19,12,-46,41,-56,64v-5,13,-4,22,4,28xm166,-140v-2,14,-24,20,-43,15v-10,-2,-14,1,-13,10v-4,44,-38,112,-86,115v-71,-11,-12,-109,17,-122v17,-13,26,-29,46,-33v25,2,37,21,66,10v8,-2,12,-1,13,5","w":133},"p":{"d":"97,0v-37,2,-46,-43,-21,-65v12,-17,37,-33,30,-57v-17,-18,-42,6,-50,26v-53,105,-89,238,-189,292v-23,17,-89,24,-93,-6v9,-37,65,-17,101,-33v65,-29,124,-166,151,-230v3,-6,2,-7,-3,-4v-5,3,-8,3,-10,-1v5,-19,35,-40,38,-62v3,-19,31,-39,47,-23v0,10,-15,9,-19,15v-2,3,1,3,9,1v55,-10,51,55,17,84v-18,15,-28,29,-11,41v27,4,41,-30,62,-34v-6,27,-29,53,-59,56","w":165},"q":{"d":"43,-30v22,-19,36,-41,46,-69v9,-23,5,-33,-16,-26v-25,15,-56,54,-50,93v1,10,9,11,20,2xm-48,230v-43,0,-100,47,-125,8v14,-40,97,-17,127,-47v45,-46,89,-109,104,-186v9,-59,-31,26,-53,-14v-17,-66,30,-142,98,-146v32,12,17,32,4,73v-37,108,-60,230,-143,290v-7,6,0,6,22,2v66,-17,125,-48,132,-119v1,-9,3,-14,7,-16v17,90,-75,155,-173,155","w":140},"r":{"d":"21,-12v-7,15,-31,16,-22,-5v12,-36,40,-64,38,-110v1,-17,-43,-7,-20,-26v29,-8,49,6,43,45v11,-42,39,-55,79,-40v5,0,11,1,20,1v-14,10,1,21,-20,21v-14,2,-40,-12,-52,-1v-25,20,-52,86,-66,115","w":119},"s":{"d":"55,-14v-22,32,-102,6,-67,-27v11,-5,13,-27,27,-21v6,7,-24,30,-5,38v37,14,48,-37,33,-71v-26,-44,34,-82,60,-46v5,7,12,5,12,17v-20,16,-32,-22,-50,-2v-11,23,18,51,6,84v-3,10,-9,18,-16,28","w":111},"t":{"d":"62,-128v-16,28,-44,62,-46,98v3,12,18,13,25,2v12,-9,-4,-36,22,-32v13,22,-13,64,-43,60v-17,-1,-28,-13,-27,-31v4,-35,24,-67,43,-98v-8,0,-11,-3,-10,-8v1,-5,8,-9,21,-12v16,-14,40,-73,70,-59v2,26,-29,36,-40,58v17,9,56,-1,65,12v0,3,-4,4,-12,4v-27,0,-16,10,-68,6","w":103},"u":{"d":"15,-37v0,27,29,8,37,-3v21,-30,37,-86,63,-112v22,-3,14,11,5,30v-10,21,-41,67,-38,96v16,22,38,-19,51,-11v-10,17,-27,36,-53,38v-16,-2,-27,-11,-23,-32v-17,18,-23,28,-46,32v-22,-4,-25,-25,-16,-49v4,-15,37,-82,43,-94v4,-13,14,-15,21,-7v3,35,-44,75,-44,112","w":147},"v":{"d":"38,-25v32,-9,63,-48,74,-77v6,-23,-7,-28,-28,-15v0,38,-25,67,-46,84v-7,5,-6,8,0,8xm-14,-133v17,-21,70,-37,91,-9v12,16,29,-23,50,-6v9,4,17,29,35,24v15,0,37,-17,43,0v-11,23,-60,11,-73,31v-26,38,-55,93,-114,93v-26,0,-23,-19,-6,-32v22,-20,61,-48,50,-92v-9,-23,-48,-11,-65,-4v-5,2,-8,0,-11,-5","w":164},"w":{"d":"-14,-131v22,-26,90,-37,99,7v7,29,-22,64,-36,80v-11,11,-13,17,-7,18v31,-6,56,-43,73,-65v6,-7,11,-9,15,-6v7,14,-30,56,-2,72v37,8,65,-55,39,-86v-10,-11,-36,2,-36,-19v-4,-36,86,-6,108,-17v9,-5,14,-3,15,5v-3,14,-26,27,-49,22v-14,-3,-18,0,-13,10v20,49,-12,124,-72,107v-10,-3,-23,-20,-20,-34v1,-8,-2,-7,-10,2v-18,22,-56,46,-89,30v-8,-26,23,-28,36,-52v15,-19,36,-38,25,-65v-9,-23,-47,-8,-66,-2v-5,2,-8,0,-10,-7","w":236},"x":{"d":"72,-39v-27,33,-68,57,-100,24v-19,-20,6,-69,30,-42v5,9,2,23,-6,26v-4,1,-5,4,-2,8v41,13,70,-35,87,-64v20,-32,-22,-49,-45,-28v-14,4,-12,-8,-5,-16v20,-22,71,-25,75,14v28,-19,37,-32,73,-36v22,-2,30,21,15,30v-23,5,-50,-6,-70,15v-28,12,-55,80,-7,85v9,1,25,-11,27,1v3,12,-19,21,-29,22v-28,1,-41,-12,-43,-39","w":181},"y":{"d":"80,-108v7,21,6,51,-4,91v26,-43,42,-72,48,-87v7,-14,4,-23,-9,-27v-13,-4,-25,4,-35,23xm68,-128v19,-25,38,-30,74,-16v17,-7,24,-12,42,-8v12,4,13,22,-6,20v-30,4,-29,22,-45,53v-66,140,-192,279,-356,325v-79,21,-214,26,-263,-20v-70,-32,-54,-174,25,-172v6,2,3,6,-8,11v-35,17,-59,57,-37,105v51,101,258,78,357,24v67,-27,158,-109,188,-163v28,-46,46,-177,-35,-166v-17,2,-19,26,-32,15v-2,-40,77,-52,96,-8","w":174},"z":{"d":"151,-37v-7,40,-82,48,-114,24v-20,-7,-30,9,-43,13v-17,-11,6,-37,23,-35v19,-6,35,-48,51,-61v26,-20,11,-31,-14,-35v-24,-6,-39,9,-49,19v-15,-19,11,-44,38,-42v32,2,58,20,90,6v23,-9,26,20,9,20v-36,1,-45,35,-67,54v-10,10,-18,23,-23,39v15,21,70,13,84,-3v8,-4,13,-9,15,1","w":154},"{":{"d":"128,123v-95,0,-85,-129,-29,-184v26,-41,55,-55,34,-101v-9,-24,-44,-15,-52,-32v0,-6,13,-12,37,-17v85,-23,124,-48,177,-136v53,-83,72,-116,158,-127v34,-1,40,31,17,37v-24,6,-46,-9,-71,6v-52,32,-69,69,-112,138v-27,45,-77,78,-151,99v49,35,34,91,-3,129v-26,31,-66,81,-47,135v13,35,66,30,94,13v29,-19,44,-3,12,18v-16,12,-38,22,-64,22","w":253},"|":{"d":"70,-133v-30,5,-51,56,-51,92v0,11,6,12,17,5v21,-11,43,-48,45,-76v0,-13,-3,-20,-11,-21xm-76,173v-58,24,-155,14,-163,-45v-3,-31,45,-32,49,-5v6,40,60,53,105,32v64,-27,101,-94,131,-155v6,-13,6,-20,0,-20v-27,17,-34,28,-47,6v-10,-60,16,-140,75,-140v57,0,23,57,11,105v-37,100,-74,176,-161,222","w":115},"}":{"d":"210,-474v97,0,85,129,31,183v-27,41,-58,56,-35,101v7,14,20,20,33,22v13,1,19,4,19,10v0,7,-13,12,-37,18v-85,21,-124,48,-177,136v-53,83,-72,115,-158,127v-20,-2,-30,-8,-31,-19v6,-40,54,-4,85,-25v51,-34,69,-69,112,-137v27,-45,77,-78,151,-99v-49,-37,-34,-90,3,-129v26,-31,66,-82,47,-135v-13,-37,-66,-30,-94,-14v-28,19,-45,4,-12,-18v17,-12,38,-21,63,-21","w":335},"~":{"d":"539,-301v17,-8,24,-29,11,-42v-16,1,-26,28,-11,42xm417,-304v23,-23,-15,-66,-16,-19v1,5,7,11,16,19xm284,-307v15,-10,20,-18,12,-32v-8,-8,-18,-1,-20,9v-1,7,1,15,8,23xm419,-284v-26,43,-118,34,-144,-3v-70,53,-168,-72,-243,8v-21,20,-6,68,26,59v16,-13,40,14,17,19v-40,0,-70,-11,-75,-47v6,-52,53,-73,111,-74v55,-3,90,32,135,32v7,0,13,-3,20,-8v-20,-21,-3,-61,27,-61v15,0,27,21,23,37v-2,8,-10,17,-23,27v22,30,90,33,115,3v-27,-11,-37,-71,4,-73v32,1,32,49,15,68v20,20,77,20,99,4v-29,-23,-2,-76,35,-64v28,16,8,59,-14,66v88,42,179,-39,272,-24v33,5,60,49,36,78v-10,12,-19,24,-31,11v-5,-15,10,-37,-15,-46v-86,-24,-210,51,-273,-11v-28,24,-89,24,-117,-1","w":2},"\u00a0":{"w":133}}});Cufon.registerFont({"w":88,"face":{"font-family":"Diehl Deco","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":"-37.8463 -422 759 127.675","underline-thickness":"18","underline-position":"-45","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":143},"\u00a0":{"w":143},"!":{"d":"21,-92r25,-1r1,-232v-9,4,-30,-5,-25,10xm52,-37v-18,-17,-58,9,-33,29v3,4,8,8,14,12v20,-3,37,-26,19,-41","w":69},"\"":{"d":"18,-248r26,0v-2,-29,3,-64,-2,-89r-25,2xm71,-248r25,0r-1,-88v-8,-2,-17,1,-26,2","w":113},"#":{"d":"60,-28r38,-89r60,0r-33,82r23,8r38,-90r74,-1v2,-8,-1,-17,-2,-26v-17,2,-40,0,-60,1r23,-55v19,-1,40,2,57,-1r-2,-26v-8,2,-32,1,-44,1v11,-32,27,-62,35,-94v-9,0,-24,-14,-26,0r-37,95r-61,0v11,-32,28,-63,36,-96v-8,-1,-25,-14,-26,0r-37,96v-32,0,-58,-1,-78,-2r1,25r66,2r-24,56r-61,-2r1,25r49,2r-34,81xm193,-198r-24,56r-60,0r24,-56r60,0","w":298},"$":{"d":"20,-74v5,26,-8,74,34,68v12,5,33,12,51,12r-2,47r25,0r1,-47v87,1,94,-131,37,-173v-10,-12,-27,-24,-36,-33r0,-105v32,-4,24,45,54,36v7,-19,-12,-32,-12,-50v0,-19,-26,-4,-42,-10v-1,-10,1,-23,-1,-32v-8,-1,-17,1,-26,2v-2,10,9,30,-4,31v-36,12,-71,35,-55,83v8,24,39,44,61,58r0,170v-38,-6,-56,-11,-62,-51v-4,-11,-20,-22,-23,-6xm130,-168v33,25,61,72,39,127v-10,13,-23,20,-40,23xm105,-215v-28,-10,-58,-58,-18,-80v6,-4,12,-7,18,-8r0,88","w":224},"%":{"d":"323,-314v0,-7,-22,-23,-25,-10r-37,53r-194,258r20,14xm122,-150v75,-20,73,-183,-23,-182v-103,-10,-116,161,-28,182v13,6,38,4,51,0xm125,-303v57,40,27,164,-56,130v-38,-14,-47,-88,-17,-119v19,-17,44,-26,73,-11xm323,-2v75,-20,73,-184,-23,-181v-102,-10,-116,159,-28,182v14,4,39,2,51,-1xm326,-154v55,36,28,159,-45,131v-50,-3,-59,-89,-28,-120v19,-18,45,-27,73,-11","w":387},"&":{"d":"166,-311v11,3,21,-4,13,-13v-61,-22,-150,-24,-139,55v5,23,19,46,43,51v-69,15,-83,136,-32,182v58,54,219,32,187,-72v-4,-17,-14,-36,-29,-57v81,-3,192,-19,152,-112v-8,-1,-14,1,-15,7v32,81,-70,89,-159,86v-41,3,-74,15,-81,52v-4,8,15,27,20,11v1,-30,24,-39,50,-44v43,21,64,89,18,120v-62,44,-166,4,-154,-82v9,-53,48,-86,113,-80v12,-2,26,-8,20,-23v-51,10,-122,-7,-104,-67v15,-28,59,-25,97,-14","w":390},"'":{"d":"18,-248r26,0v-2,-29,3,-64,-2,-89r-25,2","w":60},"(":{"d":"109,-321v-8,1,-22,-3,-24,4r-23,36v-38,54,-59,141,-16,206r43,70r20,0v-57,-66,-89,-179,-33,-267v11,-17,20,-34,33,-49","w":117},")":{"d":"28,-291v66,78,49,221,-20,286v8,-1,20,2,24,-4v23,-42,66,-97,65,-153v-1,-55,-41,-118,-68,-159r-21,0","w":117},"*":{"d":"102,-273v2,-25,3,-49,11,-69r-41,0v13,15,16,36,19,67v-27,-10,-47,-18,-64,-32r-12,39v19,-11,49,-1,70,3v-17,22,-30,36,-50,50r33,24v1,-29,12,-41,25,-66v15,21,25,40,32,63r33,-24v-25,-6,-35,-22,-54,-43v24,-7,42,-11,69,-11r-12,-38v-13,19,-35,28,-59,37","w":186},"+":{"d":"82,-61r26,-1r2,-68v21,-1,47,3,64,-2r-2,-25r-62,2v-1,-21,3,-47,-2,-64r-26,2r2,62v-27,0,-50,-1,-68,-2r1,25r67,2v0,27,-1,50,-2,69","w":190},",":{"d":"46,2v-1,14,-13,24,-25,29r1,8v35,-4,65,-50,37,-78v-19,-18,-54,13,-32,31v5,3,12,15,19,10"},"-":{"d":"18,-147v22,-6,59,-3,87,-2r2,-25v-25,5,-58,2,-87,2","w":123},".":{"d":"41,4v20,-3,38,-25,20,-41v-19,-17,-58,9,-34,29v4,4,9,8,14,12"},"\/":{"d":"2,-1r24,8r145,-368v-5,-5,-17,-3,-24,-8r-24,69","w":172},"0":{"d":"67,-34v46,48,174,31,181,-37v50,-104,-13,-248,-142,-206v-59,24,-96,75,-83,161v5,31,19,65,44,82xm176,-30v-134,36,-180,-168,-71,-221v91,-47,174,71,125,166v-11,26,-27,46,-54,55","w":288},"1":{"d":"67,-287v-4,26,-25,38,-49,44v1,20,28,0,42,3r-1,224v-6,8,-24,7,-17,24v17,-3,58,11,57,-17r-16,-9v0,-44,-1,-87,-1,-131v-1,-44,0,-88,3,-131v-3,-5,-8,-8,-18,-7","w":117},"2":{"d":"20,-10v-3,22,14,22,27,11r190,-4v0,-7,1,-12,-3,-17r-160,3v66,-47,151,-90,141,-202v-6,-72,-143,-61,-169,-7v-1,13,1,21,16,20v7,-47,96,-61,127,-25v27,126,-92,167,-169,221","w":257},"3":{"d":"164,-217v-1,-69,-120,-72,-144,-17v-3,9,8,17,18,9v16,-40,84,-34,106,-2v6,52,-34,74,-78,83v-2,1,-8,7,-6,15v64,-1,137,21,120,100v-24,76,-105,106,-194,119v-3,32,39,11,66,9v75,-25,153,-67,149,-169v-1,-44,-40,-58,-68,-75v20,-13,30,-41,31,-72","w":222},"4":{"d":"189,-79v2,29,-2,72,9,90r16,-1v6,-26,-6,-63,3,-89v28,1,66,6,84,-6v1,-31,-50,-10,-85,-16r-2,-167v-33,-6,-49,35,-72,51v-35,46,-79,81,-121,119v-5,18,6,23,23,19r145,0xm197,-234v-2,44,2,94,-5,133v-37,7,-86,1,-129,4v8,-32,43,-40,58,-66v25,-23,46,-53,76,-71","w":320},"5":{"d":"171,-262v-42,2,-93,-10,-117,9v-8,31,-14,65,-25,93v-5,17,3,30,22,28v65,-26,145,10,125,90v-26,83,-93,120,-184,136v-15,7,-9,16,3,23v101,-24,207,-63,207,-176v0,-78,-60,-117,-143,-97v-2,-1,-3,-2,-6,-2v2,-28,7,-54,15,-76v28,-12,68,-5,103,-4v10,-8,8,-18,0,-24","w":222},"6":{"d":"224,-28v80,-56,41,-216,-69,-205v-39,0,-68,15,-93,29v26,-51,56,-101,125,-109v5,-5,5,-8,5,-16v-116,7,-185,114,-168,243v12,80,134,111,200,58xm202,-37v-32,17,-96,24,-122,-6v-45,-29,-48,-129,5,-155v76,-38,185,8,156,107v-5,21,-18,39,-39,54","w":286},"7":{"d":"22,-253v6,37,107,9,158,15v-42,112,-116,198,-130,339v1,7,12,12,21,7v8,-90,43,-156,75,-223v17,-39,38,-91,67,-119v6,-13,5,-21,-8,-24","w":236},"8":{"d":"92,-193v-78,15,-101,170,-11,192v95,30,179,-57,129,-145v-14,-24,-46,-34,-69,-49v30,-20,75,-43,55,-97v-12,-40,-72,-50,-115,-32v-21,9,-41,32,-38,66v2,31,25,55,49,65xm66,-151v55,-68,174,15,124,97v-22,37,-101,51,-132,10v-31,-25,-20,-86,8,-107xm128,-209v-25,11,-48,-18,-60,-35v-24,-55,55,-89,103,-53v33,43,-14,71,-43,88","w":245},"9":{"d":"73,67v-1,35,34,11,50,2v79,-44,148,-122,129,-248v-7,-76,-113,-134,-185,-79v-58,34,-60,133,-4,167v37,36,127,22,150,-14r16,-19v-7,108,-76,156,-156,191xm195,-114v-39,36,-131,22,-142,-25v-38,-75,49,-150,127,-104v30,16,59,46,43,93v-6,17,-17,28,-28,36","w":276},":":{"d":"41,4v20,-3,38,-25,20,-41v-19,-17,-58,9,-34,29v4,4,9,8,14,12xm20,-156v4,26,47,28,48,-3v1,-21,-40,-26,-46,-8v-2,3,-3,7,-2,11"},";":{"d":"46,2v-1,14,-13,24,-25,29r1,8v35,-4,65,-50,37,-78v-19,-18,-54,13,-32,31v5,3,12,15,19,10xm21,-156v4,26,47,28,49,-3v1,-21,-40,-26,-46,-8v-3,3,-4,7,-3,11"},"<":{"d":"210,-240v20,-14,46,-3,34,-43v-7,-5,-14,8,-18,9r-206,113v-2,19,4,13,22,23r186,97v5,14,23,12,21,-6v1,-14,-6,-23,-20,-17r-175,-93","w":267},"=":{"d":"16,-204r1,25r157,1v0,-8,4,-29,-9,-25xm17,-126r1,26r154,2v9,-2,0,-17,2,-28v-45,4,-116,1,-157,0","w":190},">":{"d":"58,-240v-20,-14,-45,-2,-35,-43v7,-4,13,6,18,9r207,113v2,19,-4,13,-22,23r-186,97v-7,15,-23,11,-22,-6v0,-13,7,-23,21,-17r175,-93","w":267},"?":{"d":"174,-174v43,-23,43,-124,-3,-142v-30,-20,-88,-15,-117,0v-43,-7,-28,41,-34,68v5,15,18,4,23,-7v5,-43,34,-51,80,-50v53,-3,72,76,40,109v-30,34,-98,42,-94,105v42,16,20,-43,56,-51xm80,5v18,-2,37,-25,19,-40v-20,-17,-58,9,-34,29v4,3,9,7,15,11","w":224},"@":{"d":"136,-139v-3,-61,57,-134,105,-83v2,4,3,9,3,14v-10,49,-27,102,-75,113v-26,1,-31,-21,-33,-44xm305,-36v-109,54,-273,3,-275,-122v6,-102,64,-171,166,-176v117,-6,191,127,120,222v-16,22,-74,24,-73,-9v3,-40,31,-70,27,-116v-30,3,-20,-30,-54,-27v-64,6,-97,60,-102,125v0,36,13,64,49,64v28,-3,48,-19,62,-37v3,24,22,38,47,38v68,0,92,-57,96,-124v-4,-98,-72,-149,-171,-153v-115,4,-184,73,-190,186v6,111,86,166,195,173v41,0,77,-18,109,-30","w":375},"A":{"d":"41,-1v20,-1,12,-15,9,-29r49,-101r153,0v16,43,40,69,56,113v-5,11,12,21,25,17v4,1,17,-6,12,-12v-68,-87,-104,-217,-163,-315v-24,-6,-20,17,-34,39r-100,217r-18,45v-4,3,-10,7,-10,14v0,8,10,15,21,12xm113,-153v17,-47,40,-102,62,-147r64,147r-126,0","w":366},"B":{"d":"21,-20v1,40,88,18,126,11v64,-11,95,-134,28,-173v-13,-7,-28,-16,-46,-21v10,-16,38,-26,38,-53v0,-71,-68,-75,-137,-77v-9,1,-14,20,-1,21v4,1,5,3,7,6r0,278v-8,6,-5,6,-15,8xm176,-141v36,71,-36,134,-111,115v-5,-49,-7,-109,-2,-159v54,-4,94,9,113,44xm59,-308v43,-1,92,17,76,63v-12,23,-36,37,-74,34v-2,-33,-2,-63,-2,-97","w":234},"C":{"d":"276,-331v-30,15,-63,-22,-108,-8v-93,18,-148,72,-148,184v6,114,102,174,230,153v29,-12,70,-19,72,-59v-32,-5,-44,33,-79,38v-140,25,-237,-81,-183,-217v25,-66,125,-90,206,-59v5,14,11,25,33,24v6,-23,-11,-44,-23,-56","w":341},"D":{"d":"30,-338v-8,12,6,21,15,23r2,284v-20,-2,-30,2,-27,24v146,26,281,-35,299,-157v21,-146,-131,-178,-289,-174xm68,-314v108,2,219,16,228,120v-5,113,-103,181,-227,164","w":341},"E":{"d":"29,-1r165,-3v9,-6,13,-17,11,-34v-10,-6,-16,-3,-20,6v-30,15,-80,9,-122,9v2,-48,-4,-104,3,-147v28,2,67,-5,82,9v14,3,20,-7,20,-20v0,-39,-36,-2,-73,-12v-10,0,-23,2,-31,0v-1,-41,-8,-85,-4,-123r98,2v5,8,14,19,27,13v0,-16,-3,-24,-6,-37v-51,-3,-98,3,-154,-1v-14,12,5,17,11,24r0,290v-4,6,-17,13,-7,24","w":225},"F":{"d":"26,-12v-2,18,33,18,43,7v2,-12,-7,-12,-11,-18r0,-143v29,-8,60,4,90,4v14,-10,3,-33,-6,-39v-20,11,-57,12,-84,6r0,-115v36,0,92,-17,108,13v24,7,17,-18,10,-31v-13,-26,-60,1,-102,-7v-18,1,-42,-4,-54,4v21,69,9,172,13,265v-1,23,2,44,-7,54","w":203},"G":{"d":"308,-182v-36,3,-98,-13,-110,6v0,3,1,7,1,12v22,7,57,2,85,2v-1,39,5,83,-2,117v-73,31,-167,20,-205,-30v-44,-58,-38,-171,19,-209v33,-22,92,-40,140,-20v7,16,12,37,34,38v11,-24,-18,-48,-24,-65v-127,-17,-203,29,-225,133v-29,171,151,238,285,164","w":329},"H":{"d":"27,-23v-7,10,-12,23,4,23v10,-1,35,6,33,-11v-1,-3,-4,-8,-10,-14r2,-159r185,2r2,159v-10,12,-7,30,15,26v18,2,25,-17,9,-26v-11,-99,6,-186,1,-292v14,-10,11,-25,-12,-25v-11,0,-29,4,-21,16v19,23,8,77,8,115r-188,0r0,-104v18,-8,8,-32,-11,-29v-16,1,-31,13,-15,26","w":298},"I":{"d":"45,-2v23,3,14,-23,5,-30r2,-279v8,-8,10,-11,13,-22v-15,-7,-33,-8,-45,0v0,11,6,14,9,23r2,276v-4,7,-10,13,-9,25v3,7,14,5,23,7","w":84},"J":{"d":"195,-331v-16,-13,-52,1,-29,19r-2,206v-2,47,-12,89,-60,86v-39,1,-58,-31,-47,-70v-14,-11,-38,-5,-37,13v25,21,14,76,71,76v152,18,75,-202,104,-330","w":215},"K":{"d":"58,-6v0,-10,1,-16,-6,-18r4,-140v72,57,127,137,227,165v17,3,33,2,48,-4v3,-33,-51,-8,-79,-25v-67,-41,-128,-99,-180,-155v42,-36,88,-82,124,-123v10,-7,37,-2,31,-22v-56,-17,-81,54,-118,82v-19,19,-33,38,-55,48v-5,-32,-2,-74,-3,-112v12,-11,4,-27,-13,-24v-20,-2,-24,21,-8,28r0,211v1,31,-6,66,-5,90v7,10,22,10,33,-1","w":330},"L":{"d":"22,-14v0,28,32,10,51,16v46,-6,106,-2,145,2v10,-8,11,-22,15,-38v-18,-23,-22,16,-51,10v-41,0,-86,5,-125,1r-1,-195v-1,-33,-9,-79,7,-102v6,-23,-19,-19,-37,-17v-13,6,-2,19,5,28r1,276v-2,8,-4,16,-10,19","w":252},"M":{"d":"58,-331v-17,4,-1,21,6,30r-23,219v-3,23,-7,51,-17,62v-9,12,-2,14,10,20v17,2,44,-5,29,-19v-12,-73,16,-167,20,-247v1,-6,3,-10,4,-12v35,84,80,162,123,238v49,-70,78,-171,121,-247v20,75,27,182,38,264v-6,2,-14,16,-5,20v26,6,52,-1,33,-19r-44,-280v-1,-14,12,-15,12,-29v-14,-2,-25,-5,-37,0r-118,252r-131,-251v-9,-1,-16,-1,-21,-1","w":425},"N":{"d":"29,-2v20,12,35,-15,21,-32r3,-248r181,244v10,15,23,49,47,31r-1,-295v3,-8,7,-15,9,-24v-1,-13,-37,-13,-40,-1v18,73,9,184,11,278r-194,-252v-10,-18,-19,-36,-46,-27v-2,16,9,18,9,33r-3,263v-7,13,-6,24,3,30","w":302},"O":{"d":"317,-43v60,-42,64,-186,10,-237v-46,-69,-221,-80,-269,-3v-50,47,-50,184,0,234v54,63,201,66,259,6xm40,-178v2,-108,116,-168,222,-122v84,37,113,201,25,255v-24,15,-54,26,-91,27v-102,1,-149,-64,-156,-160","w":383},"P":{"d":"33,-230v1,76,4,169,-10,231v6,5,29,7,34,-1r-4,-143v40,2,69,-5,94,-21v26,-32,35,-89,11,-130v-20,-33,-86,-51,-136,-37v-2,2,-2,4,-2,8v12,19,10,59,13,93xm155,-237v-4,51,-46,77,-101,66r0,-140v65,-3,90,22,101,74","w":194},"Q":{"d":"33,-241v-44,138,34,266,192,244r75,43v93,49,212,72,348,79v48,-1,96,-3,111,-35v-1,-7,-8,-11,-17,-8v-162,49,-369,-19,-480,-87r0,-4v82,-36,131,-208,41,-276v-48,-66,-221,-69,-250,13v-9,9,-15,19,-20,31xm147,-309v127,-9,206,65,173,190v-20,57,-63,112,-146,101v-77,-10,-130,-60,-129,-155v2,-74,41,-118,102,-136","w":376},"R":{"d":"36,-335v-23,2,-12,19,0,29v-2,46,-3,93,-3,139v-1,47,0,93,3,140v-8,12,-15,21,4,23v18,2,37,-5,21,-21v-1,-43,-7,-87,-2,-130v50,13,57,47,97,77v41,48,128,110,212,61v10,-7,9,-20,0,-23v-18,7,-30,24,-54,23v-92,-11,-148,-75,-194,-132v33,-24,82,-42,82,-97v0,-71,-79,-98,-166,-89xm159,-281v47,52,-29,140,-84,103v-6,-2,-11,-5,-16,-9r2,-122v45,1,76,10,98,28","w":376},"S":{"d":"33,-79v-26,-4,-5,36,-9,60v6,10,13,13,30,13v42,21,126,15,138,-29v38,-91,-40,-157,-101,-191v-20,-11,-42,-44,-15,-65v19,-18,56,-21,79,-5v5,12,9,37,29,27v7,-19,-14,-32,-12,-50v-40,-32,-160,1,-128,74v30,64,127,70,133,164v4,64,-81,84,-123,46v-8,-11,-9,-37,-21,-44","w":222},"T":{"d":"318,-287v21,1,13,-36,6,-44r-150,3r-148,-3v-6,13,-9,29,-4,40v12,7,17,-5,25,-16r114,0r0,284v-8,8,-8,13,-7,26v15,3,26,0,40,-1v3,-12,-2,-19,-10,-22r4,-286r90,-2v19,0,33,-1,35,16v1,2,3,4,5,5","w":351},"U":{"d":"59,-330v-26,-10,-49,2,-31,24r-2,119v-5,116,35,194,153,186v126,-10,120,-163,113,-302v9,-13,14,-26,-6,-28v-11,-1,-32,-3,-25,14v4,4,7,11,9,20v-5,123,24,281,-120,276v-124,-2,-99,-163,-97,-287v4,-5,9,-15,6,-22","w":320},"V":{"d":"315,-326v8,27,-11,43,-19,63r-106,218r-128,-264v3,-30,-16,-30,-41,-24v-3,11,8,19,14,25r158,311r152,-309v21,-8,14,-31,-8,-29v-10,0,-18,3,-22,9","w":379},"W":{"d":"70,-293v-10,-23,18,-39,-23,-39r-22,4v-17,26,22,14,21,45r111,284r15,2v17,-59,43,-121,67,-172r40,107v14,20,17,59,41,64v43,-93,76,-205,108,-310v8,-4,19,-7,16,-21v-22,-1,-41,-5,-51,5v2,6,8,11,11,16v-33,82,-61,183,-90,266v-34,-82,-67,-178,-94,-266v15,-20,-6,-25,-26,-22v-21,-4,-24,13,-9,21v19,24,31,68,36,109r-59,157","w":464},"X":{"d":"85,-335v-15,-1,-34,-2,-44,3v0,23,23,13,32,32r89,102v-36,58,-84,115,-123,168v-14,3,-30,18,-9,27v14,-1,31,-1,40,-6v23,-65,70,-120,111,-169r115,151v-4,31,26,24,48,20v9,-20,-15,-21,-26,-29r-120,-162r76,-88v9,-9,23,-26,36,-29v-1,-7,5,-11,5,-17v-14,-7,-29,-5,-46,-3v4,48,-65,89,-90,123r-93,-102v3,-7,4,-12,-1,-21","w":366},"Y":{"d":"186,-167v-2,54,16,121,-9,153v-3,18,24,11,42,12v8,-7,4,-18,-7,-21v0,-48,-7,-103,1,-145v53,-43,89,-109,152,-142v16,-14,4,-28,-14,-28v-14,0,-35,1,-27,15v-15,45,-59,66,-84,100v-17,14,-38,50,-59,19r-98,-95v-1,-28,-31,-44,-62,-31v-3,25,22,12,33,32","w":392},"Z":{"d":"288,-334r-207,4v-10,-4,-15,-4,-27,-5v-4,15,-12,27,-12,47v17,10,21,-14,35,-18v53,-6,114,-4,172,-3r-229,291v1,6,1,11,3,16r266,-1v18,6,29,-24,27,-49v-21,-1,-21,12,-30,25r-229,5v51,-71,115,-138,169,-208v19,-25,46,-58,59,-86v5,-10,6,-16,3,-18","w":336},"[":{"d":"33,-355v-5,137,9,300,-9,404v20,15,53,-1,88,5v3,-8,6,-24,4,-35v-16,-4,-11,11,-19,16r-44,0r-2,-392v17,-4,40,-5,49,7v3,1,9,3,14,3v5,-14,-5,-21,-12,-28v-30,-2,-61,-9,-80,2v-3,9,1,15,11,18","w":87},"\\":{"d":"172,-1r-23,8r-146,-368v5,-5,17,-3,24,-8v38,117,90,221,131,335v5,12,10,23,14,33","w":172},"]":{"d":"-32,19v14,-4,11,12,18,16r45,0r1,-392v-26,-9,-43,5,-63,10v-5,-14,5,-21,12,-28v30,-2,61,-9,80,2v3,9,-1,15,-11,18r2,388v8,4,12,18,0,23r-80,-2v-3,-8,-8,-24,-4,-35","w":71},"^":{"d":"32,-175v-6,7,-19,12,-6,21v9,-1,24,7,24,-8v9,-21,21,-42,34,-57v10,25,29,39,38,65v23,5,37,-8,16,-19v-15,-31,-30,-51,-48,-76v-32,-5,-39,52,-58,74","w":167},"_":{"d":"-1,16r1,25r218,1v-4,-9,5,-30,-10,-25","w":216},"`":{"d":"80,-359r20,0r-61,-63r-20,18","w":122},"a":{"d":"186,3v10,-3,6,-17,-4,-16r-60,-302v-1,-15,-20,-9,-32,-8r-60,307v-9,2,-15,13,-4,18v8,1,15,2,23,0v2,-29,5,-61,11,-85r88,0v5,28,15,57,17,85xm111,-285r33,182v-23,3,-53,0,-77,0v6,-61,24,-127,36,-183","w":211},"b":{"d":"31,-16v-9,6,-10,16,2,20v60,-2,101,-37,101,-94v0,-38,-25,-63,-53,-81v43,-17,50,-99,15,-132v-16,-15,-46,-29,-76,-21v-3,13,8,14,13,18xm52,-162v62,-2,80,96,38,128v-12,9,-23,16,-40,18v-3,-49,2,-97,2,-146xm53,-306v46,2,57,64,39,103v-13,13,-20,17,-39,20v-4,-37,-4,-86,0,-123","w":153},"c":{"d":"272,-316v-46,-1,-84,-20,-136,-7v-108,27,-157,197,-65,274v44,56,185,75,231,7v4,-6,4,-23,-10,-20v-28,58,-143,56,-187,14v-47,-29,-89,-108,-52,-178v30,-47,78,-95,159,-82v21,4,48,16,58,38v6,5,11,4,18,-1v-2,-16,-6,-38,-16,-45","w":324},"d":{"d":"173,-257v-15,-57,-91,-98,-152,-68v-3,17,15,13,10,36r-1,273v-10,1,-15,8,-7,21v12,-2,23,-2,34,-2v130,8,150,-151,116,-260xm71,-315v107,6,120,199,61,272v-18,19,-44,30,-81,24r5,-291v3,-3,8,-5,15,-5","w":208},"e":{"d":"96,-329v-30,4,-70,-8,-78,13v6,7,4,8,13,12r-1,286v-9,2,-13,19,0,23r125,-2v3,-8,8,-25,4,-35v-15,-3,-10,11,-19,16r-87,0v-5,-44,1,-93,1,-137v24,-1,38,-6,57,4v9,-3,4,-24,0,-31v-15,7,-34,8,-57,5r-4,-129v20,-4,54,-13,68,2v3,2,9,3,14,3v5,-22,-12,-31,-36,-30","w":180},"f":{"d":"30,-26v-4,7,-9,17,-2,24v20,4,45,-3,27,-23v0,-43,-5,-89,1,-128v22,-7,38,4,58,6v8,-16,2,-41,-18,-28v-12,0,-27,-2,-39,0v-7,-37,-5,-87,-3,-135v23,-5,52,1,71,8v13,0,4,-18,6,-30v-30,-6,-72,0,-105,0v-15,8,2,17,4,27v5,90,0,188,0,279","w":151},"g":{"d":"252,-320v-151,-43,-257,56,-227,211v30,69,100,123,203,103v22,-5,45,-14,69,-28v2,-45,6,-91,0,-134v-25,-5,-64,-1,-92,-1v-3,7,1,14,3,20v24,4,48,-5,73,1r-2,103v-32,25,-107,39,-148,12v-84,-18,-113,-149,-55,-227v33,-44,104,-65,174,-42v7,10,16,41,34,27v-1,-18,-11,-35,-19,-47","w":320},"h":{"d":"112,-330v9,38,10,104,1,145v-11,1,-22,1,-34,2v-11,-3,-32,6,-32,-9r3,-126v2,-18,-13,-17,-28,-16v-1,47,8,107,6,165r-1,147v-9,9,-6,29,14,23v28,2,-1,-36,6,-56r2,-106v17,-6,45,-4,68,-4v3,49,4,121,-8,163v6,7,37,8,35,-6v0,-7,-5,-9,-8,-13r4,-303v-4,-12,-13,-13,-28,-6","w":162},"i":{"d":"52,3v8,-6,6,-24,-3,-27v0,-157,1,-250,2,-279v5,-12,8,-16,2,-27r-27,0v-7,7,-6,14,3,23r-2,283v-7,3,-10,21,-3,27v10,0,18,-2,28,0","w":75},"j":{"d":"33,-303r5,285v-3,43,-9,78,-42,92v-6,10,-3,19,8,21v25,-21,49,-38,54,-79r-1,-319v3,-7,10,-11,10,-22v-13,-11,-30,-8,-45,-2v1,12,6,16,11,24","w":86},"k":{"d":"45,-261v-5,-31,24,-62,-3,-73v-14,-2,-32,15,-15,24r1,292v-13,18,0,35,25,27v-7,-46,-10,-115,-4,-167v35,60,52,167,141,165v3,-26,-41,-16,-52,-39v-34,-38,-54,-101,-79,-150v29,-44,36,-105,76,-137v3,-19,-17,-15,-31,-12v-7,8,-2,9,-2,20v-18,36,-32,79,-54,110","w":192},"l":{"d":"42,5v31,-1,71,-4,95,5v11,-6,16,-18,16,-33v-25,-1,-53,15,-96,9r-4,-7r0,-291v4,-5,6,-10,6,-18v-18,-16,-45,4,-28,19r-1,296v-8,0,-11,1,-10,12v1,8,12,7,22,8","w":171},"m":{"d":"191,-285v-4,100,11,214,-5,290v7,3,36,10,33,-7v-18,-79,-4,-207,-8,-311v3,-3,7,-7,11,-9v-1,-26,-30,-15,-35,1r-65,154v-24,-55,-43,-117,-71,-167v-10,-7,-40,-6,-29,13v25,-3,14,35,16,59v-1,86,5,187,-11,256v-5,19,26,17,33,9v5,-10,-5,-17,-7,-25r5,-261v22,50,37,114,65,159v25,-48,47,-108,68,-161","w":241},"n":{"d":"32,-19v-5,8,-10,27,7,24v16,2,28,-9,15,-24r-1,-267r96,187r2,102v26,8,19,-13,19,-41r-2,-161v0,-35,1,-74,3,-116v7,-8,11,-21,-7,-20v-6,0,-13,1,-22,2v-3,9,2,13,6,18r2,139v-2,15,3,54,-7,31r-92,-186v-9,-4,-29,-7,-34,2v2,8,8,11,16,16r2,222v-1,25,-1,49,-3,72","w":198},"o":{"d":"304,-45v57,-42,60,-178,8,-226v-43,-66,-210,-75,-255,-2v-49,43,-47,177,0,222v51,60,192,66,247,6xm171,-307v90,2,149,49,157,127v10,99,-45,154,-140,160v-96,1,-143,-62,-149,-153v11,-74,50,-129,132,-134","w":366},"p":{"d":"31,-22v-13,14,-1,29,19,26v8,-1,15,-4,13,-15v-21,-22,-11,-85,-9,-128v52,-16,89,-75,62,-144v-14,-35,-47,-49,-94,-44v-7,12,6,15,9,24r0,281xm51,-308v71,-3,72,121,22,140v-6,6,-15,7,-21,9r-3,-76v0,-25,1,-50,2,-73","w":144},"q":{"d":"248,-2v90,-24,149,-120,113,-238v-35,-101,-235,-137,-303,-39v-55,53,-45,200,13,234v33,31,83,48,148,46v97,70,215,116,372,126v37,3,67,-4,89,-21v2,-10,-6,-10,-14,-9v-163,32,-312,-35,-418,-99xm48,-131v-14,-72,19,-129,59,-163v48,-44,163,-23,198,17v60,32,56,168,6,214v-80,74,-243,37,-263,-68","w":390},"r":{"d":"20,-313v25,63,7,192,11,290v-5,9,-11,25,10,22v10,2,17,1,21,-7v-21,-24,-13,-91,-9,-132v40,49,62,116,126,141v15,7,26,-14,13,-19v-64,-9,-81,-73,-114,-115v-5,-6,-7,-13,-10,-18v31,-16,59,-49,58,-94v-4,-52,-36,-88,-93,-84v-8,3,-13,6,-13,16xm62,-171v-11,9,-10,6,-11,-10r-5,-124v62,-16,85,93,33,123v-7,4,-12,8,-17,11","w":198},"s":{"d":"41,-11v17,25,80,22,90,-5v47,-70,-7,-166,-50,-209v-22,-26,-26,-89,26,-84v9,7,6,29,22,29v10,-13,-2,-33,-5,-45v-75,-30,-105,60,-62,113v29,45,82,92,61,170v-5,29,-66,39,-75,6r-10,-23v-21,-1,-17,26,-18,47","w":170},"t":{"d":"87,-235v-2,75,5,165,-5,229v-1,8,19,12,27,7v4,-35,-8,-107,-3,-164r1,-144v21,-1,45,-3,57,7v22,2,19,-18,7,-25r-145,-3v-6,6,-8,20,-2,28v19,-1,44,-16,61,-5v1,13,2,36,2,70","w":200},"u":{"d":"161,-248v-4,102,33,257,-83,230v-53,-38,-22,-165,-31,-262v0,-13,1,-23,1,-29v15,-14,9,-26,-13,-24v-6,1,-11,2,-15,3v-1,12,2,17,9,21v2,46,-2,92,-2,138v4,74,-15,180,71,176v110,8,83,-137,83,-238v-1,-25,-1,-51,0,-76v8,-3,12,-15,6,-22v-13,0,-29,-1,-39,3v-1,12,3,14,9,22v1,19,3,38,4,58","w":209},"v":{"d":"189,-322v-13,-23,-49,-8,-32,16r-47,238r-56,-238v14,-21,-4,-30,-27,-27v-20,17,12,20,10,46r69,290v16,-3,13,-21,17,-40r54,-266v4,-6,11,-10,12,-19","w":209},"w":{"d":"280,-310v3,-21,-23,-24,-36,-15v-1,96,-35,181,-49,266v-24,-78,-37,-177,-53,-264v-12,-10,-24,-11,-26,2v14,34,15,80,24,119v-15,42,-20,98,-32,143r-56,-239v-1,-12,-2,-20,-1,-25v-12,-5,-33,-15,-32,9v46,86,44,222,84,315v22,-3,20,-41,24,-65r20,-109r42,176v27,3,21,-38,26,-60r42,-197v6,-21,13,-44,23,-56","w":299},"x":{"d":"156,-304v18,-12,9,-24,-12,-24v-17,0,-17,12,-12,27r-30,82v-10,-36,-39,-64,-30,-105v-11,-4,-28,-4,-38,0v-2,14,7,17,13,24v11,40,39,68,43,114v-17,41,-27,85,-43,126v-7,18,-13,39,-26,51v-3,15,24,16,36,9v-1,-52,30,-123,45,-162r53,142v0,0,-16,20,2,21v23,12,45,-16,17,-28v-20,-53,-46,-102,-61,-160","w":207},"y":{"d":"88,-151v1,46,8,110,-5,146v-1,10,14,12,26,10v15,-1,10,-24,0,-28r1,-126v26,-53,30,-122,64,-167v-1,-18,-15,-20,-29,-11v-1,60,-31,107,-45,160r-50,-139v5,-9,7,-8,7,-20v-12,-6,-23,-6,-36,-1v-3,11,2,17,10,19","w":194},"z":{"d":"41,-294v17,-13,54,-18,79,-6v-43,87,-66,206,-100,302v19,16,87,-8,120,7v8,-10,10,-23,10,-39v-14,-12,-8,13,-19,16v-27,-7,-54,0,-84,0v27,-103,62,-210,98,-304v-19,-14,-52,1,-87,-9v-17,0,-20,20,-17,33","w":169},"{":{"d":"122,35v8,-5,3,-20,19,-16v3,10,-1,27,-4,35v-34,-1,-47,0,-80,2v-12,-4,-10,-20,0,-23r0,-161r-40,-39r40,-38r1,-150v-8,-4,-8,-6,-13,-11v2,-19,27,-10,42,-12v24,-1,62,2,52,31v-20,-3,-33,-20,-62,-10r0,137r1,-1r0,26r-29,25v6,17,17,26,29,38r0,167r44,0","w":105},"|":{"d":"22,36r25,-1r1,-414r-25,2","w":69},"}":{"d":"48,56v12,-5,8,-19,0,-23r-1,-161v15,-13,24,-28,41,-39r-41,-38r-1,-150v11,-3,14,-9,11,-18v-18,-11,-51,-4,-80,-2v-6,7,-17,14,-12,28v21,-2,30,-20,63,-10r-1,137r-1,-1r0,26r29,25v-6,17,-17,26,-29,38r1,167v-22,-1,-51,7,-55,-16v-10,-3,-11,8,-9,17v1,7,3,13,5,18v34,-1,47,0,80,2","w":103},"~":{"d":"37,-152v15,-42,56,-2,85,0v29,0,46,-18,52,-55r-20,0v-4,21,-27,44,-49,25v-22,-14,-68,-25,-79,7v-2,6,-5,14,-7,23r18,0","w":190}}});var setGradient=(function(){var p_dCanvas=document.createElement('canvas');var p_useCanvas=!!(typeof(p_dCanvas.getContext)=='function');var p_dCtx=p_useCanvas?p_dCanvas.getContext('2d'):null;var p_isIE=false;try{p_dCtx.canvas.toDataURL()}catch(err){p_useCanvas=false;};if(p_useCanvas){return function(dEl,sColor1,sColor2,bRepeatY,nH){if(typeof(dEl)=='string')dEl=document.getElementById(dEl);if(!dEl)return false;var nW=dEl.offsetWidth;if(!nH)nH=dEl.offsetHeight;p_dCanvas.width=bRepeatY?nW:8;p_dCanvas.height=bRepeatY?8:nH;var dGradient;var sRepeat;if(bRepeatY){dGradient=p_dCtx.createLinearGradient(0,0,nW,0);sRepeat='repeat-y';}else{dGradient=p_dCtx.createLinearGradient(0,0,0,nH);sRepeat='repeat-x';}
dGradient.addColorStop(0,sColor1);dGradient.addColorStop(1,sColor2);p_dCtx.fillStyle=dGradient;p_dCtx.fillRect(0,0,p_dCanvas.width,p_dCanvas.height);var sDataUrl=p_dCtx.canvas.toDataURL('image/png');with(dEl.style){backgroundRepeat=sRepeat;backgroundImage='url('+sDataUrl+')';backgroundColor=sColor2;};}}else if(p_isIE){p_dCanvas=p_useCanvas=p_dCtx=null;return function(dEl,sColor1,sColor2,bRepeatY){if(typeof(dEl)=='string')dEl=document.getElementById(dEl);if(!dEl)return false;dEl.style.zoom=1;var sF=dEl.currentStyle.filter;dEl.style.filter+=' '+['progid:DXImageTransform.Microsoft.gradient( GradientType=',+(!!bRepeatY),',enabled=true,startColorstr=',sColor1,', endColorstr=',sColor2,')'].join('');};}else{p_dCanvas=p_useCanvas=p_dCtx=null;return function(dEl,sColor1,sColor2){if(typeof(dEl)=='string')dEl=document.getElementById(dEl);if(!dEl)return false;with(dEl.style){backgroundColor=sColor2;};}}})();;(function($){var moz=$.browser.mozilla&&/gecko/i.test(navigator.userAgent);var webkit=$.browser.safari&&$.browser.version>=3;var expr=$.browser.msie&&(function(){var div=document.createElement('div');try{div.style.setExpression('width','0+0');}
catch(e){return false;}
return true;})();function sz(el,p){return parseInt($.css(el,p))||0;};function hex2(s){var s=parseInt(s).toString(16);return(s.length<2)?'0'+s:s;};function gpc(node){for(;node&&node.nodeName.toLowerCase()!='html';node=node.parentNode){var v=$.css(node,'backgroundColor');if(v=='rgba(0, 0, 0, 0)')
continue;if(v.indexOf('rgb')>=0){var rgb=v.match(/\d+/g);return'#'+hex2(rgb[0])+hex2(rgb[1])+hex2(rgb[2]);}
if(v&&v!='transparent')
return v;}
return'#ffffff';};function getWidth(fx,i,width){switch(fx){case'round':return Math.round(width*(1-Math.cos(Math.asin(i/width))));case'cool':return Math.round(width*(1+Math.cos(Math.asin(i/width))));case'sharp':return Math.round(width*(1-Math.cos(Math.acos(i/width))));case'bite':return Math.round(width*(Math.cos(Math.asin((width-i-1)/width))));case'slide':return Math.round(width*(Math.atan2(i,width/i)));case'jut':return Math.round(width*(Math.atan2(width,(width-i-1))));case'curl':return Math.round(width*(Math.atan(i)));case'tear':return Math.round(width*(Math.cos(i)));case'wicked':return Math.round(width*(Math.tan(i)));case'long':return Math.round(width*(Math.sqrt(i)));case'sculpt':return Math.round(width*(Math.log((width-i-1),width)));case'dog':return(i&1)?(i+1):width;case'dog2':return(i&2)?(i+1):width;case'dog3':return(i&3)?(i+1):width;case'fray':return(i%2)*width;case'notch':return width;case'bevel':return i+1;}};$.fn.corner=function(options){if(this.length==0){if(!$.isReady&&this.selector){var s=this.selector,c=this.context;$(function(){$(s,c).corner(options);});}
return this;}
return this.each(function(index){var $this=$(this);var o=(options||$this.attr($.fn.corner.defaults.metaAttr)||'').toLowerCase();var keep=/keep/.test(o);var cc=((o.match(/cc:(#[0-9a-f]+)/)||[])[1]);var sc=((o.match(/sc:(#[0-9a-f]+)/)||[])[1]);var width=parseInt((o.match(/(\d+)px/)||[])[1])||10;var re=/round|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dog/;var fx=((o.match(re)||['round'])[0]);var edges={T:0,B:1};var opts={TL:/top|tl|left/.test(o),TR:/top|tr|right/.test(o),BL:/bottom|bl|left/.test(o),BR:/bottom|br|right/.test(o)};if(!opts.TL&&!opts.TR&&!opts.BL&&!opts.BR)
opts={TL:1,TR:1,BL:1,BR:1};if($.fn.corner.defaults.useNative&&fx=='round'&&(moz||webkit)&&!cc&&!sc){if(opts.TL)
$this.css(moz?'-moz-border-radius-topleft':'-webkit-border-top-left-radius',width+'px');if(opts.TR)
$this.css(moz?'-moz-border-radius-topright':'-webkit-border-top-right-radius',width+'px');if(opts.BL)
$this.css(moz?'-moz-border-radius-bottomleft':'-webkit-border-bottom-left-radius',width+'px');if(opts.BR)
$this.css(moz?'-moz-border-radius-bottomright':'-webkit-border-bottom-right-radius',width+'px');return;}
var strip=document.createElement('div');strip.style.overflow='hidden';strip.style.height='1px';strip.style.backgroundColor=sc||'transparent';strip.style.borderStyle='solid';var pad={T:parseInt($.css(this,'paddingTop'))||0,R:parseInt($.css(this,'paddingRight'))||0,B:parseInt($.css(this,'paddingBottom'))||0,L:parseInt($.css(this,'paddingLeft'))||0};if(typeof this.style.zoom!=undefined)this.style.zoom=1;if(!keep)this.style.border='none';strip.style.borderColor=cc||gpc(this.parentNode);var cssHeight=$.curCSS(this,'height');for(var j in edges){var bot=edges[j];if((bot&&(opts.BL||opts.BR))||(!bot&&(opts.TL||opts.TR))){strip.style.borderStyle='none '+(opts[j+'R']?'solid':'none')+' none '+(opts[j+'L']?'solid':'none');var d=document.createElement('div');$(d).addClass('jquery-corner');var ds=d.style;bot?this.appendChild(d):this.insertBefore(d,this.firstChild);if(bot&&cssHeight!='auto'){if($.css(this,'position')=='static')
this.style.position='relative';ds.position='absolute';ds.bottom=ds.left=ds.padding=ds.margin='0';if(expr)
ds.setExpression('width','this.parentNode.offsetWidth');else
ds.width='100%';}
else if(!bot&&$.browser.msie){if($.css(this,'position')=='static')
this.style.position='relative';ds.position='absolute';ds.top=ds.left=ds.right=ds.padding=ds.margin='0';if(expr){var bw=sz(this,'borderLeftWidth')+sz(this,'borderRightWidth');ds.setExpression('width','this.parentNode.offsetWidth - '+bw+'+ "px"');}
else
ds.width='100%';}
else{ds.position='relative';ds.margin=!bot?'-'+pad.T+'px -'+pad.R+'px '+(pad.T-width)+'px -'+pad.L+'px':(pad.B-width)+'px -'+pad.R+'px -'+pad.B+'px -'+pad.L+'px';}
for(var i=0;i<width;i++){var w=Math.max(0,getWidth(fx,i,width));var e=strip.cloneNode(false);e.style.borderWidth='0 '+(opts[j+'R']?w:0)+'px 0 '+(opts[j+'L']?w:0)+'px';bot?d.appendChild(e):d.insertBefore(e,d.firstChild);}}}});};$.fn.uncorner=function(){if(moz||webkit)
this.css(moz?'-moz-border-radius':'-webkit-border-radius',0);$('div.jquery-corner',this).remove();return this;};$.fn.corner.defaults={useNative:true,metaAttr:'data-corner'};})(jQuery);