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

// --- Easing --------------------------------------------------------------
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('u.G({r:{H:f(x,t,b,c,d){6 c*(t/=d)*t+b},D:f(x,t,b,c,d){9(t<d/2)6 2*c*t*t/(d*d)+b;e a=t-d/2;6-2*c*a*a/(d*d)+2*c*a/d+c/2+b},P:f(x,t,b,c,d){6-c*t*t/(d*d)+2*c*t/d+b},K:f(x,t,b,c,d){e a=1;9(c<0){a*=-1;c*=-1}6 a*(8.q(8.m(c)/d*t))+b},F:f(x,t,b,c,d){e a=1;9(c<0){a*=-1;c*=-1}6 a*(-8.q(-8.m(c)/d*(t-d))+c+1)+b},C:f(x,t,b,c,d){e a=1;9(c<0){a*=-1;c*=-1}9(t<d/2)6 a*(8.q(8.m(c/2)/(d/2)*t))+b;6 a*(-8.q(-2*8.m(c/2)/d*(t-d))+c+1)+b},A:f(x,t,b,c,d){6 c-u.r[\'v\'](x,d-t,0,c,d)+b},v:f(x,t,b,c,d){9((t/=d)<(1/2.g)){6 c*(7.k*t*t)+b}j 9(t<(2/2.g)){6 c*(7.k*(t-=(1.5/2.g))*t+.g)+b}j 9(t<(2.5/2.g)){6 c*(7.k*(t-=(2.S/2.g))*t+.R)+b}j{6 c*(7.k*(t-=(2.M/2.g))*t+.L)+b}},J:f(x,t,b,c,d){9(t<d/2)6 u.r[\'A\'](x,t*2,0,c,d)*.5+b;6 u.r[\'v\'](x,t*2-d,0,c,d)*.5+c*.5+b},I:f(x,t,b,c,d){e s=1.i;e p=0;e a=c;9(t==0)6 b;9((t/=d)==1)6 b+c;9(!p)p=d*.3;9(a<8.y(c)){a=c;e s=p/4}j e s=p/(2*8.h)*8.w(c/a);6-(a*8.o(2,n*(t-=1))*8.l((t*d-s)*(2*8.h)/p))+b},E:f(x,t,b,c,d){e s=1.i;e p=0;e a=c;9(t==0)6 b;9((t/=d)==1)6 b+c;9(!p)p=d*.3;9(a<8.y(c)){a=c;e s=p/4}j e s=p/(2*8.h)*8.w(c/a);6 a*8.o(2,-n*t)*8.l((t*d-s)*(2*8.h)/p)+c+b},N:f(x,t,b,c,d){e s=1.i;e p=0;e a=c;9(t==0)6 b;9((t/=d/2)==2)6 b+c;9(!p)p=d*(.3*1.5);9(a<8.y(c)){a=c;e s=p/4}j e s=p/(2*8.h)*8.w(c/a);9(t<1)6-.5*(a*8.o(2,n*(t-=1))*8.l((t*d-s)*(2*8.h)/p))+b;6 a*8.o(2,-n*(t-=1))*8.l((t*d-s)*(2*8.h)/p)*.5+c+b},O:f(x,t,b,c,d){e s=1.i;6 c*(t/=d)*t*((s+1)*t-s)+b},B:f(x,t,b,c,d){e s=1.i;6 c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},Q:f(x,t,b,c,d){e s=1.i;9((t/=d/2)<1)6 c/2*(t*t*(((s*=(1.z))+1)*t-s))+b;6 c/2*((t-=2)*t*(((s*=(1.z))+1)*t+s)+2)+b},T:f(x,t,b,c,d){6 c*t/d+b}}});',56,56,'||||||return||Math|if|||||var|function|75|PI|70158|else|5625|sin|log|10|pow||exp|easing|||jQuery|bounceout|asin||abs|525|bouncein|backout|expoinout|easeinout|elasout|expoout|extend|easein|elasin|bounceinout|expoin|984375|625|elasinout|backin|easeout|backinout|9375|25|linear'.split('|'),0,{}))

/**
 * jQuery Plugin FlyDOM v3.0
 *
 * Create DOM elements on the fly and automatically append or prepend them to another DOM object.
 * There are also template functions (tplAppend and tplPrepend) that can take a simple HTML structure
 * and apply a JSON object to it to make creating layouts MUCH easier.
 *
 * This plugin was inspired by "Oslow" [http://mg.to/2006/02/27/easy-dom-creation-for-jquery-and-prototype#comment-176],
 * and since I could not get his code to work, I decided I write my own plugin. My hope is that this
 * version will be easier to understand and maintain with future versions of jQuery.
 *
 * Copyright (c) 2007 Ken Stanley [dohpaz at gmail dot com]
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * @version     3.0.5
 *
 * @author      Ken Stanley [dohpaz at gmail dot com]
 * @copyright   (C) 2007. All rights reserved.
 *
 * @license     http://www.opensource.org/licenses/mit-license.php
 * @license     http://www.opensource.org/licenses/gpl-license.php
 *
 * @package     jQuery Plugins
 * @subpackage  FlyDOM
 *
 * @todo        Cache basic elements that are created, and if an already existing basic element is
 *              asked to be created an additional time, use a copy of the cached element to build from.
 */

/**
 * Create DOM elements on the fly and automatically append them to the current DOM obejct
 *
 * @uses    jQuery
 * @uses    function convertCamel()
 *
 * @param   string  element - The name of the DOM element to create (i.e., img, table, a, etc)
 * @param   object  attrs   - An optional object of attributes to apply to the element
 * @param   array   content - An optional array of content (or element children) to append to element
 *
 * @return  jQuery  element - The jQuery object representing the new element
 *
 * @since   1.0
 */
jQuery.fn.createAppend = function(element, attrs, content)
{

    // This helps me remember what 'this' is later on.
    var parentElement = this[0];

    // I *hate* exceptions
    if (jQuery.browser.msie && element == 'input' && attrs.type) {

        // IE will not allow you to modify the type attribute after an element is
        // created, so we must create the input element with the type attribute.
        var element = document.createElement('<' + element + ' type="' + attrs.type + '"' + ((attrs.name != undefined) ? ' name="' + attrs.name + '"' : '') + ((attrs.value != undefined) ? ' value="' + attrs.value + '"' : '') + ' />');


    } else {

        // This is for every other element
        var element = document.createElement(element);

    };

    // Check to see if we are using IE, and trying to append a TR to a TABLE.
    if (jQuery.browser.msie && parentElement.nodeName.toLowerCase() == 'table' && element.nodeName.toLowerCase() == 'tr') {

        // Check to see if we already have a tbody element in the table
        if (parentElement.parentNode.getElementsByTagName('tbody')[0]) {

            // Use the existing tbody
            var tbody = parentElement.getElementsByTagName('tbody')[0];

        } else {

            // Create a new tbody
            var tbody = parentElement.appendChild(document.createElement('tbody'));

        };

        // Append our TR to our TBODY and continue
        var element = tbody.appendChild(element);

    } else {

        // Add the element directly to the parentElement
        var element = parentElement.appendChild(element);

    };

    // Parse our attributes into our new element
    element = __FlyDOM_parseAttrs(element, attrs);

    // Determine what to do with our red-headed stepchild.
    if (typeof content == 'object' && content != null) {

        // Loop through content and create child elements
        for (var i = 0; i < content.length; i = i + 3) {

            jQuery(element).createAppend(content[i], content[i + 1] || {}, content[i + 2] || []);

        };

    // Add as text
    } else if (content != null) {

        element = __FlyDOM_setText(element, content);

    };

    // Return the newly appended element to the caller
    return jQuery(element);

}

/**
 * Create DOM elements on the fly and automatically prepend them to the current DOM obejct
 *
 * @uses    jQuery
 * @uses    createAppend()
 *
 * @param   string  element - The name of the DOM element to create (i.e., img, table, a, etc)
 * @param   object  attrs   - An optional object of attributes to apply to the element
 * @param   array   content - An optional array of content (or element children) to append to element
 * @return  jQuery  element - The jQuery object representing the new element
 *
 * @since   1.0
 */
jQuery.fn.createPrepend = function(element, attrs, content)
{

    // Create our DOM element
    var element     = document.createElement(element);

    // If we do not have a child node, just append the new element
    if (this[0].hasChildNodes() == false) {

        var element = this[0].appendChild(element);

    };

    // Parse our attributes into our new element
    element = __FlyDOM_parseAttrs(element, attrs);

    // Determine what to do with our red-headed stepchild.
    if (typeof content == 'object' && content != null) {

        // Loop through the content and append any children
        for (var i = 0; i < content.length; i = i + 3) {

            jQuery(element).createAppend(content[i], content[i + 1] || {}, content[i + 2] || []);

        };

    // Add as text
    } else if (content != null) {

        element = __FlyDOM_setText(element, content);

    };

    // Here we check to see if this element has children, and if so,
    // we will insert it before the first child node.
    if (this[0].hasChildNodes() == true) {

        var element = this[0].insertBefore(element, this[0].firstChild);

    };

    // Return the newly appended element to the caller
    return jQuery(element);

}

/**
 * Create DOM elements on the fly using a simple template system, and then append the new element(s) to
 * the end of the calling object.
 *
 * @uses jQuery
 * @uses createAppend()
 *
 * @param   object  json    - A JSON-formatted object that holds the dynamic data
 * @param   array   tpl     - An array containing the element(s) to append to the caller
 * @return  jQuery  self    - The jQuery object representing the new element(s)
 *
 * @since   2.0
 */
jQuery.fn.tplAppend = function(json, tpl)
{

    // Make sure that we have an array to work with
    if (json.constructor != Array) { json = [ json ]; };

    // Don't try to do anything if we have nothing to do
    if (json.length == 0) { return false; };

    // Loop through our JSON "rows"
    for (var i = 0; i < json.length; i++) {

        // Apply the data to the template and get our results
        var results = tpl.apply(json[i]);

        // Just like with createAppend/createPrepend; this is the best way to
        // loop through and create our new element(s).
        for (var j = 0; j < results.length; j = j + 3) {

            jQuery(this).createAppend(results[j], results[j + 1], results[j + 2]);

        };

    };

    // Return ourself for chaining
    return self;

}

/**
 * Create DOM elements on the fly using a simple template system, and then prepend the new element(s) to
 * the beginning of the calling object. The elements will first be appended to a temporary div container,
 * and then prepended before the first child of the parent element.
 *
 * @uses jQuery
 * @uses createAppend()
 *
 * @param   object  json    - A JSON-formatted object that holds the dynamic data
 * @param   array   tpl     - An array containing the element(s) to prepend to the caller
 * @return  jQuery  self    - The jQuery object representing the new element(s)
 *
 * @since   2.0
 */
jQuery.fn.tplPrepend = function(json, tpl) {

    // This will allow 'this' to go inside of a .each() loop
    var self = this[0];

    // Make sure that we have an array to work with
    if (json.constructor != Array) { json = [ json ]; };

    // Don't try to do anything if we have nothing to do
    if (json.length == 0) { return false; };

    // Here we create a div and insert it before the element we're
    // prepending to
    var div = document.createElement('div');

    // Loop through our JSON "rows"
    for (var i = 0; i < json.length; i++) {

        // Apply the data to the template and get our results
        var results = tpl.apply(json[i]);

        // Just like with createAppend/createPrepend; this is the best way to
        // loop through and create our new element(s).
        for (var j = 0; j < results.length; j = j + 3) {

            jQuery(div).createAppend(results[j], results[j + 1], results[j + 2]);

        };

    };

    // Apply each child node of the div container starting from the last one
    // This will ensure that all elements get applied as expected, and still
    // be readable from top to bottom.
    for (i = div.childNodes.length - 1; i >= 0; i--) {

        if (jQuery.browser.msie && self.nodeName.toLowerCase() == 'table' && div.childNodes[i].nodeName.toLowerCase() == 'tr') {

            if (self.getElementsByTagName('tbody')[0]) {

                var tbodyElement = self.getElementsByTagName('tbody')[0];
                tbodyElement.insertBefore(div.childNodes[i], tbodyElement.firstChild);

            } else {

                var tbodyElement = self.insertBefore(document.createElement('tbody'), self.firstChild);
                tbodyElement.appendChild(tbodyElement.appendChild(div.childNodes[i]));

            };
        } else {

            self.insertBefore(div.childNodes[i], self.firstChild);

        };

    };

    // Return ourself for chaining
    return jQuery(self);

};

/**
 * Convert a hyphenated set of words into one camel cased word. For example,
 * the hyphenated set of words 'border-left-width' would turn into 'borderLeftWidth'.
 *
 * @param   string  hyphenatedText  - The text to convert into camel case
 *
 * @return  string
 *
 * @since   3.0
 */
String.prototype.toCamelCase = function()
{

    var self = this;

    if (self.indexOf('-') > 0) {

        var parts = self.split('-');

        // Start the new text with the first word
        self = parts[0];

        // We skip over the first word, and capitalize
        // each word after.
        for (i = 1; i < parts.length; i++) {

            // Uppercase the first letter, and ensure the rest is lowercase.
            self += parts[i].substr(0, 1).toUpperCase() + parts[i].substr(1).toLowerCase();

        };

    };

    return self;

};

/**
 * Trims the whitespace from the beginning and end of a string.
 * This is the same exact method from the jQuery library, but
 * is put here to avoid having to call jQuery to do this one
 * simple thing.
 *
 * @param   string  text    - The text to trim
 *
 * @return  string
 *
 * @since   3.0
 */
String.prototype.trim = function()
{

    return this.replace(/^\s+|\s+$/g, '');

};

/**
 * Parse the attributes of element and return the element modified with
 * attrs.
 *
 * @uses    function toCamelCase()
 * @uses    function trim()
 *
 * @return  element
 *
 * @since   3.0
 */
