/*
 * 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);};});})();
// cufon
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var J=function(){return J.replace.apply(null,arguments)};var R=J.DOM={ready:(function(){var W=false,Y={loaded:1,complete:1};var V=[],X=function(){if(W){return}W=true;for(var Z;Z=V.shift();Z()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",X,false);window.addEventListener("pageshow",X,false)}if(!window.opera&&document.readyState){(function(){Y[document.readyState]?X():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");X()}catch(Z){setTimeout(arguments.callee,1)}})()}N(window,"load",X);return function(Z){if(!arguments.length){X()}else{W?Z():V.push(Z)}}})()};var K=J.CSS={Size:function(W,V){this.value=parseFloat(W);this.unit=String(W).match(/[a-z%]*$/)[0]||"px";this.convert=function(X){return X/V*this.value};this.convertFrom=function(X){return X/this.value*V};this.toString=function(){return this.value+this.unit}},getStyle:function(W){var V=document.defaultView;if(V&&V.getComputedStyle){return new A(V.getComputedStyle(W,null))}if(W.currentStyle){return new A(W.currentStyle)}return new A(W.style)},ready:(function(){var X=false;var W=[],Y=function(){X=true;for(var a;a=W.shift();a()){}};var V=Object.prototype.propertyIsEnumerable?E("style"):{length:0};var Z=E("link");R.ready(function(){var d=0,c;for(var b=0,a=Z.length;c=Z[b],b<a;++b){if(!c.disabled&&c.rel.toLowerCase()=="stylesheet"){++d}}if(document.styleSheets.length>=V.length+d){Y()}else{setTimeout(arguments.callee,10)}});return function(a){if(X){a()}else{W.push(a)}}})(),supports:function(X,W){var V=document.createElement("span").style;if(V[X]===undefined){return false}V[X]=W;return V[X]===W},textAlign:function(Y,X,V,W){if(X.get("textAlign")=="right"){if(V>0){Y=" "+Y}}else{if(V<W-1){Y+=" "}}return Y},textDecoration:function(a,Z){if(!Z){Z=this.getStyle(a)}var W={underline:null,overline:null,"line-through":null};for(var V=a;V.parentNode&&V.parentNode.nodeType==1;){var Y=true;for(var X in W){if(W[X]){continue}if(Z.get("textDecoration").indexOf(X)!=-1){W[X]=Z.get("color")}Y=false}if(Y){break}Z=this.getStyle(V=V.parentNode)}return W},textShadow:H(function(Z){if(Z=="none"){return null}var Y=[],a={},V,W=0;var X=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(V=X.exec(Z)){if(V[0]==","){Y.push(a);a={},W=0}else{if(V[1]){a.color=V[1]}else{a[["offX","offY","blur"][W++]]=V[2]}}}Y.push(a);return Y}),color:H(function(W){var V={};V.color=W.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(Y,X,Z){V.opacity=parseFloat(Z);return"rgb("+X+")"});return V}),textTransform:function(W,V){return W[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[V.get("textTransform")]||"toString"]()}};J.VML={parsePath:function(Y){var V=[],X=/([mrvxe])([^a-z]*)/g,W;while(W=X.exec(Y)){V.push({type:W[1],coords:W[2].split(",")})}return V}};function O(W){var V=this.face=W.face;this.glyphs=W.glyphs;this.w=W.w;this.baseSize=parseInt(V["units-per-em"],10);this.family=V["font-family"].toLowerCase();this.weight=V["font-weight"];this.style=V["font-style"]||"normal";this.viewBox=(function(){var X=V.bbox.split(/\s+/);return{minX:parseInt(X[0],10),minY:parseInt(X[1],10),width:parseInt(X[2],10)-parseInt(X[0],10),height:parseInt(X[3],10)-parseInt(X[1],10),toString:function(){return[this.minX,this.minY,this.width,this.height].join(" ")}}})();this.ascent=-parseInt(V.ascent,10);this.descent=-parseInt(V.descent,10);this.height=-this.ascent+this.descent}function D(){var W={},V={oblique:"italic",italic:"oblique"};this.add=function(X){(W[X.style]||(W[X.style]={}))[X.weight]=X};this.get=function(b,c){var a=W[b]||W[V[b]]||W.normal||W.italic||W.oblique;if(!a){return null}c={normal:400,bold:700}[c]||parseInt(c,10);if(a[c]){return a[c]}var Y={1:1,99:0}[c%100],e=[],Z,X;if(Y===undefined){Y=c>400}if(c==500){c=400}for(var d in a){d=parseInt(d,10);if(!Z||d<Z){Z=d}if(!X||d>X){X=d}e.push(d)}if(c<Z){c=Z}if(c>X){c=X}e.sort(function(g,f){return(Y?(g>c&&f>c)?g<f:g>f:(g<c&&f<c)?g>f:g<f)?-1:1});return a[e[0]]}}function U(){var X={},V=0;function W(Y){return Y.cufid||(Y.cufid=++V)}this.get=function(Y){var Z=W(Y);return X[Z]||(X[Z]={})}}function A(V){var X={},W={};this.get=function(Y){return X[Y]!=undefined?X[Y]:V[Y]};this.getSize=function(Z,Y){return W[Z]||(W[Z]=new K.Size(this.get(Z),Y))};this.extend=function(Y){for(var Z in Y){X[Z]=Y[Z]}return this}}function N(W,V,X){if(W.addEventListener){W.addEventListener(V,X,false)}else{if(W.attachEvent){W.attachEvent("on"+V,function(){return X.apply(W,arguments)})}}}function H(V){var W={};return function(X){if(!W.hasOwnProperty(X)){W[X]=V.apply(null,arguments)}return W[X]}}function B(a,Z){if(!Z){Z=K.getStyle(a)}var W=Z.get("fontFamily").split(/\s*,\s*/),Y;for(var X=0,V=W.length;X<V;++X){Y=W[X].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(G[Y]){return G[Y].get(Z.get("fontStyle"),Z.get("fontWeight"))}}return null}function E(V){return document.getElementsByTagName(V)}function F(){var V={},Y;for(var X=0,W=arguments.length;X<W;++X){for(Y in arguments[X]){V[Y]=arguments[X][Y]}}return V}function L(Y,g,W,h,Z,X){var f=h.separate;if(f=="none"){return T[h.engine].apply(null,arguments)}var e=document.createDocumentFragment(),b;var c=g.split(M[f]),V=(f=="words");if(V&&P){if(/^\s/.test(g)){c.unshift("")}if(/\s$/.test(g)){c.push("")}}for(var d=0,a=c.length;d<a;++d){b=T[h.engine](Y,V?K.textAlign(c[d],W,d,a):c[d],W,h,Z,X,d<a-1);if(b){e.appendChild(b)}}return e}function I(W,d){var b=C.get(W);if(!d){d=b.options}var X,V,a;for(var Y=W.firstChild;Y;Y=a){a=Y.nextSibling;if(Y.nodeType==1){if(!Y.firstChild){continue}if(!/cufon/.test(Y.className)){arguments.callee(Y,d);continue}}var c=Y.nodeType==3?Y.data:Y.alt;if(c===""){continue}if(!V){V=K.getStyle(W).extend(d)}if(!X){X=B(W,V)}if(!X){continue}var Z=L(X,c,V,d,Y,W);if(Z){Y.parentNode.replaceChild(Z,Y)}else{Y.parentNode.removeChild(Y)}}if(!b.options){b.options=d}}var P=" ".split(/\s+/).length==0;var C=new U();var S=[];var T={},G={},Q={enableTextDecoration:false,engine:null,printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(V){return $$(V)})||(window.$&&function(V){return $(V)})||(document.querySelectorAll&&function(V){return document.querySelectorAll(V)})||E),separate:"words",textShadow:"none"};var M={words:/\s+/,characters:""};J.now=function(){R.ready();return J};J.refresh=function(){var X=S.splice(0,S.length);for(var W=0,V=X.length;W<V;++W){J.replace.apply(null,X[W])}return J};J.registerEngine=function(W,V){if(!V){return J}T[W]=V;return J.set("engine",W)};J.registerFont=function(X){var V=new O(X),W=V.family;if(!G[W]){G[W]=new D()}G[W].add(V);return J.set("fontFamily",W)};J.replace=function(X,W,V){W=F(Q,W);if(!W.engine){return J}if(typeof W.textShadow=="string"){W.textShadow=K.textShadow(W.textShadow)}if(!V){S.push(arguments)}if(X.nodeType||typeof X=="string"){X=[X]}K.ready(function(){for(var Z=0,Y=X.length;Z<Y;++Z){var a=X[Z];if(typeof a=="string"){J.replace(W.selector(a),W,true)}else{I(a,W)}}});return J};J.set=function(V,W){Q[V]=W;return J};return J})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}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("@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:none}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,I){var N=0,M=0;var G=Cufon.VML.parsePath(O);var H=new Array(G.length-1);generate:for(var K=0,J=G.length;K<J;++K){var L=G[K].coords;switch(G[K].type){case"v":H[K]={m:"bezierCurveTo",a:[N+Number(L[0]),M+Number(L[1]),N+Number(L[2]),M+Number(L[3]),N+=Number(L[4]),M+=Number(L[5])]};break;case"r":H[K]={m:"lineTo",a:[N+=Number(L[0]),M+=Number(L[1])]};break;case"m":H[K]={m:"moveTo",a:[N=Number(L[0]),M=Number(L[1])]};break;case"x":H[K]={m:"closePath"};break;case"e":break generate}I[H[K].m].apply(I,H[K].a)}return H}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(p,S,j,O,W,q){var U=p.viewBox;var I=j.getSize("fontSize",p.baseSize);var f=j.get("letterSpacing");f=(f=="normal")?0:I.convertFrom(parseInt(f,10));var V=0,h=0,e=0,Q=0;var T=O.textShadow,c=[];if(T){for(var o=0,k=T.length;o<k;++o){var Y=T[o];var b=I.convertFrom(parseFloat(Y.offX));var a=I.convertFrom(parseFloat(Y.offY));c[o]=[b,a];if(a<V){V=a}if(b>h){h=b}if(a>e){e=a}if(b<Q){Q=b}}}var t=Cufon.CSS.textTransform(S,j).split("");var G=0,R=null;for(var o=0,k=t.length;o<k;++o){var P=p.glyphs[t[o]]||p.missingGlyph;if(!P){continue}G+=R=Number(P.w||p.w)+f}if(R===null){return null}h+=(U.width-R);Q+=U.minX;var N=document.createElement("span");N.className="cufon cufon-canvas";N.alt=S;var J=document.createElement("canvas");var u=N.style;var Z=J.style;var H=I.convert(U.height-V+e);var s=Math.ceil(H);var d=s/H;J.width=Math.ceil(I.convert(G+h-Q)*d);J.height=s;V+=U.minY;Z.top=Math.round(I.convert(V-p.ascent))+"px";Z.left=Math.round(I.convert(Q))+"px";var M=Math.ceil(I.convert(G*d))+"px";if(A){u.width=M;u.height=I.convert(p.height)+"px"}else{u.paddingLeft=M;u.paddingBottom=(I.convert(p.height)-1)+"px"}var r=J.getContext("2d"),X=s/U.height;r.scale(X,X);r.translate(-Q,-V);r.lineWidth=p.face["underline-thickness"];r.save();function K(i,g){r.strokeStyle=g;r.beginPath();r.moveTo(0,i);r.lineTo(G,i);r.stroke()}var L=O.enableTextDecoration?Cufon.CSS.textDecoration(q,j):{};if(L.underline){K(-p.face["underline-position"],L.underline)}if(L.overline){K(p.ascent,L.overline)}r.fillStyle=j.get("color");function n(){for(var v=0,g=t.length;v<g;++v){var w=p.glyphs[t[v]]||p.missingGlyph;if(!w){continue}r.beginPath();if(w.d){if(w.code){C(w.code,r)}else{w.code=D("m"+w.d,r)}}r.fill();r.translate(Number(w.w||p.w)+f,0)}}if(T){for(var o=0,k=T.length;o<k;++o){var Y=T[o];r.save();r.fillStyle=Y.color;r.translate.apply(r,c[o]);n();r.restore()}}n();r.restore();if(L["line-through"]){K(-p.descent,L["line-through"])}N.appendChild(J);if(O.printable){var m=document.createElement("span");m.className="cufon-alt";m.appendChild(document.createTextNode(S));N.appendChild(m)}return N}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shapetype,cvml\\:fill{behavior:url(#default#VML);display:inline-block;antialias:true;position:absolute}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{display:none}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}var C=0;function B(E,F){return A(E,/(?:em|ex|%)$/i.test(F)?"1em":F)}function A(H,I){if(/px$/i.test(I)){return parseFloat(I)}var G=H.style.left,F=H.runtimeStyle.left;H.runtimeStyle.left=H.currentStyle.left;H.style.left=I;var E=H.style.pixelLeft;H.style.left=G;H.runtimeStyle.left=F;return E}function D(F,H){var E=document.createElement("cvml:shapetype");E.id="cufon-glyph-"+C++;F.typeRef="#"+E.id;E.stroked="f";E.coordsize=H.width+","+H.height;E.coordorigin=H.minX+","+H.minY;var G="m"+H.minX+","+H.minY+" r"+H.width+","+H.height;E.path=(F.d?"m"+F.d+"x":"")+G;document.body.insertBefore(E,document.body.firstChild)}return function(j,R,e,O,V,k,c){var U=j.viewBox;var G=e.computedFontSize||(e.computedFontSize=new Cufon.CSS.Size(B(k,e.get("fontSize"))+"px",j.baseSize));var b=e.computedLSpacing;if(b==undefined){b=e.get("letterSpacing");e.computedLSpacing=b=(b=="normal")?0:G.convertFrom(A(k,b))}var N=document.createElement("span");N.className="cufon cufon-vml";N.alt=R;var H=document.createElement("cvml:group");var r=N.runtimeStyle;var X=H.runtimeStyle;var F=G.convert(U.height);X.height=Math.ceil(F);X.top=Math.round(G.convert(U.minY-j.ascent));X.left=Math.round(G.convert(U.minX));var a=parseInt(X.height,10)/F;r.height=G.convert(-j.ascent+j.descent)+"px";var J=O.enableTextDecoration?Cufon.CSS.textDecoration(k,e):{};var Q=e.get("color");var o=Cufon.CSS.textTransform(R,e).split("");var E=0,Z=0,K=null;var T=O.textShadow;for(var h=0,f=o.length;h<f;++h){var P=j.glyphs[o[h]]||j.missingGlyph;if(!P){continue}if(!P.typeRef){D(P,U)}var L=document.createElement("cvml:shape");L.type=P.typeRef;var m=L.runtimeStyle;m.width=U.width;m.height=U.height;m.top=0;m.left=Z;m.zIndex=1;L.fillcolor=Q;H.appendChild(L);if(T){for(var Y=0,d=T.length;Y<d;++Y){var W=T[Y];var q=Cufon.CSS.color(W.color);var I=L.cloneNode(false),S=I.runtimeStyle;S.top=G.convertFrom(parseFloat(W.offY));S.left=Z+G.convertFrom(parseFloat(W.offX));S.zIndex=0;I.fillcolor=q.color;if(q.opacity){var n=document.createElement("cvml:fill");n.opacity=q.opacity;I.appendChild(n)}H.appendChild(I)}}K=Number(P.w||j.w)+b;E+=K;Z+=K}if(K===null){return null}var M=-U.minX+E+(U.width-K);H.coordsize=M+","+U.height;X.width=G.convert(M*a);r.width=Math.max(Math.ceil(G.convert(E*a)),0);N.appendChild(H);if(O.printable){var g=document.createElement("span");g.className="cufon-alt";g.innerText=R;N.appendChild(g)}if(!c){N.appendChild(document.createElement("cvml:group"))}return N}})());
// font file
Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica Neue LT Std","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 3 2 2 2 2 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-11 -328 327 77","underline-thickness":"18","underline-position":"-36","stemh":"19","stemv":"23","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":100},"!":{"d":"37,-64r-6,-116r0,-77r25,0r0,77r-6,116r-13,0xm59,0r-31,0r0,-38r31,0r0,38","w":86},"\"":{"d":"31,-170r0,-87r23,0r0,87r-23,0xm79,-170r0,-87r23,0r0,87r-23,0","w":133},"#":{"d":"179,-96r0,16r-40,0r-11,80r-18,0r11,-80r-51,0r-11,80r-18,0r11,-80r-39,0r0,-16r41,0r8,-57r-39,0r0,-16r41,0r12,-80r18,0r-12,80r51,0r11,-80r18,0r-11,80r38,0r0,16r-40,0r-8,57r38,0xm131,-153r-51,0r-8,57r51,0"},"$":{"d":"107,-117r0,103v30,0,60,-15,60,-52v0,-34,-32,-45,-60,-51xm93,-143r0,-100v-29,0,-53,15,-53,53v0,34,26,41,53,47xm10,-82r23,0v0,41,22,64,60,68r0,-106v-41,-9,-76,-22,-76,-72v0,-43,34,-70,76,-70r0,-29r14,0r0,29v41,0,77,31,76,78r-23,0v0,-36,-22,-59,-53,-59r0,103v41,9,83,23,83,73v0,48,-41,73,-83,72r0,31r-14,0r0,-31v-57,-5,-80,-32,-83,-87"},"%":{"d":"82,-238v-30,0,-38,29,-38,52v0,23,8,52,38,52v30,0,38,-29,38,-52v0,-23,-8,-52,-38,-52xm82,-254v41,0,57,29,57,68v0,38,-16,68,-57,68v-41,0,-57,-30,-57,-68v0,-39,16,-68,57,-68xm240,-131v41,0,57,30,57,68v0,39,-16,68,-57,68v-41,0,-57,-29,-57,-68v0,-38,16,-68,57,-68xm240,-114v-30,0,-38,29,-38,52v0,22,8,51,38,51v30,0,38,-29,38,-51v0,-23,-8,-52,-38,-52xm68,12r163,-273r17,0r-162,273r-18,0","w":320},"&":{"d":"153,-50r-64,-78v-24,13,-52,33,-52,64v0,30,26,50,56,50v25,0,46,-16,60,-36xm195,0r-28,-33v-36,57,-155,51,-153,-34v0,-36,34,-60,63,-76v-14,-18,-32,-37,-32,-62v0,-31,26,-52,57,-52v32,0,57,21,57,52v0,32,-25,51,-50,67r56,67v6,-12,7,-23,7,-43r23,0v0,15,-3,40,-15,62r43,52r-28,0xm102,-238v-18,0,-34,12,-34,33v0,18,18,38,29,52v18,-11,39,-27,39,-52v0,-21,-15,-33,-34,-33","w":219},"(":{"d":"87,69r-18,0v-68,-97,-66,-235,0,-331r18,0v-61,97,-61,235,0,331","w":86},")":{"d":"0,-262r18,0v67,96,65,235,0,331r-18,0v61,-97,61,-235,0,-331","w":86},"*":{"d":"51,-200r-41,-14r5,-14r41,15r0,-44r14,0r0,44r42,-15r5,14r-42,14r25,35r-11,8r-26,-36r-27,36r-11,-8","w":126},"+":{"d":"99,-100r0,-81r19,0r0,81r81,0r0,19r-81,0r0,81r-19,0r0,-81r-81,0r0,-19r81,0","w":216},",":{"d":"35,-38r30,0v1,41,2,77,-32,87r0,-15v12,-4,18,-22,17,-34r-15,0r0,-38","w":100},"-":{"d":"112,-89r-90,0r0,-20r90,0r0,20","w":133},".":{"d":"65,0r-30,0r0,-38r30,0r0,38","w":100},"\/":{"d":"15,5r-20,0r111,-267r19,0","w":119},"0":{"d":"100,-235v-58,0,-65,67,-65,110v0,44,7,111,65,111v58,0,65,-67,65,-111v0,-43,-7,-110,-65,-110xm100,-254v74,0,88,71,88,129v0,59,-14,130,-88,130v-73,0,-88,-71,-88,-129v0,-59,15,-130,88,-130"},"1":{"d":"35,-187r0,-16v40,-2,64,-3,71,-49r18,0r0,252r-22,0r0,-187r-67,0"},"2":{"d":"178,-183v-1,86,-117,91,-139,162r140,0r0,21r-166,0v2,-75,78,-93,121,-136v39,-30,19,-104,-35,-99v-42,0,-58,33,-57,70r-23,0v-1,-52,26,-89,81,-89v44,0,78,24,78,71"},"3":{"d":"12,-80r23,0v-2,40,22,66,63,66v33,0,64,-19,64,-55v-1,-43,-35,-58,-80,-54r0,-19v38,3,68,-6,71,-46v0,-33,-25,-47,-55,-47v-38,0,-58,26,-58,64r-22,0v0,-48,30,-83,79,-83v40,0,78,19,78,64v0,27,-15,49,-42,56v33,6,52,30,52,63v0,49,-41,76,-87,76v-52,0,-90,-31,-86,-85"},"4":{"d":"11,-63r0,-22r116,-167r21,0r0,170r38,0r0,19r-38,0r0,63r-21,0r0,-63r-116,0xm31,-82r96,0r-1,-137"},"5":{"d":"13,-72r23,0v1,35,27,58,62,58v38,0,63,-32,63,-68v4,-66,-90,-89,-121,-36r-19,0r24,-131r126,0r0,21r-110,0r-16,84v48,-50,145,-11,138,64v0,49,-39,85,-87,85v-47,0,-82,-29,-83,-77"},"6":{"d":"104,-145v-39,0,-62,29,-62,67v0,35,19,64,63,64v36,0,60,-30,60,-64v0,-37,-22,-67,-61,-67xm182,-188r-23,0v-4,-28,-23,-47,-52,-47v-58,-1,-72,69,-69,113v12,-25,38,-42,67,-42v50,0,83,35,83,84v0,49,-36,85,-85,85v-62,0,-89,-35,-89,-134v0,-29,8,-125,90,-125v45,0,72,22,78,66"},"7":{"d":"18,-228r0,-21r162,0r0,21v-31,33,-96,111,-102,228r-24,0v6,-85,34,-148,104,-228r-140,0"},"8":{"d":"100,-14v35,0,64,-18,64,-57v0,-36,-30,-55,-64,-54v-34,-1,-64,17,-64,54v0,38,29,57,64,57xm176,-191v1,28,-17,47,-41,56v33,6,52,31,52,64v0,51,-40,76,-87,76v-47,0,-87,-25,-87,-76v0,-33,22,-57,51,-65v-26,-8,-41,-27,-41,-55v1,-84,152,-85,153,0xm100,-144v28,0,54,-15,54,-47v0,-29,-24,-44,-54,-44v-28,0,-54,15,-54,44v0,34,27,47,54,47"},"9":{"d":"96,-104v39,0,62,-29,62,-66v0,-36,-19,-65,-63,-65v-36,0,-60,30,-60,65v0,36,22,66,61,66xm18,-60r23,0v4,27,23,46,53,46v57,1,71,-69,68,-112v-12,24,-38,41,-67,41v-50,0,-83,-35,-83,-84v0,-49,36,-85,86,-85v61,0,88,35,88,134v0,30,-8,125,-90,125v-45,0,-72,-22,-78,-65"},":":{"d":"65,-142r-30,0r0,-38r30,0r0,38xm65,0r-30,0r0,-38r30,0r0,38","w":100},";":{"d":"35,-38r30,0v1,41,2,77,-32,87r0,-15v12,-4,18,-22,17,-34r-15,0r0,-38xm65,-142r-30,0r0,-38r30,0r0,38","w":100},"<":{"d":"199,-17r0,20r-182,-84r0,-20r182,-84r0,20r-160,74","w":216},"=":{"d":"199,-136r0,19r-181,0r0,-19r181,0xm199,-65r0,19r-181,0r0,-19r181,0","w":216},">":{"d":"17,-17r160,-74r-160,-74r0,-20r182,84r0,20r-182,84r0,-20","w":216},"?":{"d":"87,-64v-11,-65,60,-75,65,-131v0,-29,-24,-48,-52,-48v-39,0,-59,28,-58,65r-23,0v1,-51,30,-84,82,-84v40,0,73,24,73,66v2,61,-77,70,-65,132r-22,0xm83,0r0,-38r30,0r0,38r-30,0","w":193},"@":{"d":"153,-184v-36,0,-61,50,-61,84v0,21,13,34,30,34v34,0,60,-52,60,-84v0,-17,-15,-34,-29,-34xm221,-196r-35,104v-5,15,-7,30,5,30v32,0,61,-49,61,-90v0,-59,-47,-94,-102,-94v-68,0,-114,53,-114,119v0,65,49,116,114,116v36,0,72,-18,93,-48r19,0v-22,40,-67,64,-112,64v-77,0,-133,-59,-133,-135v0,-74,59,-132,132,-132v70,0,122,45,122,112v0,57,-43,104,-83,104v-13,0,-23,-8,-25,-24v-26,38,-98,27,-94,-29v0,-49,35,-104,86,-104v16,0,30,9,38,31r9,-24r19,0","w":288},"A":{"d":"-3,0r104,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm114,-233r-52,132r101,0","w":226},"B":{"d":"50,-123r0,102v66,-3,151,18,152,-53v3,-61,-90,-48,-152,-49xm26,0r0,-257v81,4,188,-23,191,63v0,27,-18,52,-45,58v34,5,55,29,55,63v0,24,-9,73,-92,73r-109,0xm50,-236r0,92v57,0,143,9,143,-44v0,-62,-83,-46,-143,-48","w":240},"C":{"d":"238,-179r-24,0v-9,-40,-42,-63,-79,-63v-132,0,-130,227,0,227v48,0,78,-37,82,-83r25,0v-7,63,-47,103,-107,103v-81,0,-121,-63,-121,-134v0,-70,40,-133,121,-133v49,0,97,29,103,83","w":253},"D":{"d":"50,-236r0,215v97,5,163,-9,158,-108v4,-98,-61,-113,-158,-107xm26,0r0,-257r89,0v77,2,118,44,118,128v0,85,-41,127,-118,129r-89,0","w":246},"E":{"d":"26,0r0,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0","w":213},"F":{"d":"26,0r0,-257r163,0r0,21r-139,0r0,93r124,0r0,21r-124,0r0,122r-24,0","w":193},"G":{"d":"246,-131r0,131r-18,0v-2,-15,0,-34,-4,-47v-17,37,-52,52,-89,52v-81,0,-121,-63,-121,-134v0,-70,40,-133,121,-133v54,0,98,29,107,85r-24,0v-3,-30,-34,-65,-83,-65v-132,0,-130,227,0,227v57,0,90,-40,89,-95r-88,0r0,-21r110,0","w":266},"H":{"d":"26,0r0,-257r24,0r0,112r153,0r0,-112r25,0r0,257r-25,0r0,-125r-153,0r0,125r-24,0","w":253},"I":{"d":"28,0r0,-257r24,0r0,257r-24,0","w":79},"J":{"d":"130,-82r0,-175r24,0r0,185v0,53,-19,77,-75,77v-59,0,-72,-43,-71,-87r24,0v1,22,-1,67,49,67v39,0,49,-20,49,-67","w":180},"K":{"d":"26,0r0,-257r24,0r0,138r150,-138r33,0r-115,106r120,151r-31,0r-107,-134r-50,46r0,88r-24,0","w":233},"L":{"d":"26,0r0,-257r24,0r0,236r144,0r0,21r-168,0","w":193},"M":{"d":"25,0r0,-257r36,0r89,225r89,-225r36,0r0,257r-25,0r-1,-222r-87,222r-23,0r-89,-222r0,222r-25,0","w":299},"N":{"d":"26,0r0,-257r27,0r150,217r0,-217r25,0r0,257r-27,0r-151,-217r0,217r-24,0","w":253},"O":{"d":"12,-129v0,-70,41,-133,122,-133v80,0,121,63,121,133v0,71,-41,134,-121,134v-81,0,-122,-63,-122,-134xm134,-242v-132,0,-130,227,0,227v129,0,130,-227,0,-227","w":266},"P":{"d":"26,0r0,-257r114,0v46,0,76,27,76,73v0,47,-30,74,-76,74r-90,0r0,110r-24,0xm50,-236r0,105v64,-2,143,16,142,-53v1,-67,-79,-50,-142,-52","w":226},"Q":{"d":"160,-69r37,28v59,-59,41,-201,-63,-201v-132,0,-130,227,0,227v18,0,34,-5,47,-13r-34,-26xm252,1r-12,16r-40,-31v-17,13,-40,19,-66,19v-81,0,-122,-63,-122,-134v0,-70,41,-133,122,-133v124,-4,155,163,82,235","w":266},"R":{"d":"26,0r0,-257v85,4,195,-23,196,67v1,33,-19,58,-50,66v62,5,34,81,57,124r-27,0v-18,-45,8,-115,-59,-114r-93,0r0,114r-24,0xm50,-236r0,101v63,-2,146,15,147,-50v5,-65,-85,-50,-147,-51","w":240},"S":{"d":"13,-85r24,0v-1,53,38,70,84,70v27,0,68,-15,68,-53v0,-83,-167,-24,-168,-122v0,-25,16,-72,89,-72v51,0,95,27,95,79r-25,0v3,-72,-132,-84,-134,-7v3,47,64,40,101,54v37,10,67,26,67,68v0,18,-7,73,-98,73v-61,0,-106,-27,-103,-90","w":226},"T":{"d":"-2,-236r0,-21r204,0r0,21r-90,0r0,236r-24,0r0,-236r-90,0"},"U":{"d":"123,5v-136,0,-93,-142,-100,-262r25,0r0,159v0,60,28,83,75,83v48,0,76,-23,76,-83r0,-159r24,0v-7,120,37,262,-100,262","w":246},"V":{"d":"93,0r-96,-257r27,0r84,230r83,-230r26,0r-96,257r-28,0","w":213},"W":{"d":"71,0r-71,-257r26,0r59,225r63,-225r31,0r63,225r59,-225r24,0r-70,257r-26,0r-66,-230r-65,230r-27,0","w":326},"X":{"d":"88,-132r-87,-125r29,0r73,108r75,-108r27,0r-88,125r93,132r-29,0r-78,-113r-80,113r-27,0","w":206},"Y":{"d":"98,0r0,-106r-102,-151r30,0r84,130r84,-130r30,0r-102,151r0,106r-24,0","w":219},"Z":{"d":"13,-236r0,-21r185,0r0,22r-169,214r173,0r0,21r-200,0r0,-22r169,-214r-158,0","w":206},"[":{"d":"85,69r-58,0r0,-331r58,0r0,19r-35,0r0,293r35,0r0,19","w":86},"\\":{"d":"125,5r-20,0r-110,-267r19,0","w":119},"]":{"d":"1,-262r58,0r0,331r-58,0r0,-19r36,0r0,-293r-36,0r0,-19","w":86},"^":{"d":"37,-86r-21,0r83,-163r18,0r83,163r-20,0r-72,-140","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"140,-102v-30,23,-108,5,-106,52v0,22,20,36,42,36v46,0,72,-33,64,-88xm42,-129r-23,0v3,-43,33,-62,76,-62v32,0,68,10,68,60r0,98v-1,12,11,17,21,12r0,20v-28,6,-44,-8,-43,-31v-20,51,-130,53,-129,-17v0,-52,50,-54,99,-60v19,-2,29,-4,29,-25v0,-31,-22,-38,-48,-38v-28,0,-49,13,-50,43","w":186},"b":{"d":"109,-14v83,-1,83,-157,0,-158v-89,1,-89,157,0,158xm22,0r0,-257r22,0r1,107v10,-27,37,-41,64,-41v57,0,84,46,84,98v0,53,-27,98,-84,98v-30,1,-54,-17,-67,-40r0,35r-20,0","w":206},"c":{"d":"175,-127r-22,0v-6,-28,-23,-45,-53,-45v-86,0,-87,158,0,158v28,0,51,-22,54,-53r23,0v-6,45,-36,72,-77,72v-57,0,-88,-45,-88,-98v0,-53,31,-98,88,-98v40,0,70,21,75,64","w":186},"d":{"d":"97,-172v-83,1,-82,157,0,158v89,-1,89,-157,0,-158xm185,-257r0,257r-21,0v-1,-11,2,-26,-1,-35v-9,24,-39,40,-66,40v-56,0,-83,-45,-83,-98v0,-52,27,-98,83,-98v28,0,55,14,65,41r0,-107r23,0","w":206},"e":{"d":"178,-87r-143,0v0,33,18,73,61,73v33,0,51,-19,58,-47r23,0v-10,42,-34,66,-81,66v-59,0,-84,-45,-84,-98v0,-49,25,-98,84,-98v60,0,84,52,82,104xm35,-106r120,0v-1,-34,-22,-66,-59,-66v-37,0,-57,32,-61,66","w":186},"f":{"d":"93,-186r0,19r-36,0r0,167r-23,0r0,-167r-32,0r0,-19r32,0v-5,-48,11,-79,64,-70r0,20v-36,-9,-47,12,-41,50r36,0","w":93},"g":{"d":"96,-21v39,0,60,-36,60,-74v0,-36,-17,-77,-60,-77v-43,0,-61,38,-61,77v0,37,19,74,61,74xm179,-186v-9,107,39,263,-83,260v-37,0,-74,-16,-77,-56r23,0v5,27,29,37,54,37v50,3,66,-42,59,-95v-10,22,-32,38,-59,38v-59,0,-84,-43,-84,-96v0,-51,30,-93,84,-93v28,-1,49,19,60,37r0,-32r23,0"},"h":{"d":"21,0r0,-257r23,0r1,103v8,-22,33,-37,59,-37v98,-4,61,108,68,191r-23,0v-8,-67,28,-170,-47,-172v-75,-1,-56,99,-58,172r-23,0","w":193},"i":{"d":"22,0r0,-186r23,0r0,186r-23,0xm22,-221r0,-36r23,0r0,36r-23,0","w":66},"j":{"d":"22,23r0,-209r23,0r0,203v2,34,-16,59,-56,51r0,-19v22,5,35,-6,33,-26xm22,-221r0,-36r23,0r0,36r-23,0","w":66},"k":{"d":"22,0r0,-257r22,0r0,161r103,-90r30,0r-79,69r85,117r-29,0r-73,-101r-37,30r0,71r-22,0","w":180},"l":{"d":"22,0r0,-257r23,0r0,257r-23,0","w":66},"m":{"d":"22,0r0,-186r20,0v2,10,-3,26,2,32v15,-45,100,-52,114,-1v11,-24,34,-36,59,-36v86,-6,56,114,61,191r-22,0r0,-125v0,-31,-12,-47,-44,-47v-75,3,-45,103,-51,172r-22,0r0,-126v0,-25,-10,-46,-39,-46v-76,0,-52,100,-56,172r-22,0","w":299},"n":{"d":"21,0r0,-186r23,0v1,10,-2,24,1,32v8,-22,33,-37,59,-37v98,-4,61,108,68,191r-23,0v-8,-67,28,-170,-47,-172v-75,-1,-56,99,-58,172r-23,0","w":193},"o":{"d":"100,-191v57,0,88,45,88,98v0,53,-31,98,-88,98v-57,0,-88,-45,-88,-98v0,-53,31,-98,88,-98xm100,-172v-86,0,-87,158,0,158v44,0,65,-39,65,-79v0,-39,-21,-79,-65,-79"},"p":{"d":"109,-14v83,-1,83,-157,0,-158v-50,0,-65,37,-65,79v0,39,17,79,65,79xm22,69r0,-255r20,0v1,11,-2,27,1,36v11,-26,37,-41,66,-41v57,0,84,46,84,98v0,53,-27,98,-84,98v-28,1,-53,-16,-65,-40r0,104r-22,0","w":206},"q":{"d":"97,-172v-83,1,-82,157,0,158v89,-1,89,-157,0,-158xm185,-186r0,255r-23,0r0,-104v-10,26,-37,40,-65,40v-56,0,-83,-45,-83,-98v0,-52,27,-98,83,-98v28,-1,56,18,67,41r0,-36r21,0","w":206},"r":{"d":"22,0r0,-186r20,0v1,14,-2,32,1,44v12,-30,37,-48,70,-46r0,22v-41,-2,-69,28,-69,67r0,99r-22,0","w":113},"s":{"d":"156,-131r-23,0v-1,-28,-23,-41,-49,-41v-20,0,-44,8,-44,32v15,56,123,16,122,90v0,40,-40,55,-75,55v-43,0,-72,-20,-76,-65r23,0v2,30,24,46,55,46v21,0,50,-9,50,-35v-8,-58,-126,-20,-121,-90v0,-38,37,-52,69,-52v38,0,67,19,69,60","w":173},"t":{"d":"58,-242r0,56r37,0r0,19r-37,0r0,126v-4,22,16,27,37,23r0,19v-36,3,-64,0,-60,-41r0,-127r-32,0r0,-19r32,0r0,-56r23,0","w":106},"u":{"d":"172,-186r0,186r-21,0v-1,-10,2,-25,-1,-33v-24,59,-129,48,-129,-32r0,-121r23,0v8,67,-28,175,50,172v71,-3,53,-100,55,-172r23,0","w":193},"v":{"d":"72,0r-71,-186r25,0r59,163r58,-163r23,0r-70,186r-24,0","w":166},"w":{"d":"63,0r-60,-186r24,0r48,159r46,-159r25,0r46,159r48,-159r24,0r-60,186r-25,0r-46,-156r-46,156r-24,0","w":266},"x":{"d":"0,0r72,-96r-66,-90r28,0r53,71r52,-71r28,0r-67,89r73,97r-29,0r-58,-78r-58,78r-28,0","w":173},"y":{"d":"75,-1r-74,-185r24,0r61,159r57,-159r23,0r-81,214v-13,38,-29,45,-66,39r0,-19v37,12,47,-21,56,-49","w":166},"z":{"d":"156,-170r-123,151r128,0r0,19r-156,0r0,-18r122,-149r-113,0r0,-19r142,0r0,16","w":166},"{":{"d":"105,69v-56,11,-50,-48,-49,-99v0,-29,-5,-57,-26,-57r0,-19v62,-6,-21,-170,75,-156r0,19v-37,-5,-25,52,-27,87v1,41,-21,54,-25,60v5,2,26,19,25,58v3,34,-12,91,27,88r0,19","w":119},"|":{"d":"31,77r0,-360r19,0r0,360r-19,0","w":79},"}":{"d":"14,-262v56,-12,51,46,50,98v0,29,5,57,26,57r0,20v-62,6,22,170,-76,156r0,-19v38,5,24,-52,27,-88v0,-41,22,-54,26,-59v-5,-3,-26,-19,-26,-59v-3,-33,12,-92,-27,-87r0,-19","w":119},"~":{"d":"70,-112v24,-1,56,23,77,23v14,0,23,-12,31,-24r13,13v-11,15,-23,31,-45,31v-37,-3,-90,-50,-108,1r-13,-13v8,-15,21,-31,45,-31","w":216},"'":{"d":"39,-170r0,-87r23,0r0,87r-23,0","w":100},"\u2020":{"d":"89,-158r-72,0r0,-19r72,0r0,-80r22,0r0,80r72,0r0,19r-72,0r0,212r-22,0r0,-212"},"\u2021":{"d":"89,-17r-72,0r0,-19r72,0r0,-131r-72,0r0,-19r72,0r0,-71r22,0r0,71r72,0r0,19r-72,0r0,131r72,0r0,19r-72,0r0,71r-22,0r0,-71"},"`":{"d":"36,-212r-47,-50r28,0r38,50r-19,0","w":66},"\u2122":{"d":"97,-109r-19,0r0,-132r-48,0r0,-16r115,0r0,16r-48,0r0,132xm190,-109r-19,0r0,-148r31,0r48,120r46,-120r31,0r0,148r-19,0r-1,-131r-52,131r-11,0r-54,-131r0,131","w":356},"\u00bd":{"d":"48,12r163,-273r17,0r-163,273r-17,0xm17,-210r0,-14v26,-1,42,-2,46,-27r15,0r0,152r-17,0r0,-111r-44,0xm173,0v0,-60,93,-56,93,-112v0,-18,-18,-29,-37,-29v-26,0,-36,19,-36,41r-17,0v-1,-33,17,-56,54,-56v30,0,53,15,53,45v-2,54,-74,53,-91,97r90,0r0,14r-109,0","w":300},"\u00bc":{"d":"231,0r0,-36r-75,0r0,-14r76,-102r16,0r0,102r25,0r0,14r-25,0r0,36r-17,0xm231,-128v-22,24,-39,53,-59,78r59,0r0,-78xm48,12r163,-273r17,0r-163,273r-17,0xm17,-210r0,-14v26,-1,42,-2,46,-27r15,0r0,152r-17,0r0,-111r-44,0","w":300},"\u00be":{"d":"231,0r0,-36r-75,0r0,-14r76,-102r16,0r0,102r25,0r0,14r-25,0r0,36r-17,0xm231,-128v-22,24,-39,53,-59,78r59,0r0,-78xm49,-172r0,-14v23,2,44,-5,46,-27v0,-18,-17,-27,-36,-27v-23,0,-36,16,-36,37r-17,0v1,-30,20,-51,53,-51v27,0,53,12,53,40v1,17,-12,28,-28,34v21,3,34,17,34,37v0,31,-27,48,-58,48v-36,0,-60,-19,-57,-53r17,0v-1,23,14,39,39,39v21,0,42,-12,42,-33v0,-24,-24,-32,-52,-30xm62,12r163,-273r17,0r-162,273r-18,0","w":300},"\u00ae":{"d":"144,-262v76,0,134,58,134,133v0,76,-58,134,-134,134v-76,0,-134,-58,-134,-134v0,-75,58,-133,134,-133xm144,-243v-65,0,-113,50,-113,114v0,65,48,115,113,115v65,0,113,-50,113,-115v0,-64,-48,-114,-113,-114xm114,-120r0,69r-19,0r0,-155v49,0,116,-8,110,43v0,27,-18,40,-39,43r46,69r-22,0r-43,-69r-33,0xm114,-136v32,-1,71,8,72,-27v-1,-34,-40,-26,-72,-27r0,54","w":288},"\u00c1":{"d":"-3,0r104,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm114,-233r-52,132r101,0xm158,-328r-47,50r-19,0r38,-50r28,0","w":226},"\u00c0":{"d":"-3,0r104,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm114,-233r-52,132r101,0xm117,-278r-48,-50r28,0r38,50r-18,0","w":226},"\u00c7":{"d":"217,-98r25,0v-7,63,-47,103,-107,103r-12,16v17,-3,42,0,42,22v-2,35,-47,37,-74,24r5,-12v12,5,48,11,48,-10v0,-24,-34,-5,-40,-17r18,-23v-72,-6,-108,-67,-108,-134v0,-70,40,-133,121,-133v49,0,97,29,103,83r-24,0v-9,-40,-42,-63,-79,-63v-132,0,-130,227,0,227v48,0,78,-37,82,-83","w":253},"\u00c9":{"d":"26,0r0,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0xm151,-328r-47,50r-19,0r38,-50r28,0","w":213},"\u00c8":{"d":"26,0r0,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0xm110,-278r-48,-50r28,0r38,50r-18,0","w":213},"\u00cf":{"d":"28,0r0,-257r24,0r0,257r-24,0xm84,-284r-24,0r0,-36r24,0r0,36xm21,-284r-25,0r0,-36r25,0r0,36","w":79},"\u00d4":{"d":"12,-129v0,-70,41,-133,122,-133v80,0,121,63,121,133v0,71,-41,134,-121,134v-81,0,-122,-63,-122,-134xm134,-242v-132,0,-130,227,0,227v129,0,130,-227,0,-227xm146,-328r41,50r-24,0r-31,-36r-31,36r-21,0r41,-50r25,0","w":266},"\u00e1":{"d":"140,-102v-30,23,-108,5,-106,52v0,22,20,36,42,36v46,0,72,-33,64,-88xm42,-129r-23,0v3,-43,33,-62,76,-62v32,0,68,10,68,60r0,98v-1,12,11,17,21,12r0,20v-28,6,-44,-8,-43,-31v-20,51,-130,53,-129,-17v0,-52,50,-54,99,-60v19,-2,29,-4,29,-25v0,-31,-22,-38,-48,-38v-28,0,-49,13,-50,43xm138,-262r-48,50r-18,0r38,-50r28,0","w":186},"\u00e0":{"d":"140,-102v-30,23,-108,5,-106,52v0,22,20,36,42,36v46,0,72,-33,64,-88xm42,-129r-23,0v3,-43,33,-62,76,-62v32,0,68,10,68,60r0,98v-1,12,11,17,21,12r0,20v-28,6,-44,-8,-43,-31v-20,51,-130,53,-129,-17v0,-52,50,-54,99,-60v19,-2,29,-4,29,-25v0,-31,-22,-38,-48,-38v-28,0,-49,13,-50,43xm96,-212r-47,-50r28,0r38,50r-19,0","w":186},"\u00e7":{"d":"154,-67r23,0v-6,45,-35,72,-75,72r-12,16v17,-3,41,0,41,22v-2,35,-47,36,-73,24r5,-12v13,6,48,10,48,-10v0,-24,-34,-5,-40,-17r18,-23v-50,-6,-77,-48,-77,-98v0,-53,31,-98,88,-98v40,0,70,21,75,64r-22,0v-6,-28,-23,-45,-53,-45v-86,0,-87,158,0,158v28,0,51,-22,54,-53","w":186},"\u00e9":{"d":"178,-87r-143,0v0,33,18,73,61,73v33,0,51,-19,58,-47r23,0v-10,42,-34,66,-81,66v-59,0,-84,-45,-84,-98v0,-49,25,-98,84,-98v60,0,84,52,82,104xm35,-106r120,0v-1,-34,-22,-66,-59,-66v-37,0,-57,32,-61,66xm138,-262r-48,50r-18,0r38,-50r28,0","w":186},"\u00e8":{"d":"178,-87r-143,0v0,33,18,73,61,73v33,0,51,-19,58,-47r23,0v-10,42,-34,66,-81,66v-59,0,-84,-45,-84,-98v0,-49,25,-98,84,-98v60,0,84,52,82,104xm35,-106r120,0v-1,-34,-22,-66,-59,-66v-37,0,-57,32,-61,66xm96,-212r-47,-50r28,0r38,50r-19,0","w":186},"\u00ef":{"d":"45,0r-23,0r0,-186r23,0r0,186xm77,-218r-24,0r0,-36r24,0r0,36xm14,-218r-25,0r0,-36r25,0r0,36","w":66},"\u00f4":{"d":"100,-191v57,0,88,45,88,98v0,53,-31,98,-88,98v-57,0,-88,-45,-88,-98v0,-53,31,-98,88,-98xm100,-172v-86,0,-87,158,0,158v44,0,65,-39,65,-79v0,-39,-21,-79,-65,-79xm113,-262r41,50r-24,0r-31,-36r-31,36r-21,0r41,-50r25,0"},"\u00a0":{"w":100}}});Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica Neue LT Std","font-weight":250,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 3 2 2 2 2 2 4","ascent":"257","descent":"-103","x-height":"4","bbox":"-12 -325 326 77","underline-thickness":"18","underline-position":"-36","stemh":"12","stemv":"14","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":100},"!":{"d":"38,-257r17,0r-4,191r-9,0xm56,0r-19,0r0,-37r19,0r0,37","w":93},"\"":{"d":"29,-175r0,-82r13,0r0,82r-13,0xm71,-175r0,-82r14,0r0,82r-14,0","w":113},"#":{"d":"149,-248r12,0r-11,79r39,0r0,12r-41,0r-9,62r40,0r0,12r-41,0r-12,83r-12,0r12,-83r-61,0r-12,83r-12,0r12,-83r-42,0r0,-12r44,0r8,-62r-42,0r0,-12r44,0r11,-79r12,0r-11,79r61,0xm75,-157r-8,62r60,0r9,-62r-61,0"},"$":{"d":"104,-125r0,117v41,0,76,-16,76,-58v4,-33,-36,-53,-76,-59xm93,-141r0,-108v-49,1,-67,24,-67,54v-1,41,34,46,67,54xm93,38r0,-32v-53,-5,-89,-29,-89,-91r14,0v0,45,25,75,75,77r0,-119v-39,-10,-80,-16,-81,-68v0,-16,5,-66,81,-68r0,-18r11,0r0,18v50,1,82,24,84,79r-14,0v-3,-47,-28,-65,-70,-66r0,112v47,7,98,34,90,72v0,53,-45,71,-90,72r0,32r-11,0"},"%":{"d":"206,4v-36,0,-60,-28,-60,-63v0,-36,23,-65,60,-65v38,0,60,28,60,65v0,34,-24,63,-60,63xm206,-8v28,0,46,-25,46,-51v0,-28,-16,-53,-46,-53v-30,0,-46,25,-46,53v0,26,17,51,46,51xm74,-125v-36,0,-60,-28,-60,-63v0,-36,23,-65,61,-65v37,0,59,28,59,65v0,34,-23,63,-60,63xm74,-136v29,0,46,-26,46,-52v0,-28,-16,-53,-46,-53v-30,0,-46,25,-46,53v0,26,18,52,46,52xm50,9r167,-266r14,0r-167,266r-14,0","w":280},"&":{"d":"94,-148v21,-14,48,-31,48,-60v-1,-43,-80,-43,-81,0v0,24,22,42,33,60xm156,-49r-66,-83v-27,18,-61,34,-61,71v0,34,31,53,63,53v43,0,64,-39,64,-41xm196,0r-31,-38v-28,61,-151,56,-150,-23v0,-42,38,-62,67,-81v-15,-20,-34,-39,-34,-66v0,-27,27,-45,54,-45v28,0,54,16,54,45v0,36,-29,51,-54,70r61,75v5,-13,9,-28,9,-43r14,0v-1,19,-6,38,-13,55r42,51r-19,0","w":213},"(":{"d":"82,66r-12,0v-62,-98,-61,-230,1,-329r12,0v-60,100,-62,230,-1,329","w":86},")":{"d":"5,-263r12,0v61,98,60,230,-1,329r-12,0v59,-99,63,-230,1,-329","w":86},"*":{"d":"58,-257r10,0r0,47r44,-15r4,10r-44,15r27,37r-8,7r-28,-38r-28,38r-9,-7r29,-37r-45,-15r4,-10r44,15r0,-47","w":126},"+":{"d":"101,-98r0,-83r14,0r0,83r84,0r0,14r-84,0r0,84r-14,0r0,-84r-84,0r0,-14r84,0","w":216},",":{"d":"36,45r0,-12v10,-4,12,-23,12,-33r-7,0r0,-37r18,0v-1,35,5,71,-23,82","w":100},"-":{"d":"102,-91r-77,0r0,-14r77,0r0,14","w":126},".":{"d":"59,0r-18,0r0,-37r18,0r0,37","w":100},"\/":{"d":"10,6r-15,0r115,-269r15,0","w":119},"0":{"d":"100,4v-72,0,-90,-68,-90,-128v0,-60,18,-129,90,-129v72,0,90,69,90,129v0,60,-18,128,-90,128xm100,-8v62,0,76,-66,76,-116v0,-50,-14,-117,-76,-117v-62,0,-76,67,-76,117v0,50,14,116,76,116"},"1":{"d":"119,-248r0,248r-14,0r0,-222v-17,19,-41,29,-66,32r0,-12v29,-4,53,-21,68,-46r12,0"},"2":{"d":"178,-185v4,83,-134,106,-144,171r148,0r0,14r-165,0v1,-90,145,-99,148,-185v0,-34,-29,-56,-62,-56v-45,0,-67,34,-67,76r-13,0v3,-59,30,-88,78,-88v42,0,77,23,77,68"},"3":{"d":"13,-82r14,0v-2,46,26,74,72,74v37,0,71,-21,71,-61v0,-47,-42,-60,-83,-57r0,-12v36,2,78,-9,78,-52v0,-35,-36,-51,-66,-51v-44,0,-64,30,-66,71r-14,0v0,-49,31,-83,80,-83v40,0,79,19,79,63v1,30,-21,52,-48,58v33,3,54,30,54,63v0,49,-39,73,-85,73v-55,0,-89,-31,-86,-86"},"4":{"d":"131,-248r14,0r0,173r42,0r0,12r-42,0r0,63r-14,0r0,-63r-121,0r0,-14xm131,-75r0,-155r-107,155r107,0"},"5":{"d":"21,-120r26,-128r125,0r0,11r-114,0r-21,100v42,-60,153,-23,146,55v0,49,-35,86,-84,86v-48,0,-89,-30,-86,-80r14,0v-1,41,32,68,72,68v42,0,70,-33,70,-74v4,-73,-101,-99,-134,-38r-14,0"},"6":{"d":"104,-8v40,0,69,-32,69,-71v0,-39,-29,-73,-69,-73v-41,0,-71,32,-71,73v0,41,32,71,71,71xm183,-187r-14,0v-6,-32,-30,-54,-62,-54v-69,0,-80,82,-77,130v10,-32,41,-53,74,-53v49,0,83,36,83,85v0,48,-35,83,-83,83v-70,0,-89,-55,-89,-116v0,-61,15,-141,92,-141v41,0,71,24,76,66"},"7":{"d":"20,-237r0,-11r160,0r0,13v-50,56,-95,113,-107,235r-15,0v5,-71,23,-145,109,-237r-147,0"},"8":{"d":"172,-71v0,-42,-33,-58,-72,-58v-39,0,-72,16,-72,58v0,44,34,63,72,63v38,0,72,-19,72,-63xm23,-190v0,-87,154,-86,154,0v1,28,-18,47,-46,55v34,4,55,28,55,64v0,51,-38,75,-86,75v-47,0,-86,-24,-86,-75v-1,-37,23,-58,55,-65v-30,-6,-46,-27,-46,-54xm163,-190v0,-38,-30,-51,-63,-51v-33,0,-63,13,-63,51v0,35,31,49,63,49v32,0,63,-14,63,-49"},"9":{"d":"100,-96v41,0,71,-33,71,-73v0,-40,-31,-72,-71,-72v-40,0,-70,33,-70,72v0,39,30,73,70,73xm20,-61r13,0v6,32,30,53,63,53v68,0,80,-84,77,-127v-10,28,-34,51,-73,51v-49,0,-83,-36,-83,-85v0,-49,35,-84,83,-84v39,0,87,17,87,117v0,61,-15,140,-91,140v-42,0,-72,-23,-76,-65"},":":{"d":"41,-185r18,0r0,37r-18,0r0,-37xm59,0r-18,0r0,-37r18,0r0,37","w":100},";":{"d":"36,45r0,-12v10,-4,12,-23,12,-33r-7,0r0,-37r18,0v-1,35,5,71,-23,82xm41,-185r18,0r0,37r-18,0r0,-37","w":100},"<":{"d":"199,-185r0,15r-171,79r171,79r0,15r-182,-85r0,-19","w":216},"=":{"d":"199,-133r0,14r-182,0r0,-14r182,0xm199,-63r0,14r-182,0r0,-14r182,0","w":216},">":{"d":"17,3r0,-15r171,-79r-171,-79r0,-15r182,85r0,19","w":216},"?":{"d":"85,-65v-4,-71,63,-77,67,-134v0,-35,-28,-50,-58,-50v-43,0,-65,30,-65,72r-14,0v0,-52,28,-86,80,-86v39,0,71,21,71,64v-3,68,-68,56,-67,134r-14,0xm83,0r0,-37r19,0r0,37r-19,0","w":186},"@":{"d":"121,-59v34,-1,65,-60,65,-95v0,-14,-3,-43,-33,-43v-41,0,-69,56,-69,94v0,26,16,44,37,44xm219,-202r-40,129v0,7,6,12,14,12v33,0,65,-51,65,-91v0,-60,-55,-99,-108,-99v-66,0,-120,57,-120,124v0,121,163,162,220,67r16,0v-23,41,-69,66,-115,66v-77,0,-134,-60,-134,-136v0,-73,60,-133,132,-133v68,0,122,47,122,112v0,54,-45,103,-82,103v-13,0,-23,-8,-24,-25v-26,41,-98,29,-95,-29v0,-50,35,-107,85,-107v24,-1,36,18,41,33r8,-26r15,0","w":288},"A":{"d":"99,-257r17,0r102,257r-17,0r-33,-82r-123,0r-32,82r-17,0xm50,-96r113,0r-55,-146","w":213},"B":{"d":"39,-127r0,113v70,0,163,11,160,-58v-6,-75,-90,-51,-160,-55xm23,0r0,-257r103,0v61,0,81,33,81,67v1,28,-23,49,-50,55v7,-1,58,11,58,63v3,84,-106,73,-192,72xm39,-243r0,103v65,1,156,9,152,-53v-2,-67,-88,-47,-152,-50","w":226},"C":{"d":"239,-180r-16,0v-7,-44,-45,-69,-88,-69v-67,0,-106,55,-106,120v0,66,39,121,106,121v50,0,89,-44,92,-92r16,0v-6,61,-51,106,-108,106v-77,0,-122,-59,-122,-135v0,-75,45,-134,122,-134v91,0,103,79,104,83","w":253},"D":{"d":"39,-243r0,229v100,3,163,5,171,-115v0,-105,-67,-114,-106,-114r-65,0xm23,0r0,-257r84,0v92,0,119,63,119,128v0,73,-37,129,-120,129r-83,0","w":240},"E":{"d":"39,-14r158,0r0,14r-174,0r0,-257r172,0r0,14r-156,0r0,103r147,0r0,13r-147,0r0,113","w":201},"F":{"d":"170,-127r-131,0r0,127r-16,0r0,-257r161,0r0,14r-145,0r0,103r131,0r0,13","w":185},"G":{"d":"138,-126r108,0r0,126r-14,0v-1,-18,2,-39,-1,-55v-12,38,-51,61,-97,61v-77,0,-121,-59,-121,-133v0,-73,44,-136,122,-136v53,0,98,32,107,86r-16,0v-11,-45,-44,-72,-91,-72v-69,0,-106,58,-106,122v0,65,35,119,106,119v61,0,100,-41,97,-104r-94,0r0,-14","w":266},"H":{"d":"203,-127r-164,0r0,127r-16,0r0,-257r16,0r0,117r164,0r0,-117r16,0r0,257r-16,0r0,-127","w":241},"I":{"d":"23,0r0,-257r16,0r0,257r-16,0","w":61},"J":{"d":"7,-82r16,0v-2,38,4,74,55,74v60,0,57,-42,57,-77r0,-172r15,0r0,177v0,30,2,86,-70,86v-70,0,-73,-49,-73,-88","w":173},"K":{"d":"23,0r0,-257r16,0r0,148r161,-148r21,0r-118,107r125,150r-20,0r-116,-139r-53,48r0,91r-16,0","w":220},"L":{"d":"23,0r0,-257r16,0r0,243r145,0r0,14r-161,0","w":180},"M":{"d":"23,0r0,-257r22,0r102,239r99,-239r23,0r0,257r-16,0r-1,-238r-98,238r-16,0r-99,-238r0,238r-16,0","w":291},"N":{"d":"23,0r0,-257r19,0r164,236r0,-236r15,0r0,257r-18,0r-164,-238r0,238r-16,0","w":244},"O":{"d":"256,-129v0,76,-46,135,-122,135v-77,0,-123,-59,-123,-135v0,-75,46,-134,123,-134v76,0,122,59,122,134xm27,-129v0,66,39,121,107,121v67,0,106,-55,106,-121v0,-65,-39,-120,-106,-120v-68,0,-107,55,-107,120","w":266},"P":{"d":"39,-243r0,115r90,0v46,0,62,-31,62,-57v0,-19,-8,-58,-60,-58r-92,0xm23,0r0,-257v87,8,175,-33,184,72v0,45,-30,71,-81,71r-87,0r0,114r-16,0","w":212},"Q":{"d":"163,-66r41,30v68,-62,37,-218,-70,-213v-68,0,-107,55,-107,120v-8,90,91,155,167,102r-39,-27xm249,13r-43,-30v-19,15,-44,23,-72,23v-77,0,-123,-59,-123,-135v0,-75,46,-134,123,-134v120,-8,158,166,83,236r40,29","w":266},"R":{"d":"39,-131v70,-2,157,18,156,-59v-1,-71,-89,-50,-156,-53r0,112xm197,0v-17,-47,16,-121,-67,-117r-91,0r0,117r-16,0r0,-257v82,4,188,-22,188,66v1,36,-23,59,-55,67v70,3,39,85,59,124r-18,0","w":226},"S":{"d":"197,-66v-3,-88,-178,-31,-175,-129v0,-49,45,-68,86,-68v54,0,96,23,98,79r-16,0v-1,-44,-34,-65,-82,-65v-29,0,-71,12,-71,54v6,85,181,29,176,129v0,53,-51,72,-91,72v-60,0,-109,-25,-108,-91r16,0v-3,56,42,77,92,77v31,0,75,-14,75,-58","w":226},"T":{"d":"85,-243r-90,0r0,-14r197,0r0,14r-91,0r0,243r-16,0r0,-243","w":186},"U":{"d":"23,-257r16,0r0,154v0,31,6,95,80,95v119,4,76,-144,84,-249r16,0v-7,119,36,264,-100,263v-91,0,-96,-75,-96,-109r0,-154","w":241},"V":{"d":"12,-257r88,243r89,-243r16,0r-96,257r-18,0r-96,-257r17,0"},"W":{"d":"72,0r-74,-257r16,0r68,240r68,-240r20,0r69,240r66,-240r17,0r-74,257r-18,0r-71,-243r-69,243r-18,0","w":320},"X":{"d":"90,-132r-90,-125r19,0r81,113r83,-113r18,0r-90,125r95,132r-19,0r-87,-120r-87,120r-19,0"},"Y":{"d":"103,-121r94,-136r17,0r-103,149r0,108r-16,0r0,-108r-103,-149r18,0","w":206},"Z":{"d":"10,-243r0,-14r180,0r0,14r-174,229r178,0r0,14r-194,0r0,-14r173,-229r-163,0","w":193},"[":{"d":"83,-251r-35,0r0,305r35,0r0,12r-49,0r0,-329r49,0r0,12","w":86},"\\":{"d":"125,6r-15,0r-115,-269r15,0","w":119},"]":{"d":"4,54r35,0r0,-305r-35,0r0,-12r49,0r0,329r-49,0r0,-12","w":86},"^":{"d":"202,-85r-15,0r-79,-152r-79,152r-15,0r85,-163r19,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"143,-105v-26,22,-125,1,-118,57v0,22,16,40,49,40v62,0,69,-53,69,-63r0,-34xm157,-141r0,107v-2,16,5,26,22,21r0,12v-29,6,-38,-11,-37,-36v-10,47,-133,65,-130,-11v0,-43,37,-52,68,-55v61,-4,63,-8,63,-38v0,-8,-9,-36,-51,-36v-33,0,-55,17,-57,49r-14,0v2,-41,27,-61,71,-61v32,0,65,10,65,48","w":180},"b":{"d":"108,-8v91,-1,90,-170,0,-169v-48,0,-71,34,-71,80v0,46,21,89,71,89xm23,0r0,-257r14,0r1,111v10,-29,40,-43,70,-43v54,0,80,41,80,92v0,88,-54,101,-80,101v-50,0,-65,-37,-71,-45r0,41r-14,0"},"c":{"d":"173,-128r-14,0v-2,-33,-29,-49,-62,-49v-47,0,-71,41,-71,83v0,50,23,86,71,86v34,0,60,-23,64,-57r14,0v-6,44,-38,69,-78,69v-60,0,-85,-47,-85,-98v0,-52,30,-95,85,-95v40,0,72,19,76,61","w":186},"d":{"d":"94,-8v47,0,69,-42,69,-84v0,-43,-22,-85,-69,-85v-49,0,-69,40,-69,85v0,43,22,84,69,84xm163,0v-1,-13,2,-29,-1,-40v-15,30,-37,44,-71,44v-55,0,-79,-45,-79,-96v0,-55,26,-97,82,-97v31,-1,58,18,69,45r0,-113r14,0r0,257r-14,0"},"e":{"d":"175,-91r-149,0v-1,44,22,83,68,83v35,0,59,-20,66,-55r14,0v-8,44,-36,67,-80,67v-54,0,-83,-42,-82,-93v-1,-51,26,-100,82,-100v58,0,83,45,81,98xm26,-103r135,0v0,-38,-25,-74,-67,-74v-41,0,-66,38,-68,74","w":186},"f":{"d":"33,-173r-33,0r0,-12r33,0v-6,-48,8,-87,57,-73r0,12v-21,-4,-43,-4,-43,24r0,37r38,0r0,12r-38,0r0,173r-14,0r0,-173","w":86},"g":{"d":"92,-177v-45,0,-66,39,-66,79v0,43,22,79,66,79v45,0,67,-38,67,-79v0,-42,-22,-79,-67,-79xm159,-185r14,0r0,175v0,15,0,83,-80,81v-39,0,-70,-15,-72,-58r14,0v2,33,28,46,59,46v64,0,65,-53,65,-65r0,-43v-13,27,-36,42,-67,42v-55,0,-80,-40,-80,-91v0,-49,28,-91,80,-91v29,0,57,15,67,42r0,-38","w":193},"h":{"d":"20,-257r14,0r1,112v9,-28,37,-44,66,-44v65,0,66,52,66,75r0,114r-14,0r0,-117v0,-19,-2,-60,-53,-60v-41,0,-66,32,-66,77r0,100r-14,0r0,-257","w":186},"i":{"d":"37,0r-14,0r0,-185r14,0r0,185xm37,-220r-14,0r0,-37r14,0r0,37","w":60},"j":{"d":"23,-185r14,0r0,205v2,29,-11,50,-49,46r0,-12v23,3,36,-3,35,-35r0,-204xm37,-220r-14,0r0,-37r14,0r0,37","w":60},"k":{"d":"21,0r0,-257r14,0r0,170r114,-98r19,0r-81,69r87,116r-18,0r-79,-105r-42,35r0,70r-14,0","w":166},"l":{"d":"23,-257r14,0r0,257r-14,0r0,-257","w":60},"m":{"d":"21,0r0,-185r13,0v1,12,-2,28,1,38v6,-24,30,-42,58,-42v35,0,52,20,56,39v18,-56,122,-55,117,24r0,126r-14,0r0,-127v0,-47,-33,-50,-44,-50v-33,0,-58,23,-58,68r0,109r-14,0r0,-127v0,-46,-31,-50,-43,-50v-26,0,-59,20,-59,68r0,109r-13,0","w":286},"n":{"d":"20,0r0,-185r14,0v1,13,-2,29,1,40v9,-28,37,-44,66,-44v65,0,66,52,66,75r0,114r-14,0r0,-117v0,-19,-2,-60,-53,-60v-41,0,-66,32,-66,77r0,100r-14,0","w":186},"o":{"d":"12,-93v0,-52,30,-96,84,-96v55,0,85,44,85,96v0,53,-30,97,-85,97v-54,0,-84,-44,-84,-97xm25,-93v0,45,25,85,71,85v47,0,72,-40,72,-85v0,-44,-25,-84,-72,-84v-46,0,-71,40,-71,84","w":193},"p":{"d":"105,-8v48,0,70,-38,70,-84v0,-42,-20,-85,-70,-85v-49,0,-68,41,-68,85v0,44,16,84,68,84xm37,-185v1,13,-2,31,1,42v6,-18,26,-46,67,-46v57,0,83,45,83,97v0,56,-26,96,-83,96v-31,1,-55,-15,-68,-43r0,105r-14,0r0,-251r14,0"},"q":{"d":"94,-8v47,0,69,-42,69,-85v0,-42,-22,-84,-69,-84v-47,0,-69,41,-69,84v0,45,20,85,69,85xm163,66r-1,-107v-9,29,-38,45,-68,45v-56,0,-82,-42,-82,-97v0,-51,24,-96,79,-96v35,-1,55,16,72,44r0,-40r14,0r0,251r-14,0"},"r":{"d":"34,-185v1,13,-2,30,1,41v7,-24,37,-44,71,-42r0,14v-34,-4,-76,26,-72,71r0,101r-14,0r0,-185r14,0","w":100},"s":{"d":"33,-142v5,62,134,21,127,95v0,40,-40,51,-72,51v-42,0,-74,-22,-75,-66r14,0v2,35,27,54,61,54v24,0,59,-7,59,-39v-4,-63,-132,-21,-128,-95v0,-37,36,-47,67,-47v40,0,69,17,69,59r-14,0v0,-34,-24,-47,-55,-47v-25,0,-53,9,-53,35","w":173},"t":{"d":"88,-185r0,12r-40,0r0,129v0,30,14,33,40,32r0,12v-28,2,-55,-2,-54,-44r0,-129r-34,0r0,-12r34,0r0,-58r14,0r0,58r40,0","w":93},"u":{"d":"167,-185r0,185r-14,0v-1,-13,2,-29,-1,-40v-9,28,-37,44,-66,44v-65,0,-66,-52,-66,-75r0,-114r14,0r0,117v0,19,2,60,52,60v42,0,67,-32,67,-77r0,-100r14,0","w":186},"v":{"d":"161,-185r-70,185r-17,0r-75,-185r16,0r68,169r62,-169r16,0","w":159},"w":{"d":"14,-185r53,169r50,-169r19,0r51,169r52,-169r15,0r-59,185r-17,0r-52,-168r-51,168r-17,0r-59,-185r15,0","w":253},"x":{"d":"-2,0r73,-97r-68,-88r19,0r58,77r58,-77r18,0r-67,88r73,97r-19,0r-63,-87r-65,87r-17,0","w":159},"y":{"d":"75,-1r-77,-184r16,0r69,169r63,-169r16,0r-80,205v-13,35,-18,48,-64,46r0,-12v43,-2,42,-13,57,-55","w":159},"z":{"d":"20,-12r130,0r0,12r-147,0r0,-13r124,-160r-114,0r0,-12r131,0r0,13","w":153},"{":{"d":"105,-263r0,12v-50,-14,-33,53,-36,93v0,48,-20,56,-25,59v5,4,25,12,25,60v5,37,-18,108,36,93r0,12v-33,1,-49,0,-49,-42v-2,-42,9,-111,-26,-115r0,-14v36,-4,24,-74,26,-116v0,-41,16,-44,49,-42","w":119},"|":{"d":"33,77r0,-360r14,0r0,360r-14,0","w":79},"}":{"d":"14,66r0,-12v50,15,33,-53,36,-93v0,-48,21,-56,26,-60v-5,-3,-26,-11,-26,-59v-5,-37,18,-107,-36,-93r0,-12v33,-1,50,1,50,42v2,42,-10,111,26,116r0,14v-35,3,-24,74,-26,115v0,42,-17,43,-50,42","w":119},"~":{"d":"70,-110v28,-1,48,23,77,25v14,0,27,-16,33,-27r10,10v-9,14,-23,30,-43,30v-24,1,-49,-22,-75,-24v-21,0,-30,15,-35,27r-11,-11v11,-18,22,-30,44,-30","w":216},"'":{"d":"30,-175r0,-82r14,0r0,82r-14,0","w":73},"\u2020":{"d":"19,-185r74,0r0,-72r14,0r0,72r74,0r0,12r-74,0r0,226r-14,0r0,-226r-74,0r0,-12"},"\u2021":{"d":"93,-257r14,0r0,72r74,0r0,12r-74,0r0,142r74,0r0,12r-74,0r0,72r-14,0r0,-72r-74,0r0,-12r74,0r0,-142r-74,0r0,-12r74,0r0,-72"},"`":{"d":"51,-213r-14,0r-48,-50r19,0","w":60},"\u2122":{"d":"145,-257r0,12r-51,0r0,136r-12,0r0,-136r-51,0r0,-12r114,0xm195,-257r55,125r55,-125r21,0r0,148r-12,0r-1,-136r-60,136r-6,0r-62,-136r0,136r-11,0r0,-148r21,0","w":356},"\u00bd":{"d":"44,9r167,-266r14,0r-167,266r-14,0xm77,-249r0,150r-12,0r0,-134v-11,12,-25,18,-42,20r0,-10v18,-3,34,-13,43,-26r11,0xm281,-111v-1,48,-84,60,-95,101r96,0r0,10r-108,0v0,-57,92,-62,95,-112v0,-15,-12,-32,-40,-32v-28,0,-39,17,-41,45r-11,0v2,-33,15,-55,52,-55v29,0,52,14,52,43","w":300},"\u00bc":{"d":"225,-149r17,0r0,102r26,0r0,10r-26,0r0,37r-11,0r0,-37r-78,0r0,-10xm231,-47r-1,-90r-64,90r65,0xm54,9r168,-266r14,0r-167,266r-15,0xm87,-249r0,150r-11,0r0,-134v-11,12,-25,18,-42,20r0,-10v17,-3,33,-13,43,-26r10,0","w":300},"\u00be":{"d":"236,-149r17,0r0,102r26,0r0,10r-26,0r0,37r-11,0r0,-37r-78,0r0,-10xm71,9r168,-266r14,0r-167,266r-15,0xm242,-47r-1,-90r-64,90r65,0xm12,-149r11,0v-1,27,18,44,47,44v23,0,45,-13,45,-36v0,-26,-27,-34,-54,-32r0,-10v24,1,51,-5,51,-30v0,-21,-23,-30,-42,-30v-28,0,-42,18,-43,42r-11,0v0,-32,20,-52,56,-52v26,0,51,11,51,40v0,17,-12,31,-32,34v22,3,36,18,36,38v0,31,-25,45,-55,45v-40,0,-62,-18,-60,-53","w":300},"\u00ae":{"d":"95,-49r0,-159v50,0,118,-7,112,44v0,26,-19,38,-41,42r47,73r-15,0r-48,-73r-41,0r0,73r-14,0xm109,-196r0,62v37,-1,82,8,84,-31v-2,-40,-46,-30,-84,-31xm144,-251v-69,0,-121,53,-121,122v0,69,53,123,121,123v69,0,121,-55,121,-123v0,-69,-52,-122,-121,-122xm144,-263v75,0,135,60,135,134v0,75,-60,135,-135,135v-75,0,-135,-60,-135,-135v0,-74,60,-134,135,-134","w":288},"\u00c1":{"d":"99,-257r17,0r102,257r-17,0r-33,-82r-123,0r-32,82r-17,0xm50,-96r113,0r-55,-146xm86,-275r43,-50r19,0r-49,50r-13,0","w":213},"\u00c0":{"d":"99,-257r17,0r102,257r-17,0r-33,-82r-123,0r-32,82r-17,0xm50,-96r113,0r-55,-146xm127,-275r-13,0r-48,-50r18,0","w":213},"\u00c7":{"d":"239,-180r-16,0v-7,-44,-45,-69,-88,-69v-67,0,-106,55,-106,120v0,66,39,121,106,121v50,0,89,-44,92,-92r16,0v-6,61,-51,106,-109,106v-4,5,-9,9,-12,15v18,-8,41,0,41,23v4,32,-52,31,-69,19v3,-17,16,0,32,-2v11,0,23,-4,23,-17v-2,-21,-23,-20,-37,-12v-11,-8,7,-18,10,-27v-69,-6,-109,-63,-109,-134v0,-75,45,-134,122,-134v91,0,103,79,104,83","w":253},"\u00c9":{"d":"39,-14r158,0r0,14r-174,0r0,-257r172,0r0,14r-156,0r0,103r147,0r0,13r-147,0r0,113xm80,-275r43,-50r19,0r-48,50r-14,0","w":201},"\u00c8":{"d":"39,-14r158,0r0,14r-174,0r0,-257r172,0r0,14r-156,0r0,103r147,0r0,13r-147,0r0,113xm122,-275r-14,0r-48,-50r18,0","w":201},"\u00cf":{"d":"23,0r0,-257r16,0r0,257r-16,0xm10,-276r-16,0r0,-37r16,0r0,37xm67,-276r-16,0r0,-37r16,0r0,37","w":61},"\u00d4":{"d":"256,-129v0,76,-46,135,-122,135v-77,0,-123,-59,-123,-135v0,-75,46,-134,123,-134v76,0,122,59,122,134xm27,-129v0,66,39,121,107,121v67,0,106,-55,106,-121v0,-65,-39,-120,-106,-120v-68,0,-107,55,-107,120xm126,-325r14,0r42,50r-14,0r-35,-41r-35,41r-13,0","w":266},"\u00e1":{"d":"143,-105v-26,22,-125,1,-118,57v0,22,16,40,49,40v62,0,69,-53,69,-63r0,-34xm157,-141r0,107v-2,16,5,26,22,21r0,12v-29,6,-38,-11,-37,-36v-10,47,-133,65,-130,-11v0,-43,37,-52,68,-55v61,-4,63,-8,63,-38v0,-8,-9,-36,-51,-36v-33,0,-55,17,-57,49r-14,0v2,-41,27,-61,71,-61v32,0,65,10,65,48xm69,-213r44,-50r18,0r-48,50r-14,0","w":180},"\u00e0":{"d":"143,-105v-26,22,-125,1,-118,57v0,22,16,40,49,40v62,0,69,-53,69,-63r0,-34xm157,-141r0,107v-2,16,5,26,22,21r0,12v-29,6,-38,-11,-37,-36v-10,47,-133,65,-130,-11v0,-43,37,-52,68,-55v61,-4,63,-8,63,-38v0,-8,-9,-36,-51,-36v-33,0,-55,17,-57,49r-14,0v2,-41,27,-61,71,-61v32,0,65,10,65,48xm111,-213r-13,0r-49,-50r19,0","w":180},"\u00e7":{"d":"173,-128r-14,0v-2,-33,-29,-49,-62,-49v-47,0,-71,41,-71,83v0,50,23,86,71,86v34,0,60,-23,64,-57r14,0v-6,42,-35,67,-73,69v-4,6,-13,11,-13,17v17,-8,40,0,40,23v0,33,-53,30,-69,19r4,-9v14,7,52,15,52,-10v0,-21,-25,-20,-37,-12v-13,-7,7,-19,11,-28v-55,-3,-78,-49,-78,-98v0,-52,30,-95,85,-95v40,0,72,19,76,61","w":186},"\u00e9":{"d":"175,-91r-149,0v-1,44,22,83,68,83v35,0,59,-20,66,-55r14,0v-8,44,-36,67,-80,67v-54,0,-83,-42,-82,-93v-1,-51,26,-100,82,-100v58,0,83,45,81,98xm26,-103r135,0v0,-38,-25,-74,-67,-74v-41,0,-66,38,-68,74xm73,-213r43,-50r18,0r-48,50r-13,0","w":186},"\u00e8":{"d":"175,-91r-149,0v-1,44,22,83,68,83v35,0,59,-20,66,-55r14,0v-8,44,-36,67,-80,67v-54,0,-83,-42,-82,-93v-1,-51,26,-100,82,-100v58,0,83,45,81,98xm26,-103r135,0v0,-38,-25,-74,-67,-74v-41,0,-66,38,-68,74xm114,-213r-13,0r-48,-50r18,0","w":186},"\u00ef":{"d":"37,0r-14,0r0,-185r14,0r0,185xm10,-214r-16,0r0,-37r16,0r0,37xm67,-214r-16,0r0,-37r16,0r0,37","w":60},"\u00f4":{"d":"12,-93v0,-52,30,-96,84,-96v55,0,85,44,85,96v0,53,-30,97,-85,97v-54,0,-84,-44,-84,-97xm25,-93v0,45,25,85,71,85v47,0,72,-40,72,-85v0,-44,-25,-84,-72,-84v-46,0,-71,40,-71,84xm89,-263r15,0r41,50r-13,0r-36,-41r-34,41r-14,0","w":193},"\u00a0":{"w":100}}});
// Cufon directives
Cufon.replace('h1' , {fontWeight: 'normal'});
Cufon.replace('h2' , {fontWeight: 'normal', hover: true});
Cufon.replace('h3', {fontWeight: 'bold', hover: true});
// jQuery cookie plugin - http://plugins.jquery.com/files/jquery.cookie.js.txt
eval(function(p,a,c,k,e,d){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--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[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}('o.5=B(9,b,2){6(h b!=\'E\'){2=2||{};6(b===n){b=\'\';2.3=-1}4 3=\'\';6(2.3&&(h 2.3==\'j\'||2.3.k)){4 7;6(h 2.3==\'j\'){7=w u();7.t(7.q()+(2.3*r*l*l*x))}m{7=2.3}3=\'; 3=\'+7.k()}4 8=2.8?\'; 8=\'+(2.8):\'\';4 a=2.a?\'; a=\'+(2.a):\'\';4 c=2.c?\'; c\':\'\';d.5=[9,\'=\',C(b),3,8,a,c].y(\'\')}m{4 e=n;6(d.5&&d.5!=\'\'){4 g=d.5.A(\';\');s(4 i=0;i<g.f;i++){4 5=o.z(g[i]);6(5.p(0,9.f+1)==(9+\'=\')){e=D(5.p(9.f+1));v}}}F e}};',42,42,'||options|expires|var|cookie|if|date|path|name|domain|value|secure|document|cookieValue|length|cookies|typeof||number|toUTCString|60|else|null|jQuery|substring|getTime|24|for|setTime|Date|break|new|1000|join|trim|split|function|encodeURIComponent|decodeURIComponent|undefined|return'.split('|'),0,{}));