__FlyDOM_parseAttrs = function(element, attrs)
{

    // Attach any attributes for this element
    for (attr in attrs) {

        // Break the styles up into a parameters array
        var attrName    = attr;
        var attrValue   = attrs[attr];

        switch (attrName) {

            // Styles are special because the DOM holds style information in an object.
            case 'style':

                if (typeof attrValue == 'string') {

                    var params = attrValue.split(';');

                    // Loop through each set of properties
                    for (var i = 0; i < params.length; i++) {

                        // Check to make sure someone (like myself) didn't end the value with a
                        // semi-colon.
                        if (params[i].trim() != '') {

                            // This is just to ease my burden of reading and typing :)
                            var styleName   = params[i].split(':')[0].trim();
                            var styleValue  = params[i].split(':')[1].trim();

                            // Take into account that styles with hyphens in the name need
                            // to be converted into camelCase.
                            styleName = styleName.toCamelCase();

                            // Don't try to apply the style if it is empty (this happens if
                            // the value of the attribute ends with a semi-colon.
                            if (styleName != '') {

                                // Apply each name/value pair, after removing any whitespace
                                element.style[styleName] = styleValue;

                            };

                        };

                    };

                } else if (typeof attrValue == 'object') {

                    for (styleName in attrValue) {

                        // Take into account that styles with hyphens in the name need
                        // to be converted into camelCase.
                        var styleNameCamel = styleName.toCamelCase();

                        if (styleName.trim() != '') {

                            element.style[styleNameCamel] = attrValue[styleName];

                        };

                    };

                };
                break;

            // Other attributes are treated as strings.
            default:

                // Check for any on* events
                if (attrName.substr(0, 2) == 'on') {

                    // Get the type of on event
                    var event = attrName.substr(2);

                    // Determine whether we need to create an anonymous function,
                    // or if the user was kind enough to do it for us.
                    attrValue = (typeof attrValue != 'function') ? eval('function() { ' + attrValue + '}') : attrValue;

                    // Bind the function to the event
                    jQuery(element).bind(event, attrValue);

                } else {

                    // Everything else (I hope) :)
                    element[attrName.toCamelCase()] = attrValue;

                }

        };

    };

    return element;

};

/**
 * Determines whether content should be treated as HTML or plain text,
 * and appended to element.
 *
 * @return  element
 *
 * @since   3.0
 */
__FlyDOM_setText = function(element, content)
{

    // Check for HTML tags or HTML entities.
    var isHtml = /(<\S[^><]*>)|(&.+;)/g;

    // Determine whether the text contains any HTML or entities
    // An exception is made for <textarea></textarea>; all text must be treated as text.
    if (content.match(isHtml) != null && element.tagName.toUpperCase() != 'TEXTAREA') {

        element.innerHTML = content;

    } else {

        // Create a text node from the content
        var textNode = document.createTextNode(content);

        // Add the text node to the element
        element.appendChild(textNode);

    };

    return element;

};

(function(E,B){var C=function(G){var F,H=[];for(F in G){H.push(F+'="'+G[F]+'"')}return H.join("")},D=function(H){var F,J,I=[],G;for(F in H){if(typeof H[F]=="object"){G=[];for(J in H[F]){G.push([J,"=",encodeURIComponent(H[F][J])].join(""))}H[F]=G.join("&amp;")}I.push(['<param name="',F,'" value="',H[F],'" />'].join(""))}return I.join("")},A=false;E[B]=(function(){var F="0,0,0",G=navigator.plugins["Shockwave Flash"]||ActiveXObject;F=G.description||(function(){try{return(new G("ShockwaveFlash.ShockwaveFlash")).GetVariable("$version")}catch(H){}}());F=F.match(/^[A-Za-z\s]*?(\d+)[\.|,](\d+)(?:\s+r|,)(\d+)/);return{available:F[1]>0,activeX:!G.name,version:{major:F[1]*1,minor:F[2]*1,release:F[3]*1},hasVersion:function(I){var L=this.version,J="major",K="minor",H="release";I=(/string|number/.test(typeof I))?I.toString().split("."):I||[0,0,0];I=[I[J]||I[0]||L[J],I[K]||I[1]||L[K],I[H]||I[2]||L[H]];return(I[0]<L[J])||(I[0]==L[J]&&I[1]<L[K])||(I[0]==L[J]&&I[1]==L[K]&&I[2]<=L[H])},expressInstall:"expressInstall.swf",create:function(H){if(!E[B].available||A||!typeof H=="object"||!H.swf){return false}if(H.hasVersion&&!E[B].hasVersion(H.hasVersion)){H={swf:H.expressInstall||E[B].expressInstall,attrs:{id:"SWFObjectExprInst",height:Math.max(H.height||137),width:Math.max(H.width||214)},params:{flashvars:{MMredirectURL:location.href,MMplayerType:(E[B].activeX)?"ActiveX":"PlugIn",MMdoctitle:document.title.slice(0,47)+" - Flash Player Installation"}}};A=true}else{H=E.extend(true,{attrs:{height:H.height||180,width:H.width||320},params:{wmode:H.wmode||"opaque",flashvars:H.flashvars}},H)}return"<object "+(C(H.attrs))+(E[B].activeX?' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="movie" value="'+H.swf+'" />':' type="application/x-shockwave-flash" data="'+H.swf+'">')+(D(H.params))+"</object>"}}}());E.fn[B]=function(F){if(typeof F=="object"){this.each(function(){var G=document.createElement(B);G.innerHTML=E[B].create(F);if(G.childNodes[0]){this.appendChild(G.childNodes[0])}})}else{if(typeof F=="function"){this.find("object").andSelf().filter("object").each(function(){var H=this,G="jsInteractionTimeoutMs";H[G]=H[G]||0;if(H[G]<660){if(H.clientWidth||H.clientHeight){F.call(this)}else{setTimeout(function(){E(H)[B](F)},H[G]+66)}}})}}return this}}(jQuery,"flash"));


var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());
Cufon.registerFont({"w":137,"face":{"font-family":"Horrorfind","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","x-height":"33","cap-height":"43","bbox":"-10.8757 -298 227.331 116","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007A"},"glyphs":{" ":{"w":87},"\u00a0":{"w":87},"E":{"d":"0,-253v39,4,87,-2,126,2v-8,3,-8,12,-17,14v-1,11,-6,38,-10,11v-8,-8,-10,19,-17,4v-3,-4,-4,1,-6,3v1,6,-5,9,-8,3v2,-8,-7,-10,-7,-2v4,8,-4,25,-6,7v5,-17,-16,-17,-21,-8v-9,47,38,24,66,34v5,10,17,11,3,22v4,20,-8,44,-7,8v-6,-12,-14,-1,-14,7v0,8,5,33,-6,26v3,-14,-3,-54,-9,-24v4,17,-4,43,-6,13v-1,-8,5,-24,-4,-23v1,-4,-2,-5,-4,-3v-3,2,0,14,-9,9v1,-7,-3,-14,-10,-11v5,28,-5,56,4,70v-6,5,2,13,0,17v-4,-1,-3,4,-3,8v3,0,2,7,1,9v-1,0,-1,1,-1,2v6,12,-4,24,1,33v23,3,60,-11,69,10v0,0,1,-1,2,0v2,9,20,7,15,16v-16,-3,-17,8,-18,20v-4,-3,-12,-35,-22,-11v0,9,5,30,-6,24v4,-15,-5,-46,-3,-17v0,6,-7,6,-8,1v7,-18,-16,-23,-18,-9v-1,0,-1,1,-1,2v5,11,-7,22,-6,4v1,-6,-2,-15,-5,-8v2,6,-5,9,-7,5v-1,-7,-4,-13,-12,-11v-5,-49,-3,-106,-12,-151v2,-2,-1,-3,-3,-5v1,-34,4,-74,-1,-101","w":133},"F":{"d":"133,-252v-14,5,-10,24,-33,22v-2,9,1,30,-12,26v3,-25,-4,-3,-11,-6v2,-10,-4,-18,-9,-9v5,14,-9,28,-6,9v2,-11,-7,-18,-13,-12v4,9,-8,16,-9,7v3,1,-1,-4,2,-4v-2,0,-2,-6,-6,-3v1,24,-3,42,26,37v24,-3,48,1,51,15v-15,1,3,52,-13,42v0,-10,2,-21,0,-29v-12,-2,-6,22,-9,33v-14,1,8,-42,-20,-33v-6,4,4,31,-8,27v3,-13,-5,-38,-6,-16v-1,7,3,22,-7,17v1,-13,3,-27,-8,-28v0,-3,-2,-2,-4,-1v-2,37,6,82,-2,114v8,32,-10,52,-3,91v0,2,-5,3,-6,1v-3,-23,7,-56,-12,-67r-14,-188v5,-9,-1,-13,3,-27v-3,-4,-2,-16,-2,-19v30,4,87,0,131,1"},"G":{"d":"2,-253v19,-4,36,2,48,0r-1,-1v26,3,41,5,59,-1v5,9,20,3,25,3v-7,11,7,28,-12,28v-6,2,0,16,-10,11v0,-5,-4,-14,-11,-8v3,8,-5,21,-7,8v0,-5,-8,3,-9,-12v-8,0,1,19,-11,11v2,-5,-4,-17,-6,-6v-4,3,5,28,-8,23v3,-19,-6,-34,-23,-28v6,45,1,101,14,140v1,17,12,31,14,43v39,-42,26,-99,36,-127v12,3,24,-7,34,-3v-7,55,-16,77,-16,131v-3,2,-6,0,-6,-5v2,-9,0,-20,1,-31v-20,18,-1,65,-16,80r-1,-45v-11,11,-12,31,-13,54v-10,1,-3,-15,-5,-26v-8,10,-1,36,-6,47v-10,0,-2,-16,-4,-27v-9,-16,-20,-30,-27,-48v-1,11,1,24,-1,33v-8,1,-4,-10,-5,-17v4,-8,-1,-29,-4,-33v-3,19,7,49,-4,61v-9,-16,7,-68,-8,-84v-10,-42,-19,-71,-15,-101v-6,1,0,-7,-4,-12v5,-14,3,-27,0,-34v1,0,3,1,3,-1v-6,-8,-1,-19,-1,-23"},"H":{"d":"34,-130v6,35,-1,84,3,111v-10,10,-2,52,-8,70v-12,-11,6,-59,-14,-72v-4,-26,2,-62,-8,-82v13,-11,-10,-24,1,-33v-7,-30,0,-73,-9,-89v-3,-27,10,-35,37,-26v3,31,-3,48,0,62r60,2v1,-14,2,-19,0,-25v5,-2,9,-17,0,-18v-3,-24,14,-23,36,-23r-2,118v-17,72,-7,114,-14,174v-12,-1,2,-32,-6,-46v-3,8,1,22,-2,31v-13,-2,4,-38,-12,-43v2,-47,6,-74,-1,-98v11,-15,-3,-30,3,-42v-21,-16,-7,35,-22,20v6,-18,-9,-30,-8,-8v-8,4,-5,-8,-14,-7v3,20,-7,51,-7,15v-2,-8,2,-25,-11,-20v0,11,3,25,-2,29"},"I":{"d":"12,-43v-12,-54,-3,-79,-10,-111v6,-30,-6,-60,1,-80v-4,-8,0,-12,-2,-18v61,-7,25,40,38,66v-5,26,-9,39,-4,59v-7,9,5,18,-5,24v7,32,-6,42,2,58v-2,-1,-3,1,-1,2v0,13,3,29,-7,35v-8,11,-2,39,-6,51v-7,-13,-10,-81,-6,-86","w":45},"J":{"d":"0,-250v-1,-4,2,-3,5,-2r-1,0v23,5,43,-1,62,-1v1,32,-9,73,0,99v-4,22,-3,43,-4,58v0,-2,-2,-1,-2,0v-14,17,4,58,-10,80v-5,-11,1,-28,-2,-46v-10,6,-4,29,-8,41v-9,2,-2,-13,-5,-17v-10,13,-12,30,-11,48v-3,3,-8,1,-7,-4v3,-8,-1,-23,-7,-12v-1,18,3,41,-2,55v-11,-2,0,-30,-5,-47v-3,2,-4,0,-4,-3v6,-21,-7,-43,8,-49v15,-34,27,-69,24,-100v-3,-31,4,-61,-2,-74v-15,-4,-12,13,-15,21v-12,1,4,-20,-14,-20v-1,-8,5,-22,0,-27","w":73},"K":{"d":"15,-27v-10,-44,-14,-179,-16,-226v14,1,26,2,37,1v-2,20,-1,35,0,50v23,-7,34,-28,54,-39v5,-13,27,-13,38,-10v-2,10,1,14,-2,23v-14,1,2,35,-14,29v-2,-7,5,-18,-4,-19v-1,18,1,39,-2,55v-11,-6,-1,-28,-5,-47v-14,3,-16,19,-21,30v-6,2,-5,-13,-13,-4v-11,31,20,36,32,50v9,2,19,15,27,18r-18,176v-10,-8,2,-42,-6,-60v4,0,0,-3,2,-7v-23,-23,6,-48,-11,-69v10,-7,-5,-17,5,-22v-1,-6,-7,-6,-12,-8v3,13,-5,36,-5,15v0,-17,-3,-27,-14,-32v-3,18,5,45,-5,54v-5,-14,2,-40,-3,-59v-6,-1,1,11,-7,9v-5,-5,0,-18,-10,-20v0,-4,-5,-4,-6,-2r1,74v-11,6,1,18,-1,22v-8,28,-4,67,-13,95v-1,-25,-7,-53,-6,-77r-2,0","w":133},"L":{"d":"0,-253v60,-10,24,51,35,76v-3,31,-1,57,2,72v-4,18,2,36,-6,47v9,-3,1,8,5,12v-5,6,-5,19,-1,24v21,2,51,-5,64,4v3,11,17,6,20,19v6,2,-2,20,-3,30v-12,2,4,-31,-12,-24r-1,28v-17,9,4,-39,-18,-26v-1,9,5,32,-7,26v0,-12,1,-24,-3,-34v-6,1,-4,22,-13,15v2,-11,-12,-14,-16,-6v5,16,-6,38,-6,9v2,-9,-2,-16,-13,-14v-4,17,7,52,-6,55v5,-43,-16,-71,-6,-97v-18,-76,-13,-159,-15,-216","w":125},"M":{"d":"24,-9v-26,-92,-23,-183,-22,-245v53,-12,51,53,84,58v7,-19,21,-28,28,-45v12,-18,28,-11,47,-13v-3,25,-3,36,0,47v-9,16,6,51,-8,64v-1,6,4,6,4,11r-21,177v-8,1,-4,-10,-5,-17v-1,-43,-11,-101,-4,-133v-7,-38,3,-71,-6,-83v-14,2,7,61,-12,59v0,-14,5,-31,-1,-42v-22,4,-5,50,-17,64v-5,-8,1,-24,-2,-36v-14,4,3,58,-12,51v-4,-17,9,-48,-8,-54v0,-5,-1,-9,-5,-10v1,6,0,20,-6,12v-2,-9,4,-24,-4,-27v-2,11,6,44,-6,40v-3,-21,9,-60,-12,-59v-1,49,6,107,0,152v3,8,-1,11,2,20v-6,-1,0,11,-8,10v4,16,-7,44,-6,12v1,-3,1,-10,0,-13","w":166},"N":{"d":"0,-181v-11,-57,28,-95,65,-47v9,4,13,13,24,15v2,3,3,6,8,6v1,-20,0,-34,-1,-46v16,0,22,2,37,0r-17,238v-16,8,2,44,-11,59v-4,-26,-5,-55,-11,-79v9,-21,-2,-31,2,-46v6,1,6,-6,2,-8r-3,0v6,-35,4,-58,-1,-74v-11,5,6,42,-11,35v0,-20,5,-45,-11,-53v-5,0,-2,14,-10,7v4,-16,-13,-30,-11,-6v4,11,-6,21,-6,6v0,-9,1,-19,-1,-27v-7,4,-4,-14,-8,-5r0,135v-5,17,7,49,-4,60v-3,17,6,45,-4,56v-2,-26,-13,-57,-10,-81v-19,-46,-2,-99,-17,-123v2,-9,7,-17,-1,-22","w":140},"O":{"d":"113,-91v1,6,-2,28,-2,43v-10,1,-4,-10,-5,-19v-10,6,-2,15,-11,20v-11,6,-2,57,-13,54v-1,-8,3,-27,-2,-28v-4,16,8,58,-8,56v-2,-11,6,-42,-3,-40v-2,9,6,31,-6,29v0,-23,1,-43,-14,-50v3,21,-8,49,-6,18v-2,-12,1,-28,-4,-36v0,6,1,19,-7,12v3,-22,-3,-34,-11,-46v-1,13,2,28,-1,39v-14,-3,2,-43,-8,-60v7,-14,-13,-26,-8,-43v-7,-55,-2,-85,-4,-112v43,3,97,-6,134,3v-7,46,1,128,-21,160xm131,-250r0,0r0,0xm36,-148v9,31,6,74,30,105v38,-71,35,-138,27,-181v-10,9,-17,-11,-20,15v-9,4,-2,-27,-14,-12v4,13,-10,27,-7,6v2,-13,-11,-12,-16,-9v1,23,-5,53,2,72v-1,1,-3,2,-2,4xm126,-253v1,0,1,-1,0,-1r0,1xm127,-254v-1,0,-1,0,-1,1v1,0,1,-1,1,-1xm131,-249r0,0r0,0","w":139},"P":{"d":"122,-186v-9,20,-30,23,-23,56v-9,4,-5,-6,-6,-14v2,-9,-5,-8,-3,-17v-7,2,2,27,-10,19v4,-15,-8,-22,-15,-11v-1,12,1,26,-2,36v-5,1,-5,-4,-5,-9v3,-8,-2,-46,-5,-23v5,16,-8,33,-6,8v1,-6,2,-12,-1,-16v5,9,-6,19,-6,4v1,-6,-3,-11,-7,-6r-1,201v-13,-2,0,-33,-6,-49v-9,-2,3,30,-10,28v0,-27,0,-53,-7,-72v0,-55,-3,-92,-7,-112v-7,-34,-2,-50,-2,-66v1,0,5,0,2,-1v-1,-7,-6,-17,-4,-23v42,2,96,-4,133,2v-4,2,-5,15,-4,9v-1,16,9,52,-5,56xm94,-201v5,-19,-9,-32,-16,-16v0,2,-5,4,-7,2v0,-6,-8,-12,-11,-4v4,12,-6,22,-5,3v0,-9,-11,-8,-22,-9v-12,50,44,49,59,24r2,0","w":135},"Q":{"d":"120,30v-16,-3,7,-43,-18,-47v-4,3,-1,17,-11,11v0,-8,2,-19,-5,-20v-16,15,-11,49,-19,75v-8,-10,6,-48,-11,-58v-3,-10,-6,-19,-11,-26v4,18,-5,50,-5,16v0,-34,-13,-53,-21,-68v-2,10,6,33,-5,31v-4,-81,-16,-112,-11,-151v-7,-13,6,-29,-3,-39v-3,-13,16,-4,24,-7r109,1v1,20,-6,45,2,59v-12,18,5,42,-8,52v-3,18,7,68,-6,66r0,-28v-6,7,6,49,-8,43r1,-26v-3,12,-16,29,-1,35v0,12,5,11,4,21v13,11,8,22,17,36v-10,-11,-14,-3,-13,12v1,4,2,10,-1,12xm92,-131v7,-12,6,-37,4,-43v1,-22,2,-37,0,-51v-10,-1,-5,12,-6,22v-11,6,-3,-35,-12,-13v2,7,-4,13,-8,6v5,-14,-10,-18,-16,-9v3,7,-3,14,-7,9v2,-20,-15,-16,-9,-2v0,1,0,1,-1,1v9,25,-15,30,2,44v-3,2,-6,7,-1,10v2,38,12,67,13,91v1,2,8,2,6,5v4,21,11,22,21,10v0,-13,-11,-15,-10,-29v8,0,13,12,18,0v1,-16,10,-38,6,-51xm63,-86v2,-1,4,3,2,3v-1,-1,-2,-2,-2,-3xm111,-70r-1,0r1,0","w":141},"R":{"d":"130,-251v-3,26,6,61,-14,76v-3,4,-2,13,-9,13v4,19,-8,42,-6,13v1,-6,0,-13,-3,-15v-3,11,-15,15,0,33v13,1,18,13,27,19v-2,1,-4,5,-2,5v0,4,5,8,1,10v-8,49,-8,106,-19,151v-8,-19,7,-59,-11,-70v1,-27,-3,-59,2,-83v-5,-9,-8,4,-14,0v-2,-5,-4,-20,-11,-12v2,7,-3,10,-7,5v5,-8,-5,-30,-6,-11v-3,7,6,25,-7,21r0,-29v-1,2,-5,3,-6,0v3,-13,-10,-26,-12,-10v8,33,-8,56,3,73v-13,19,9,43,-9,61v-3,12,6,38,-6,37v2,-46,-12,-73,-13,-98r-8,-165v6,-8,-3,-12,-1,-17r0,-8xm35,-219r0,0r0,0xm79,-158v-6,1,-4,7,1,8v3,-2,3,-6,-1,-8xm33,-185v24,2,80,-5,60,-31v3,-7,-5,-12,-8,-5v0,5,-1,17,-7,11v4,-13,-9,-17,-13,-6v3,6,-1,17,-6,10v3,-14,-8,-25,-13,-12v2,9,-8,8,-11,3r-1,0v1,10,-1,23,-1,30xm35,-219r0,0r0,0xm76,-152v3,4,10,-1,5,-4v-1,-3,-6,-2,-6,2","w":136},"S":{"d":"48,-185v50,-11,98,36,82,82v-13,4,6,69,-11,64v-2,-9,5,-25,-2,-29v-11,20,2,60,-10,76v-5,-13,0,-32,-2,-50v-9,7,-1,26,-6,36v-10,1,-1,-13,-5,-19v-5,10,5,49,-8,41v4,-25,-3,-31,-15,-14v-15,10,-5,47,-11,66v-13,-5,3,-40,-7,-57v0,-7,-1,-12,-1,-20v-9,1,-9,-9,-15,-12v-3,13,5,50,-7,47v-2,-18,4,-44,-3,-57v-2,9,6,30,-5,28v-1,-22,5,-51,-10,-61v4,13,-6,29,-6,6v0,-36,-7,-51,-4,-72v11,0,19,-16,10,-24v2,4,-3,7,-6,4v-1,-9,-10,-2,-7,-18v2,1,2,-1,2,-3v-1,-2,-1,-1,0,-3v-1,1,-1,0,-2,-1v4,-29,-4,-43,12,-56v23,-30,67,-26,96,-14v12,11,33,28,21,41v-11,-6,-18,4,-15,19v3,6,-6,12,-7,4v-1,-10,5,-25,-11,-22v3,-13,-10,-28,-11,-7v-9,8,-5,-25,-18,-11v2,6,-2,13,-7,7v1,-6,-4,-11,-9,-6v0,10,-4,30,-11,14v-9,3,-7,26,7,21r3,-1xm40,-213v-5,-1,-3,4,-3,7v3,0,3,-4,3,-7xm29,-36v0,0,-3,4,-1,4xm26,-157v-8,1,-8,27,2,26v6,-3,5,-12,5,-20v0,4,-4,6,-7,3r0,-9xm82,-73v8,-8,15,-33,10,-44v0,5,-11,9,-11,1v3,-11,4,-49,-12,-35v5,11,-7,23,-5,5v1,-8,-5,-9,-5,-1v2,7,1,19,-6,12v6,-15,-7,-26,-14,-15v-1,10,5,25,-4,28v6,37,7,61,23,76v-2,8,7,15,11,6v3,-12,18,-19,13,-33xm92,-118v1,0,1,0,1,-1v-1,0,-1,0,-1,1xm89,-122v10,1,7,-14,6,-23v-3,-4,-8,0,-7,5v-1,7,0,12,1,18xm40,-213v-5,-1,-3,4,-3,7v3,0,3,-4,3,-7xm91,-120v7,0,8,-24,1,-27v-7,3,-5,22,-1,27xm93,-118v0,-1,0,-1,-1,-1v0,1,0,1,1,1xm29,-36v0,0,-3,4,-1,4","w":138},"T":{"d":"-1,-252r132,0v-4,7,4,19,2,30v-12,-7,-3,20,-13,16v3,-15,-10,-25,-17,-14v3,7,-5,15,-8,7v4,-12,-11,-18,-14,-8v3,22,-1,49,3,60v-9,19,4,29,-4,45v-6,53,-3,114,-13,163v-7,-12,4,-48,-10,-62r-6,-98v0,1,1,1,2,1v0,-2,-2,-1,-4,-2v2,0,1,-3,1,-4v-1,0,-1,0,-1,-1v1,-23,9,-52,-2,-65v4,-24,-1,-59,-7,-24v1,5,3,16,-5,11v7,-16,-13,-43,-17,-14v-10,1,-2,-14,-17,-14v-3,-10,1,-20,-2,-27","w":138},"U":{"d":"3,-247v11,0,25,-10,32,-2v0,11,6,25,0,32v0,4,-5,6,-1,11v8,-1,-1,3,1,7v-1,35,3,76,-2,108v8,24,11,43,15,60v10,7,19,26,27,9r3,-1v-1,0,-1,0,-1,-1v4,-6,19,-19,10,-25v10,-6,11,-26,5,-33v15,-83,1,-120,6,-170v13,5,21,-2,34,0v1,29,-6,64,1,88v-10,12,6,39,-6,47v0,43,-6,69,-16,96v-4,0,-1,-11,-4,-3v1,0,1,0,1,1v-6,10,2,32,-3,42v-11,0,-1,-21,-5,-31v-14,9,-20,27,-20,45v-12,1,5,-34,-16,-23v-1,4,-5,33,-8,9v-1,-6,-4,-15,-3,-3v1,15,-9,31,-6,7v1,-18,-10,-25,-15,-37v-4,0,-1,6,-2,9v0,4,-3,12,-6,5v-1,-32,-5,-49,-16,-65v0,-33,-6,-45,-5,-61r-3,0v8,-18,-6,-36,2,-51v0,-24,-4,-50,1,-70","w":140},"V":{"d":"97,-252v64,-8,24,64,36,95v-7,41,-17,80,-19,126v-14,2,4,-38,-9,-40v-1,3,-1,6,1,8v-5,-1,0,14,-9,14v-21,16,-12,62,-21,91v-8,-3,5,-49,-6,-45v6,19,-8,43,-5,12v2,-25,-26,-30,-24,-51v-5,-2,-6,-9,-9,-13v-3,11,7,39,-6,38v-2,-18,4,-43,-3,-57v2,6,0,17,-6,9v2,-16,0,-29,-5,-39v-1,9,5,29,-6,23v1,-59,-12,-82,-2,-116v-8,-15,3,-27,-4,-41v4,-13,21,-16,37,-15v4,17,-11,31,0,39v2,25,-12,61,4,76v-2,32,9,44,8,61v-2,0,-1,2,0,3v7,14,19,48,23,24v15,-20,10,-26,13,-40v21,-74,6,-109,14,-158v-2,0,-1,-2,-2,-4","w":138},"W":{"d":"191,-252v67,-11,17,55,36,85v-11,47,-8,72,-14,111v-9,-2,2,-30,-4,-38v-7,6,4,33,-8,31v0,-3,-2,-7,-2,-2v-6,7,-2,21,-13,24v-16,21,-24,48,-24,81v-13,0,5,-35,-9,-45r-35,-67v-9,0,1,19,-10,16v-5,-2,2,-16,-8,-10v-8,15,6,64,-10,64v-1,-12,3,-27,0,-37v-20,20,-19,60,-26,94v-7,-14,5,-59,-13,-70v-5,-14,-8,-24,-18,-30v2,13,-2,60,-6,27v-2,-19,3,-45,-3,-60v-3,-2,-3,-5,-7,-7v-2,9,5,32,-6,26v4,-63,-17,-87,-9,-125v-5,-24,2,-51,-1,-68v13,-3,20,5,26,-3v25,28,-7,84,11,101v-2,49,11,84,26,112v10,-5,13,-24,15,-31v3,0,4,0,4,-4v-2,-13,4,-19,6,-28v-4,0,-2,-7,-2,-7v11,-15,6,-42,8,-62v11,-10,25,-15,36,-1v-3,61,15,99,26,136v12,-2,6,-10,17,-17r18,-103","w":231},"X":{"d":"-3,-251v54,-12,50,45,65,67v18,-19,19,-47,31,-67v25,-5,45,0,28,20v-13,28,-19,63,-27,97v-7,0,2,-37,-6,-17v-5,4,-18,20,-3,24v6,11,4,30,15,36v6,39,31,69,23,95v0,-1,0,-1,-1,-1v-1,16,1,36,-2,48v-15,-6,7,-54,-14,-66v4,18,-6,41,-6,10v0,-27,-9,-43,-17,-61v-9,1,-6,-23,-14,-10v4,18,-9,23,-6,2v-2,-6,2,-17,-5,-18v0,1,-2,3,0,3v0,11,-14,13,-10,21v-13,6,-7,43,-18,47r-1,-5v-1,8,3,37,-6,28r0,-21v-18,2,-3,58,-17,56v-11,-72,9,-92,26,-135v5,-13,15,-29,17,-40v-6,-3,-7,-13,-10,-19v3,5,-3,13,-7,7v1,-11,2,-24,-6,-29v3,7,-3,21,-6,8v3,-27,-8,-44,-14,-59v-7,-1,3,-18,-9,-21","w":134},"Y":{"d":"-1,-243v-3,-16,23,-7,36,-9v-7,17,8,26,1,39v10,34,7,53,21,73v-3,13,9,24,15,11v1,-15,14,-24,9,-37v15,-33,8,-64,16,-85v12,-1,26,-3,34,0v-7,35,-6,78,-17,109v-5,-3,-1,-15,-2,-23v-16,20,-3,60,-14,84v-7,-7,2,-31,-3,-46v-31,45,-10,84,-24,117v-2,9,5,35,-6,29v-1,-7,5,-19,-2,-21v3,6,-2,14,-6,7v0,-30,-8,-69,-2,-92v-2,-7,-5,-15,-9,-21v-2,13,5,52,-7,46v-2,-18,5,-44,-3,-57v5,11,-5,29,-5,9v0,-12,2,-27,-4,-34v2,6,0,14,-6,8v0,-35,-14,-46,-14,-70v-8,-10,-5,-30,-8,-37","w":136},"Z":{"d":"24,-167v-6,-29,5,-73,-22,-80v-3,-4,-1,-7,6,-8v44,5,91,-1,115,3v-19,39,-14,75,-23,117v-5,-9,0,-24,-2,-37v-16,12,0,55,-14,63v-2,-8,1,-19,0,-29v0,8,-5,17,-7,19r1,-1v-15,16,0,54,-12,74v-5,-8,-1,-26,-2,-40v-5,16,-18,31,-15,48v-8,0,-13,16,-4,17v18,-2,43,-6,50,8v6,8,23,13,25,19v-10,-7,-14,4,-12,17v3,7,-3,22,-6,8v4,-17,-4,-38,-12,-17v-7,-2,-10,-15,-17,-3v-2,10,6,33,-6,27v-1,-11,6,-35,-8,-32v-8,8,-1,31,-5,40v-13,-1,4,-30,-9,-40v-6,1,2,12,-8,12v-2,-12,-14,-20,-13,0v-10,6,-2,-18,-17,-12v10,-27,19,-51,21,-73v9,-11,12,-26,11,-36v17,-27,18,-59,26,-77v-4,-1,-1,-5,1,-7v1,-12,15,-31,9,-39v-19,-7,0,30,-16,25v-3,-7,5,-22,-5,-26v-7,3,2,31,-10,23v3,-13,-2,-27,-15,-19v-1,18,1,39,-2,56r-3,0","w":128},"0":{"d":"96,-47v-8,11,-13,31,-27,43v-2,17,2,41,-2,54v-15,-2,7,-47,-11,-57v-2,11,6,43,-7,37v-1,-26,6,-59,-8,-66v2,8,-6,10,-7,2v0,-5,2,-12,0,-13v-1,-13,-5,-14,-3,0v-4,7,5,44,-7,34v-1,-31,6,-69,-12,-80v2,-1,2,-5,2,-9v-16,-30,-13,-50,-14,-71v10,-10,-10,-34,3,-46v13,-43,97,-42,112,-14v9,1,6,15,15,18v1,36,2,77,-7,90v6,0,0,3,0,5v-6,19,-6,44,-20,53v-1,18,1,40,-2,56v-10,-1,-3,-22,-5,-36xm56,-8r0,0r0,0xm36,-156v4,34,4,77,29,116v18,-12,10,-51,26,-59v-8,-23,7,-35,1,-49v6,-21,4,-44,5,-59v-5,1,-8,2,-12,0v3,-10,-4,-21,-10,-11v4,14,-7,36,-7,7v1,-8,-4,-16,-8,-7v4,14,-9,21,-5,3v0,-7,-9,-12,-9,-2v2,10,-6,38,-8,13v0,-2,-1,-3,-4,-3v-2,18,5,36,-1,51r3,0xm123,-226v-1,0,-1,0,-1,-1v0,0,1,0,1,1xm56,-9r0,0r0,0"},"1":{"d":"-3,-255v22,1,46,5,77,1r-9,190v8,3,-5,14,3,24v-6,17,-6,58,-13,80v-5,-12,2,-29,-2,-47v-16,-76,-12,-131,-14,-181v-19,10,1,-51,-19,-32v0,4,-1,6,-6,5v-1,-8,-3,-14,-14,-11v1,-11,1,-20,0,-25v-2,0,-2,-1,-3,-4","w":82},"2":{"d":"23,-237v70,-52,137,43,98,97v4,14,-5,23,-5,32v-10,6,-9,31,-23,36v1,10,-3,26,-6,36v-6,-2,-9,-11,-16,-1v4,21,43,5,61,9v-5,6,-3,20,-1,29v-16,-3,-3,26,-11,34v-8,1,-3,-11,-4,-19v2,-9,-3,-19,-11,-12v2,7,-4,20,-7,8v4,-9,-6,-18,-8,-6v-1,10,1,22,-2,30v-5,0,-6,-4,-5,-9v-12,4,2,-25,-10,-24v1,10,-7,36,-11,17v5,-19,-10,-22,-7,-4v3,7,-2,21,-7,10v7,-20,-13,-36,-12,-11v-9,2,6,34,-9,27v3,-15,-2,-55,-4,-22v2,4,1,9,-5,8v-3,-5,1,-14,-1,-20v1,6,-4,11,-7,6v1,-8,0,-18,-8,-13v9,-13,21,-22,28,-37v10,-11,18,-25,30,-35v14,-27,32,-48,32,-78v7,-11,4,-34,3,-44v-2,0,-2,0,-2,-4v4,-4,5,-8,1,-11v-9,0,-5,-12,-14,-13v-1,-5,-6,-14,-11,-7v-1,8,5,30,-6,26v-1,-11,3,-27,-5,-31v-6,12,-8,28,-7,48v0,3,-5,2,-6,0v-1,-7,4,-20,-4,-22v-5,6,-5,19,-4,28v-6,0,-14,-3,-18,0v0,8,-2,41,-8,22v0,-10,2,-27,-12,-22v6,-10,-2,-25,10,-30v2,-12,11,-17,14,-28","w":140},"3":{"d":"0,-253r128,4v-8,35,6,61,-16,75v13,17,25,38,9,53v-4,25,4,61,-7,79v-6,-13,2,-35,-3,-52v-2,7,2,13,-7,13v-12,11,-2,44,-12,59v-6,-6,2,-52,-12,-21v-6,4,1,26,-3,37v-11,1,-1,-20,-6,-28v-3,17,6,46,-5,56v-6,-13,2,-36,-3,-54v-17,14,-27,35,-27,63v-14,-1,8,-44,-21,-32v2,-29,47,-34,44,-57v24,-20,22,-51,35,-78v-3,-5,-4,-22,-11,-10v-1,9,7,32,-6,25v-1,-11,2,-26,-2,-34v2,18,-4,24,-11,9v1,-6,2,-14,-5,-14v4,9,-5,21,-5,5r0,-6v-11,2,5,31,-12,23v1,-7,2,-13,1,-19v-13,-1,-18,-12,-28,-17v23,-25,88,2,76,-48v-14,-9,-14,7,-16,17v-12,2,1,-18,-13,-21v-4,0,-3,24,-10,10v1,-9,-8,-7,-8,-1v5,16,-9,21,-6,4v1,-10,-10,-25,-14,-12v3,7,-3,14,-6,8v1,-10,-1,-16,-3,-25v-7,-1,-12,-6,-15,-11","w":133},"4":{"d":"95,-254v13,-3,28,4,36,0r-6,132v-6,13,2,38,-6,49v10,5,-11,15,-1,22v-1,4,4,5,1,8v-3,-2,-4,3,-5,8v4,25,-11,39,-5,70v-2,4,-8,2,-7,-3v-1,-59,-12,-89,-6,-123v-1,-23,1,-50,-2,-71v-15,3,-2,31,-9,42v-14,2,10,-54,-22,-38v1,5,-3,14,-7,6v-1,-10,-12,-12,-11,0v2,4,0,7,-5,7v-4,-2,2,-19,-8,-11v2,10,-2,40,-8,17v1,-6,2,-12,-1,-17v2,4,-4,7,-6,3v0,-1,1,-4,-1,-4v-4,10,4,39,-8,33v-1,-12,6,-35,-7,-37v-2,-12,5,-32,-4,-37v8,-20,0,-38,4,-55v55,-9,26,44,35,64v20,1,42,3,58,0v0,-21,3,-45,1,-65"},"5":{"d":"116,-42v0,3,-6,4,-7,1r0,-13v-10,6,5,44,-10,39v-1,-6,3,-16,0,-21v-8,16,-16,30,-32,37v1,10,0,39,-6,17v1,-7,2,-14,-3,-17v-2,12,5,48,-6,41v-2,-22,8,-53,-12,-61v-1,-4,-4,-6,-8,-8v2,16,-3,66,-6,26v-2,-22,5,-50,-12,-60v-3,-24,-19,-48,-14,-73v13,4,6,-11,8,-20v-24,-22,2,-70,-9,-99r133,2v0,21,-6,26,-25,32v0,5,0,15,-7,10v0,-10,-4,-18,-10,-5v-8,0,-5,-17,-17,-6v-2,9,4,30,-8,22v8,-20,-14,-41,-12,-11v-13,11,-3,-28,-16,-11v-15,57,51,19,72,45v46,23,6,91,7,133xm18,-138v4,-1,3,-13,0,-16v-1,5,-3,13,0,16xm61,-148v0,-1,-1,-6,-1,-2v0,1,1,2,1,2xm41,-150v0,-1,-1,-4,-1,-2xm60,-44v22,10,28,-38,33,-71v3,-8,1,-24,-1,-34v-8,-5,-10,3,-9,14v5,12,-8,25,-6,7r0,-18v-7,2,-2,-17,-9,-8v2,6,-2,12,-7,7v1,5,0,15,-6,9v2,-9,-9,-6,-5,-17v-7,5,7,38,-9,30v2,-10,-1,-18,-1,-25v1,3,-3,2,-5,2v-2,-1,1,-9,-1,-9v-6,4,-5,20,0,23v0,-2,2,-1,3,-1v-7,41,5,55,15,77v7,3,2,12,8,14"},"6":{"d":"50,-183v82,-15,96,72,70,110v-2,14,-3,43,-4,65v-13,3,1,-29,-7,-33v0,7,-4,38,-7,10v0,-1,2,-6,0,-6v-1,11,-9,14,-11,24v-12,2,-12,17,-22,21v4,23,-7,63,-5,18v-1,-7,1,-18,-4,-21v-2,8,5,28,-6,24v1,-17,3,-34,-10,-39r-9,-13v-2,14,6,38,-4,45v-6,-13,3,-40,-4,-56v1,4,-3,6,-6,4v-17,-77,-32,-115,0,-160v21,-30,38,-70,78,-60v-7,0,-7,37,-13,19v-1,-2,-2,-3,-4,-3v-3,8,-2,20,-3,28v-9,2,-5,-12,-9,-15v0,8,-7,9,-8,16v-10,1,-7,13,-12,22xm84,-73v18,-12,11,-56,11,-71v-6,-4,-6,9,-13,4v2,-7,-6,-13,-9,-10v4,10,-5,25,-5,5v1,-9,-6,-13,-10,-6v-9,7,-36,20,-20,39v0,19,6,27,8,44v9,4,5,21,16,24v-2,4,2,10,7,7v5,-12,15,-19,15,-36","w":138},"7":{"d":"-3,-253v19,-1,44,4,60,-1v23,0,50,6,70,1v-4,18,-6,37,-17,49v-10,34,-8,69,-16,103v-7,-8,3,-25,-3,-37v-7,32,-28,45,-24,80v-1,4,-5,3,-7,1r0,-6v-4,18,5,47,-6,59v-3,-21,-4,-43,-9,-13v-2,0,-1,5,-3,4v-20,11,-1,69,-17,73v-1,-18,1,-38,-1,-55v-4,0,-9,2,-12,0v6,-20,15,-36,18,-58v6,-5,4,-24,12,-25v6,-60,37,-103,39,-146v-10,0,2,13,-11,11v5,13,-9,22,-6,3v0,-7,-4,-19,-8,-9v1,7,-3,9,-8,6v1,-9,-3,-17,-9,-9v3,18,-8,39,-7,8v-1,-9,-6,-22,-12,-11v4,7,-4,9,-7,4v6,-18,-5,-25,-16,-32","w":130},"8":{"d":"127,-117v5,50,-20,59,-18,107v-8,1,-4,-14,-5,-22v-16,14,-11,49,-14,73v-12,-6,0,-32,-5,-51v-6,9,7,44,-8,40v-1,-10,3,-25,0,-33v-13,7,-1,57,-14,60v-2,-16,4,-39,-2,-51v-2,10,5,34,-6,28v-2,-15,7,-39,-9,-43r-14,-24v-3,15,8,49,-6,51v0,-32,2,-64,-12,-77v-8,-36,-24,-85,-2,-102v5,-9,2,-17,-7,-19v-2,-30,-14,-59,0,-72v47,4,98,-11,120,22v21,31,3,45,-6,63v6,4,24,35,8,50xm66,-219v-18,-13,-1,26,-15,20v4,-14,-12,-35,-14,-17v-6,34,29,42,53,28v0,0,0,2,1,2v13,-13,0,-28,1,-34v-20,-6,-18,8,-19,25v-12,2,-2,-16,-7,-24xm38,-145v-5,53,8,86,30,112v19,-16,11,-41,27,-53v-2,-18,9,-37,0,-47v9,-10,-10,-28,-11,-11v1,6,-1,17,-6,10v4,-13,-6,-26,-15,-15v4,17,-7,34,-6,6v1,-5,-5,-11,-7,-4v0,9,-9,23,-8,5v-2,-1,-1,-2,-4,-3","w":140},"9":{"d":"71,-251v20,-2,75,-9,56,26v3,0,1,1,1,3v0,3,4,8,2,9v-4,66,4,96,-22,124v-2,13,6,51,-7,43v-1,-7,3,-18,0,-23v-2,8,-7,9,-10,12v1,0,3,-1,3,-1v-27,4,-1,65,-20,70r0,-45v-13,7,-13,17,-12,34v-9,3,-8,-29,-21,-2v0,9,5,30,-5,26v1,6,2,19,-6,12v-1,-15,6,-50,-14,-33v28,-47,57,-62,74,-105v7,-1,4,-11,-1,-11v-16,-3,5,-44,-16,-44v-5,7,5,28,-7,25v3,-13,-5,-24,-8,-8v-1,8,4,25,-6,18v-1,-12,5,-43,-9,-35v0,5,-1,16,-7,10r0,-12v-10,5,-13,-20,-28,-18v-12,-28,-16,-72,2,-76v22,7,42,-5,61,3r0,-2xm35,-199v10,13,41,18,59,10v8,-24,-7,-48,-11,-16v-10,3,0,-26,-14,-13v-1,8,4,27,-7,20v6,-19,-8,-38,-14,-13v-10,4,-3,-19,-13,-10v4,10,-9,17,-2,23v0,0,1,-1,2,-1xm94,-139v2,1,2,1,3,-1xm98,-157v-5,-1,-2,4,-1,6v4,-2,-1,-3,1,-6"},":":{"d":"2,-80v0,-9,23,-3,36,-4v5,26,-18,28,-13,60v-6,3,-7,-3,-6,-10v4,-19,-5,-23,-18,-21v4,-11,1,-18,1,-25xm1,-156v21,0,49,-3,32,27v-18,-3,1,33,-14,33v2,-17,2,-35,-19,-30v1,-6,4,-11,0,-14v4,-5,-1,-12,1,-16","w":45},".":{"d":"37,-31v1,25,-14,36,-16,61v-9,-4,6,-36,-21,-32v3,-11,-2,-21,1,-29v12,3,27,-1,36,0","w":37},",":{"d":"3,-30v13,3,36,-5,36,9v-3,-1,-2,2,-2,4v0,18,-23,37,-17,65v-8,0,-15,-6,-12,-17v-14,-16,-5,-45,-5,-61xm14,22v0,6,-1,15,1,19v0,-6,1,-15,-1,-19","w":38},";":{"d":"4,-29v-2,-17,-3,-49,2,-59v19,-2,46,6,30,22v-6,21,-17,26,-15,57v-13,3,-9,-23,-17,-20xm0,-126v-6,-27,14,-37,38,-29v0,0,-1,2,-2,2v1,23,-14,33,-15,58v-10,-3,8,-39,-21,-31xm16,-17v2,-4,1,-22,-1,-14v0,5,-1,11,1,14","w":180},"!":{"d":"1,-216v-3,-42,8,-35,38,-38v-4,40,2,74,-3,95v0,1,2,0,0,0v1,26,-11,62,-1,82v-7,4,-1,12,-3,18v-17,-3,-12,27,-7,35v19,-2,9,17,11,29v-15,-7,-15,12,-13,29v1,6,-3,8,-7,5v0,-17,1,-37,-15,-33r2,-7v-2,-9,-3,-17,-1,-21v19,5,13,-18,13,-33v-24,-58,-4,-136,-14,-161","w":48},"?":{"d":"14,-228v21,-9,43,-40,68,-21v13,-2,15,11,26,13v36,51,21,102,-10,122v-11,7,-2,33,-6,42v-12,-1,-1,-21,-8,-28v2,-2,3,-7,-2,-7v0,34,-4,53,-9,75v-8,-1,-3,-12,-4,-20v-32,3,-17,-41,-21,-60v59,-23,54,-80,35,-110v-9,-3,-4,25,-15,8v4,-15,-6,-28,-6,-7v0,8,-4,33,-7,14v2,-24,-7,-19,-14,-8v-1,14,-10,23,-6,36v-18,-3,1,35,-14,33v3,-26,-4,-40,-11,-16v-8,0,2,-20,-11,-17v0,-24,12,-35,15,-49xm48,-27v13,-3,24,6,36,-2v-6,19,-4,46,-10,62v-5,0,-2,-8,-3,-14v4,-5,-2,-18,-4,-17v-9,2,-2,16,-6,25v-9,-10,-18,-38,-13,-54","w":139},"@":{"d":"33,-43v-6,-10,1,-37,-14,-46v-2,-8,-15,-8,-10,-20v-9,-10,-13,-41,-3,-53v-2,-8,9,-10,8,-21v12,-7,15,-23,31,-26v14,-12,52,-14,66,-4v16,-2,35,23,32,39v8,7,3,25,2,38v-6,2,-1,10,-11,10v3,8,-8,6,-6,16v-4,6,-17,-5,-19,7v-3,-11,-14,-3,-16,-16v1,16,-12,9,-20,18v-7,-3,-14,11,-9,0v-3,-6,-9,-14,-16,-9v-3,-14,-14,-28,-6,-45v11,-6,30,-28,47,-11v8,-2,1,-19,13,-8v11,3,23,5,9,18v1,3,3,6,1,9r-3,-3v1,20,0,32,19,19v4,-19,1,-46,-10,-58v-8,6,-16,-9,-25,-11v3,20,-7,8,-17,5v-9,-10,-7,6,-21,3v-5,13,-26,10,-29,27v-15,24,-4,60,14,71v11,21,46,15,65,7v1,-9,25,-15,18,-3v-5,16,1,36,-3,50v-10,1,-4,-11,-5,-20v5,-11,-4,-34,-7,-9v0,9,2,21,0,29v-9,2,-4,-11,-5,-20v4,-19,-12,-17,-16,-4v-3,11,7,38,-5,37v-2,-12,3,-29,-4,-39v-14,5,-3,35,-7,51v-14,-1,1,-29,-8,-44v-7,6,-12,-9,-14,0v-1,7,4,22,-7,17v2,-13,-1,-22,-2,-34v-10,6,3,27,-7,33xm113,-86r0,1r0,-1xm78,-117v11,-11,23,-24,12,-41v-3,14,-11,-3,-14,4v3,7,-6,15,-7,5v-1,-3,-2,-10,-3,-4v1,1,5,6,0,5v-7,-3,-9,5,-8,14v1,11,11,13,20,17","w":154},"$":{"d":"87,-16v-17,22,-3,50,-19,75v-1,18,3,42,-2,57v-11,-4,-1,-31,-4,-50v-13,-6,2,-45,-8,-58v0,-7,-1,-12,-1,-20v-10,1,-9,-8,-15,-12v-3,14,6,54,-7,47v-1,-18,3,-42,-2,-56v4,17,-7,42,-6,11v0,-19,1,-37,-9,-45v4,12,-8,30,-6,7v3,-32,-15,-59,0,-75v10,1,13,-17,5,-21v1,4,-4,5,-6,3v-3,-8,-11,-4,-7,-18v6,-20,-5,-31,4,-42v-5,-16,10,-20,14,-29v17,-6,41,-14,30,-37v3,-6,1,-13,0,-19v17,0,29,0,36,2v1,18,2,28,0,41v0,-1,0,-1,1,-1v25,7,53,25,46,49v-24,-15,-10,32,-24,24v1,-12,3,-26,-11,-23v2,-15,-11,-28,-11,-6v3,9,1,17,1,27v57,8,50,64,41,85v0,13,1,47,-2,61v-12,1,2,-23,-6,-32v-14,14,4,65,-12,75v-1,-14,1,-39,-1,-48v0,0,-1,2,-2,2v-8,5,6,34,-8,32v-1,-4,2,-18,-2,-16v-2,14,2,32,-2,42v-11,0,0,-22,-5,-32xm27,-160v-17,14,9,43,7,9r0,-3v1,5,-4,5,-7,3r0,-9xm40,-208v-6,-3,-5,7,-5,12v1,10,7,10,15,7r2,4r-3,-26v2,7,-5,14,-7,4xm36,-125v2,24,7,56,21,74v-8,-24,0,-51,-6,-71v4,1,0,-5,3,-7v-3,-10,-1,-32,-13,-27v-2,10,4,27,-5,31xm81,-154v-2,12,5,31,-2,43v6,15,-3,40,1,50v7,-21,20,-45,13,-59v0,5,-10,10,-11,2v3,-8,2,-28,-1,-36","w":140},"&":{"d":"46,21v-2,-20,-2,-44,-17,-53v-2,-5,-4,-11,-7,-15v-1,13,2,29,-1,40v-14,-4,2,-41,-8,-60v-1,-29,-14,-60,-11,-82v0,0,1,1,2,0v-1,-10,7,-20,16,-23v-7,-11,-22,-24,-14,-40v-13,-16,8,-30,-5,-37v32,-13,70,3,98,-6v28,0,38,9,35,30v-17,-2,-27,2,-27,17v-9,4,-2,-24,-12,-11v2,6,-2,19,-6,8v3,-10,-8,-18,-9,-5v1,5,-3,8,-6,4v2,-11,-7,-15,-9,-5v4,15,-8,31,-5,7v1,-12,-17,-24,-23,-10v0,31,24,40,44,28r-1,-10v17,6,39,-7,40,13v22,-3,8,13,14,30v-21,-7,-3,27,-18,27v3,-13,-8,-23,-15,-9v-1,8,5,32,-6,25v6,-26,-13,-46,-12,-6v-2,1,-4,1,-6,0v-1,-10,3,-45,-6,-31v-2,5,-6,6,-5,17v-14,5,3,-28,-15,-15v0,7,2,17,0,22v-13,6,3,-28,-13,-18v3,46,4,70,15,96v10,3,3,18,14,24r-1,45v-2,-2,-5,-5,-4,1v-3,15,6,41,-5,47v-6,-16,6,-49,-7,-65v-2,7,5,19,-4,20","w":141},"'":{"d":"1,-266v13,5,34,-8,37,9v-7,2,4,9,-5,13v-8,19,-16,32,-15,56v-14,2,-9,-22,-19,-21xm14,-201v1,-6,-2,-16,-2,-4v0,3,1,10,2,4","w":37},"A":{"d":"4,-94v-2,-34,-16,-99,22,-137v16,-8,37,-24,54,-9v95,57,26,150,36,219v-7,9,-8,34,-11,49v-8,1,-2,-15,-4,-27v-6,1,2,-9,-7,-10v-2,-36,7,-83,-1,-114v2,-8,3,-15,0,-21v-3,4,-9,1,-7,-5v2,-3,-1,-6,-4,-3v-11,2,5,43,-10,37v5,-21,-9,-55,-13,-22v-5,3,-6,-3,-5,-9v0,-4,-2,-5,-3,-2v2,6,-3,11,-7,6v1,-9,-3,-15,-11,-14v1,31,0,42,-1,58v-4,0,0,4,-1,7r1,0v-3,8,8,13,-1,17v-3,37,9,52,-5,71v-3,17,6,46,-4,56v-8,-12,5,-54,-9,-64v2,-4,-4,-8,-2,-9v2,-36,-6,-64,-7,-74xm94,-150v1,-2,-1,-5,-1,-1v0,1,1,1,1,1xm62,-183v17,7,46,0,24,-21v-3,-19,-20,-4,-24,-20v-5,5,2,28,-10,20v-1,-12,-7,-2,-11,0v0,7,-12,21,-3,22v6,1,11,0,16,-2v-1,6,3,3,8,3r0,-2xm93,-153v0,2,1,5,1,1v0,0,0,-1,-1,-1","w":139},"B":{"d":"130,-254v8,32,5,68,-12,77v-3,13,19,12,12,30v3,-1,3,5,3,9v-11,34,-17,66,-23,106v-5,-10,1,-31,-2,-44v-13,15,-22,28,-21,58v-9,1,-4,-15,-5,-25v-17,2,5,51,-12,55r0,-40v-13,5,-13,12,-24,17v1,8,-7,26,-9,9v-2,-2,-2,1,-3,2r-5,38v-14,2,7,-41,-15,-35v4,19,-5,45,-6,12r-7,-260v9,-17,53,-2,69,-10v25,7,41,2,60,1xm71,-219v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm50,-219v-1,-7,-16,-7,-14,2v-9,33,38,38,57,19v3,-8,9,-24,0,-27v-7,2,-7,42,-12,13v0,-4,2,-11,-3,-11v-3,5,1,24,-14,15v1,-9,-1,-21,-7,-11v4,29,-9,29,-6,1v0,-1,0,-1,-1,-1xm89,-95v-3,-10,21,-48,0,-57v0,-2,-1,-5,-1,-3v-1,2,-5,5,-7,2v3,6,-1,14,-7,8v3,-9,-3,-17,-8,-8v-1,9,4,26,-6,21v0,-12,3,-24,-8,-23v-1,5,1,17,-7,12v0,-8,1,-18,-8,-18v2,11,-4,13,-1,23v-12,17,1,42,-10,52v3,24,-5,36,0,47v-8,3,-6,16,-3,21v29,-6,36,-37,54,-54v8,-7,2,-21,12,-23xm71,-219v-2,0,-1,3,-1,4v2,0,1,-3,1,-4","w":142},"C":{"d":"1,-252v41,6,96,-6,121,19v-1,12,14,15,9,25v-21,-4,-1,26,-18,22v4,-14,-3,-24,-16,-22v-2,-13,-19,-17,-15,2v-3,0,-1,18,-9,6v5,-13,-7,-33,-9,-13v1,6,-4,6,-7,4v1,-11,-7,-21,-20,-14r7,107r1,-1v0,15,-2,32,8,36v-2,31,20,54,25,25v-1,-19,16,-24,34,-19v-17,16,-7,59,-17,84v-7,-7,2,-31,-3,-45v-19,15,-8,49,-18,71v-6,-7,3,-32,-4,-37v-3,14,5,56,-7,51v2,-37,-2,-67,-21,-84v-3,11,6,41,-7,35v3,-29,-2,-58,-10,-77v-10,-1,-5,-20,-10,-26v-1,10,4,41,-6,33v-2,-62,-1,-88,-9,-118v8,-10,-5,-24,5,-27v-7,-11,0,-27,-4,-37","w":138},"D":{"d":"2,-251v72,-23,150,17,130,100v-11,46,-18,71,-19,117v-7,1,-3,-10,-4,-17v4,-32,-6,-29,-12,-12r1,0v-1,0,-1,0,-1,1r1,0v-22,21,-30,42,-27,85v-13,-3,0,-33,-6,-50v-6,8,2,38,-10,33v3,-13,-3,-27,-13,-14r-1,29v-9,3,-6,-8,-6,-17v2,-1,1,-9,-4,-8v-7,5,3,41,-10,34v0,-11,2,-31,-9,-25v-1,11,1,24,-1,33v-18,-91,-4,-177,-8,-239v0,1,-2,3,-2,0v2,-14,4,-24,3,-34v-5,-3,0,-10,-2,-16xm93,-133v7,-22,14,-77,-4,-87v-6,3,-2,9,-3,17v-15,5,-2,-30,-15,-18v5,11,-10,27,-7,5v1,-8,-7,-12,-11,-6v2,6,-6,8,-7,3v0,-6,-4,-8,-7,-4v-1,30,-10,71,-4,93v-2,36,-14,78,-11,111v14,1,17,-12,27,-15v0,0,0,-2,1,-2v0,0,-1,1,-1,0v22,-34,42,-60,41,-91v3,-1,5,-5,1,-6","w":144},"h":{"d":"34,-130v6,35,-1,84,3,111v-10,10,-2,52,-8,70v-12,-11,6,-59,-14,-72v-4,-26,2,-62,-8,-82v13,-11,-10,-24,1,-33v-7,-30,0,-73,-9,-89v-3,-27,10,-35,37,-26v3,31,-3,48,0,62r60,2v1,-14,2,-19,0,-25v5,-2,9,-17,0,-18v-3,-24,14,-23,36,-23r-2,118v-17,72,-7,114,-14,174v-12,-1,2,-32,-6,-46v-3,8,1,22,-2,31v-13,-2,4,-38,-12,-43v2,-47,6,-74,-1,-98v11,-15,-3,-30,3,-42v-21,-16,-7,35,-22,20v6,-18,-9,-30,-8,-8v-8,4,-5,-8,-14,-7v3,20,-7,51,-7,15v-2,-8,2,-25,-11,-20v0,11,3,25,-2,29"},"a":{"d":"4,-94v-2,-34,-16,-99,22,-137v16,-8,37,-24,54,-9v95,57,26,150,36,219v-7,9,-8,34,-11,49v-8,1,-2,-15,-4,-27v-6,1,2,-9,-7,-10v-2,-36,7,-83,-1,-114v2,-8,3,-15,0,-21v-3,4,-9,1,-7,-5v2,-3,-1,-6,-4,-3v-11,2,5,43,-10,37v5,-21,-9,-55,-13,-22v-5,3,-6,-3,-5,-9v0,-4,-2,-5,-3,-2v2,6,-3,11,-7,6v1,-9,-3,-15,-11,-14v1,31,0,42,-1,58v-4,0,0,4,-1,7r1,0v-3,8,8,13,-1,17v-3,37,9,52,-5,71v-3,17,6,46,-4,56v-8,-12,5,-54,-9,-64v2,-4,-4,-8,-2,-9v2,-36,-6,-64,-7,-74xm94,-150v1,-2,-1,-5,-1,-1v0,1,1,1,1,1xm62,-183v17,7,46,0,24,-21v-3,-19,-20,-4,-24,-20v-5,5,2,28,-10,20v-1,-12,-7,-2,-11,0v0,7,-12,21,-3,22v6,1,11,0,16,-2v-1,6,3,3,8,3r0,-2xm93,-153v0,2,1,5,1,1v0,0,0,-1,-1,-1","w":139},"b":{"d":"130,-254v8,32,5,68,-12,77v-3,13,19,12,12,30v3,-1,3,5,3,9v-11,34,-17,66,-23,106v-5,-10,1,-31,-2,-44v-13,15,-22,28,-21,58v-9,1,-4,-15,-5,-25v-17,2,5,51,-12,55r0,-40v-13,5,-13,12,-24,17v1,8,-7,26,-9,9v-2,-2,-2,1,-3,2r-5,38v-14,2,7,-41,-15,-35v4,19,-5,45,-6,12r-7,-260v9,-17,53,-2,69,-10v25,7,41,2,60,1xm71,-219v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm50,-219v-1,-7,-16,-7,-14,2v-9,33,38,38,57,19v3,-8,9,-24,0,-27v-7,2,-7,42,-12,13v0,-4,2,-11,-3,-11v-3,5,1,24,-14,15v1,-9,-1,-21,-7,-11v4,29,-9,29,-6,1v0,-1,0,-1,-1,-1xm89,-95v-3,-10,21,-48,0,-57v0,-2,-1,-5,-1,-3v-1,2,-5,5,-7,2v3,6,-1,14,-7,8v3,-9,-3,-17,-8,-8v-1,9,4,26,-6,21v0,-12,3,-24,-8,-23v-1,5,1,17,-7,12v0,-8,1,-18,-8,-18v2,11,-4,13,-1,23v-12,17,1,42,-10,52v3,24,-5,36,0,47v-8,3,-6,16,-3,21v29,-6,36,-37,54,-54v8,-7,2,-21,12,-23xm71,-219v-2,0,-1,3,-1,4v2,0,1,-3,1,-4","w":142},"c":{"d":"1,-252v41,6,96,-6,121,19v-1,12,14,15,9,25v-21,-4,-1,26,-18,22v4,-14,-3,-24,-16,-22v-2,-13,-19,-17,-15,2v-3,0,-1,18,-9,6v5,-13,-7,-33,-9,-13v1,6,-4,6,-7,4v1,-11,-7,-21,-20,-14r7,107r1,-1v0,15,-2,32,8,36v-2,31,20,54,25,25v-1,-19,16,-24,34,-19v-17,16,-7,59,-17,84v-7,-7,2,-31,-3,-45v-19,15,-8,49,-18,71v-6,-7,3,-32,-4,-37v-3,14,5,56,-7,51v2,-37,-2,-67,-21,-84v-3,11,6,41,-7,35v3,-29,-2,-58,-10,-77v-10,-1,-5,-20,-10,-26v-1,10,4,41,-6,33v-2,-62,-1,-88,-9,-118v8,-10,-5,-24,5,-27v-7,-11,0,-27,-4,-37","w":138},"d":{"d":"2,-251v72,-23,150,17,130,100v-11,46,-18,71,-19,117v-7,1,-3,-10,-4,-17v4,-32,-6,-29,-12,-12r1,0v-1,0,-1,0,-1,1r1,0v-22,21,-30,42,-27,85v-13,-3,0,-33,-6,-50v-6,8,2,38,-10,33v3,-13,-3,-27,-13,-14r-1,29v-9,3,-6,-8,-6,-17v2,-1,1,-9,-4,-8v-7,5,3,41,-10,34v0,-11,2,-31,-9,-25v-1,11,1,24,-1,33v-18,-91,-4,-177,-8,-239v0,1,-2,3,-2,0v2,-14,4,-24,3,-34v-5,-3,0,-10,-2,-16xm93,-133v7,-22,14,-77,-4,-87v-6,3,-2,9,-3,17v-15,5,-2,-30,-15,-18v5,11,-10,27,-7,5v1,-8,-7,-12,-11,-6v2,6,-6,8,-7,3v0,-6,-4,-8,-7,-4v-1,30,-10,71,-4,93v-2,36,-14,78,-11,111v14,1,17,-12,27,-15v0,0,0,-2,1,-2v0,0,-1,1,-1,0v22,-34,42,-60,41,-91v3,-1,5,-5,1,-6","w":144},"e":{"d":"0,-253v39,4,87,-2,126,2v-8,3,-8,12,-17,14v-1,11,-6,38,-10,11v-8,-8,-10,19,-17,4v-3,-4,-4,1,-6,3v1,6,-5,9,-8,3v2,-8,-7,-10,-7,-2v4,8,-4,25,-6,7v5,-17,-16,-17,-21,-8v-9,47,38,24,66,34v5,10,17,11,3,22v4,20,-8,44,-7,8v-6,-12,-14,-1,-14,7v0,8,5,33,-6,26v3,-14,-3,-54,-9,-24v4,17,-4,43,-6,13v-1,-8,5,-24,-4,-23v1,-4,-2,-5,-4,-3v-3,2,0,14,-9,9v1,-7,-3,-14,-10,-11v5,28,-5,56,4,70v-6,5,2,13,0,17v-4,-1,-3,4,-3,8v3,0,2,7,1,9v-1,0,-1,1,-1,2v6,12,-4,24,1,33v23,3,60,-11,69,10v0,0,1,-1,2,0v2,9,20,7,15,16v-16,-3,-17,8,-18,20v-4,-3,-12,-35,-22,-11v0,9,5,30,-6,24v4,-15,-5,-46,-3,-17v0,6,-7,6,-8,1v7,-18,-16,-23,-18,-9v-1,0,-1,1,-1,2v5,11,-7,22,-6,4v1,-6,-2,-15,-5,-8v2,6,-5,9,-7,5v-1,-7,-4,-13,-12,-11v-5,-49,-3,-106,-12,-151v2,-2,-1,-3,-3,-5v1,-34,4,-74,-1,-101","w":133},"f":{"d":"133,-252v-14,5,-10,24,-33,22v-2,9,1,30,-12,26v3,-25,-4,-3,-11,-6v2,-10,-4,-18,-9,-9v5,14,-9,28,-6,9v2,-11,-7,-18,-13,-12v4,9,-8,16,-9,7v3,1,-1,-4,2,-4v-2,0,-2,-6,-6,-3v1,24,-3,42,26,37v24,-3,48,1,51,15v-15,1,3,52,-13,42v0,-10,2,-21,0,-29v-12,-2,-6,22,-9,33v-14,1,8,-42,-20,-33v-6,4,4,31,-8,27v3,-13,-5,-38,-6,-16v-1,7,3,22,-7,17v1,-13,3,-27,-8,-28v0,-3,-2,-2,-4,-1v-2,37,6,82,-2,114v8,32,-10,52,-3,91v0,2,-5,3,-6,1v-3,-23,7,-56,-12,-67r-14,-188v5,-9,-1,-13,3,-27v-3,-4,-2,-16,-2,-19v30,4,87,0,131,1"},"g":{"d":"2,-253v19,-4,36,2,48,0r-1,-1v26,3,41,5,59,-1v5,9,20,3,25,3v-7,11,7,28,-12,28v-6,2,0,16,-10,11v0,-5,-4,-14,-11,-8v3,8,-5,21,-7,8v0,-5,-8,3,-9,-12v-8,0,1,19,-11,11v2,-5,-4,-17,-6,-6v-4,3,5,28,-8,23v3,-19,-6,-34,-23,-28v6,45,1,101,14,140v1,17,12,31,14,43v39,-42,26,-99,36,-127v12,3,24,-7,34,-3v-7,55,-16,77,-16,131v-3,2,-6,0,-6,-5v2,-9,0,-20,1,-31v-20,18,-1,65,-16,80r-1,-45v-11,11,-12,31,-13,54v-10,1,-3,-15,-5,-26v-8,10,-1,36,-6,47v-10,0,-2,-16,-4,-27v-9,-16,-20,-30,-27,-48v-1,11,1,24,-1,33v-8,1,-4,-10,-5,-17v4,-8,-1,-29,-4,-33v-3,19,7,49,-4,61v-9,-16,7,-68,-8,-84v-10,-42,-19,-71,-15,-101v-6,1,0,-7,-4,-12v5,-14,3,-27,0,-34v1,0,3,1,3,-1v-6,-8,-1,-19,-1,-23"},"i":{"d":"12,-43v-12,-54,-3,-79,-10,-111v6,-30,-6,-60,1,-80v-4,-8,0,-12,-2,-18v61,-7,25,40,38,66v-5,26,-9,39,-4,59v-7,9,5,18,-5,24v7,32,-6,42,2,58v-2,-1,-3,1,-1,2v0,13,3,29,-7,35v-8,11,-2,39,-6,51v-7,-13,-10,-81,-6,-86","w":45},"j":{"d":"0,-250v-1,-4,2,-3,5,-2r-1,0v23,5,43,-1,62,-1v1,32,-9,73,0,99v-4,22,-3,43,-4,58v0,-2,-2,-1,-2,0v-14,17,4,58,-10,80v-5,-11,1,-28,-2,-46v-10,6,-4,29,-8,41v-9,2,-2,-13,-5,-17v-10,13,-12,30,-11,48v-3,3,-8,1,-7,-4v3,-8,-1,-23,-7,-12v-1,18,3,41,-2,55v-11,-2,0,-30,-5,-47v-3,2,-4,0,-4,-3v6,-21,-7,-43,8,-49v15,-34,27,-69,24,-100v-3,-31,4,-61,-2,-74v-15,-4,-12,13,-15,21v-12,1,4,-20,-14,-20v-1,-8,5,-22,0,-27","w":73},"k":{"d":"15,-27v-10,-44,-14,-179,-16,-226v14,1,26,2,37,1v-2,20,-1,35,0,50v23,-7,34,-28,54,-39v5,-13,27,-13,38,-10v-2,10,1,14,-2,23v-14,1,2,35,-14,29v-2,-7,5,-18,-4,-19v-1,18,1,39,-2,55v-11,-6,-1,-28,-5,-47v-14,3,-16,19,-21,30v-6,2,-5,-13,-13,-4v-11,31,20,36,32,50v9,2,19,15,27,18r-18,176v-10,-8,2,-42,-6,-60v4,0,0,-3,2,-7v-23,-23,6,-48,-11,-69v10,-7,-5,-17,5,-22v-1,-6,-7,-6,-12,-8v3,13,-5,36,-5,15v0,-17,-3,-27,-14,-32v-3,18,5,45,-5,54v-5,-14,2,-40,-3,-59v-6,-1,1,11,-7,9v-5,-5,0,-18,-10,-20v0,-4,-5,-4,-6,-2r1,74v-11,6,1,18,-1,22v-8,28,-4,67,-13,95v-1,-25,-7,-53,-6,-77r-2,0","w":133},"l":{"d":"0,-253v60,-10,24,51,35,76v-3,31,-1,57,2,72v-4,18,2,36,-6,47v9,-3,1,8,5,12v-5,6,-5,19,-1,24v21,2,51,-5,64,4v3,11,17,6,20,19v6,2,-2,20,-3,30v-12,2,4,-31,-12,-24r-1,28v-17,9,4,-39,-18,-26v-1,9,5,32,-7,26v0,-12,1,-24,-3,-34v-6,1,-4,22,-13,15v2,-11,-12,-14,-16,-6v5,16,-6,38,-6,9v2,-9,-2,-16,-13,-14v-4,17,7,52,-6,55v5,-43,-16,-71,-6,-97v-18,-76,-13,-159,-15,-216","w":125},"m":{"d":"24,-9v-26,-92,-23,-183,-22,-245v53,-12,51,53,84,58v7,-19,21,-28,28,-45v12,-18,28,-11,47,-13v-3,25,-3,36,0,47v-9,16,6,51,-8,64v-1,6,4,6,4,11r-21,177v-8,1,-4,-10,-5,-17v-1,-43,-11,-101,-4,-133v-7,-38,3,-71,-6,-83v-14,2,7,61,-12,59v0,-14,5,-31,-1,-42v-22,4,-5,50,-17,64v-5,-8,1,-24,-2,-36v-14,4,3,58,-12,51v-4,-17,9,-48,-8,-54v0,-5,-1,-9,-5,-10v1,6,0,20,-6,12v-2,-9,4,-24,-4,-27v-2,11,6,44,-6,40v-3,-21,9,-60,-12,-59v-1,49,6,107,0,152v3,8,-1,11,2,20v-6,-1,0,11,-8,10v4,16,-7,44,-6,12v1,-3,1,-10,0,-13","w":166},"n":{"d":"0,-181v-11,-57,28,-95,65,-47v9,4,13,13,24,15v2,3,3,6,8,6v1,-20,0,-34,-1,-46v16,0,22,2,37,0r-17,238v-16,8,2,44,-11,59v-4,-26,-5,-55,-11,-79v9,-21,-2,-31,2,-46v6,1,6,-6,2,-8r-3,0v6,-35,4,-58,-1,-74v-11,5,6,42,-11,35v0,-20,5,-45,-11,-53v-5,0,-2,14,-10,7v4,-16,-13,-30,-11,-6v4,11,-6,21,-6,6v0,-9,1,-19,-1,-27v-7,4,-4,-14,-8,-5r0,135v-5,17,7,49,-4,60v-3,17,6,45,-4,56v-2,-26,-13,-57,-10,-81v-19,-46,-2,-99,-17,-123v2,-9,7,-17,-1,-22","w":140},"o":{"d":"113,-91v1,6,-2,28,-2,43v-10,1,-4,-10,-5,-19v-10,6,-2,15,-11,20v-11,6,-2,57,-13,54v-1,-8,3,-27,-2,-28v-4,16,8,58,-8,56v-2,-11,6,-42,-3,-40v-2,9,6,31,-6,29v0,-23,1,-43,-14,-50v3,21,-8,49,-6,18v-2,-12,1,-28,-4,-36v0,6,1,19,-7,12v3,-22,-3,-34,-11,-46v-1,13,2,28,-1,39v-14,-3,2,-43,-8,-60v7,-14,-13,-26,-8,-43v-7,-55,-2,-85,-4,-112v43,3,97,-6,134,3v-7,46,1,128,-21,160xm131,-250r0,0r0,0xm36,-148v9,31,6,74,30,105v38,-71,35,-138,27,-181v-10,9,-17,-11,-20,15v-9,4,-2,-27,-14,-12v4,13,-10,27,-7,6v2,-13,-11,-12,-16,-9v1,23,-5,53,2,72v-1,1,-3,2,-2,4xm126,-253v1,0,1,-1,0,-1r0,1xm127,-254v-1,0,-1,0,-1,1v1,0,1,-1,1,-1xm131,-249r0,0r0,0","w":139},"p":{"d":"122,-186v-9,20,-30,23,-23,56v-9,4,-5,-6,-6,-14v2,-9,-5,-8,-3,-17v-7,2,2,27,-10,19v4,-15,-8,-22,-15,-11v-1,12,1,26,-2,36v-5,1,-5,-4,-5,-9v3,-8,-2,-46,-5,-23v5,16,-8,33,-6,8v1,-6,2,-12,-1,-16v5,9,-6,19,-6,4v1,-6,-3,-11,-7,-6r-1,201v-13,-2,0,-33,-6,-49v-9,-2,3,30,-10,28v0,-27,0,-53,-7,-72v0,-55,-3,-92,-7,-112v-7,-34,-2,-50,-2,-66v1,0,5,0,2,-1v-1,-7,-6,-17,-4,-23v42,2,96,-4,133,2v-4,2,-5,15,-4,9v-1,16,9,52,-5,56xm94,-201v5,-19,-9,-32,-16,-16v0,2,-5,4,-7,2v0,-6,-8,-12,-11,-4v4,12,-6,22,-5,3v0,-9,-11,-8,-22,-9v-12,50,44,49,59,24r2,0","w":135},"q":{"d":"120,30v-16,-3,7,-43,-18,-47v-4,3,-1,17,-11,11v0,-8,2,-19,-5,-20v-16,15,-11,49,-19,75v-8,-10,6,-48,-11,-58v-3,-10,-6,-19,-11,-26v4,18,-5,50,-5,16v0,-34,-13,-53,-21,-68v-2,10,6,33,-5,31v-4,-81,-16,-112,-11,-151v-7,-13,6,-29,-3,-39v-3,-13,16,-4,24,-7r109,1v1,20,-6,45,2,59v-12,18,5,42,-8,52v-3,18,7,68,-6,66r0,-28v-6,7,6,49,-8,43r1,-26v-3,12,-16,29,-1,35v0,12,5,11,4,21v13,11,8,22,17,36v-10,-11,-14,-3,-13,12v1,4,2,10,-1,12xm92,-131v7,-12,6,-37,4,-43v1,-22,2,-37,0,-51v-10,-1,-5,12,-6,22v-11,6,-3,-35,-12,-13v2,7,-4,13,-8,6v5,-14,-10,-18,-16,-9v3,7,-3,14,-7,9v2,-20,-15,-16,-9,-2v0,1,0,1,-1,1v9,25,-15,30,2,44v-3,2,-6,7,-1,10v2,38,12,67,13,91v1,2,8,2,6,5v4,21,11,22,21,10v0,-13,-11,-15,-10,-29v8,0,13,12,18,0v1,-16,10,-38,6,-51xm63,-86v2,-1,4,3,2,3v-1,-1,-2,-2,-2,-3xm111,-70r-1,0r1,0","w":141},"r":{"d":"130,-251v-3,26,6,61,-14,76v-3,4,-2,13,-9,13v4,19,-8,42,-6,13v1,-6,0,-13,-3,-15v-3,11,-15,15,0,33v13,1,18,13,27,19v-2,1,-4,5,-2,5v0,4,5,8,1,10v-8,49,-8,106,-19,151v-8,-19,7,-59,-11,-70v1,-27,-3,-59,2,-83v-5,-9,-8,4,-14,0v-2,-5,-4,-20,-11,-12v2,7,-3,10,-7,5v5,-8,-5,-30,-6,-11v-3,7,6,25,-7,21r0,-29v-1,2,-5,3,-6,0v3,-13,-10,-26,-12,-10v8,33,-8,56,3,73v-13,19,9,43,-9,61v-3,12,6,38,-6,37v2,-46,-12,-73,-13,-98r-8,-165v6,-8,-3,-12,-1,-17r0,-8xm35,-219r0,0r0,0xm79,-158v-6,1,-4,7,1,8v3,-2,3,-6,-1,-8xm33,-185v24,2,80,-5,60,-31v3,-7,-5,-12,-8,-5v0,5,-1,17,-7,11v4,-13,-9,-17,-13,-6v3,6,-1,17,-6,10v3,-14,-8,-25,-13,-12v2,9,-8,8,-11,3r-1,0v1,10,-1,23,-1,30xm35,-219r0,0r0,0xm76,-152v3,4,10,-1,5,-4v-1,-3,-6,-2,-6,2","w":136},"s":{"d":"48,-185v50,-11,98,36,82,82v-13,4,6,69,-11,64v-2,-9,5,-25,-2,-29v-11,20,2,60,-10,76v-5,-13,0,-32,-2,-50v-9,7,-1,26,-6,36v-10,1,-1,-13,-5,-19v-5,10,5,49,-8,41v4,-25,-3,-31,-15,-14v-15,10,-5,47,-11,66v-13,-5,3,-40,-7,-57v0,-7,-1,-12,-1,-20v-9,1,-9,-9,-15,-12v-3,13,5,50,-7,47v-2,-18,4,-44,-3,-57v-2,9,6,30,-5,28v-1,-22,5,-51,-10,-61v4,13,-6,29,-6,6v0,-36,-7,-51,-4,-72v11,0,19,-16,10,-24v2,4,-3,7,-6,4v-1,-9,-10,-2,-7,-18v2,1,2,-1,2,-3v-1,-2,-1,-1,0,-3v-1,1,-1,0,-2,-1v4,-29,-4,-43,12,-56v23,-30,67,-26,96,-14v12,11,33,28,21,41v-11,-6,-18,4,-15,19v3,6,-6,12,-7,4v-1,-10,5,-25,-11,-22v3,-13,-10,-28,-11,-7v-9,8,-5,-25,-18,-11v2,6,-2,13,-7,7v1,-6,-4,-11,-9,-6v0,10,-4,30,-11,14v-9,3,-7,26,7,21r3,-1xm40,-213v-5,-1,-3,4,-3,7v3,0,3,-4,3,-7xm29,-36v0,0,-3,4,-1,4xm26,-157v-8,1,-8,27,2,26v6,-3,5,-12,5,-20v0,4,-4,6,-7,3r0,-9xm82,-73v8,-8,15,-33,10,-44v0,5,-11,9,-11,1v3,-11,4,-49,-12,-35v5,11,-7,23,-5,5v1,-8,-5,-9,-5,-1v2,7,1,19,-6,12v6,-15,-7,-26,-14,-15v-1,10,5,25,-4,28v6,37,7,61,23,76v-2,8,7,15,11,6v3,-12,18,-19,13,-33xm92,-118v1,0,1,0,1,-1v-1,0,-1,0,-1,1xm89,-122v10,1,7,-14,6,-23v-3,-4,-8,0,-7,5v-1,7,0,12,1,18xm40,-213v-5,-1,-3,4,-3,7v3,0,3,-4,3,-7xm91,-120v7,0,8,-24,1,-27v-7,3,-5,22,-1,27xm93,-118v0,-1,0,-1,-1,-1v0,1,0,1,1,1xm29,-36v0,0,-3,4,-1,4","w":138},"t":{"d":"-1,-252r132,0v-4,7,4,19,2,30v-12,-7,-3,20,-13,16v3,-15,-10,-25,-17,-14v3,7,-5,15,-8,7v4,-12,-11,-18,-14,-8v3,22,-1,49,3,60v-9,19,4,29,-4,45v-6,53,-3,114,-13,163v-7,-12,4,-48,-10,-62r-6,-98v0,1,1,1,2,1v0,-2,-2,-1,-4,-2v2,0,1,-3,1,-4v-1,0,-1,0,-1,-1v1,-23,9,-52,-2,-65v4,-24,-1,-59,-7,-24v1,5,3,16,-5,11v7,-16,-13,-43,-17,-14v-10,1,-2,-14,-17,-14v-3,-10,1,-20,-2,-27","w":138},"u":{"d":"3,-247v11,0,25,-10,32,-2v0,11,6,25,0,32v0,4,-5,6,-1,11v8,-1,-1,3,1,7v-1,35,3,76,-2,108v8,24,11,43,15,60v10,7,19,26,27,9r3,-1v-1,0,-1,0,-1,-1v4,-6,19,-19,10,-25v10,-6,11,-26,5,-33v15,-83,1,-120,6,-170v13,5,21,-2,34,0v1,29,-6,64,1,88v-10,12,6,39,-6,47v0,43,-6,69,-16,96v-4,0,-1,-11,-4,-3v1,0,1,0,1,1v-6,10,2,32,-3,42v-11,0,-1,-21,-5,-31v-14,9,-20,27,-20,45v-12,1,5,-34,-16,-23v-1,4,-5,33,-8,9v-1,-6,-4,-15,-3,-3v1,15,-9,31,-6,7v1,-18,-10,-25,-15,-37v-4,0,-1,6,-2,9v0,4,-3,12,-6,5v-1,-32,-5,-49,-16,-65v0,-33,-6,-45,-5,-61r-3,0v8,-18,-6,-36,2,-51v0,-24,-4,-50,1,-70","w":140},"v":{"d":"97,-252v64,-8,24,64,36,95v-7,41,-17,80,-19,126v-14,2,4,-38,-9,-40v-1,3,-1,6,1,8v-5,-1,0,14,-9,14v-21,16,-12,62,-21,91v-8,-3,5,-49,-6,-45v6,19,-8,43,-5,12v2,-25,-26,-30,-24,-51v-5,-2,-6,-9,-9,-13v-3,11,7,39,-6,38v-2,-18,4,-43,-3,-57v2,6,0,17,-6,9v2,-16,0,-29,-5,-39v-1,9,5,29,-6,23v1,-59,-12,-82,-2,-116v-8,-15,3,-27,-4,-41v4,-13,21,-16,37,-15v4,17,-11,31,0,39v2,25,-12,61,4,76v-2,32,9,44,8,61v-2,0,-1,2,0,3v7,14,19,48,23,24v15,-20,10,-26,13,-40v21,-74,6,-109,14,-158v-2,0,-1,-2,-2,-4","w":138},"w":{"d":"191,-252v67,-11,17,55,36,85v-11,47,-8,72,-14,111v-9,-2,2,-30,-4,-38v-7,6,4,33,-8,31v0,-3,-2,-7,-2,-2v-6,7,-2,21,-13,24v-16,21,-24,48,-24,81v-13,0,5,-35,-9,-45r-35,-67v-9,0,1,19,-10,16v-5,-2,2,-16,-8,-10v-8,15,6,64,-10,64v-1,-12,3,-27,0,-37v-20,20,-19,60,-26,94v-7,-14,5,-59,-13,-70v-5,-14,-8,-24,-18,-30v2,13,-2,60,-6,27v-2,-19,3,-45,-3,-60v-3,-2,-3,-5,-7,-7v-2,9,5,32,-6,26v4,-63,-17,-87,-9,-125v-5,-24,2,-51,-1,-68v13,-3,20,5,26,-3v25,28,-7,84,11,101v-2,49,11,84,26,112v10,-5,13,-24,15,-31v3,0,4,0,4,-4v-2,-13,4,-19,6,-28v-4,0,-2,-7,-2,-7v11,-15,6,-42,8,-62v11,-10,25,-15,36,-1v-3,61,15,99,26,136v12,-2,6,-10,17,-17r18,-103","w":231},"x":{"d":"-3,-251v54,-12,50,45,65,67v18,-19,19,-47,31,-67v25,-5,45,0,28,20v-13,28,-19,63,-27,97v-7,0,2,-37,-6,-17v-5,4,-18,20,-3,24v6,11,4,30,15,36v6,39,31,69,23,95v0,-1,0,-1,-1,-1v-1,16,1,36,-2,48v-15,-6,7,-54,-14,-66v4,18,-6,41,-6,10v0,-27,-9,-43,-17,-61v-9,1,-6,-23,-14,-10v4,18,-9,23,-6,2v-2,-6,2,-17,-5,-18v0,1,-2,3,0,3v0,11,-14,13,-10,21v-13,6,-7,43,-18,47r-1,-5v-1,8,3,37,-6,28r0,-21v-18,2,-3,58,-17,56v-11,-72,9,-92,26,-135v5,-13,15,-29,17,-40v-6,-3,-7,-13,-10,-19v3,5,-3,13,-7,7v1,-11,2,-24,-6,-29v3,7,-3,21,-6,8v3,-27,-8,-44,-14,-59v-7,-1,3,-18,-9,-21","w":134},"y":{"d":"-1,-243v-3,-16,23,-7,36,-9v-7,17,8,26,1,39v10,34,7,53,21,73v-3,13,9,24,15,11v1,-15,14,-24,9,-37v15,-33,8,-64,16,-85v12,-1,26,-3,34,0v-7,35,-6,78,-17,109v-5,-3,-1,-15,-2,-23v-16,20,-3,60,-14,84v-7,-7,2,-31,-3,-46v-31,45,-10,84,-24,117v-2,9,5,35,-6,29v-1,-7,5,-19,-2,-21v3,6,-2,14,-6,7v0,-30,-8,-69,-2,-92v-2,-7,-5,-15,-9,-21v-2,13,5,52,-7,46v-2,-18,5,-44,-3,-57v5,11,-5,29,-5,9v0,-12,2,-27,-4,-34v2,6,0,14,-6,8v0,-35,-14,-46,-14,-70v-8,-10,-5,-30,-8,-37","w":136},"z":{"d":"24,-167v-6,-29,5,-73,-22,-80v-3,-4,-1,-7,6,-8v44,5,91,-1,115,3v-19,39,-14,75,-23,117v-5,-9,0,-24,-2,-37v-16,12,0,55,-14,63v-2,-8,1,-19,0,-29v0,8,-5,17,-7,19r1,-1v-15,16,0,54,-12,74v-5,-8,-1,-26,-2,-40v-5,16,-18,31,-15,48v-8,0,-13,16,-4,17v18,-2,43,-6,50,8v6,8,23,13,25,19v-10,-7,-14,4,-12,17v3,7,-3,22,-6,8v4,-17,-4,-38,-12,-17v-7,-2,-10,-15,-17,-3v-2,10,6,33,-6,27v-1,-11,6,-35,-8,-32v-8,8,-1,31,-5,40v-13,-1,4,-30,-9,-40v-6,1,2,12,-8,12v-2,-12,-14,-20,-13,0v-10,6,-2,-18,-17,-12v10,-27,19,-51,21,-73v9,-11,12,-26,11,-36v17,-27,18,-59,26,-77v-4,-1,-1,-5,1,-7v1,-12,15,-31,9,-39v-19,-7,0,30,-16,25v-3,-7,5,-22,-5,-26v-7,3,2,31,-10,23v3,-13,-2,-27,-15,-19v-1,18,1,39,-2,56r-3,0","w":128},"\"":{"d":"1,-266v13,5,34,-8,37,9v-7,2,4,9,-5,13v-8,19,-16,32,-15,56v-14,2,-9,-22,-19,-21xm14,-201v1,-6,-2,-16,-2,-4v0,3,1,10,2,4xm62,-266v13,5,34,-8,37,9v-3,5,-4,28,-15,32v-6,7,-3,27,-4,37v-17,2,-8,-22,-20,-21v4,-26,0,-40,2,-57xm75,-195v1,-8,-1,-25,-2,-10","w":101},"#":{"d":"82,-264v-5,22,-4,45,-6,70v7,5,17,-10,23,-9v8,15,-2,41,-2,59r-2,-26v-3,4,-7,27,-9,12v1,-8,-7,-8,-10,-4v0,20,-2,37,-3,55v7,7,24,-8,23,10v-5,5,-1,38,-12,29v-1,0,-3,10,-4,28v-8,2,2,-25,-7,-27v-4,5,1,57,-6,40v0,16,-7,57,-8,19v0,-6,2,-18,0,-22v-2,5,-7,33,-6,13r3,-60v0,9,-12,-1,-10,12v-1,11,-4,10,-5,1r0,-8v-14,12,-2,58,-11,78v-1,-7,-1,-27,-4,-14v-1,0,-2,-3,-3,-8v-1,7,-4,35,-5,10v0,-21,4,-51,0,-69v-3,0,-5,4,-6,13v-1,9,-2,13,-3,13v-2,-7,-2,-26,-7,-17v-2,-16,-9,-47,14,-36v13,-2,6,-42,5,-60v-4,-1,-7,20,-7,3v0,-1,-1,-1,-1,-1r-4,30r-5,-30v-2,1,-5,4,-4,-2v6,-15,-9,-47,18,-35v17,-7,-5,-105,28,-70r-3,40v0,0,-1,-1,-2,-4v0,11,-3,23,-1,32v3,-9,20,7,20,-7v0,-21,-4,-52,3,-67v3,8,19,-2,19,9xm40,-102v11,-8,20,5,19,-20v0,-12,4,-36,-2,-43v-2,18,-11,-4,-10,14v0,12,-4,13,-5,3v3,-6,-3,-24,-3,-7v0,17,-9,43,1,53","w":113},"%":{"d":"41,-285v37,8,37,85,21,121r-3,-2r-2,31r-6,-15r-4,37r-5,-28v-2,3,-4,8,-12,4r-5,39v-4,-4,1,-47,-5,-49v-5,-1,-7,-14,-9,1v0,5,-1,8,-2,8v-8,-46,-25,-143,32,-147xm107,-283v4,9,21,18,15,32v-12,27,-6,44,-12,66r-3,-5v-7,10,-6,39,-16,48v-2,15,-1,52,-6,61r-4,-21v-3,0,-5,6,-5,20v0,20,-1,25,-7,15v-14,7,-11,50,-16,64r-3,-19v-4,0,-6,11,-6,35v2,11,-4,42,-6,14v2,-13,-5,-31,-5,-6v0,4,-1,6,-2,6v-2,-6,-2,-20,-9,-12v-13,-16,5,-28,9,-46v22,-73,54,-142,67,-222v3,-20,5,-30,9,-30xm26,-244v0,8,2,20,-5,21v-6,9,-3,58,13,50v11,-3,18,-15,17,-35v-1,-31,2,-40,-8,-25v0,0,-4,-13,-6,-11r-5,24xm131,-138v36,10,36,79,23,119v-5,0,-7,8,-6,27r0,5r-7,-15v-1,1,-1,40,-4,37r-5,-29v-3,3,-4,11,-12,5r-4,38v-5,-4,1,-46,-6,-48v-5,-2,-7,-14,-9,1v0,5,-1,7,-2,7v-9,-46,-23,-142,32,-147xm127,-96r-5,24r-5,-24v-2,7,4,20,-6,20v-6,9,-3,60,13,52v19,-2,20,-46,14,-69v-4,14,-7,0,-11,-3","w":175},"(":{"d":"45,39v-2,0,-8,-63,-17,-37r-5,-11v0,0,-4,35,-6,32r-4,-60v-2,-1,-2,9,-4,8v-5,-71,-16,-135,4,-203v10,-33,20,-50,34,-50v22,0,22,58,13,62r-2,-20r-7,45v-3,-11,-3,-28,-7,-37v-8,36,-14,23,-14,88v0,63,11,97,25,132v-4,13,-7,35,-10,51","w":71},")":{"d":"6,-186v0,-32,-21,-74,9,-87v49,22,55,152,41,223v-5,25,-8,29,-11,64r-5,-29v-10,6,-12,42,-27,29r-6,26v-2,0,-3,-11,-3,-32v0,-39,22,-34,25,-78v2,-35,7,-95,-3,-125v-3,9,-7,28,-7,1v-1,-21,-3,-15,-6,-35","w":72},"*":{"d":"39,-128v-2,-12,-5,-49,-11,-59r-10,57v1,-20,-18,-38,-7,-52v2,-8,17,-21,6,-25v-3,8,-13,0,-13,13v-1,6,-2,9,-3,9v-1,-12,-9,-39,-1,-46v4,-2,18,13,19,6v-4,-10,-23,-48,2,-49v4,6,8,68,12,23v2,-12,-1,-27,12,-28v16,11,-2,36,-4,54v6,-7,23,-34,23,-7v0,13,0,41,-5,48r-5,-26v-29,3,12,35,-3,53v1,6,-2,21,-3,7v0,-4,-2,-6,-3,-6","w":66},"-":{"d":"32,-128v8,2,27,-18,29,-2v-2,19,-5,83,-9,38v-2,4,-6,20,-6,6v0,-10,-3,-7,-8,-6v-5,1,-4,37,-7,12v-3,-25,-13,10,-16,-7r-2,26v-2,0,-4,-4,-4,-11v-2,-22,-11,-27,-9,-57v1,-21,23,4,32,1","w":68},"\/":{"d":"18,-7v-8,8,-2,57,-10,65v-4,-2,0,-59,-7,-28v1,14,-3,13,-3,1v0,-9,-15,0,-6,-23v25,-62,59,-173,69,-254v6,-44,14,-21,28,-10v-6,25,-15,57,-17,88v-1,0,-1,-7,-3,-6v-8,31,-15,79,-18,114r-3,-22v-2,0,-4,5,-5,17v-2,14,0,23,-4,15v0,-2,-1,-3,-2,-3v-8,13,-7,50,-15,65","w":87}}});
Cufon.replace('#navigation a', {
	color: '-linear-gradient(#aba9a6, #ffffff)',
//	fontSize: '50px',
	textShadow: '0 1px 0 #ff0000',
	hover: {
		color: '-linear-gradient(#ffffff, #aba9a6)'
	}
});
Cufon.now();

