/*
 * 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/06/23 22:58:52 $
 * $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);};});})();;

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
var fzIncludeCaption = true,
	fzShowCloseBox   = true,
    fzZoomTime       = 5,
    fzZoomSteps      = 15,
    fzIncludeFade    = 1,
    fzMinBorder      = 90,
    fzShadowSettings = '0px 5px 25px rgba(0, 0, 0, ',
    fzZoomImagesURI  = '/modules/fancyzoom/fancyzoom/images/zoom/';
;
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('Q 1n=$.1E.2J&&$.1E.2K<8.0,K=0,R=0,1o=0,1Z=0,20=0,1F=s,S=1,1b=s,1c=$("<1G/>"),1d=0,6=[],L=[],T=[],1p=[],1q=[],1H=[],1I=[],M="#2L",U="#2M",9="#2N",V="#2O",1e="#1e",1r="#2P";$(q(){21()});q 21(){22();2Q();v=$(M);W=$(9)}q 22(){$("a[@1s]:2R(.2S)").23(q(i){Q h=$(X).w("1s");Y(h&&h.2T(/(.*)\\.(2U|2V|2W|1J|2X|2Y|2Z)/30)!==-1&&$(X).w("24")!=="31"&&$(X).w("24")!=="32")}).33(q(e){Y 25(X,e)}).34("35",q(e){28(X)})}q 28(a){Q b=$(a).w("1s");Q c=1c.w("1f");4(!c||c.36(b.37(b.38("/")))===-1){1b=x;1c=$("<1G/>").39(q(){1b=s}).w("1f",b)}}q 29(){$("#2a").p({G:(K/2)+"z",C:((R/2)+1o)+"z",u:"Z"});S=1;$("#2b").w("1f",2c+"2d-2e-"+S+".1J");1d=11("2f()",D)}q 2f(a){4(1b){$("#2b").w("1f",2c+"2d-2e-"+S+".1J");S=(S%12)+1}r{$("#2a").p("u","N");14(1d);1d=0;1K(2g)}}q 25(a,b){Q c=b.2h;4(!b&&16.1L&&(16.1L.2i||16.1L.2j)){Y x}r 4(b&&(b.2i||b.2j)){Y x}K=$(16).y();R=$(16).E();1o=$(16).3a();1Z=$(1t).y();20=$(1t).E();4(1b){4(1d===0){2g=a;29()}}r{1K(a,c)}Y s}q 1K(a,b){W.w("1f",$(a).w("1s"));Q c=$(a).3b("1G")[0];4(c&&c.y){A=c.y;B=c.E;1g=$(c).1M()}r 4($(a).y()){A=$(a).y();B=$(a).E();1g=$(a).1M()}r{A=3c;B=12;1g=$(a).1M()}17=1g.G;1h=1g.C;4($("#2k").1N){17-=$("#2k")[0].3d}H=$(1c)[0].y;I=$(1c)[0].E;4(L[9]!==x){1O();4(1P){$(1r).p("u","N");4($(a).w("2l")){$(1e).1Q($(a).w("2l"))}r{$(1e).1Q("")}}1p[9]=A;1q[9]=B;1H[9]=17;1I[9]=1h;W.y(A).E(B);v.p({G:17+"z",C:1h+"z"});4(1i===1){18(0,M)}v.p("u","Z");1R=H/I;4(H>K-1u){H=K-1u;I=H/1R}4(I>R-1u){I=R-1u;H=I*1R}1v=(((K-H)/2)-17);1w=(((R-I)/2)-1h)+1o;1x=(H-A);1y=(I-B);19=2m*(b?7:1);1z=0;1A=0;O=1i?-D/19:0;T[9]=11("1B(\'"+M+"\', \'"+9+"\', "+1z+", "+A+", "+1x+", "+B+", "+1y+", "+17+", "+1v+", "+1h+", "+1w+", "+19+", "+1i+", "+O+", \'2n(M)\')",1S);L[9]=x}}q 1O(){4($(U).1N){$(U).p("u","N")}r 4(!1n){4(6[9]&&6[9].1j){14(6[9].P);6[9].1j=s;6[9].P=s}$(9).p("-2o-2p-1C",2q+"0.0)")}4(2r){$(V).p("u","N")}4(1P){$(1r).p("u","N")}}q 2s(a,b){19=2m*(b.2h?7:1);4(L[9]!==x){1O();1T=1k(v.p("G"),10);1U=1k(v.p("C"),10);A=W.y();B=W.E();1v=1H[9]-1T;1w=1I[9]-1U;1x=1p[9]-A;1y=1q[9]-B;1z=0;4(1i===1){1A=0;O=(D-0)/19}r{O=0}T[9]=11("1B(\'"+M+"\', \'"+9+"\', "+1z+", "+A+", "+1x+", "+B+", "+1y+", "+1T+", "+1v+", "+1U+", "+1w+", "+19+", "+1i+", "+O+", \'2t(M, 9)\')",1S);L[9]=x}}q 2n(a,b){1F=x;v=$(a);1V=$(U);4(1V.1N){18(0,U);2u=1k(v.p("G"),10)-13;2v=1k(v.p("C"),10)-8;2w=v[0].2x+26;2y=v[0].2z+26;1V.y(2w).E(2y).p({G:2u+"z",C:2v+"z",u:"Z"});1l(U,0,D,5)}r 4(!1n){1l(9,0,.8,5,0,"1C")}4(1P&&$(1e).1Q()!==""){1W=$(1r);1W.p({C:1k(v.p("C"),10)+(v[0].2z+15)+"z",G:(K/2)-(1W[0].2x/2)+"z",u:"Z"})}4(2r){4(1n){$(V).p("u","Z")}r{18(0,V);$(V).p("u","Z");1l(V,0,D,5)}}$(1t).2A(q(e){4(e.3e===27){2s(X,e)}})}q 2t(a,b){1F=s;1q[b]=1p[b]="";$(a).p("u","N");L[b]===s;$(1t).3f("2A")}q 1B(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){4(c===(l+1)){L[b]=s;14(T[b]);4(o!==""){3g(o)}}r{4(m===1){F=c*n;18((n<0)?1a.2B(F):D-F,a)}2C=1m(c,d,e,l);2D=1m(c,f,g,l);2E=1m(c,h,i,l);2F=1m(c,j,k,l);$(a).p({G:1a.1D(2E)+"z",C:1a.1D(2F)+"z"});W.y(1a.1D(2C)).E(1a.1D(2D));c++;14(T[b]);T[b]=11("1B(\'"+a+"\', \'"+b+"\', "+c+", "+d+", "+e+", "+f+", "+g+", "+h+", "+i+", "+j+", "+k+", "+l+", "+m+", "+n+", \'"+o+"\')",1S)}}q 1l(a,b,c,d,e,f){4(6[a]&&6[a].1j===x){6[a].J=[a,b,c,d]}r{1X=d;1A=0;O=(b-c)/1X;6[a]=3h 3i();6[a].P=11("1Y(\'"+a+"\', \'"+1A+"\', \'"+O+"\', \'"+1X+"\')",15);6[a].1j=x;6[a].2G=f;6[a].2H=(e===1)}}q 1Y(a,b,c,d){4(b===d){14(6[a].P);6[a].1j=s;6[a].P=s;4(6[a].2H===x){$(a).p("u","N")}4(6[a].J&&6[a].J!==s){1l(6[a].J[0],6[a].J[1],6[a].J[2],6[a].J[3]);6[a].J=s}}r{b++;F=b*c;F=(c<0)?1a.2B(F):D-F;4(6[a].2G==="1C"){$(a).p("-2o-2p-1C",2q+F+")")}r{18(F,a)}14(6[a].P);6[a].P=11("1Y(\'"+a+"\', \'"+b+"\', \'"+c+"\', \'"+d+"\')",15)}}q 18(a,b){4($.1E.3j&&a===D){a=3k.3l}$(b).p({23:"3m(2I="+a+")",2I:(a/D)})}q 1m(t,b,c,d){Y((t/=d/2)<1)?c/2*t*t*t+b:c/2*((t-=2)*t*t+2)+b}',62,209,'||||if||fzFade|||fzImgID||||||||||||||||css|function|else|false||visibility|zoomdiv|attr|true|width|px|startW|startH|top|100|height|fade|left|endW|endH|queue|fzWidth|fzZooming|fzBoxID|hidden|fadeAmount|timer|var|fzHeight|fzSpinFrame|fzZoomTimer|fzShadowID|fzCloseID|zoomimg|this|return|visible||setInterval|||clearInterval||window|hostX|fzSetOpacity|tempSteps|Math|fzPreloading|fzImgPreload|fzAnimTimer|fzCaption|src|offs|hostY|fzIncludeFade|active|parseInt|fzFadeElementSetup|fzCubicInOut|browserIsIE|fzScroll|fzOrigW|fzOrigH|fzCaptionDiv|href|document|fzMinBorder|zoomChangeX|zoomChangeY|zoomChangeW|zoomChangeH|zoomCurrent|fadeCurrent|fzZoomElement|shadow|floor|browser|fzOpen|img|fzOrigX|fzOrigY|png|fzZoomIn|event|offset|length|fzHideZoomExtras|fzIncludeCaption|html|sizeRatio|fzZoomTime|startX|startY|shbox|zoomcapd|fadeSteps|fzFadeElement|fzScrollWidth|fzScrollHeight|fzSetupZoom|fzPrepZooms|filter|rel|fzZoomClick|||fzZoomPreload|fzPreloadAnimStart|fzSpin|fzSpinImage|fzZoomImagesURI|zoom|spin|fzPreloadAnim|preloadFrom|shiftKey|metaKey|altKey|scroller|title|fzZoomSteps|fzZoomDoneIn|webkit|box|fzShadowSettings|fzShowCloseBox|fzZoomOut|fzZoomDone|shadowLeft|shadowTop|shadowWidth|offsetWidth|shadowHeight|offsetHeight|keypress|abs|moveW|moveH|moveX|moveY|mode|close|opacity|msie|version|fzBox|fzShadow|fzImage|fzClose|fzCapDiv|fzInsertZoomHTML|not|thickbox|search|jpg|jpeg|gif|bmp|tif|tiff|gi|nozoom|lightbox|click|one|mouseover|indexOf|substr|lastIndexOf|load|scrollTop|find|50|scrollLeft|keyCode|unbind|eval|new|Object|mozilla|99|9999|alpha'.split('|'),0,{}));
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('D 12(){14 a=$("15")[0];$("<q/>").4("j","16").2({s:"t",u:"m",v:"m",w:"x",z:17}).3($("<9/>").4({j:"18",b:6+"f-19-1.d"})).A(a);$("<q/>").4("j","I").2({s:"t",u:"m",v:"m",w:"x",n:"#1a",z:1b}).3($("<9/>").4({b:6+"o.p",j:"J",5:0}).2({g:"h",7:"m",8:"m",K:"L","-M-N-O":1c+"0.0)"}).P("Q",D(e){R(S,e);T U})).A(a);E(1d){$("<q/>").4("j","1e").2({s:"t",w:"x"}).2(V?{u:"-1f",v:"W"}:{u:"-X",v:"-X"}).3($("<9/>").4({b:6+"1g.d",7:Y,8:Y,5:0}).2("K","L").P("Q",D(e){R(S,e);T U})).1h($("#I"))}E(!V&&!$("#J").2("-M-N-O")){$("<q/>").4("j","1i").7(B).8(B).2({s:"t",u:"Z",v:"Z",w:"x",z:1j}).3($("<10/>").2({F:"0",c:"0"}).4({5:0,7:"B%",8:"B%",1k:0,1l:0}).3($("<11/>").2("5","0").3($("<C/>").2("5","0").8(G).3($("<i/>").2({5:"0",c:"0"}).7(k).3($("<9/>").4({b:6+"f-1m.d",7:k,8:G}).2("g","h"))).3($("<i/>").2({5:"0",c:"0"}).4("n",6+"f-1n.d").3($("<9/>").4({b:6+"o.p",7:1,8:1}).2("g","h"))).3($("<i/>").2({5:"0",c:"0"}).7(k).3($("<9/>").4({b:6+"f-1o.d",7:k,8:G}).2("g","h")))).3($("<C/>").2("5","0").3($("<i/>").2({5:"0",c:"0"}).4("n",6+"f-1p.d").3($("<9/>").4({b:6+"o.p",8:1,7:1}).2("g","h"))).3($("<i/>").2({5:"0",c:"0"}).4("1q","1r").3($("<9/>").4({b:6+"o.p",8:1,7:1}).2("g","h"))).3($("<i/>").2({5:"0",c:"0"}).4("n",6+"f-1s.d").3($("<9/>").4({b:6+"o.p",8:1,7:1}).2("g","h")))).3($("<C/>").2("5","0").8(y).3($("<i/>").2({5:"0",c:"0"}).7(k).3($("<9/>").4({b:6+"f-1t.d",7:k,8:y}).2("g","h"))).3($("<i/>").2({5:"0",c:"0"}).4("n",6+"f-1u.d").3($("<9/>").4({b:6+"o.p",8:1,7:1}).2("g","h"))).3($("<i/>").2({5:"0",c:"0"}).7(k).3($("<9/>").4({b:6+"f-1v.d",7:k,8:y}).2("g","h")))))).A(a)}E(1w){$("<q/>").4("j","1x").2({s:"t",w:"x",F:"0 1y",z:1z}).3($("<10/>").2({F:"0",c:"0"}).4({5:0,1A:0,1B:0}).3($("<11/>").2("5","0").3($("<C/>").2("5","0").3($("<i/>").2({5:"0",c:"0"}).4("1C","1D").3($("<9/>").4({b:6+"f-H-l.d",7:13,8:y}).2("g","h"))).3($("<i/>").2({5:"0",c:"0"}).4({n:6+"f-H-1E.d",j:"1F",1G:"1H"}).2({1I:"1J",1K:"1L",1M:"1N",1O:"#1P",1Q:"W 1R 1S #1T",1U:"1V"})).3($("<i/>").2({5:"0",c:"0"}).3($("<9/>").4({b:6+"f-H-r.d",7:13,8:y}).2("g","h")))))).A(a)}}',62,120,'||css|append|attr|border|fzZoomImagesURI|width|height|img||src|padding|png||zoom|display|block|td|id|27||10px|background|spacer|gif|div||position|absolute|left|top|visibility|hidden|26|zIndex|prependTo|100|tr|function|if|margin|25|caption|fzBox|fzImage|cursor|pointer|webkit|box|shadow|bind|click|fzZoomOut|this|return|false|browserIsIE|0px|15px|30|50px|table|tbody|fzInsertZoomHTML||var|body|fzSpin|525|fzSpinImage|spin|FFF|499|fzShadowSettings|fzShowCloseBox|fzClose|1px|closebox|appendTo|fzShadow|498|cellpadding|cellspacing|shadow1|shadow2|shadow3|shadow4|bgcolor|white|shadow5|shadow6|shadow7|shadow8|fzIncludeCaption|fzCapDiv|auto|501|cellPadding|cellSpacing|align|right|fill|fzCaption|valign|middle|fontSize|14px|fontFamily|Helvetica|fontWeight|bold|color|ffffff|textShadow|2px|4px|000000|whiteSpace|nowrap'.split('|'),0,{}));
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var W=L.DOM={ready:(function(){var b=false,d={loaded:1,complete:1};var a=[],c=function(){if(b){return}b=true;for(var e;e=a.shift();e()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",c,false);window.addEventListener("pageshow",c,false)}if(!window.opera&&document.readyState){(function(){d[document.readyState]?c():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");c()}catch(f){setTimeout(arguments.callee,1)}})()}P(window,"load",c);return function(e){if(!arguments.length){c()}else{b?e():a.push(e)}}})()};var M=L.CSS={Size:function(b,a){this.value=parseFloat(b);this.unit=String(b).match(/[a-z%]*$/)[0]||"px";this.convert=function(c){return c/a*this.value};this.convertFrom=function(c){return c/this.value*a};this.toString=function(){return this.value+this.unit}},color:I(function(b){var a={};a.color=b.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(d,c,e){a.opacity=parseFloat(e);return"rgb("+c+")"});return a}),getStyle:function(b){var a=document.defaultView;if(a&&a.getComputedStyle){return new A(a.getComputedStyle(b,null))}if(b.currentStyle){return new A(b.currentStyle)}return new A(b.style)},gradient:I(function(e){var f={id:e,type:e.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},b=e.substr(e.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var d=0,a=b.length,c;d<a;++d){c=b[d].split("=",2).reverse();f.stops.push([c[1]||d/(a-1),c[0]])}return f}),quotedList:I(function(d){var c=[],b=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,a;while(a=b.exec(d)){c.push(a[3]||a[1])}return c}),recognizesMedia:I(function(d){var c=document.createElement("style"),b,a;c.type="text/css";c.media=d;b=F("head")[0];b.insertBefore(c,b.firstChild);a=!!(c.sheet||c.styleSheet);b.removeChild(c);return a}),supports:function(c,b){var a=document.createElement("span").style;if(a[c]===undefined){return false}a[c]=b;return a[c]===b},textAlign:function(d,c,a,b){if(c.get("textAlign")=="right"){if(a>0){d=" "+d}}else{if(a<b-1){d+=" "}}return d},textDecoration:function(f,e){if(!e){e=this.getStyle(f)}var b={underline:null,overline:null,"line-through":null};for(var a=f;a.parentNode&&a.parentNode.nodeType==1;){var d=true;for(var c in b){if(!J(b,c)||b[c]){continue}if(e.get("textDecoration").indexOf(c)!=-1){b[c]=e.get("color")}d=false}if(d){break}e=this.getStyle(a=a.parentNode)}return b},textShadow:I(function(e){if(e=="none"){return null}var d=[],f={},a,b=0;var c=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(a=c.exec(e)){if(a[0]==","){d.push(f);f={},b=0}else{if(a[1]){f.color=a[1]}else{f[["offX","offY","blur"][b++]]=a[2]}}}d.push(f);return d}),textTransform:function(b,a){return b[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[a.get("textTransform")]||"toString"]()},whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};return function(d,b,c){if(a[b.get("display")]){return d}if(!c.previousSibling){d=d.replace(/^\s+/,"")}if(!c.nextSibling){d=d.replace(/\s+$/,"")}return d}})()};M.ready=(function(){var c=!M.recognizesMedia("all"),b=false;var a=[],e=function(){c=true;for(var h;h=a.shift();h()){}};var f=F("link"),g={stylesheet:1};function d(){var j,h,k;for(h=0;k=f[h];++h){if(k.disabled||!g[k.rel.toLowerCase()]||!M.recognizesMedia(k.media||"screen")){continue}j=k.sheet||k.styleSheet;if(!j||j.disabled){return false}}return true}W.ready(function(){if(!b){b=M.getStyle(document.body).isUsable()}if(c||(b&&d())){e()}else{setTimeout(arguments.callee,10)}});return function(h){if(c){h()}else{a.push(h)}}})();function R(b){var a=this.face=b.face;this.glyphs=b.glyphs;this.w=b.w;this.baseSize=parseInt(a["units-per-em"],10);this.family=a["font-family"].toLowerCase();this.weight=a["font-weight"];this.style=a["font-style"]||"normal";this.viewBox=(function(){var d=a.bbox.split(/\s+/);var c={minX:parseInt(d[0],10),minY:parseInt(d[1],10),maxX:parseInt(d[2],10),maxY:parseInt(d[3],10)};c.width=c.maxX-c.minX,c.height=c.maxY-c.minY;c.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return c})();this.ascent=-parseInt(a.ascent,10);this.descent=-parseInt(a.descent,10);this.height=-this.ascent+this.descent}function E(){var b={},a={oblique:"italic",italic:"oblique"};this.add=function(c){(b[c.style]||(b[c.style]={}))[c.weight]=c};this.get=function(g,h){var f=b[g]||b[a[g]]||b.normal||b.italic||b.oblique;if(!f){return null}h={normal:400,bold:700}[h]||parseInt(h,10);if(f[h]){return f[h]}var d={1:1,99:0}[h%100],j=[],e,c;if(d===undefined){d=h>400}if(h==500){h=400}for(var i in f){if(!J(f,i)){continue}i=parseInt(i,10);if(!e||i<e){e=i}if(!c||i>c){c=i}j.push(i)}if(h<e){h=e}if(h>c){h=c}j.sort(function(l,k){return(d?(l>h&&k>h)?l<k:l>k:(l<h&&k<h)?l>k:l<k)?-1:1});return f[j[0]]}}function Q(){function c(e,f){if(e.contains){return e.contains(f)}return e.compareDocumentPosition(f)&16}function a(g){var f=g.relatedTarget;if(!f||c(this,f)){return}b(this)}function d(f){b(this)}function b(e){setTimeout(function(){L.replace(e,D.get(e).options,true)},10)}this.attach=function(e){if(e.onmouseenter===undefined){P(e,"mouseover",a);P(e,"mouseout",a)}else{P(e,"mouseenter",d);P(e,"mouseleave",d)}}}function T(){var b=[],c={};function a(g){var d=[],f;for(var e=0;f=g[e];++e){d[e]=b[c[f]]}return d}this.add=function(e,d){c[e]=b.push(d)-1};this.repeat=function(){var d=arguments.length?a(arguments):b,e;for(var f=0;e=d[f++];){L.replace(e[0],e[1],true)}}}function Z(){var c={},a=0;function b(d){return d.cufid||(d.cufid=++a)}this.get=function(d){var e=b(d);return c[e]||(c[e]={})}}function A(a){var c={},b={};this.extend=function(d){for(var e in d){if(J(d,e)){c[e]=d[e]}}return this};this.get=function(d){return c[d]!=undefined?c[d]:a[d]};this.getSize=function(e,d){return b[e]||(b[e]=new M.Size(this.get(e),d))};this.isUsable=function(){return !!a}}function P(b,a,c){if(b.addEventListener){b.addEventListener(a,c,false)}else{if(b.attachEvent){b.attachEvent("on"+a,function(){return c.call(b,window.event)})}}}function U(b,a){var c=D.get(b);if(c.options){return b}if(a.hover&&a.hoverables[b.nodeName.toLowerCase()]){B.attach(b)}c.options=a;return b}function I(a){var b={};return function(c){if(!J(b,c)){b[c]=a.apply(null,arguments)}return b[c]}}function C(f,e){if(!e){e=M.getStyle(f)}var b=M.quotedList(e.get("fontFamily").toLowerCase()),d;for(var c=0,a=b.length;c<a;++c){d=b[c];if(H[d]){return H[d].get(e.get("fontStyle"),e.get("fontWeight"))}}return null}function F(a){return document.getElementsByTagName(a)}function J(b,a){return b.hasOwnProperty(a)}function G(){var a={},c,e;for(var d=0,b=arguments.length;c=arguments[d],d<b;++d){for(e in c){if(J(c,e)){a[e]=c[e]}}}return a}function N(d,n,b,o,e,c){var m=o.separate;if(m=="none"){return Y[o.engine].apply(null,arguments)}var k=document.createDocumentFragment(),g;var h=n.split(O[m]),a=(m=="words");if(a&&S){if(/^\s/.test(n)){h.unshift("")}if(/\s$/.test(n)){h.push("")}}for(var j=0,f=h.length;j<f;++j){g=Y[o.engine](d,a?M.textAlign(h[j],b,j,f):h[j],b,o,e,c,j<f-1);if(g){k.appendChild(g)}}return k}function K(b,j){var c,a,d,g,f,i;for(d=U(b,j).firstChild;d;d=f){g=d.nodeType;f=d.nextSibling;i=false;if(g==1){if(!d.firstChild){continue}if(!/cufon/.test(d.className)){arguments.callee(d,j);continue}else{i=true}}else{if(g!=3){continue}}if(!a){a=M.getStyle(b).extend(j)}if(!c){c=C(b,a)}if(!c){continue}if(i){Y[j.engine](c,null,a,j,d,b);continue}var h=M.whiteSpace(d.data,a,d);if(h===""){continue}var e=N(c,h,a,j,d,b);if(e){d.parentNode.replaceChild(e,d)}else{d.parentNode.removeChild(d)}}}var S=" ".split(/\s+/).length==0;var D=new Z();var B=new Q();var X=new T();var Y={},H={},V={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||F),separate:"words",textShadow:"none"};var O={words:/[^\S\u00a0]+/,characters:""};L.now=function(){W.ready();return L};L.refresh=function(){X.repeat.apply(X,arguments);return L};L.registerEngine=function(b,a){if(!a){return L}Y[b]=a;return L.set("engine",b)};L.registerFont=function(c){var a=new R(c),b=a.family;if(!H[b]){H[b]=new E()}H[b].add(a);return L.set("fontFamily",'"'+b+'"')};L.replace=function(c,b,a){b=G(V,b);if(!b.engine){return L}if(typeof b.textShadow=="string"){b.textShadow=M.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=M.gradient(b.color)}if(!a){X.add(c,arguments)}if(c.nodeType||typeof c=="string"){c=[c]}M.ready(function(){for(var e=0,d=c.length;e<d;++e){var f=c[e];if(typeof f=="string"){L.replace(b.selector(f),b,true)}else{K(f,b)}}});return L};L.set=function(a,b){V[a]=b;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@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:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;}"+(A?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}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(AD,Z,u,V,d,AE){var I=(Z===null);if(I){Z=d.alt}var b=AD.viewBox;var K=u.getSize("fontSize",AD.baseSize);var s=u.get("letterSpacing");s=(s=="normal")?0:K.convertFrom(parseInt(s,10));var c=0,t=0,r=0,X=0;var a=V.textShadow,p=[];if(a){for(var AC=a.length;AC--;){var h=a[AC];var o=K.convertFrom(parseFloat(h.offX));var n=K.convertFrom(parseFloat(h.offY));p[AC]=[o,n];if(n<c){c=n}if(o>t){t=o}if(n>r){r=n}if(o<X){X=o}}}var AH=Cufon.CSS.textTransform(Z,u).split(""),T;var J=AD.glyphs,W,M,w;var G=0,P,f=[];for(var AC=0,AA=0,v=AH.length;AC<v;++AC){W=J[T=AH[AC]]||AD.missingGlyph;if(!W){continue}if(M){G-=w=M[T]||0;f[AA-1]-=w}G+=P=f[AA++]=~~(W.w||AD.w)+s;M=W.k}if(P===undefined){return null}t+=b.width-P;X+=b.minX;var U,L;if(I){U=d;L=d.firstChild}else{U=document.createElement("span");U.className="cufon cufon-canvas";U.alt=Z;L=document.createElement("canvas");U.appendChild(L);if(V.printable){var z=document.createElement("span");z.className="cufon-alt";z.appendChild(document.createTextNode(Z));U.appendChild(z)}}var AI=U.style;var m=L.style;var H=K.convert(b.height);var AG=Math.ceil(H);var q=AG/H;L.width=Math.ceil(K.convert(G*q+t-X));L.height=Math.ceil(K.convert(b.height-c+r));c+=b.minY;m.top=Math.round(K.convert(c-AD.ascent))+"px";m.left=Math.round(K.convert(X))+"px";var S=Math.ceil(K.convert(G*q))+"px";if(A){AI.width=S;AI.height=K.convert(AD.height)+"px"}else{AI.paddingLeft=S;AI.paddingBottom=(K.convert(AD.height)-1)+"px"}var AF=L.getContext("2d"),e=H/b.height;AF.scale(e,e*q);AF.translate(-X,-c);AF.lineWidth=AD.face["underline-thickness"];AF.save();function N(i,g){AF.strokeStyle=g;AF.beginPath();AF.moveTo(0,i);AF.lineTo(G,i);AF.stroke()}var O=V.enableTextDecoration?Cufon.CSS.textDecoration(AE,u):{};if(O.underline){N(-AD.face["underline-position"],O.underline)}if(O.overline){N(AD.ascent,O.overline)}function AB(){AF.scale(q,1);for(var x=0,k=0,g=AH.length;x<g;++x){var y=J[AH[x]]||AD.missingGlyph;if(!y){continue}if(y.d){AF.beginPath();if(y.code){C(y.code,AF)}else{y.code=D("m"+y.d,AF)}AF.fill()}AF.translate(f[k++],0)}AF.restore()}if(a){for(var AC=a.length;AC--;){var h=a[AC];AF.save();AF.fillStyle=h.color;AF.translate.apply(AF,p[AC]);AB()}}var R=V.textGradient;if(R){var Y=R.stops,Q=AF.createLinearGradient(0,b.minY,0,b.maxY);for(var AC=0,v=Y.length;AC<v;++AC){Q.addColorStop.apply(Q,Y[AC])}AF.fillStyle=Q}else{AF.fillStyle=u.get("color")}AB();if(O["line-through"]){N(-AD.descent,O["line-through"])}return U}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:middle;}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>').replace(/;/g,"!important;"));function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(AB,b,v,Y,f,AC,t){var I=(b===null);if(I){b=f.alt}var d=AB.viewBox;var K=v.computedFontSize||(v.computedFontSize=new Cufon.CSS.Size(C(AC,v.get("fontSize"))+"px",AB.baseSize));var s=v.computedLSpacing;if(s==undefined){s=v.get("letterSpacing");v.computedLSpacing=s=(s=="normal")?0:~~K.convertFrom(A(AC,s))}var V,L;if(I){V=f;L=f.firstChild}else{V=document.createElement("span");V.className="cufon cufon-vml";V.alt=b;L=document.createElement("span");L.className="cufon-vml-canvas";V.appendChild(L);if(Y.printable){var y=document.createElement("span");y.className="cufon-alt";y.appendChild(document.createTextNode(b));V.appendChild(y)}if(!t){V.appendChild(document.createElement("cvml:shape"))}}var AH=V.style;var n=L.style;var G=K.convert(d.height),AE=Math.ceil(G);var r=AE/G;var q=d.minX,p=d.minY;n.height=AE;n.top=Math.round(K.convert(p-AB.ascent));n.left=Math.round(K.convert(q));AH.height=K.convert(AB.height)+"px";var P=Y.enableTextDecoration?Cufon.CSS.textDecoration(AC,v):{};var a=v.get("color");var AG=Cufon.CSS.textTransform(b,v).split(""),U;var J=AB.glyphs,Z,M,x;var F=0,g=[],o=0,Q;var S,c=Y.textShadow;for(var AA=0,z=0,w=AG.length;AA<w;++AA){Z=J[U=AG[AA]]||AB.missingGlyph;if(!Z){continue}if(M){F-=x=M[U]||0;g[z-1]-=x}F+=Q=g[z++]=~~(Z.w||AB.w)+s;M=Z.k}if(Q===undefined){return null}var T=-q+F+(d.width-Q);var AF=K.convert(T*r),u=Math.round(AF);var m=T+","+d.height,H;var e="r"+m+"ns";var R=Y.textGradient&&D(Y.textGradient);for(AA=0,z=0;AA<w;++AA){Z=J[AG[AA]]||AB.missingGlyph;if(!Z){continue}if(I){S=L.childNodes[z];while(S.firstChild){S.removeChild(S.firstChild)}}else{S=document.createElement("cvml:shape");L.appendChild(S)}S.stroked="f";S.coordsize=m;S.coordorigin=H=(q-o)+","+p;S.path=(Z.d?"m"+Z.d+"xe":"")+"m"+H+e;S.fillcolor=a;if(R){S.appendChild(R.cloneNode(false))}var AD=S.style;AD.width=u;AD.height=AE;if(c){var O=c[0],N=c[1];var X=Cufon.CSS.color(O.color),W;var h=document.createElement("cvml:shadow");h.on="t";h.color=X.color;h.offset=O.offX+","+O.offY;if(N){W=Cufon.CSS.color(N.color);h.type="double";h.color2=W.color;h.offset2=N.offX+","+N.offY}h.opacity=X.opacity||(W&&W.opacity)||1;S.appendChild(h)}o+=g[z++]}AH.width=Math.max(Math.ceil(K.convert(F*r)),0);return V}})());;
Cufon.registerFont({"w":214,"face":{"font-family":"MgOpen Moderna","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 3 0 2 0 2 0 4","ascent":"288","descent":"-72","x-height":"6","bbox":"-12 -283 335 86","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":97},"!":{"d":"14,-73v-7,-61,-17,-118,-14,-189r54,0v2,66,-4,126,-13,189r-27,0xm54,0r-53,0r0,-53r53,0r0,53","w":79},"\"":{"d":"93,-157r-35,0r0,-99r35,0r0,99xm34,-157r-34,0r0,-99r34,0r0,99","w":117},"#":{"d":"264,-187r-13,36r-50,0r-15,43r52,0r-13,36r-52,0r-26,73r-40,0r27,-73r-44,0r-26,73r-40,0r27,-73r-51,0r13,-36r51,0r15,-43r-53,0r13,-36r53,0r26,-74r39,0r-26,74r44,0r26,-74r39,0r-26,74r50,0xm163,-151r-45,0r-16,43r45,0","w":289},"$":{"d":"3,-181v0,-45,30,-74,77,-73r0,-23r22,0r0,23v46,0,71,30,75,75r-48,0v-1,-20,-11,-34,-27,-36r0,65v51,15,79,28,81,83v1,43,-37,74,-81,73r0,34r-22,0r0,-34v-52,-6,-79,-28,-80,-84r48,0v2,26,11,39,32,45r0,-74v-46,-5,-77,-27,-77,-74xm80,-215v-25,-2,-36,31,-22,49v5,4,12,8,22,11r0,-60xm102,-33v36,-4,40,-62,0,-67r0,67","w":207},"%":{"d":"158,-59v0,-38,27,-67,65,-67v39,0,65,29,65,67v0,38,-27,67,-65,67v-39,0,-65,-29,-65,-67xm196,-59v0,16,10,28,27,28v18,0,28,-13,28,-28v0,-15,-11,-27,-28,-27v-15,0,-28,12,-27,27xm234,-255r-152,262r-29,0r153,-262r28,0xm0,-189v0,-38,27,-66,65,-66v38,0,64,29,64,66v0,38,-27,67,-65,67v-37,0,-64,-30,-64,-67xm93,-189v0,-15,-10,-28,-28,-28v-17,0,-29,13,-29,29v0,15,11,27,28,27v17,1,29,-13,29,-28","w":314},"&":{"d":"165,-204v-1,32,-20,47,-44,64r38,47v7,-14,11,-29,13,-44r47,0v-4,29,-14,56,-31,79r48,58r-61,0r-18,-22v-29,23,-56,34,-81,34v-42,0,-76,-42,-76,-83v0,-39,25,-59,57,-76v-47,-38,-24,-115,42,-115v37,0,67,23,66,58xm96,-171v21,-7,37,-52,3,-54v-32,2,-21,40,-3,54xm51,-74v1,40,56,52,79,19r-48,-59v-20,13,-31,26,-31,40","w":261},"'":{"d":"50,-262v4,51,-3,95,-50,100r0,-19v18,-5,26,-16,26,-34r-26,0r0,-47r50,0","w":74},"(":{"d":"101,-262v-63,84,-63,253,0,338r-38,0v-33,-48,-63,-99,-63,-169v0,-68,28,-123,63,-169r38,0","w":126},")":{"d":"38,-262v33,46,63,101,63,169v0,69,-30,122,-63,169r-38,0v63,-87,63,-250,0,-338r38,0","w":126},"*":{"d":"185,-192r-51,13r35,43r-31,22r-31,-45r-31,45r-31,-22r35,-43r-50,-13r11,-36r48,16r0,-50r36,0r0,50r47,-16"},"+":{"d":"203,-91r-78,0r0,91r-36,0r0,-91r-78,0r0,-36r78,0r0,-91r36,0r0,91r78,0r0,36"},",":{"d":"53,-53v4,58,-3,106,-53,115r0,-21v19,-6,28,-18,29,-41r-29,0r0,-53r53,0","w":78},"-":{"d":"107,-72r-100,0r0,-49r100,0r0,49","w":136},".":{"d":"53,0r-53,0r0,-54r53,0r0,54","w":78},"\/":{"d":"164,-270r-89,303r-24,0r88,-303r25,0"},"0":{"d":"202,-123v0,66,-34,129,-94,129v-61,0,-95,-63,-95,-129v0,-67,33,-132,95,-132v60,0,94,66,94,132xm68,-124v0,38,9,86,40,88v54,-10,53,-168,0,-177v-30,2,-40,52,-40,89"},"1":{"d":"51,-210v46,1,63,-10,71,-45r41,0r0,255r-50,0r0,-175r-62,0r0,-35"},"2":{"d":"108,-256v46,0,90,33,90,79v0,75,-89,85,-118,133r115,0r0,44r-178,0v12,-74,23,-72,95,-125v23,-17,34,-33,34,-50v1,-21,-18,-39,-38,-38v-26,1,-39,21,-40,49r-47,0v-1,-54,35,-92,87,-92"},"3":{"d":"159,-135v24,11,39,29,40,60v5,72,-101,109,-155,62v-18,-16,-28,-37,-28,-65r49,0v-1,26,16,44,40,44v23,0,42,-16,41,-39v0,-29,-24,-40,-57,-39r0,-35v56,10,65,-68,14,-68v-21,0,-35,18,-34,41r-48,0v-1,-49,36,-82,86,-82v43,0,85,29,83,70v0,25,-14,39,-31,51"},"4":{"d":"201,-55r-30,0r0,55r-49,0r0,-55r-108,0r0,-45r94,-148r63,0r0,152r30,0r0,41xm123,-94r0,-110r-70,110r70,0"},"5":{"d":"71,-154v50,-40,128,12,128,71v0,74,-99,118,-158,72v-17,-14,-26,-33,-26,-57r51,0v-1,21,17,35,38,35v25,0,43,-20,43,-47v0,-42,-56,-62,-76,-29r-47,-2r17,-137r147,0r0,43r-111,0"},"6":{"d":"15,-118v0,-97,78,-174,155,-119v15,12,23,28,23,47r-52,0v-5,-26,-43,-34,-59,-9v-8,12,-14,28,-14,51v52,-41,135,-2,132,66v-2,51,-39,91,-91,90v-65,0,-94,-56,-94,-126xm69,-81v0,25,17,48,42,48v25,0,39,-21,39,-45v0,-26,-18,-46,-42,-46v-24,0,-40,20,-39,43"},"7":{"d":"53,0v11,-93,38,-138,89,-204r-125,0r0,-44r181,0r0,38v-53,60,-80,117,-92,210r-53,0"},"8":{"d":"107,-256v71,0,118,88,55,122v21,11,37,31,37,60v1,47,-43,82,-91,82v-52,0,-93,-31,-93,-79v0,-31,16,-51,38,-63v-18,-11,-30,-27,-31,-52v0,-40,41,-70,85,-70xm71,-183v0,18,17,30,36,30v21,0,36,-12,36,-30v0,-20,-15,-32,-36,-32v-20,-1,-36,14,-36,32xm68,-73v0,21,16,38,39,38v24,0,39,-14,39,-37v0,-22,-16,-41,-39,-41v-22,0,-39,16,-39,40"},"9":{"d":"106,-255v65,0,93,56,93,127v0,95,-72,172,-150,119v-16,-12,-25,-29,-27,-49r51,0v3,26,45,34,60,11v8,-13,13,-29,13,-53v-48,42,-131,4,-131,-67v0,-52,38,-88,91,-88xm67,-168v0,25,16,45,41,45v24,0,37,-18,37,-41v1,-26,-16,-50,-41,-50v-23,0,-38,23,-37,46"},":":{"d":"54,-137r-54,0r0,-53r54,0r0,53xm54,0r-54,0r0,-54r54,0r0,54","w":78},";":{"d":"54,-137r-54,0r0,-53r54,0r0,53xm54,-54v4,59,-2,107,-54,116r0,-21v20,-8,29,-16,30,-41r-30,0r0,-54r54,0","w":79},"<":{"d":"205,-5r-196,-86r0,-35r196,-87r0,39r-145,65r145,65r0,39"},"=":{"d":"207,-130r-199,0r0,-35r199,0r0,35xm207,-53r-199,0r0,-35r199,0r0,35"},">":{"d":"205,-91r-196,86r0,-39r145,-65r-145,-65r0,-39r196,87r0,35"},"?":{"d":"91,-270v67,-3,115,74,70,124v-17,19,-49,36,-48,70r-48,0r0,-26v-5,-23,64,-63,58,-86v1,-21,-17,-37,-37,-37v-22,1,-36,19,-35,44r-51,0v-1,-53,40,-86,91,-89xm116,0r-53,0r0,-53r53,0r0,53","w":203},"@":{"d":"168,27v40,0,81,-15,107,-33r14,20v-31,23,-71,40,-121,41v-96,2,-168,-57,-168,-149v-1,-97,82,-170,181,-170v86,0,149,50,150,131v1,61,-42,115,-102,114v-28,0,-34,-6,-38,-29v-25,46,-119,34,-111,-32v-6,-67,82,-137,129,-77r9,-18r32,0r-28,113v0,10,9,14,17,14v37,0,59,-45,59,-84v0,-64,-47,-103,-113,-103v-85,0,-154,59,-154,141v0,73,60,123,137,121xm118,-84v0,37,34,50,56,27v17,-18,19,-46,26,-73v0,-12,-17,-24,-31,-24v-30,0,-51,39,-51,70","w":356},"A":{"d":"251,0r-57,0r-18,-54r-102,0r-17,54r-57,0r94,-262r62,0xm162,-98r-37,-112r-37,112r74,0","w":277,"k":{"y":54,"w":41,"v":54,"t":28,"s":12,"q":16,"o":17,"j":8,"g":17,"f":23,"e":17,"d":24,"c":17,"a":8,"Y":74,"W":62,"V":76,"U":17,"T":71,"S":22,"Q":28,"O":28,"J":26,"G":28,"C":28}},"B":{"d":"207,-195v0,25,-13,45,-32,53v22,9,41,33,41,63v0,49,-44,79,-96,79r-120,0r0,-262v88,2,207,-20,207,67xm153,-189v0,-38,-62,-26,-102,-28r0,56v41,-2,102,10,102,-28xm160,-81v0,-44,-63,-34,-109,-35r0,69v46,-1,109,9,109,-34","w":243,"k":{"Y":27,"X":23,"W":17,"V":20,"T":12,"A":16}},"C":{"d":"128,-40v35,0,56,-22,67,-50r57,0v-12,58,-58,97,-125,98v-74,2,-127,-64,-127,-139v0,-111,121,-179,208,-113v23,18,37,40,42,68r-57,0v-8,-25,-32,-46,-64,-46v-46,0,-74,42,-74,90v0,47,28,93,73,92","w":270,"k":{"z":10,"y":8,"x":10,"v":8,"Z":15,"Y":36,"X":36,"W":21,"V":26,"T":20,"J":9,"A":27}},"D":{"d":"224,-136v0,79,-57,136,-136,136r-88,0r0,-262r104,0v71,-2,120,56,120,126xm170,-131v0,-44,-25,-87,-67,-86r-50,0r0,170v72,8,117,-18,117,-84","w":250,"k":{"x":8,"Z":22,"Y":38,"X":40,"W":22,"V":27,"T":23,"J":10,"A":31}},"E":{"d":"197,0r-197,0r0,-262r190,0r0,45r-137,0r0,56r126,0r0,45r-126,0r0,68r144,0r0,48","w":213,"k":{"y":22,"w":18,"v":22,"t":10,"f":9,"T":8,"Q":9,"O":9,"J":8,"G":8,"C":9}},"F":{"d":"183,-217r-130,0r0,60r114,0r0,45r-114,0r0,112r-53,0r0,-262r183,0r0,45","w":201,"k":{"z":22,"y":28,"x":39,"w":25,"v":28,"u":12,"t":21,"s":21,"r":12,"q":14,"p":12,"o":15,"n":12,"m":12,"g":15,"f":23,"e":15,"d":17,"c":15,"a":21,"T":8,"S":9,"Q":12,"O":12,"J":101,"G":12,"C":12,"A":48}},"G":{"d":"55,-131v0,67,65,119,118,75v12,-11,20,-25,24,-41r-55,0r0,-45r110,0r0,142r-37,0r-6,-31v-23,26,-52,39,-85,39v-73,1,-124,-64,-124,-140v0,-109,116,-177,205,-114v22,16,37,38,44,65r-58,0v-8,-22,-33,-41,-61,-41v-47,0,-75,44,-75,91","w":273,"k":{"Y":31,"W":16,"V":21,"T":15}},"H":{"d":"217,0r-54,0r0,-117r-109,0r0,117r-54,0r0,-262r54,0r0,97r109,0r0,-97r54,0r0,262","w":246},"I":{"d":"65,0r-54,0r0,-262r54,0r0,262","w":94},"J":{"d":"83,-37v24,-1,31,-17,31,-43r0,-182r54,0r0,186v0,58,-25,84,-83,84v-66,0,-85,-34,-85,-105r52,0v-3,31,1,61,31,60","w":196,"k":{"A":12}},"K":{"d":"233,0r-65,0r-86,-120r-28,28r0,92r-54,0r0,-262r54,0r0,108r103,-108r67,0r-104,106","w":258,"k":{"y":58,"w":45,"v":58,"u":15,"t":32,"s":24,"q":28,"o":32,"j":8,"g":31,"f":23,"e":31,"d":32,"c":32,"a":17,"Y":15,"W":11,"V":13,"T":16,"S":33,"Q":43,"O":44,"J":33,"G":43,"C":44}},"L":{"d":"183,0r-183,0r0,-262r54,0r0,214r129,0r0,48","w":197,"k":{"y":42,"w":32,"v":42,"t":21,"j":8,"f":23,"d":11,"Y":74,"W":52,"V":63,"T":71,"S":9,"Q":17,"O":18,"J":14,"G":17,"C":18}},"M":{"d":"264,0r-51,0r0,-212r-53,212r-56,0r-54,-212r0,212r-50,0r0,-262r80,0r52,199r52,-199r80,0r0,262","w":294},"N":{"d":"216,0r-56,0r-107,-180r0,180r-53,0r0,-262r56,0r107,180r0,-180r53,0r0,262","w":245},"O":{"d":"258,-131v0,78,-52,139,-129,139v-76,0,-129,-62,-129,-139v0,-78,53,-139,129,-139v76,0,129,62,129,139xm55,-131v0,48,28,91,74,91v45,0,73,-43,73,-91v0,-48,-28,-91,-73,-91v-47,0,-74,43,-74,91","w":283,"k":{"Z":17,"Y":37,"X":37,"W":21,"V":26,"T":21,"J":8,"A":27}},"P":{"d":"200,-177v0,47,-31,84,-79,83r-67,0r0,94r-54,0r0,-262r117,0v47,-1,83,36,83,85xm148,-177v0,-44,-48,-42,-94,-40r0,76v43,0,94,7,94,-36","w":217,"k":{"d":8,"Y":24,"X":24,"W":12,"V":16,"T":8,"J":39,"A":43}},"Q":{"d":"129,-270v112,0,166,147,100,230r29,28r-29,30r-32,-29v-88,54,-197,-15,-197,-120v0,-78,53,-139,129,-139xm54,-130v0,60,46,107,105,83r-27,-28r29,-30r28,28v31,-52,6,-145,-58,-145v-47,0,-77,44,-77,92","w":284,"k":{"Y":36,"W":20,"V":25,"T":21}},"R":{"d":"206,-60v0,22,-3,43,11,52r0,8r-59,0v-19,-30,12,-111,-47,-102r-57,0r0,102r-54,0r0,-262v92,2,214,-21,212,72v0,29,-16,57,-40,64v26,10,34,27,34,66xm159,-183v0,-44,-60,-33,-105,-34r0,69v45,-1,105,10,105,-35","w":245,"k":{"d":10,"Y":26,"W":15,"V":19,"T":10,"J":16}},"S":{"d":"153,-185v1,-47,-92,-55,-96,-8v-12,34,120,48,116,52v28,12,41,33,41,61v0,84,-119,112,-178,65v-22,-17,-34,-39,-36,-67r54,0v0,48,103,61,108,9v12,-34,-119,-49,-116,-53v-28,-12,-41,-32,-41,-60v0,-79,113,-108,169,-62v21,16,31,37,31,63r-52,0","w":237,"k":{"Y":30,"X":22,"W":18,"V":22,"T":14,"A":15}},"T":{"d":"210,-215r-78,0r0,215r-55,0r0,-215r-77,0r0,-47r210,0r0,47","w":231,"k":{"z":36,"y":32,"x":33,"w":30,"v":31,"u":25,"t":18,"s":45,"r":25,"q":44,"p":25,"o":45,"n":25,"m":25,"g":45,"f":20,"e":46,"d":48,"c":46,"a":45,"T":8,"S":9,"Q":18,"O":18,"J":72,"G":17,"C":18,"A":66}},"U":{"d":"106,-40v31,0,51,-28,50,-60r0,-162r55,0r0,168v1,60,-47,102,-106,102v-59,0,-105,-42,-105,-102r0,-168r54,0r0,162v0,32,20,60,52,60","w":240,"k":{"A":20}},"V":{"d":"232,-262r-89,262r-53,0r-90,-262r60,0r56,196r57,-196r59,0","w":258,"k":{"z":27,"y":22,"x":24,"w":21,"v":22,"u":16,"t":18,"s":37,"r":16,"q":37,"p":16,"o":39,"n":16,"m":15,"g":38,"f":18,"e":40,"d":41,"c":39,"a":37,"T":8,"S":21,"Q":26,"O":26,"J":54,"G":26,"C":26,"A":75}},"W":{"d":"335,-262r-75,262r-52,0r-41,-201r-40,201r-52,0r-75,-262r56,0r45,185r38,-185r57,0r38,185r45,-185r56,0","w":362,"k":{"z":23,"y":19,"x":21,"w":17,"v":19,"u":13,"t":15,"s":32,"r":12,"q":32,"p":12,"o":33,"n":12,"m":12,"g":32,"f":15,"e":34,"d":36,"c":33,"a":32,"T":8,"S":19,"Q":23,"O":23,"J":47,"G":22,"C":23,"A":63}},"X":{"d":"232,0r-62,0r-54,-91r-54,91r-62,0r82,-134r-82,-128r62,0r54,91r53,-91r63,0r-82,127","w":258,"k":{"y":37,"w":36,"v":37,"u":13,"t":28,"s":21,"q":25,"o":28,"g":28,"f":22,"e":28,"d":29,"c":28,"a":14,"T":8,"S":29,"Q":39,"O":39,"J":30,"G":38,"C":39}},"Y":{"d":"217,-262r-79,164r0,98r-54,0r0,-98r-84,-164r54,0r57,113r51,-113r55,0","w":241,"k":{"z":34,"y":30,"x":31,"w":28,"v":30,"u":23,"t":25,"s":48,"r":23,"q":49,"p":23,"o":52,"n":23,"m":23,"g":50,"f":25,"e":53,"d":53,"c":52,"a":48,"T":8,"S":25,"Q":33,"O":33,"J":72,"G":33,"C":33,"A":67}},"Z":{"d":"208,-217r-143,170r141,0r0,47r-206,0r0,-46r143,-169r-140,0r0,-47r205,0r0,45","w":234,"k":{"y":18,"w":17,"v":18,"t":14,"q":9,"o":11,"g":10,"f":14,"e":10,"d":12,"c":11,"T":8,"S":9,"Q":17,"O":17,"J":15,"G":16,"C":17}},"[":{"d":"90,78r-90,0r0,-340r90,0r0,38r-41,0r0,264r41,0r0,38","w":115},"\\":{"d":"113,33r-24,0r-89,-303r24,0","w":137},"]":{"d":"90,78r-90,0r0,-38r42,0r0,-264r-42,0r0,-38r90,0r0,340","w":115},"^":{"d":"163,-217r-24,0r-32,-39r-31,39r-25,0r35,-66r42,0"},"_":{"d":"199,86r-183,0r0,-37r183,0r0,37"},"`":{"d":"49,-170r-49,0v-5,-51,5,-94,49,-100r0,19v-17,6,-26,12,-26,34r26,0r0,47","w":74},"a":{"d":"120,-135v-3,-32,-67,-30,-64,5r-49,0v-1,-45,32,-71,78,-71v39,-1,85,22,85,57r0,108v-2,18,11,20,11,36r-54,0v-3,-8,-5,-16,-6,-24v-25,46,-126,39,-121,-29v4,-51,28,-58,89,-64v20,-2,31,-9,31,-18xm77,-33v32,0,49,-26,44,-62v-33,9,-69,12,-71,39v-1,14,13,23,27,23","w":203,"k":{"y":9,"v":8}},"b":{"d":"187,-97v0,53,-29,103,-79,103v-28,0,-46,-15,-58,-32r0,26r-50,0r0,-262r50,0r0,92v11,-17,31,-31,58,-31v50,-1,79,50,79,104xm136,-97v0,-30,-15,-59,-42,-59v-27,0,-44,29,-44,60v0,30,16,58,43,58v27,0,43,-30,43,-59","w":213,"k":{"y":12,"x":18,"v":10}},"c":{"d":"98,-36v22,0,38,-19,43,-37r54,0v-8,44,-44,79,-95,79v-59,0,-100,-44,-100,-101v0,-57,40,-107,96,-106v54,1,88,29,99,75r-56,0v-21,-59,-86,-26,-86,28v0,31,16,63,45,62","k":{"y":11,"x":20,"v":10}},"d":{"d":"79,-201v27,0,46,14,58,31r0,-92r50,0r0,262r-49,0r0,-26v-14,22,-34,32,-59,32v-51,1,-79,-49,-79,-103v0,-53,28,-105,79,-104xm137,-96v0,-29,-16,-60,-43,-60v-27,0,-43,29,-43,59v0,30,15,60,42,60v27,0,44,-29,44,-59","w":216},"e":{"d":"0,-96v0,-65,32,-110,93,-110v68,0,91,49,91,123r-130,0v-5,45,57,65,75,24r52,0v-10,38,-41,65,-87,66v-56,0,-94,-44,-94,-103xm130,-117v4,-39,-42,-54,-66,-31v-7,7,-10,17,-10,31r76,0","w":209,"k":{"y":14,"x":17,"w":9,"v":13}},"f":{"d":"111,-222v-22,-2,-38,0,-33,28r33,0r0,36r-33,0r0,158r-50,0r0,-158r-28,0r0,-36r28,0v-4,-62,25,-74,83,-69r0,41","w":136},"g":{"d":"0,-98v0,-53,32,-104,82,-103v24,0,43,10,56,31r0,-24r50,0r0,181v11,91,-86,110,-152,79v-19,-9,-28,-26,-30,-47r57,0v3,12,17,18,32,18v39,1,43,-22,42,-64v-10,17,-29,27,-54,27v-52,1,-83,-45,-83,-98xm52,-100v0,30,16,58,43,57v27,0,42,-27,42,-56v0,-29,-16,-57,-43,-57v-26,0,-42,27,-42,56","w":217},"h":{"d":"111,-200v83,0,60,117,63,200r-52,0v-5,-55,18,-149,-30,-157v-19,-3,-40,22,-40,43r0,114r-52,0r0,-262r52,0r0,90v14,-16,32,-28,59,-28","w":202},"i":{"d":"55,-215r-51,0r0,-47r51,0r0,47xm55,0r-51,0r0,-194r51,0r0,194","w":84},"j":{"d":"63,-215r-52,0r0,-47r52,0r0,47xm-12,36v13,0,23,-1,23,-14r0,-216r52,0r0,225v1,42,-32,52,-75,48r0,-43","w":93},"k":{"d":"179,0r-62,0r-47,-82r-19,20r0,62r-51,0r0,-262r51,0r0,137r61,-69r63,0r-68,72","w":199,"k":{"s":9,"q":13,"o":16,"g":15,"e":15,"d":23,"c":16}},"l":{"d":"62,0r-51,0r0,-262r51,0r0,262","w":93},"m":{"d":"157,-171v27,-51,119,-30,119,35r0,136r-51,0r0,-125v0,-17,-12,-29,-28,-29v-57,3,-27,99,-34,154r-51,0r0,-125v0,-16,-10,-30,-28,-29v-56,4,-26,100,-33,154r-51,0r0,-194r49,0r0,22v10,-16,30,-29,53,-29v26,0,42,15,55,30","w":304},"n":{"d":"50,-171v30,-51,124,-32,124,39r0,132r-52,0r0,-117v-1,-22,-9,-40,-31,-39v-59,3,-34,97,-39,156r-52,0r0,-194r50,0r0,23","w":202},"o":{"d":"198,-96v0,58,-42,102,-99,102v-58,0,-99,-44,-99,-102v0,-59,40,-105,99,-105v57,0,99,46,99,105xm53,-97v0,31,17,60,45,60v29,0,46,-28,46,-60v0,-32,-17,-60,-46,-60v-29,0,-45,30,-45,60","w":225,"k":{"y":15,"x":23,"w":10,"v":14}},"p":{"d":"187,-98v0,54,-28,105,-79,104v-28,0,-46,-12,-58,-30r0,101r-50,0r0,-271r50,0r0,26v11,-18,31,-33,58,-33v50,-1,79,50,79,103xm94,-38v55,0,56,-118,0,-118v-28,0,-44,28,-44,58v-1,31,15,60,44,60","w":213,"k":{"y":18,"x":18,"v":11}},"q":{"d":"79,-201v27,0,45,15,59,31r0,-24r49,0r0,271r-50,0r0,-102v-14,21,-33,31,-58,31v-49,1,-79,-50,-79,-102v0,-54,29,-105,79,-105xm138,-96v0,-29,-17,-60,-44,-60v-28,0,-43,29,-43,58v0,30,16,61,42,61v27,0,45,-29,45,-59","w":216},"r":{"d":"112,-146v-39,-1,-59,9,-60,43r0,103r-52,0r0,-194r48,0r0,34v13,-24,29,-39,64,-39r0,53","w":132},"s":{"d":"120,-135v1,-30,-58,-36,-63,-9v-3,19,89,34,88,39v21,11,31,26,31,46v2,63,-100,85,-148,49v-18,-14,-28,-31,-28,-53r52,0v-3,33,68,42,73,10v3,-21,-85,-31,-88,-37v-20,-11,-31,-27,-31,-48v-1,-59,94,-83,138,-46v15,12,24,28,27,49r-51,0","w":200,"k":{"y":11,"x":11,"v":10}},"t":{"d":"77,-50v0,15,16,13,30,13r0,38v-48,6,-82,0,-82,-54r0,-105r-25,0r0,-36r25,0r0,-53r52,0r0,53r30,0r0,36r-30,0r0,108","w":132},"u":{"d":"82,-38v61,0,35,-96,40,-156r51,0r0,194r-50,0r0,-23v-15,16,-35,28,-63,28v-36,0,-60,-29,-60,-67r0,-132r51,0v7,54,-23,156,31,156","w":202},"v":{"d":"192,-194r-69,194r-54,0r-69,-194r58,0r39,139r40,-139r55,0","k":{"q":8,"o":9,"g":8,"e":10,"d":8,"c":9,"a":8}},"w":{"d":"274,-194r-54,194r-52,0r-31,-139r-30,139r-52,0r-55,-194r53,0r31,135r27,-135r53,0r28,135r32,-135r50,0","w":298},"x":{"d":"192,0r-61,0r-36,-62r-35,62r-60,0r66,-99r-63,-95r59,0r34,59r34,-59r58,0r-61,94","k":{"s":10,"q":14,"o":18,"g":17,"e":17,"d":14,"c":18}},"y":{"d":"31,28v22,6,41,-1,39,-24r-70,-198r57,0r41,140r39,-140r55,0r-77,222v-8,37,-40,49,-84,42r0,-42","k":{"s":7,"q":16,"o":10,"g":12,"e":10,"d":8,"c":10,"a":8}},"z":{"d":"172,0r-172,0r0,-40r107,-113r-101,0r0,-41r162,0r0,42r-104,109r108,0r0,43","w":195},"{":{"d":"91,-42v-2,40,-6,83,39,78r0,38v-75,5,-82,-36,-82,-107v0,-33,-15,-42,-48,-43r0,-37v80,10,25,-96,60,-132v12,-13,36,-18,70,-18r0,37v-48,-5,-42,39,-39,78v2,32,-13,45,-37,53v27,7,39,19,37,53","w":155},"|":{"d":"37,-120r-37,0r0,-135r37,0r0,135xm37,63r-37,0r0,-136r37,0r0,136","w":62},"}":{"d":"85,-202v0,51,-11,92,45,89r0,37v-80,-10,-24,94,-59,131v-13,13,-37,19,-71,19r0,-38v46,5,38,-38,38,-77v0,-32,12,-45,38,-54v-40,-7,-39,-50,-36,-95v2,-26,-12,-36,-40,-36r0,-37v56,1,85,11,85,61","w":154},"~":{"d":"155,-205v22,0,30,-21,30,-46r36,0v0,47,-22,81,-65,81v-27,6,-69,-46,-89,-45v-23,0,-32,20,-31,45r-36,0v-1,-45,22,-81,65,-81v27,-5,69,47,90,46","w":245},"\u00a0":{"w":97}}});;
Cufon.replace('h1#sitename a,.nodetitle a, #navbar > ul > li > a', {
    hover: true
});
Cufon.replace('h1, h2, h3, h4, h5, h6, p.mission, p.slogan, .views-field-title, legend:not(.collapse-processed)');;
(function($){
	/* hoverIntent by Brian Cherne */
	$.fn.hoverIntent = function(f,g) {
		// default configuration options
		var cfg = {
			sensitivity: 7,
			interval: 100,
			timeout: 0
		};
		// override configuration options with user supplied object
		cfg = $.extend(cfg, g ? { over: f, out: g } : f );

		// instantiate variables
		// cX, cY = current X and Y position of mouse, updated by mousemove event
		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
		var cX, cY, pX, pY;

		// A private function for getting mouse position
		var track = function(ev) {
			cX = ev.pageX;
			cY = ev.pageY;
		};

		// A private function for comparing current and previous mouse position
		var compare = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			// compare mouse positions to see if they've crossed the threshold
			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
				$(ob).unbind("mousemove",track);
				// set hoverIntent state to true (so mouseOut can be called)
				ob.hoverIntent_s = 1;
				return cfg.over.apply(ob,[ev]);
			} else {
				// set previous coordinates for next time
				pX = cX; pY = cY;
				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
			}
		};

		// A private function for delaying the mouseOut function
		var delay = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			ob.hoverIntent_s = 0;
			return cfg.out.apply(ob,[ev]);
		};

		// A private function for handling mouse 'hovering'
		var handleHover = function(e) {
			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
			if ( p == this ) { return false; }

			// copy objects to be passed into t (required for event object to be passed in IE)
			var ev = jQuery.extend({},e);
			var ob = this;

			// cancel hoverIntent timer if it exists
			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }

			// else e.type == "onmouseover"
			if (e.type == "mouseover") {
				// set "previous" X and Y position based on initial entry point
				pX = ev.pageX; pY = ev.pageY;
				// update "current" X and Y position based on mousemove
				$(ob).bind("mousemove",track);
				// start polling interval (self-calling timeout) to compare mouse coordinates over time
				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}

			// else e.type == "onmouseout"
			} else {
				// unbind expensive mousemove event
				$(ob).unbind("mousemove",track);
				// if hoverIntent state is true, then call the mouseOut function after the specified delay
				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
			}
		};

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
	
})(jQuery);;

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
    easing      : 'swing',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,o.easing,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); }); 
			return this;
		}
	});

})(jQuery);
;
		// initialise plugins
  $(document).ready(function() {
    $('#navbar > ul').superfish({
      hoverClass:  'over',           // hover class
      pathClass:   false,            // active class on li
      delay:     Drupal.settings.superfish.delay,                // 500ms delay on mouseout as per Jacob Nielsen advice
      //animation:   {opacity:'show',height:'show',width:'show'}, // fade-in and slide-down animation
      animation:   Drupal.settings.superfish.animation, // Load animation object
      speed:     Drupal.settings.superfish.speed+'ms',            // animation speed
      easing:    Drupal.settings.superfish.easing,            // easing linear/swing
      autoArrows:  false,              // generation of arrow mark-up
      dropShadows: true               // drop shadows
    });
  });;
/****
* Alldrupalthemes equalHeights invocation:
***/

$(function(){ $('.preblocks').equalHeights(1,'.preblocks .content'); });
$(function(){ $('.postblocks').equalHeights(1,'.postblocks .content'); });

/*-------------------------------------------------------------------- 
 * JQuery Plugin: "EqualHeights" & "EqualWidths"
 * by:	Scott Jehl, Todd Parker, Maggie Costello Wachs (http://www.filamentgroup.com)
 * Modified by Jurriaan Roelofs for alldrupalthemes.com. Added a parameter to set target element to measure and set height on. Always target the inner-most wrapper of your boxes.
 * Copyright (c) 2007 Filament Group
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 * Version: 2.0, 07.24.2008
--------------------------------------------------------------------*/

$.fn.equalHeights = function(px, element) {
	$(this).each(function(){
		var currentTallest = 0;
		$(element).each(function(i){
			if ($(this).height() > currentTallest) { currentTallest = $(this).height(); }
		});
		if (!px || !Number.prototype.pxToEm) currentTallest = currentTallest.pxToEm(); //use ems unless px is specified
		// for ie6, set height since min-height isn't supported
		if ($.browser.msie && $.browser.version == 6.0) { $(element).css({'height': currentTallest}); }
		$(element).css({'min-height': currentTallest}); 
	});
	return this;
};


/*-------------------------------------------------------------------- 
   Scott Jehl (scott@filamentgroup.com) 
   Maggie Wachs (maggie@filamentgroup.com)
   http://www.filamentgroup.com
 * Copyright (c) 2008 Filament Group
 * Dual licensed under the MIT (filamentgroup.com/examples/mit-license.txt) and GPL (filamentgroup.com/examples/gpl-license.txt) licenses.
 * Version: 2.0, 08.01.2008 
--------------------------------------------------------------------*/

Number.prototype.pxToEm = String.prototype.pxToEm = function(settings){
	//set defaults
	settings = jQuery.extend({
		scope: 'body',
		reverse: false
	}, settings);
	
	var pxVal = (this == '') ? 0 : parseFloat(this);
	var scopeVal;
	var getWindowWidth = function(){
		var de = document.documentElement;
		return self.innerWidth || (de && de.clientWidth) || document.body.clientWidth;
	};	
	
	/* When a percentage-based font-size is set on the body, IE returns that percent of the window width as the font-size. 
		For example, if the body font-size is 62.5% and the window width is 1000px, IE will return 625px as the font-size. 	
		When this happens, we calculate the correct body font-size (%) and multiply it by 16 (the standard browser font size) 
		to get an accurate em value. */
				
	if (settings.scope == 'body' && $.browser.msie && (parseFloat($('body').css('font-size')) / getWindowWidth()).toFixed(1) > 0.0) {
		var calcFontSize = function(){		
			return (parseFloat($('body').css('font-size'))/getWindowWidth()).toFixed(3) * 16;
		};
		scopeVal = calcFontSize();
	}
	else { scopeVal = parseFloat(jQuery(settings.scope).css("font-size")); };
			
	var result = (settings.reverse == true) ? (pxVal * scopeVal).toFixed(2) + 'px' : (pxVal / scopeVal).toFixed(2) + 'em';
	return result;
};;
(function(a){a.fn.lavaLamp=function(b){b=a.extend({fx:"swing",speed:500,click:function(){return true},startItem:"no",autoReturn:true,returnDelay:0,setOnClick:true,homeTop:0,homeLeft:0,homeWidth:0,homeHeight:0,returnHome:false},b||{});return this.each(function(){var h=location.pathname+location.search+location.hash;var e=new Object;var d;var i;var f;var g;if(b.homeTop||b.homeLeft){f=a('<li class="homeLava selectedLava"></li>').css({left:b.homeLeft,top:b.homeTop,width:b.homeWidth,height:b.homeHeight,position:"absolute"});a(this).prepend(f)}var j=a("li",this);if(b.startItem=="no"){e=a('li a[href$="'+h+'"]',this).parent("li")}if(e.length==0&&b.startItem=="no"&&location.hash){e=a('li a[href$="'+location.hash+'"]',this).parent("li")}if(e.length==0||b.startItem!="no"){if(b.startItem=="no"){b.startItem=0}e=a(j[b.startItem])}g=a("li.selectedLava",this)[0]||a(e).addClass("selectedLava")[0];j.mouseover(function(){if(a(this).hasClass("homeLava")){g=a(this)[0]}c(this)});i=a('<li class="backLava"><div class="innerLava"></div></li>').appendTo(this);a(this).mouseout(function(){if(b.autoReturn){if(b.returnHome&&f){c(f[0])}else{if(b.returnDelay){if(d){clearTimeout(d)}d=setTimeout(c,b.returnDelay+b.speed)}else{c()}}}});j.click(function(k){if(b.setOnClick){a(g).removeClass("selectedLava");a(this).addClass("selectedLava");g=this}return b.click.apply(this,[k,this])});if(b.homeTop||b.homeLeft){i.css({left:b.homeLeft,top:b.homeTop,width:b.homeWidth,height:b.homeHeight})}else{i.css({left:g.offsetLeft,top:g.offsetTop,width:g.offsetWidth,height:g.offsetHeight})}function c(k){if(!k){k=g}var m=0,l=0;if(!a.browser.msie){m=(i.outerWidth()-i.innerWidth())/2;l=(i.outerHeight()-i.innerHeight())/2}i.stop().animate({left:k.offsetLeft-m,top:k.offsetTop-l,width:k.offsetWidth,height:k.offsetHeight},b.speed,b.fx)}})}})(jQuery);;
$(function() {
	var query = new Object();

	easing = query['e'] || 'Expo';


// for dynamic easing changes
	function loadLamps(easing) {
    $('#navbar .menu').lavaLamp({
      speed: 200,
      returnDelay:1000
    });
  }

	$(function() {
		loadLamps(easing);
	});
});;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.71 (11-AUG-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 */
;(function($){var ver="2.71";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}if(opts2.timeout||opts2.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts2.rev);},opts2.continuous?10:opts2.timeout+(opts2.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){;var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pagerEvent!="click"){$a.click(function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,prevNextEvent:"click",pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.52
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);
;
$(function() {
    $("div.slideshow .views-admin-links").remove(); // Remove views administration links, they mess up the cycle pager
    $('div.slideshow ul').cycle({
        fx:                   Drupal.settings.featureKit.fx,
        timeout:              parseInt(Drupal.settings.featureKit.timeout),
        continuous:           parseInt(Drupal.settings.featureKit.continuous),
        speed:                parseInt(Drupal.settings.featureKit.speed),
        pagerEvent:           Drupal.settings.featureKit.pagerEvent,
        easing:               Drupal.settings.featureKit.easing,
        random:               parseInt(Drupal.settings.featureKit.random),
        pause:                parseInt(Drupal.settings.featureKit.pause),
        pauseOnPagerHover:    parseInt(Drupal.settings.featureKit.pauseOnPagerHover),
        delay:                parseInt(Drupal.settings.featureKit.delay),
        pager:                '#cycle-pager'
    });
});;
$(function() {
  $('#main div:not(.slideshow) .content img:not(.noborder)').wrap('<div class="alphaborder">');
  $('.alphaborder').each(function (i) {
    $(this).height(jQuery("img", this).height()-10);
    $(this).width(jQuery("img", this).width()-10);
    $(this).css('background-image','url('+jQuery("img", this).attr("src")+')')
  });
});;
Cufon.registerFont({"w":235,"face":{"font-family":"ChunkFive","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"5","bbox":"-4 -293 369 83","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007A"},"glyphs":{" ":{"w":90},"\u00a0":{"w":90},"e":{"d":"72,-72v2,39,68,35,87,12r31,35v-26,22,-50,31,-93,31v-59,0,-95,-35,-95,-97v0,-61,37,-93,97,-94v64,-1,105,47,86,113r-113,0xm127,-108v6,-29,-35,-38,-48,-17v-3,5,-5,11,-6,17r54,0","w":195},"f":{"d":"24,-180v-16,-82,51,-115,124,-87r-22,41v-12,-6,-31,-8,-31,15r0,31r33,0r0,47r-33,0r0,86r22,0r0,47r-108,0r0,-47r15,0r0,-86r-15,0r0,-47r15,0","w":138},"g":{"d":"4,-91v-6,-75,75,-115,128,-78r7,-11r86,0r0,47r-22,0r0,108v10,104,-133,124,-194,67r19,-40v23,25,114,42,104,-23v-9,12,-22,20,-42,20v-57,-1,-82,-35,-86,-90xm106,-137v-35,2,-35,86,0,89v37,-4,34,-85,0,-89","w":230},"h":{"d":"119,-131v-34,1,-20,51,-23,84r26,0r0,47r-113,0r0,-47r15,0r0,-176r-15,0r0,-47r87,0r0,112v13,-13,31,-27,57,-28v71,-2,64,71,63,139r17,0r0,47r-93,0r0,-108v-2,-13,-6,-23,-21,-23","w":237},"i":{"d":"110,0r-101,0r0,-47r15,0r0,-86r-15,0r0,-47r84,0r0,133r17,0r0,47xm98,-233v4,41,-63,49,-76,13v-9,-25,9,-50,36,-49v24,0,38,15,40,36","w":118},"j":{"d":"5,27v66,0,33,-99,41,-160r-15,0r0,-47r83,0r0,155v1,69,-37,101,-109,100r0,-48xm120,-233v4,41,-63,49,-76,13v-9,-25,9,-50,36,-49v24,0,38,15,40,36","w":129},"o":{"d":"203,-89v0,60,-39,94,-99,94v-60,0,-100,-34,-100,-96v0,-59,40,-93,99,-93v62,0,100,34,100,95xm103,-138v-36,6,-33,94,1,97v37,-6,32,-93,-1,-97","w":206},"u":{"d":"93,5v-75,0,-74,-63,-72,-137r-16,0r0,-48r88,0r0,87v1,24,0,45,19,45v33,0,21,-51,23,-84r-24,0r0,-48r93,0r0,132r18,0r0,48r-68,0r-10,-23v-11,15,-25,28,-51,28","w":227},"t":{"d":"91,-69v0,13,-2,29,12,29v6,0,18,-5,22,-6r0,46v-11,4,-28,6,-43,6v-73,0,-54,-73,-57,-139r-20,0r0,-47r20,0r0,-33r66,-21r0,54r34,0r0,47r-34,0r0,64","w":130},"B":{"d":"244,-73v4,103,-140,66,-235,73r0,-47r21,0r0,-158r-21,0r0,-47v87,6,221,-27,222,62v1,34,-12,46,-35,56v29,7,46,26,48,61xm162,-78v0,-30,-26,-34,-58,-31r0,62v31,2,58,0,58,-31xm151,-178v0,-25,-21,-28,-47,-26r0,54v27,1,47,1,47,-28","w":247},"D":{"d":"256,-129v0,84,-53,130,-139,129r-108,0r0,-48r22,0r0,-156r-22,0r0,-48r110,0v82,3,137,43,137,123xm105,-48v53,4,68,-32,68,-81v0,-45,-17,-79,-68,-75r0,156","w":259},"C":{"d":"142,-56v27,0,45,-19,57,-35r43,46v-27,27,-58,51,-110,51v-80,0,-127,-49,-127,-129v0,-75,42,-127,110,-133v26,-2,45,11,55,25r9,-21r56,0r0,103r-64,0v-3,-26,-11,-46,-39,-46v-32,0,-42,36,-42,72v0,37,15,67,52,67","w":246},"A":{"d":"291,0r-144,0r0,-47r34,0r-8,-25r-74,0r-7,25r28,0r0,47r-115,0r0,-47r25,0r48,-158r-14,0r0,-47r138,0r64,205r25,0r0,47xm113,-115r47,0r-24,-78","w":296,"k":{"a":11,"V":29,"y":22,"u":11,"o":11,"e":11}},"N":{"d":"285,-205r-24,0r0,205r-77,0r-92,-137r0,91r28,0r0,46r-111,0r0,-46r21,0r0,-159r-21,0r0,-47r104,0r88,132r0,-85r-25,0r0,-47r109,0r0,47","w":293},"n":{"d":"117,-132v-35,1,-20,52,-23,85r26,0r0,47r-111,0r0,-47r15,0r0,-86r-15,0r0,-47r77,0r8,22v11,-14,27,-28,51,-28v72,0,67,69,66,139r17,0r0,47r-91,0r0,-109v-2,-13,-6,-23,-20,-23","w":232},"l":{"d":"114,0r-105,0r0,-47r15,0r0,-177r-15,0r0,-46r84,0r0,223r21,0r0,47","w":119},"m":{"d":"85,-158v15,-33,83,-35,99,-1v11,-12,28,-26,53,-26v69,0,69,66,67,136r17,0r0,49r-91,0r0,-117v-2,-9,-4,-16,-14,-16v-31,0,-15,55,-19,85r22,0r0,48r-93,0r0,-92v-2,-22,2,-39,-15,-41v-31,3,-12,57,-17,86r22,0r0,47r-107,0r0,-47r15,0r0,-85r-15,0r0,-48r68,0","w":326},"p":{"d":"123,-43v36,-2,35,-85,0,-89v-37,2,-34,86,0,89xm226,-89v7,75,-72,115,-129,79r0,36r20,0r0,47r-108,0r0,-47r15,0r0,-158r-15,0r0,-48r82,0r7,13v53,-40,137,5,128,78","w":229},"q":{"d":"112,-48v36,-2,35,-85,0,-89v-36,4,-34,84,0,89xm9,-91v-6,-74,75,-116,129,-78r7,-11r84,0r0,47r-18,0r0,168r18,0r0,48r-115,0r0,-47r24,0r0,-48v-9,7,-27,16,-46,15v-55,-2,-79,-38,-83,-94","w":237},"r":{"d":"144,-124v-49,-5,-54,29,-51,77r18,0r0,47r-102,0r0,-47r16,0r0,-86r-16,0r0,-47r68,0r11,23v10,-20,25,-32,56,-32r0,65","w":149},"P":{"d":"225,-175v-3,60,-56,75,-122,72r0,55r22,0r0,48r-116,0r0,-48r20,0r0,-156r-20,0r0,-48v94,3,220,-23,216,77xm154,-172v0,-29,-21,-35,-51,-33r0,63v28,2,51,-3,51,-30","w":230,"k":{"A":36}},"x":{"d":"135,-180r92,0r0,45r-24,0r-38,39r45,51r17,0r0,45r-115,0r0,-45r17,0r-27,-29r-26,29r23,0r0,45r-92,0r0,-45r24,0r37,-41r-45,-49r-16,0r0,-45r117,0r0,45r-17,0r25,27r27,-27r-24,0r0,-45","w":233},"w":{"d":"102,-55v5,-46,14,-87,27,-125r66,0v13,39,23,81,30,125v3,-28,8,-55,16,-78r-15,0r0,-47r88,0r0,47r-15,0r-42,133r-76,0r-25,-81r-26,81r-74,0r-41,-133r-15,0r0,-47r97,0r0,47r-12,0v8,23,13,50,17,78","w":313},"d":{"d":"4,-92v-5,-72,74,-114,128,-78r0,-53r-16,0r0,-47r90,0r0,223r17,0r0,47r-84,0r-7,-13v-10,9,-25,16,-45,16v-56,-2,-79,-40,-83,-95xm107,-137v-35,2,-36,86,0,89v36,-3,33,-84,0,-89","w":228},"k":{"d":"14,0r0,-47r14,0r0,-176r-14,0r0,-47r83,0r0,163r42,-25r-26,0r0,-48r100,0r0,48v-25,-3,-39,6,-52,15r49,70r18,0r0,47r-107,0r0,-47r15,0r-27,-39r-13,9r0,30r14,0r0,47r-96,0"},"K":{"d":"122,-205r-19,0r0,58r67,-58r-26,0r0,-47r120,0r0,47r-21,0r-52,45r73,113r20,0r0,47r-140,0r0,-47r24,0r-38,-61r-27,23r0,38r19,0r0,47r-113,0r0,-47r19,0r0,-158r-19,0r0,-47r113,0r0,47","w":293},"v":{"d":"117,-58v7,-23,18,-55,30,-76r-19,0r0,-46r93,0r0,46r-19,0r-62,134r-56,0r-67,-134r-17,0r0,-46r109,0r0,46r-18,0v10,23,23,47,26,76","w":220},"y":{"d":"33,21v8,11,34,20,40,1v5,-6,6,-15,9,-23r-70,-133r-15,0r0,-46r111,0r0,46r-17,0r23,56r24,-56r-17,0r0,-46r91,0r0,45r-17,0r-77,183v-14,34,-83,46,-112,16","w":208},"E":{"d":"9,-252r217,0r0,80r-62,0r0,-32r-58,0r0,50r69,0r0,47r-69,0r0,59r58,0r0,-33r62,0r0,81r-217,0r0,-48r23,0r0,-156r-23,0r0,-48"},"W":{"d":"115,-81r38,-171r75,0r33,171r25,-124r-20,0r0,-47r103,0r0,47r-20,0r-53,205r-86,0v-12,-42,-17,-91,-32,-130v-7,46,-19,87,-30,130r-84,0r-47,-205r-21,0r0,-47r119,0r0,47r-21,0","w":365,"k":{"a":22,"s":22,"y":11,"r":22,"u":11,"o":22,"e":22}},"H":{"d":"9,-252r117,0r0,48r-23,0r0,54r69,0r0,-54r-22,0r0,-48r117,0r0,48r-20,0r0,156r20,0r0,48r-117,0r0,-48r22,0r0,-54r-69,0r0,54r23,0r0,48r-117,0r0,-48r20,0r0,-156r-20,0r0,-48","w":276},"U":{"d":"137,6v-74,0,-111,-42,-111,-122r0,-89r-21,0r0,-47r115,0r0,47r-20,0v5,56,-18,148,36,148v57,0,31,-92,37,-147r-20,0r0,-48r107,0r0,47r-20,0r0,87v1,80,-29,124,-103,124","w":265},"M":{"d":"135,0v-16,-63,-37,-120,-48,-188v-4,44,0,96,-1,142r21,0r0,46r-98,0r0,-46r19,0r0,-159r-19,0r0,-47r137,0r36,135r35,-135r137,0r0,47r-20,0r0,158r20,0r0,47r-114,0r0,-47r21,0r-2,-141v-13,66,-32,125,-48,188r-76,0","w":362},"@":{"w":299},"G":{"d":"93,-123v-6,53,56,89,83,48r0,-15r-22,0r0,-39r120,0r0,39r-14,0r0,90r-72,0r-12,-23v-9,15,-33,27,-58,26v-72,-3,-113,-52,-113,-126v0,-75,40,-128,111,-133v35,-2,56,12,70,30r8,-26r53,0r0,107r-64,0v-1,-27,-15,-46,-41,-46v-35,0,-45,31,-49,68","w":279},"T":{"d":"247,-252r0,94r-53,0r0,-46r-30,0r0,156r30,0r0,48r-134,0r0,-48r29,0r0,-156r-31,0r0,46r-53,0r0,-94r242,0","w":252,"k":{"a":22,"s":22,"y":14,"r":22,"u":14,"o":22,"e":22}},"R":{"d":"209,4v-55,0,-71,-33,-71,-87v0,-16,-14,-21,-35,-20r0,55r22,0r0,48r-116,0r0,-48r20,0r0,-156r-20,0r0,-48v93,4,221,-24,217,75v-1,31,-23,47,-52,52v26,6,45,22,47,51v-5,21,14,34,17,13r0,-12r24,0v3,45,-9,77,-53,77xm154,-173v0,-29,-21,-34,-51,-32r0,61v28,2,51,-2,51,-29","w":265},"V":{"d":"151,-81v12,-40,32,-86,48,-124r-19,0r0,-47r102,0r0,47r-18,0r-86,205r-66,0r-96,-205r-20,0r0,-47r133,0r0,47r-20,0v13,41,32,79,42,124","w":278,"k":{"a":22,"y":22,"u":22,"o":22,"e":22}},"X":{"d":"129,0r-120,0r0,-46r31,0r53,-69r-65,-90r-19,0r0,-47r143,0r0,47r-21,0r35,48r37,-48r-32,0r0,-47r120,0r0,47r-31,0r-54,70r65,88r21,0r0,47r-144,0r0,-47r20,0r-34,-47r-38,48r33,0r0,46","w":300},"s":{"d":"176,-50v2,60,-98,69,-122,28r-4,22r-45,0r0,-65r49,0v1,19,21,22,38,24v12,1,24,-14,11,-19v-40,-16,-95,-18,-96,-72v-1,-59,97,-67,117,-24r3,-24r44,0r0,65r-47,0v1,-23,-45,-41,-51,-15v26,34,101,17,103,80","w":182},"S":{"d":"247,-71v5,85,-134,97,-171,43r-4,28r-63,0r0,-91r67,0v0,30,26,36,55,36v17,-1,31,-21,11,-29v-52,-21,-126,-25,-128,-97v-3,-83,129,-101,161,-40r3,-31r62,0r0,91r-65,0v0,-27,-20,-41,-46,-42v-22,-1,-35,24,-14,35v48,25,128,27,132,97","w":255},"Q":{"d":"212,38v-30,0,-46,-18,-55,-40v-94,11,-154,-34,-152,-125v1,-76,44,-126,121,-126v83,0,122,46,123,128v0,38,-9,68,-29,90v-1,18,22,35,23,7r0,-10r23,0v3,46,-12,76,-54,76xm86,-108v15,-21,63,-22,83,-3v3,-41,-6,-85,-43,-89v-37,5,-43,50,-40,92xm148,-62v-1,-22,-18,-41,-34,-22v-4,5,-7,11,-10,18v13,14,29,16,44,4","w":271},"z":{"d":"9,-108r0,-72r178,0r0,46r-85,87r37,0r0,-25r51,0r0,72r-181,0r0,-47r87,-87r-40,0r0,26r-47,0","w":199},"Z":{"d":"11,-157r0,-95r236,0r1,48r-132,156r67,0r0,-46r64,0r0,94r-238,0r0,-47r131,-157r-68,0r0,47r-61,0","w":257},"?":{"d":"111,-193v-25,-21,-59,4,-71,21r-39,-39v22,-26,51,-46,93,-46v51,0,84,24,86,73v2,54,-63,43,-57,100r-67,0v-11,-62,41,-66,57,-100v0,-4,-1,-6,-2,-9xm87,-75v-23,0,-41,15,-41,38v0,22,18,36,41,37v25,1,43,-15,43,-37v0,-24,-17,-38,-43,-38","w":187},"F":{"d":"9,-252r215,0r0,80r-63,0r0,-32r-55,0r0,63r69,0r0,47r-69,0r0,46r37,0r0,48r-134,0r0,-48r22,0r0,-156r-22,0r0,-48","w":229,"k":{"a":22,"s":22,"y":11,"r":22,"u":11,"o":22,"e":22}},"I":{"d":"9,-252r120,0r0,48r-23,0r0,156r23,0r0,48r-120,0r0,-48r23,0r0,-156r-23,0r0,-48","w":137},"J":{"d":"128,-27v4,72,-48,112,-120,96r-1,-47v32,10,46,-10,46,-49r0,-177r-31,0r0,-48r136,0r0,48r-30,0r0,177","w":166},"L":{"d":"9,-252r114,0r0,48r-19,0r0,156r46,0r0,-46r61,0r0,94r-202,0r0,-48r20,0r0,-156r-20,0r0,-48","w":219},"O":{"d":"261,-125v0,85,-43,131,-127,131v-83,0,-129,-49,-129,-133v0,-80,46,-130,127,-131v87,-1,129,49,129,133xm131,-203v-51,11,-45,122,-13,148v40,19,54,-30,53,-70v-1,-38,-6,-74,-40,-78","w":266},".":{"d":"46,1v-24,-1,-41,-16,-41,-38v0,-24,15,-41,41,-41v26,0,40,16,41,41v0,23,-16,40,-41,38","w":92},"a":{"d":"116,-107v7,-53,-68,-31,-88,-16r-15,-42v49,-37,179,-39,176,49r0,70r22,0r0,46r-77,0r-9,-16v-30,41,-120,23,-120,-37v0,-55,70,-84,111,-54xm74,-57v0,23,35,19,42,5v2,-16,-5,-24,-21,-24v-15,-1,-21,8,-21,19","w":216},"b":{"d":"228,-89v5,75,-76,118,-130,77r-6,12r-81,0r0,-47r15,0r0,-176r-15,0r0,-47r87,0r0,104v10,-11,27,-17,47,-17v55,0,79,40,83,94xm123,-43v36,-2,35,-85,0,-89v-36,3,-34,85,0,89","w":236},"c":{"d":"0,-91v-5,-77,85,-118,134,-72r6,-17r43,0r0,81r-53,0v-3,-16,-4,-37,-23,-37v-46,0,-41,88,5,88v22,0,33,-9,44,-20r32,36v-20,20,-48,37,-89,37v-60,0,-95,-34,-99,-96","w":191},"[":{"d":"226,-170v0,30,-19,48,-38,59r40,64r21,0r0,47r-69,0r-60,-96r-16,0r0,48r22,0r0,48r-116,0r0,-48r21,0r0,-156r-21,0r0,-48v97,3,216,-22,216,82xm156,-172v0,-28,-21,-36,-52,-33r0,63v28,2,52,-4,52,-30","w":259},"\\":{},"]":{"d":"11,0r0,-47r15,0r0,-176r-15,0r0,-47r83,0r0,163r42,-25r-26,0r0,-48r101,0r0,48v-24,-2,-39,4,-51,13r50,72r15,0r0,47r-58,0r-61,-86r-12,9r0,30r25,0r0,47r-108,0","w":232},"Y":{"d":"101,-206v13,21,22,45,33,68v9,-24,22,-46,33,-68r-19,0r0,-46r96,0r0,46r-19,0r-67,117r0,42r21,0r0,47r-116,0r0,-47r21,0r0,-42r-70,-117r-18,0r0,-46r124,0r0,46r-19,0","w":240,"k":{"a":22,"s":22,"y":11,"r":22,"u":14,"o":29,"e":22}},"1":{"d":"9,-204v26,-13,46,-25,63,-48r64,0r0,204r34,0r0,48r-144,0r0,-48r36,0r0,-133r-36,16","w":178},"2":{"d":"95,-197v-23,2,-32,16,-44,27r-39,-41v39,-62,181,-63,179,34v-1,78,-83,77,-111,129r63,0r0,-29r60,0r0,77r-194,0r0,-52v23,-50,74,-70,110,-106v16,-16,1,-41,-24,-39","w":212},"3":{"d":"189,-75v2,93,-145,100,-184,39r37,-38v14,23,77,38,80,-4v2,-30,-28,-27,-57,-27r0,-43v27,1,57,2,57,-24v-1,-41,-60,-31,-74,-7r-35,-42v39,-52,175,-47,169,42v-1,21,-13,36,-26,45v15,13,33,30,33,59","w":194},"4":{"d":"4,-122r103,-130r75,0r0,142r19,0r0,39r-19,0r0,23r19,0r0,48r-116,0r0,-48r22,0r0,-23r-103,0r0,-51xm107,-110r0,-66r-53,66r53,0","w":210},"5":{"d":"135,-89v1,-38,-56,-44,-71,-18r-46,-21r22,-124r143,0r0,54r-97,0r-6,35v57,-26,122,10,122,77v0,101,-153,115,-197,47r40,-41v16,31,89,41,90,-9","w":207},"'":{"d":"84,-252r-13,107r-45,0r-13,-107r71,0","w":98},",":{"d":"-2,46v23,-28,39,-63,34,-117r66,18v-1,55,-27,94,-59,123","w":97},":":{"d":"45,3v-23,0,-40,-16,-40,-38v0,-23,16,-41,40,-41v25,0,41,17,41,41v0,23,-17,38,-41,38xm45,-107v-23,-2,-40,-15,-40,-38v0,-22,16,-40,40,-40v25,0,41,18,41,40v0,23,-17,39,-41,38","w":91},"6":{"d":"69,-3v-105,-38,-77,-282,63,-251v25,5,48,13,65,27r-25,47v-19,-15,-65,-30,-85,-4v-7,9,-13,21,-15,34v36,-35,112,-11,125,29v25,80,-45,149,-128,118xm139,-84v4,-43,-54,-35,-66,-12v-7,46,64,59,66,12","w":209},"7":{"d":"5,-252r195,0r0,48r-97,204r-77,0r96,-204r-59,0r0,24r-58,0r0,-72","w":203},"8":{"d":"101,5v-56,0,-96,-26,-96,-79v0,-30,17,-51,39,-63v-16,-10,-27,-27,-27,-48v0,-48,35,-71,86,-71v51,0,84,23,86,71v1,24,-14,41,-30,49v21,10,37,35,37,62v0,53,-41,79,-95,79xm134,-76v0,-38,-68,-43,-66,0v1,20,15,30,33,30v18,0,34,-10,33,-30xm102,-165v17,4,26,-9,27,-23v1,-13,-14,-23,-27,-23v-13,0,-26,11,-26,23v1,15,13,20,26,23","w":201},"9":{"d":"206,-143v13,120,-100,186,-193,118r24,-47v28,25,103,27,97,-31v-44,41,-135,7,-129,-62v5,-56,38,-91,94,-91v69,0,100,47,107,113xm70,-168v-3,41,52,37,63,11v-1,-21,-8,-42,-30,-42v-20,0,-32,11,-33,31","w":211},"-":{"d":"17,-110r104,0r0,48r-104,0r0,-48","w":138},";":{"d":"103,-139v3,35,-46,51,-70,27v-22,-22,-8,-70,29,-68v24,2,39,16,41,41xm2,46v23,-28,39,-63,34,-117r66,18v-1,55,-27,94,-59,123","w":108},"=":{"d":"16,-110r148,0r0,48r-148,0r0,-48xm16,-189r148,0r0,48r-148,0r0,-48","w":180},"0":{"d":"210,-125v0,76,-27,129,-101,129v-74,0,-104,-55,-104,-131v0,-72,31,-129,102,-129v75,0,103,55,103,131xm107,-198v-42,14,-36,116,-9,141v3,4,7,6,11,6v42,-15,41,-134,-2,-147","w":215},"!":{"d":"51,0v-24,-2,-41,-14,-41,-37v0,-23,17,-38,41,-38v25,0,43,14,43,38v0,21,-19,38,-43,37xm31,-93v-11,-49,-23,-96,-19,-159r86,0v4,64,-8,111,-20,159r-47,0","w":110},"(":{"d":"94,75v-69,-54,-116,-201,-54,-300v16,-25,35,-52,54,-68r37,38v-30,33,-56,79,-56,143v0,68,26,113,56,149","w":139},")":{"d":"64,-112v0,-65,-27,-109,-55,-143r37,-38v68,51,114,192,57,292v-16,29,-35,57,-57,77r-37,-39v30,-35,55,-81,55,-149","w":139}}});;
/**
Journal - freeware font
Glyphs: uppercase, lowercase, numerals, punctuation, Basic Latin
360 units per em
Path optimization allowed by at most 2 units
*/

Cufon.registerFont({"w":149,"face":{"font-family":"Journal","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","cap-height":"9","bbox":"-57 -309.049 381.061 135.255","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":83,"k":{"p":-28,"j":38,"d":13}},"!":{"d":"77,-219v-7,51,-23,101,-37,144v-2,1,-3,13,-10,12v3,-51,23,-100,32,-150v0,-3,-1,-6,-3,-9v9,-3,15,-6,18,3xm8,-7v8,-8,21,3,13,12v-3,12,-17,5,-17,-2v0,-4,1,-7,4,-10","w":72},"\"":{"d":"36,-168v3,-18,-4,-29,-3,-48v0,-5,10,-5,11,-1v-4,18,4,32,-1,47xm22,-167v5,-15,-18,-43,1,-48v5,14,10,32,5,49","w":42},"#":{"d":"185,-133v-27,0,-61,4,-83,13v0,3,-1,6,-2,10v20,1,61,-5,63,12r-63,5v-6,14,11,36,-1,43v-14,-4,-15,-28,-17,-41v-13,3,-27,1,-24,25v4,8,7,17,-6,21v-17,-1,-6,-27,-6,-40v-12,6,-59,8,-33,-12v8,-1,20,-3,36,-6r3,-9v-14,5,-44,7,-31,-13v13,0,38,3,37,-16v3,-15,-3,-36,18,-27v7,9,1,21,-3,36v28,-1,20,-42,42,-41v10,9,-3,17,-6,33v23,-1,56,-12,76,0r0,7xm84,-117v-12,-1,-16,1,-16,11v7,-2,19,2,16,-11","w":172},"$":{"d":"157,-223v14,17,-16,25,-19,43v-8,12,-18,40,-34,63v33,35,11,69,-28,81v-13,15,-6,60,-20,81v0,-8,1,-32,2,-72v-36,-5,-30,39,-40,62v-6,8,-15,3,-14,-7v3,-23,11,-30,18,-56v-3,-1,-12,-9,-10,-19v3,2,10,6,15,5v14,-22,23,-52,33,-81v-56,-22,2,-74,27,-82v27,-9,22,-42,38,-65v23,1,6,32,2,44v14,8,25,-24,33,-5xm126,-202v-19,-4,-25,43,-40,63v3,5,-5,3,-3,10v13,10,8,-1,16,-11xm87,-185v-12,7,-39,21,-35,41v7,5,12,8,15,8v8,-17,15,-33,20,-49xm100,-98v-7,13,-14,26,-16,39v17,-6,32,-27,16,-39xm48,-46v28,7,25,-45,37,-65v-13,-7,-12,9,-20,25v-7,12,-13,25,-17,40","w":150,"k":{"Y":14}},"%":{"d":"166,-166v9,-12,28,-42,39,-15v-13,20,-28,31,-53,57r-67,70v-23,22,-23,23,-42,54r4,4v-6,2,-14,8,-19,0v13,-63,81,-92,108,-139r0,-5v15,1,27,-21,18,-38v4,3,7,9,12,12xm39,-175v18,-6,49,-24,54,1v24,38,-27,82,-62,82v-26,0,-40,-29,-23,-49v13,-16,11,-19,25,-25v3,-1,5,-4,6,-9xm23,-110v33,7,62,-30,58,-57v-5,-7,-6,9,-12,7v-14,0,-30,12,-35,25v-10,-1,-22,17,-11,25xm113,-17v10,-38,51,-68,85,-34v7,41,-29,53,-61,59v-16,3,-22,-12,-24,-25xm132,-14v17,9,53,-13,51,-31v-20,-11,-43,12,-51,31","w":215},"&":{"d":"77,-203v46,12,-7,73,14,104v9,13,23,82,45,42v24,-19,32,-34,58,-50r-62,79v11,12,32,7,34,25v-16,5,-36,-10,-46,-15v-30,25,-61,75,-115,54v-13,-53,63,-90,63,-152v0,-31,-6,-64,9,-87xm108,-31v-9,-12,-21,-29,-24,-46v-16,-12,-19,27,-33,33v-2,14,-32,47,-29,70v41,6,65,-40,86,-57","w":197,"k":{"Y":24}},"'":{"d":"4,-222v15,-4,11,23,14,40v-1,5,-3,8,-9,6v3,-14,-9,-31,-5,-46","w":16,"k":{"n":3,"S":28}},"(":{"d":"70,-179v12,-19,21,-32,38,-40v16,9,-5,20,-12,31v-28,45,-79,99,-75,166v2,31,19,26,39,38v-32,14,-57,-17,-57,-52v0,-59,42,-104,67,-143","w":107},")":{"d":"-44,51v5,-19,25,-29,33,-47v50,-42,97,-149,45,-227v0,-6,2,-10,6,-11v23,14,31,59,31,93v0,80,-48,119,-91,173v-10,4,-11,17,-24,19","w":84},"*":{"d":"108,-104v-3,18,-33,3,-45,14v11,9,40,21,40,43v-8,-8,-43,-28,-49,-32v-6,16,-10,27,-6,41v-6,5,-8,-1,-11,-5v-1,-18,3,-27,5,-44v-15,5,-49,5,-35,-11v6,1,15,1,27,-1v-3,-5,-16,-24,-4,-32v17,-1,7,15,19,27v2,-8,12,-16,8,-25v10,0,12,-22,23,-9v-1,16,-12,21,-17,34v15,1,35,-7,45,0","w":125},"+":{"d":"79,-94v-3,11,5,43,-16,39v-6,-9,-1,-24,-1,-36v-14,4,-57,11,-35,-11r37,-1v1,-10,3,-26,10,-40r10,0v-7,14,-1,17,-5,36v22,-2,22,-3,37,0r-1,9v-12,-1,-22,2,-36,4","w":124},",":{"d":"1,33v10,-21,27,-32,27,-56v12,-6,15,5,10,18v-6,17,-15,32,-30,43v-1,-2,-7,-1,-7,-5","w":64,"k":{"*":-28}},"-":{"d":"6,-86v26,-10,67,3,99,2v10,5,9,22,-7,20v-19,-13,-81,5,-92,-22","w":119,"k":{"x":25,"f":-13}},"\u2010":{"d":"6,-86v26,-10,67,3,99,2v10,5,9,22,-7,20v-19,-13,-81,5,-92,-22","w":119},".":{"d":"21,-16v7,5,2,22,-8,20v-14,-6,-3,-29,8,-20","w":50},"\/":{"d":"63,-134v-32,45,-38,109,-59,170v-11,-58,4,-67,24,-133v1,-5,14,-35,36,-91v5,-8,16,-4,15,9v2,10,-9,16,-7,26v-7,5,-10,11,-9,19","w":73},"0":{"d":"73,-175v-13,1,-21,27,-38,23v14,-33,34,-43,72,-47v61,73,9,210,-75,218v-34,3,-36,-45,-25,-75v11,-31,40,-96,66,-119xm29,5v55,-7,92,-74,93,-135v0,-21,-6,-37,-18,-48v-43,20,-85,106,-89,157v-1,12,4,24,14,26","k":{"0":-3,".":10,",":45}},"1":{"d":"29,8v-22,10,-20,-18,-17,-34r30,-190v-1,-11,8,-20,16,-9v-3,31,-17,99,-23,137v-5,39,-15,69,-6,96","w":65,"k":{"8":33,"6":27,"5":21,"4":7,"3":44,"2":33,"0":22}},"2":{"d":"54,-192v7,-15,36,-22,49,-32v26,-1,30,1,39,16v-8,32,-24,47,-41,76v-27,24,-49,67,-75,101v-6,9,-9,17,-10,25v42,18,85,-18,127,-22v-30,16,-61,39,-110,39v-48,0,-36,-30,-17,-57r101,-142v6,-9,9,-22,-3,-23v-17,5,-32,13,-43,26v-7,0,-13,-2,-17,-7","w":151,"k":{"7":-15}},"3":{"d":"141,-85v4,45,-110,107,-139,41v17,2,22,16,43,14v36,-3,80,-23,82,-56v-2,-9,-32,-16,-39,-9v-13,-9,-32,3,-40,-15v20,-29,69,-40,84,-77v-15,-15,-52,-3,-72,3v-4,2,-21,7,-21,-4v13,-18,86,-35,106,-9v3,42,-46,58,-69,81v22,2,63,7,65,31","w":160,"k":{"Y":23,"3":33}},"4":{"d":"115,-130v-16,36,-43,82,-44,141v-29,-6,2,-68,8,-97v-8,3,-23,18,-38,16v-55,-7,-37,-104,-7,-129v26,7,-10,34,-12,51v-3,25,-9,60,19,62v22,-5,19,-5,46,-23v8,-19,18,-49,28,-80v2,-7,12,-15,16,0r-19,55v2,1,3,2,3,4","w":122,"k":{"9":-24}},"5":{"d":"102,-66v1,34,-57,83,-79,39v3,-19,9,1,20,3v22,-3,45,-18,45,-42v0,-37,-53,-23,-84,-23v-6,0,-11,-3,-14,-9v5,-17,39,-53,39,-70v0,-8,5,-13,11,-10v29,-4,79,-17,105,-4v2,13,-3,7,-20,10v-32,-1,-54,8,-81,12r-33,52v37,-8,90,-2,91,42","w":135,"k":[19]},"6":{"d":"136,-48v-6,45,-76,68,-114,48v-32,-57,22,-137,45,-167v11,-15,22,-29,38,-36v7,0,10,3,9,10v-37,34,-76,82,-87,143v13,-11,38,-32,68,-32v24,0,43,18,41,34xm106,-26v25,-20,16,-41,-11,-42v-27,-1,-52,19,-65,38v2,34,51,24,76,4","w":145,"k":[-10]},"7":{"d":"4,-203v39,-1,100,-16,103,31v-11,66,-56,107,-66,173v10,6,2,13,-7,11v-25,-47,36,-105,48,-153v4,-17,13,-24,9,-40v-21,-21,-76,3,-97,-11v-1,-7,2,-11,10,-11","w":99,"k":{"7":-33}},"8":{"d":"104,-194v-22,10,-56,27,-50,61v5,11,11,18,17,22v27,-20,58,-34,26,-56v11,-13,28,-3,30,15v3,24,-27,41,-43,53v-1,15,17,22,16,43v-1,36,-17,51,-46,62v-44,3,-65,-36,-41,-64v13,-17,28,-27,47,-45v-54,-45,2,-98,47,-110v9,0,22,5,16,18v-5,7,-15,6,-19,1xm36,-9v47,6,63,-53,34,-79v-24,23,-47,32,-53,62v4,7,10,12,19,17","w":121,"k":{"%":-15}},"9":{"d":"44,4v25,-55,66,-93,80,-160v-7,12,-16,23,-29,31v-1,5,-6,10,-15,13v-19,23,-70,18,-76,-13v-9,-46,70,-127,125,-86v34,88,-40,146,-73,218v-4,8,-13,5,-12,-3xm28,-114v46,1,77,-30,85,-72v7,0,11,1,12,2v-2,-19,-22,-28,-43,-20v-31,12,-68,41,-64,82v3,2,6,4,10,8","w":136,"k":{"9":-41,"7":-22}},":":{"d":"5,-117v5,-15,-2,-22,19,-18v0,16,-6,14,-19,18xm17,-44v-9,6,-15,-1,-14,-16v13,1,18,6,14,16","w":43},";":{"d":"53,-109v0,10,-15,10,-17,1v0,-1,1,-5,2,-12v5,0,13,4,15,11xm48,-33v-3,17,-24,21,-32,39v-5,0,-9,6,-14,0v12,-13,23,-27,31,-43v4,-5,16,-4,15,4","w":79},"<":{"d":"140,-125v-15,-4,-33,3,-50,3v-28,0,-51,3,-71,13v29,28,70,47,118,69v14,7,13,12,-3,17v-25,-11,-47,-25,-73,-35v-14,-12,-50,-31,-62,-48v-3,-25,29,-20,42,-29v18,-4,50,-6,76,-7v21,-1,29,5,23,17","w":152},"=":{"d":"15,-109v33,10,60,-9,88,2r2,9v-24,-4,-66,7,-87,6v-8,1,-12,-14,-3,-17xm28,-57v-6,0,-7,-6,-7,-12v26,-11,54,-15,89,-11v2,13,-13,10,-24,12v-16,3,-37,9,-58,11","w":129},">":{"d":"157,-107v-29,34,-83,65,-121,84v-14,-5,-15,-11,-3,-17v37,-19,83,-44,105,-70v-30,-18,-78,-12,-110,-21v0,0,-1,-1,-2,-4v5,1,13,-11,38,-8v39,5,60,7,86,19v4,3,7,9,7,17","w":180},"?":{"d":"2,-196v29,-32,123,-34,139,10v-18,47,-84,62,-116,102v1,13,29,4,39,16v-23,0,-56,6,-52,-22v32,-37,88,-53,117,-94v-12,-34,-97,-26,-117,-5v-2,-1,-5,-3,-10,-7xm45,-10v4,12,-20,24,-25,9v1,-11,14,-6,25,-9","w":131},"@":{"d":"255,30v-51,36,-152,35,-209,6v-16,-18,-46,-37,-43,-68v5,-61,34,-105,87,-140v76,-9,133,54,88,124v-16,26,-32,52,-62,60v-9,2,-18,-16,-23,-15v-17,11,-44,11,-41,-18v4,-35,28,-44,53,-70v6,-12,47,-14,47,7v0,9,-18,50,-34,58v2,7,-5,14,0,19v32,-18,82,-79,54,-119v-14,-20,-38,-29,-67,-32v-32,16,-35,21,-64,62v-16,22,-33,85,3,104v30,49,137,42,194,22r17,0xm96,-23v5,-27,31,-33,38,-55v-19,-11,-37,18,-49,28v-12,10,-15,21,-14,38v11,0,18,-6,25,-11","w":191},"A":{"d":"-6,3v-5,-27,21,-54,30,-76v-14,-2,-17,-18,0,-21v22,11,26,-25,43,-38v11,-21,27,-37,34,-63v4,-6,11,-17,23,-9v6,32,-7,63,-2,93v10,-1,23,-5,29,3v-4,14,-29,3,-28,22v4,36,11,51,27,83v0,2,-3,5,-8,8v-19,-16,-32,-55,-37,-93v-13,2,-38,12,-62,16v-15,12,-22,29,-30,51v2,-2,7,-7,14,-12v-8,15,-7,38,-33,36xm104,-107v-2,-12,1,-38,0,-54v-11,14,-27,37,-47,68v9,-5,35,-5,47,-14","k":{"y":15,"w":10,"v":8,"r":-13,"i":-13,"h":-13,"g":-13,"d":-13,"Y":21,"W":8,"T":5,"R":-17}},"B":{"d":"58,-104v41,-4,87,28,57,62v-17,33,-80,68,-116,37v-3,-3,-5,-6,-4,-10v3,-2,6,1,10,0v3,-16,9,-39,17,-68v3,-1,-8,-11,-7,-12v13,-8,21,-36,21,-51v8,-8,3,-36,22,-33v9,18,-9,41,-13,64v29,-14,51,-30,66,-46v3,-2,5,-5,5,-10v-18,-22,-83,9,-97,-19v15,-15,45,-2,71,-4v33,-3,58,23,31,43v-5,10,-42,35,-63,47xm23,-7v46,-2,75,-28,86,-57v-11,-26,-38,-24,-68,-21r2,2v-11,10,-19,52,-20,76","w":147,"k":{"Y":28,"A":33}},"C":{"d":"150,-26v-26,18,-49,37,-95,36v-51,-1,-64,-58,-40,-101v26,-49,62,-116,114,-127v10,-2,21,8,12,17r-12,0v-58,28,-91,91,-108,153v-2,70,84,43,122,22r7,0","w":153,"k":{"y":13}},"D":{"d":"66,-181v55,7,131,38,98,99v-24,44,-97,96,-176,87v-1,-1,-2,-3,-1,-6v6,1,15,-1,26,-4v-7,-43,15,-97,24,-139v-2,0,12,-27,-1,-25v-10,-12,-17,-17,-3,-21v16,2,31,-17,33,9xm60,-161v-14,46,-23,95,-34,145v2,15,20,3,36,-2v41,-15,91,-51,96,-92v-4,-33,-55,-48,-98,-51","w":180,"k":{"u":17,"o":8,"e":22,"Y":39,"T":22,"S":35,".":69,",":73}},"E":{"d":"174,-193v-11,5,-75,8,-94,17v-12,19,-30,38,-38,64v41,-5,32,-8,92,-29r15,1v-36,29,-64,35,-114,51v-10,24,-17,41,-13,63v6,30,34,20,54,6v10,-7,10,-8,37,-28v-10,46,-94,82,-108,27v-8,-33,4,-43,10,-68v-5,-2,-7,-6,-7,-12v2,-4,12,-5,14,-7v9,-26,18,-43,34,-66v-7,-2,-13,-1,-15,-11v0,-6,6,-8,19,-8v42,0,72,-13,111,-5","w":142,"k":{"y":35,"x":48,"w":26,"v":30,"u":17,"o":22,"e":13,"Q":26,"O":22,"A":10,"'":-18}},"F":{"d":"182,-208v-35,-2,-73,11,-105,16r-32,99v29,1,65,-18,94,-7v-1,6,-2,4,-8,6r-89,20v-11,24,-15,47,-12,61r9,-3v0,11,-13,26,-23,15v-9,-16,2,-44,6,-68v-13,1,-28,-13,-10,-18v22,5,15,-16,23,-26v6,-29,30,-69,20,-96r123,-13v4,4,11,8,4,14","w":141,"k":{"y":32,"u":35,"r":35,"o":46,"l":18,"i":17,"e":35,"a":43,"Q":48,"O":39,"J":30,".":78,",":96}},"G":{"d":"-20,-30v0,-61,54,-121,96,-164v16,-16,31,-24,47,-26v0,2,15,3,13,9v3,17,-22,4,-29,13v-47,32,-94,101,-109,164v0,15,8,28,25,28v24,0,58,-21,80,-44v0,-5,11,-30,4,-38v-21,-3,-35,29,-50,12v9,-21,70,-47,70,-7v0,34,-27,66,-23,98v-7,7,-18,0,-17,-10v2,-11,3,-24,8,-33v-30,25,-50,36,-82,35v-22,-11,-33,-23,-33,-37","w":128,"k":{"a":-13}},"H":{"d":"174,-206v-25,50,-69,134,-58,202v5,0,9,0,8,5v-1,3,-8,4,-12,6v-29,-22,-14,-75,-3,-106v-28,3,-54,16,-80,19v-8,26,-28,58,-17,84v-12,7,-19,-5,-18,-17v-2,-19,20,-62,16,-72v-11,-3,-15,-16,-3,-16v20,0,11,-18,26,-43r12,-56v5,-10,30,0,18,8v-8,33,-18,59,-27,92v13,-1,39,-6,78,-14v15,-22,19,-63,41,-94v2,-16,16,-6,19,2","w":144},"I":{"d":"78,-191v14,16,-9,33,-15,52v-11,37,-21,86,-28,124v-1,9,5,14,5,24v-25,-3,-20,-30,-15,-62v7,-43,18,-98,41,-134v2,-2,6,-4,12,-4","w":77},"J":{"d":"56,-207v1,-9,12,-11,19,-4v-1,103,-29,203,-90,256v-25,10,-26,16,-42,11r1,-3v28,-6,52,-34,63,-58v27,-32,44,-120,49,-202","w":78,"k":{"o":13,"X":43,"U":14,"S":43,"Q":57,"K":8,"J":22,"B":39,"A":60}},"K":{"d":"130,-26v-46,9,-71,-25,-93,-52v-8,27,-19,53,-21,96v-4,7,-9,6,-15,0r50,-229v-2,-6,10,-11,16,-6v8,22,-20,62,-18,87v54,-29,49,-36,106,-66v7,0,15,15,2,20v-35,13,-75,45,-103,65v-14,34,21,52,39,68v13,12,23,10,37,17","w":153,"k":{"y":49,"w":18,"v":24,"o":14,"j":53,"e":13,"a":13,"Y":18,"A":30}},"L":{"d":"26,-47v1,8,-8,37,2,43v24,1,76,-29,91,-13v-28,15,-48,16,-78,29v-10,0,-22,2,-24,-6v-9,-1,-12,-10,-11,-24v2,-55,30,-112,39,-161v2,-13,13,-33,26,-13r-14,45v-15,23,-20,71,-31,100","w":108,"k":{"Y":13,"V":39,"T":36,"O":18}},"M":{"d":"167,2v-5,-6,-12,-2,-13,-11v6,-36,22,-94,48,-175v-15,3,-26,25,-41,36v-28,21,-46,48,-77,67v-36,-2,-23,-54,-28,-88r-53,178v-4,4,-10,0,-17,-2r67,-218v21,-13,20,12,25,28v-1,14,-7,74,4,85v44,-31,83,-80,126,-111v15,-10,18,8,14,20r-46,163v4,12,-1,16,-9,28","w":213,"k":{"i":-15,"e":-20,"a":-15,"M":-21,"A":20}},"N":{"d":"85,-193v3,59,10,134,32,168v22,-59,40,-130,72,-177v7,-5,11,-6,13,1v-34,61,-45,135,-80,204v-2,-1,-7,-3,-12,-5v-26,-29,-35,-103,-43,-160v-8,21,-21,81,-34,112v2,20,-17,43,-15,66v-6,14,-26,5,-17,-7v10,-45,51,-166,63,-207v9,-7,17,1,21,5","w":173},"O":{"d":"20,-124v19,-29,62,-94,119,-75v63,63,-22,152,-55,181v-37,33,-95,23,-97,-26v0,-21,12,-48,33,-80xm79,-35v39,-35,79,-84,56,-141v-4,-3,-10,-12,-16,-8v0,6,-5,4,-7,1v-9,-2,-24,14,-33,15v-42,43,-72,84,-72,123v0,48,45,34,72,10","w":166,"k":{"Y":21,"O":9,"N":10,".":58,",":68}},"P":{"d":"10,-184v-1,-12,31,-12,41,-17v43,-15,102,-14,115,19v-24,54,-72,69,-127,101v-3,13,-18,44,-12,67v0,15,-15,35,-25,15v0,-27,13,-46,11,-71v0,0,-4,1,-12,4v-4,-18,10,-13,21,-23v2,-22,19,-42,17,-65v6,-7,10,-16,11,-30v-7,2,-38,19,-40,0xm147,-181v-12,-18,-52,-15,-74,-7r-29,89v22,-9,43,-29,68,-38v6,-11,32,-28,35,-44","w":141,"k":{"y":45,"u":62,"s":84,"r":26,"o":69,"l":22,"j":17,"i":8,"e":33,"a":51,"Q":30,"A":49,".":83,",":95}},"Q":{"d":"222,12v-44,22,-62,-32,-91,-43v-19,17,-36,45,-75,38r1,-4v-22,-2,-36,-15,-42,-39v-12,2,-17,31,-36,17v4,-21,21,-28,36,-38v14,-65,48,-115,105,-138v23,-10,69,11,42,25v18,41,3,101,-19,126v21,15,45,54,79,56xm126,-172v-25,0,-28,21,-41,39v-4,0,-7,-3,-8,-8v-24,23,-31,43,-40,72v34,-8,68,0,92,15v15,-22,25,-49,24,-72v-1,-20,-4,-46,-27,-46xm33,-40v11,45,54,42,84,0v-18,-11,-31,-14,-53,-14v-20,0,-31,4,-31,14","w":182,"k":{"y":39,"u":26,"o":30,"e":17,"a":17}},"R":{"d":"54,-210v32,20,111,15,109,64v-25,33,-61,58,-110,74v-3,0,-4,2,-4,4v31,22,55,67,114,63v-56,32,-88,-37,-133,-51v1,3,-11,44,-1,21v2,-3,5,-5,9,-5v-2,19,-9,35,-22,47v-25,-8,-2,-47,-3,-66r-26,0v1,-5,-8,-7,-8,-10v3,-13,25,-9,40,-12v8,-42,19,-58,31,-111v-11,-3,-5,-17,4,-18xm60,-154v-9,14,-15,54,-24,70v39,-12,78,-28,105,-61v10,-32,-43,-27,-69,-36v-9,1,-11,18,-12,27","w":146,"k":{"y":32,"u":22,"e":17,"a":13,"T":19,"A":24}},"S":{"d":"25,-136v0,-43,36,-73,80,-78v28,-3,24,15,9,24v-24,-13,-58,14,-63,35v-38,43,62,62,61,100v-10,36,-43,41,-78,59v-19,0,-47,5,-50,-11v6,-4,11,1,18,1v27,1,55,-11,85,-36v33,-27,-37,-51,-46,-66v-11,-6,-16,-15,-16,-28","w":123},"T":{"d":"4,-196v-5,-6,-10,-18,2,-19v5,0,11,4,19,11v23,-1,47,11,47,-18v0,-7,4,-11,12,-12v10,5,6,25,22,22r130,-27v11,-2,27,13,13,18v-48,-11,-103,20,-157,29v-6,0,-8,14,-10,15v-13,61,-27,121,-42,178v-7,8,-10,2,-15,-5r40,-175v-2,-4,-1,-7,-1,-9v-22,3,-49,4,-60,-8","w":202,"k":{"}":118,"|":63,"{":104,"z":123,"y":113,"x":142,"w":132,"v":129,"u":131,"t":118,"s":131,"r":112,"q":127,"p":129,"o":114,"n":134,"m":115,"l":87,"k":115,"j":140,"i":107,"h":103,"g":115,"f":112,"e":130,"d":118,"c":126,"b":118,"a":105,"_":115,"]":46,"[":71,"Z":127,"Y":86,"X":116,"W":115,"V":114,"U":78,"T":52,"S":117,"R":85,"Q":116,"P":122,"O":100,"N":82,"M":86,"L":98,"K":87,"J":73,"I":86,"H":82,"G":118,"F":93,"E":107,"D":96,"C":115,"B":123,"A":135,"@":126,"?":41,">":112,"=":85,"<":109,";":131,":":125,"9":115,"8":136,"7":87,"6":129,"5":109,"4":107,"3":107,"2":101,"1":82,"0":120,"\/":79,".":107,"-":107,",":142,")":57,"(":63,"&":96,"%":82,"$":85,"#":87,"!":22}},"U":{"d":"157,-214v9,7,-2,21,-3,30v2,13,-52,127,-34,152v0,3,-8,35,-21,22v0,0,-1,1,-4,1v0,-17,2,-38,7,-64v-12,16,-22,38,-36,51v-13,23,-28,35,-45,37v-44,-18,-22,-71,-6,-116r36,-100v5,-16,24,-13,23,7v-19,22,-30,60,-39,93r-3,2v-10,39,-15,65,-15,80v0,10,2,25,11,16v48,-46,91,-118,114,-207v6,-4,11,-6,15,-4","w":150,"k":{"A":18,".":18,",":36}},"V":{"d":"149,-199v15,-6,19,8,10,21v-25,63,-56,138,-106,188v-24,4,-20,-30,-28,-42v-6,-28,-9,-120,-14,-148v-1,-9,10,-7,15,-6v20,48,-3,126,25,176v40,-43,71,-122,98,-189","w":151,"k":{"y":23,"u":18,"o":17,"i":15,"e":-9,"a":13,"M":10,";":46,":":11,".":41,",":58}},"W":{"d":"23,-154v12,43,-2,98,14,139v17,-30,34,-60,48,-92v4,-9,17,-36,19,-45v27,-7,18,35,21,59v2,4,12,57,21,63v1,-2,7,-17,18,-46v19,-48,38,-90,57,-128r11,1v-33,50,-47,126,-77,190v-17,11,-21,-2,-32,-27v-10,-22,-14,-59,-17,-89v-19,32,-38,96,-62,129r-14,3v-27,-37,-8,-105,-24,-164v7,-2,17,-7,17,7","w":216,"k":{"y":13,"x":35,"v":23,"r":15,"o":14,"e":14,"a":13,"O":19,"B":17,"A":27,":":17,",":55}},"X":{"d":"66,-88v14,18,53,58,71,90v-14,3,-20,-18,-31,-24r-53,-54v-20,21,-42,44,-66,82v-2,10,-16,12,-18,3v21,-35,47,-65,76,-99v-17,-28,-35,-64,-30,-92v4,-7,22,-9,18,7v0,27,8,48,24,70v24,-17,41,-59,71,-74v11,3,6,8,-1,16v-17,21,-32,44,-60,69","k":{"u":-13,"o":-8,"i":-13}},"Y":{"d":"98,-115v-11,18,-26,26,-25,48v-33,16,-52,70,-96,82v25,-32,54,-52,78,-91r-16,-38r4,-1v-8,-23,-10,-59,-14,-88v0,-5,13,-17,17,-4v4,20,2,99,19,115v20,-27,43,-65,58,-109v8,-4,15,-5,15,5","w":127,"k":{"z":50,"y":40,"x":70,"w":37,"v":37,"u":35,"t":40,"s":33,"r":35,"q":50,"p":54,"o":50,"n":42,"m":35,"l":24,"k":35,"j":33,"i":32,"h":26,"g":40,"f":11,"e":46,"d":40,"c":40,"b":31,"a":37,"Z":35,"U":18,"S":28,"R":28,"Q":28,"P":10,"O":23,"N":36,"M":24,"L":32,"K":22,"J":35,"I":39,"H":21,"G":21,"F":39,"E":24,"D":32,"C":24,"B":24,"A":53,"@":41,";":48,"8":40,"6":35,"3":35,"2":29,"1":6,"0":35,".":58,",":71,"&":46,"%":11}},"Z":{"d":"182,-148v-68,-14,-108,12,-184,13v-10,-30,40,-19,75,-26v60,-12,100,-18,127,7v-7,21,-14,25,-34,41v-30,24,-86,58,-138,88v-5,3,-24,14,-7,14v47,-4,110,-26,165,-23v6,0,4,8,2,12r-174,29v-10,0,-18,-3,-26,-10v0,-14,14,-19,22,-27r109,-66v33,-24,43,-29,63,-52","w":194},"[":{"d":"-3,57v16,-111,56,-199,79,-303v16,-8,43,-4,69,-6v4,3,12,13,2,14r-49,5v-16,4,-36,86,-46,128r-39,158v17,0,37,5,51,0v7,17,-11,17,-36,18v-14,1,-34,5,-31,-14","w":102},"\\":{"d":"242,-108v-18,73,-93,89,-157,115v-19,7,-47,0,-47,-22v0,-35,14,-63,39,-81v-27,15,-62,36,-54,81v4,21,22,27,46,31v1,6,11,-1,18,6v-44,4,-79,-10,-75,-50v8,-81,94,-107,178,-107v34,0,51,9,52,27xm230,-100v7,-21,-19,-24,-40,-24v18,4,36,10,40,24xm69,-18v54,-12,123,-32,152,-73v0,-14,-19,-22,-58,-23v7,1,12,16,2,17v-39,-23,-127,23,-111,77v3,2,9,3,15,2xm54,-6v19,11,48,-6,66,-12v-20,6,-38,17,-66,12","w":249},"]":{"d":"110,-247v-6,110,-58,211,-79,311v-14,9,-39,2,-64,5v-4,-4,-11,-8,-4,-14v17,-3,40,-1,53,-6r41,-125r40,-157v-15,-1,-33,-7,-47,-1v-2,-2,-3,-3,-4,-5v3,-14,50,-18,64,-8","w":115},"^":{"d":"50,-154v-5,-37,34,-89,58,-110v34,-11,28,49,42,70v-2,30,8,49,6,73v-7,10,-14,12,-16,-3v-3,-41,-9,-97,-24,-124v-31,20,-35,66,-63,91v2,3,2,3,-3,3","w":180},"_":{"d":"131,-1v-28,0,-93,5,-114,11v-5,-1,-9,-3,-13,-7v1,-8,16,-8,20,-9v20,-5,72,-10,106,-5v3,3,4,6,1,10","w":131},"`":{"d":"4,-222v13,-3,15,29,12,47v-13,-2,-10,-31,-12,-47","w":19,"k":{"S":25}},"a":{"d":"80,-15v1,16,-7,11,-17,19v-10,2,-21,-15,-21,-27v-13,19,-19,33,-41,32v-7,-5,-10,-12,-10,-22v1,-56,20,-72,55,-100v21,-2,15,25,4,35v-1,2,-4,3,-9,5v4,-8,6,-18,10,-27v-26,21,-63,70,-43,97v34,-18,38,-46,54,-96v2,-6,12,-7,11,2v-7,37,-29,66,-10,90v0,0,15,-9,17,-8","w":78,"k":{"y":-4,"x":13,"v":9,"t":5,"r":-3,"p":10,"n":8,"m":-17,"l":-8,"k":7,"i":-8,"f":3,"-":9}},"b":{"d":"75,-93v-5,1,-7,-3,-2,-3v1,0,2,1,2,3xm-7,-15v45,31,106,-41,87,-88v-37,3,-41,57,-67,75v-9,2,-10,-7,-8,-14v18,-53,33,-95,40,-125v4,-5,8,-3,12,1v-6,37,-17,60,-29,95v6,-9,13,-23,21,-28v10,-25,49,-26,47,8v-2,46,-27,96,-81,96v-13,0,-20,-6,-22,-20","w":95,"k":{"x":26,"u":8,"p":8,"j":26,"h":-22,"f":-1,"e":-4,"b":18}},"c":{"d":"81,-26v-5,23,-38,37,-63,26v-32,-29,5,-103,29,-110v10,-1,22,14,11,19v-23,-4,-40,36,-39,70v12,28,33,1,62,-5","w":77,"k":{"x":17,"p":8,"l":-4,"j":13,"h":-13}},"d":{"d":"85,-1v-13,-2,-19,-11,-25,-23v-11,15,-21,37,-41,37v-20,0,-21,-21,-18,-41v4,-26,35,-123,64,-68v6,-17,7,-57,25,-74v4,0,7,2,9,6v4,40,-18,84,-26,122v-4,20,13,38,27,19v6,-8,8,-11,19,-17v1,19,-18,38,-34,39xm46,-97v-16,17,-35,60,-31,95v24,3,47,-41,47,-79v-8,-3,-9,-12,-16,-16","w":109,"k":{"x":17,"v":8,"u":13,"t":15,"p":13,"o":20,"j":22,"i":-10,"g":15,"e":6,"d":6,"a":-1}},"e":{"d":"82,-24v-13,35,-83,54,-83,0v9,-39,24,-77,62,-91v11,-4,15,9,12,20v-4,13,-23,43,-54,52v-17,11,-8,45,15,40v19,-4,27,-12,48,-21xm24,-59v16,-8,29,-24,36,-37r-3,-3v-12,8,-24,21,-33,40","w":84,"k":{"y":13,"x":26,"v":13,"u":4,"t":19,"s":17,"r":12,"p":12,"o":13,"n":21,"l":5,"k":8,"j":17,"i":8,"e":8,"c":13,"a":3,")":10}},"f":{"d":"-10,45v-27,-7,5,-68,4,-82r17,-65v-12,7,-26,-10,-11,-14v5,0,20,1,18,-9v10,-16,24,-93,53,-98v12,-2,14,23,7,31v8,10,-7,38,-17,21v1,-6,9,-21,7,-33v-14,22,-28,56,-36,82v11,-2,22,-8,31,0r1,7v-9,1,-21,4,-38,10r-32,127v9,5,1,19,-4,23","w":62,"k":{"y":20,"x":30,"u":26,"t":17,"r":13,"q":13,"o":19,"n":13,"l":11,"k":14,"j":18,"i":14,"f":13,"e":16,"b":14}},"g":{"d":"72,-67v-33,55,-33,190,-98,191r-8,-8v23,2,29,-14,37,-28v15,-27,23,-56,28,-85v-31,10,-51,-27,-39,-56v14,-35,24,-51,59,-58v26,-5,21,20,21,44xm59,-94v-30,-12,-79,57,-41,86v25,0,24,-43,38,-61v0,-1,-1,-2,-5,-4v9,-3,8,-10,8,-21","w":76,"k":{"y":17,"x":30,"t":17,"s":7,"p":8,"o":3,"n":13,"k":26,"j":27,"i":1,"e":1,"a":-1,"\/":-8}},"h":{"d":"53,-177v-12,52,-34,94,-48,145v22,-27,47,-65,76,-81v26,-7,20,25,15,44v-13,51,-11,40,-16,79v-28,-26,7,-72,5,-108v-35,18,-59,70,-87,100v-9,5,-12,-4,-11,-12v10,-59,35,-114,52,-168v5,-4,9,-4,14,1","w":98,"k":{"x":22,"u":10,"f":-17,"a":-8}},"i":{"d":"44,-138v-16,3,-23,-8,-14,-15v12,-4,24,3,14,15xm54,-41v-9,29,-20,43,-45,50v-32,-17,-9,-93,6,-122v4,-8,20,1,15,9v-12,23,-28,66,-18,100v14,-8,31,-25,42,-37","w":54,"k":{"x":21,"v":11,"t":21,"s":3,"r":3,"q":5,"p":21,"o":-3,"n":15,"l":14,"k":9,"j":14,"g":10}},"j":{"d":"47,-194v19,0,12,15,6,27v-5,-4,-18,-16,-6,-27xm42,-90v-12,61,-28,137,-48,193v-3,8,-14,14,-15,3v19,-52,40,-144,48,-219v0,-7,10,-6,16,0v2,8,-3,18,5,23r-6,0","w":59,"k":{"x":17,"t":4,"o":-3,"k":28,"h":-13}},"k":{"d":"89,-97v-48,3,-78,67,-23,85v2,4,11,12,21,13v1,3,-1,5,-5,8v-29,-9,-53,-20,-60,-49v-3,16,-12,28,-10,46v0,6,-4,9,-11,9v-5,-9,-4,-14,-1,-27v5,-21,42,-150,49,-186v16,-4,12,7,8,23r-24,93v6,-7,52,-42,56,-15","w":91,"k":{"z":-22,"y":17,"x":22,"u":4,"t":19,"r":3,"o":8,"n":13,"k":15,"j":22,"e":14}},"l":{"d":"68,-208v-18,56,-55,130,-50,204v9,-2,13,-13,26,-11v-5,16,-30,33,-40,14v-3,-4,-3,-18,-3,-27v14,-63,23,-133,53,-180v4,-6,10,-5,14,0","w":52,"k":{"y":12,"x":34,"w":22,"v":15,"u":14,"t":22,"s":13,"r":4,"q":4,"p":22,"o":10,"n":17,"l":9,"k":23,"j":22,"i":3,"g":11,"f":-5,"e":9,"d":13,"c":13,"b":19,"a":-3}},"m":{"d":"-6,2v-1,-29,31,-81,17,-107v10,-8,21,3,20,16v-2,16,-12,37,-11,57v12,-15,49,-62,73,-76v15,5,9,23,10,40v-2,8,-10,27,-11,44v24,-25,51,-74,82,-87v23,5,-9,60,-6,67v-5,26,-8,44,-7,53v7,5,3,9,-7,12v-23,-28,7,-87,12,-113v-27,28,-45,52,-73,86v-8,6,-14,9,-18,9v-1,-30,14,-56,11,-89v-31,24,-54,74,-87,90v-2,0,-4,-1,-5,-2","w":189,"k":{"y":8,"x":39,"w":26,"v":17,"u":6,"t":17,"p":26,"o":13,"j":26,"e":11}},"n":{"d":"23,-28v21,-31,35,-52,61,-69v31,14,-17,76,10,103v-36,3,-18,-55,-14,-83v-25,11,-39,76,-74,76v-12,-25,18,-68,17,-99v6,-8,17,1,15,8","w":105,"k":{"y":8,"x":30,"w":8,"u":10,"t":13,"m":-17,"l":-13,"k":6,"j":17,"h":-13,"g":-3,"f":-8,"e":3,"d":1,"a":-4}},"o":{"d":"53,-108v45,-4,32,63,16,85v-10,22,-67,58,-77,7v6,-32,18,-68,48,-80v2,0,12,-5,13,-12xm48,-92v13,10,-6,45,-10,16v-17,15,-35,40,-30,68v2,3,5,4,11,5v29,-9,58,-39,52,-84v-1,-14,-14,-10,-23,-5","w":88,"k":{"y":8,"x":26,"u":8,"t":8,"s":-5,"p":13,"o":9,"n":12,"k":15,"j":22,"g":-4,"f":-8,"d":-2,"c":8,"b":20}},"p":{"d":"10,-8v20,-18,-1,-77,34,-61r-14,60v31,-13,60,-32,71,-68v-10,-36,-75,-14,-81,11v-10,-37,17,-37,41,-48v17,0,33,4,46,13v29,39,-12,62,-31,80v-17,16,-32,19,-48,26v-14,38,-18,75,-36,122r-7,0v-14,-5,7,-30,3,-43v9,-26,22,-56,22,-92","w":117,"k":{"y":8,"x":39,"u":8,"s":-4,"p":13,"o":5,"n":8,"g":13}},"q":{"d":"-10,-20v10,-47,45,-81,84,-79v10,0,15,8,16,23v22,31,-26,60,-33,85v-5,9,-10,22,-15,39v9,4,28,-3,29,9v-8,3,-19,5,-33,5v-6,13,-13,40,-17,68v-1,4,-4,6,-9,5v-4,-28,7,-48,11,-73v-14,0,-52,7,-46,-12v10,-9,38,3,52,-2v5,-16,5,-16,16,-47v-19,11,-62,8,-55,-21xm4,-18v10,27,55,3,64,-22v6,-9,16,-38,1,-44v-30,7,-57,27,-65,66","w":101,"k":{"y":26,"x":30,"u":7,"t":13,"p":17,"o":7,"n":8,"c":13,"a":-13}},"r":{"d":"23,-105v21,-4,8,14,7,27v14,-16,28,-40,52,-43v18,2,20,11,14,34r-5,1v-1,-2,-2,-21,-5,-24v-39,16,-59,51,-74,95v4,18,-11,29,-18,17v2,-12,18,-54,24,-102v0,-3,1,-4,5,-5","w":86,"k":{"z":22,"y":26,"x":35,"u":17,"t":30,"q":22,"p":17,"o":19,"n":8,"m":12,"l":-8,"k":19,"i":11,"g":13,"e":23,"d":14,"a":2,".":35,",":57}},"s":{"d":"66,-27v-1,20,-34,36,-51,34v-11,2,-30,-13,-17,-23v2,1,7,16,14,13v22,-5,32,-8,39,-21v-1,-16,-77,-28,-38,-54v22,-15,24,-17,54,-30v8,3,9,1,11,7v-14,15,-53,19,-63,40v15,8,46,17,51,34","w":80,"k":{"y":8,"x":22,"t":13,"p":17,"k":18,"e":8,"c":8}},"t":{"d":"6,-90v6,-9,23,-16,39,-17v12,-22,19,-43,24,-63v4,-7,10,-3,14,3v-1,17,-7,36,-19,58v12,3,29,0,28,16v-7,0,-28,-2,-36,0v-15,30,-23,56,-22,76v2,27,32,-2,47,-1v-5,14,-19,24,-39,27v-42,-10,-15,-70,-4,-99v-8,0,-15,4,-21,12v-5,0,-8,-4,-11,-12","w":90,"k":{"y":21,"x":26,"w":8,"u":8,"t":21,"s":8,"r":18,"q":4,"p":17,"o":9,"n":6,"l":17,"k":17,"j":13,"e":11,"b":8,"a":14}},"u":{"d":"114,-33v-3,19,-38,47,-48,18r-4,-10v-4,2,-34,40,-56,37v-22,-33,-1,-84,15,-115v4,-2,10,2,10,7v-9,23,-26,56,-20,93v43,-7,55,-71,77,-103v6,-5,9,2,9,8v-4,27,-32,51,-16,82v14,-5,18,-11,29,-20","w":112,"k":{"y":17,"x":35,"w":5,"u":13,"t":26,"s":19,"q":13,"p":17,"n":21,"l":10,"k":17,"j":26,"f":4,"e":8,"c":17,"b":13}},"v":{"d":"73,-108v10,12,34,11,44,1r6,2v-9,13,-18,22,-43,19v-7,41,-29,79,-50,94v-20,15,-36,-14,-30,-40r9,-37v3,-13,8,-49,24,-33v-4,31,-31,68,-14,100v29,-26,52,-59,48,-104v2,-2,4,-2,6,-2","w":109,"k":{"z":13,"y":34,"x":52,"w":19,"v":32,"u":39,"t":20,"s":30,"r":16,"q":37,"p":42,"o":42,"n":34,"m":19,"l":15,"k":42,"j":42,"i":15,"g":32,"f":10,"e":31,"d":24,"c":35,"b":31,"a":32,".":48,",":63}},"w":{"d":"111,-28v17,-16,57,-83,80,-103r7,0v-15,31,-49,91,-79,114v-29,10,-36,-27,-39,-55v-16,22,-28,55,-51,75v-9,0,-20,1,-19,-8v0,-35,6,-71,11,-108v7,-10,18,1,17,11v0,17,-11,33,-5,47v-9,4,-6,22,-7,37v29,-29,28,-44,59,-90v20,-10,21,8,15,26v-3,26,-3,45,11,54","w":174,"k":{"x":42,"u":8,"r":-13,"q":8,"m":-13,"h":-10,".":21,",":45}},"x":{"d":"53,-105v28,3,-5,27,14,51v5,-4,17,-15,37,-34r12,2v-4,23,-30,28,-43,46v8,14,25,28,36,41v-22,1,-32,-19,-46,-31r-46,37v-17,-6,1,-18,9,-25v7,-5,18,-14,31,-26v-13,-32,-16,-36,-4,-61","w":111,"k":{"y":17,"x":30,"u":13,"t":17,"s":4,"q":8,"p":13,"n":13,"k":8,"j":22}},"y":{"d":"94,-96v-28,66,-48,167,-104,206v-1,1,-5,1,-11,2v22,-22,50,-74,60,-110v-18,-22,-39,-61,-33,-111v25,14,9,85,42,95v7,-15,16,-42,29,-83v10,-7,10,-5,17,1","w":91,"k":{"x":22,"t":19,"p":16,"m":-17,"l":-1,"k":25,"h":-13,"g":-13,"a":-13,",":38}},"z":{"d":"18,-80v44,-11,110,8,66,34r-69,41v13,4,48,-8,67,-2v-1,2,-2,3,-2,5v-32,4,-65,17,-84,0v19,-27,64,-30,88,-63v-21,-15,-46,5,-70,-6v-2,-5,-1,-7,4,-9","w":97,"k":{"t":17,"k":17,"j":8}},"{":{"d":"238,-249v-2,1,-3,2,-4,3v1,-1,1,-1,4,-3xm250,-254r1,0r-1,0xm242,-252r-4,3v1,-1,1,-1,4,-3xm247,-255r2,0r-2,0xm221,-232v-1,1,-3,3,-3,5xm207,-212r0,0r0,0xm207,-212r5,-7xm218,-226v-3,1,-4,5,-6,7v3,-4,3,-4,6,-7xm221,-230v-1,1,-1,1,-3,4v1,-1,2,-3,3,-4xm222,-231v0,0,-1,0,-1,1xm189,-273r0,2v2,-1,2,-2,0,-2xm196,-244v-1,0,-1,0,1,1xm251,-250v4,1,4,19,4,5v-1,-1,-2,-3,-4,-5xm210,-211v-1,0,-1,0,-1,1xm247,-252r1,0r-1,0xm249,-252r0,0r0,0xm251,-250v-1,-3,-2,-7,-3,-2xm255,-238v0,1,-1,4,-1,6v1,-2,1,-4,1,-6xm199,-241r-1,-2xm202,-242v-9,-1,-5,-26,-14,-29r-12,25r13,-24v8,14,9,38,14,55v1,3,3,4,6,4v-9,-6,-10,-24,-11,-32r0,3v3,0,4,-1,4,-2xm247,-252v-7,1,-25,24,-37,42v10,-13,23,-36,37,-42xm298,-216v-12,0,-26,4,-40,10v13,-4,27,-10,40,-10xm300,-202v1,0,10,-13,2,-14v7,2,-1,12,-2,14xm301,-216r1,0r-1,0xm300,-202r-5,9v0,-1,2,-4,5,-9xm115,-282v-2,5,-5,16,-12,32v4,-8,8,-19,12,-32xm106,55v28,-2,37,-29,65,-32v3,11,13,60,31,35v4,-2,12,-25,18,-19v11,10,18,42,37,29v2,-8,0,-20,4,-25v19,-5,30,19,44,5v2,-12,-4,-27,-6,-40v19,-6,30,15,41,1r-12,-53v10,1,27,10,36,15v6,2,8,-10,6,-12v-7,-18,-18,-31,-29,-47v13,-13,49,-19,38,-43v-13,-8,-30,-9,-45,-17v3,-16,22,-33,5,-45v-15,2,-32,0,-40,10v8,-5,28,-5,39,-1v2,11,-22,40,-9,45v13,2,35,11,45,16v0,2,2,5,0,5v-4,-5,-9,6,-18,9v3,-1,4,-2,5,-2r-30,19v9,24,23,31,32,55v-11,-4,-37,-29,-46,-10v2,11,9,30,12,50v-8,-5,-43,-14,-39,7r6,33v-21,-12,-51,-18,-48,20v-11,-12,-16,-36,-34,-36v-6,6,-13,16,-21,30v-14,-11,-5,-60,-37,-39r-44,28r22,-47v-16,-12,-37,9,-57,8v9,-15,20,-22,26,-43v-8,-12,-35,-5,-54,-9v2,0,30,-18,11,-26v-16,-7,-31,-16,-49,-20v16,-4,29,-11,47,-14v5,-23,-21,-37,-36,-52r43,-4v10,-24,-4,-48,-10,-71r35,23v-13,-7,-23,-15,-34,-24v11,8,24,14,34,23v10,-3,10,-24,14,-34r-1,1v6,-12,12,-30,17,-42v12,19,15,54,25,80v4,2,6,0,8,-3r37,-66v-2,-1,-3,-1,-4,2r-37,64v-13,-18,-13,-61,-28,-80r-4,0r1,1v0,0,-1,-2,-1,0r-4,13v0,-6,4,-10,3,-13v-3,18,-21,50,-25,74v-8,-6,-23,-20,-38,-25v-9,10,9,37,10,52v-1,-2,-3,-10,-6,-25v4,11,6,28,8,45v-17,2,-38,0,-51,6v10,18,30,29,39,48v-18,6,-39,10,-53,19v9,17,43,15,60,31v-7,6,-37,19,-13,25r48,3v-1,7,-12,14,-10,20v-7,2,-12,14,-18,23v6,17,39,-3,56,-6v-5,17,-26,36,-17,52","w":382},"|":{"d":"35,-230v0,-9,10,-39,22,-22v3,22,-6,37,-9,67r-7,83v0,66,-12,141,6,195v0,6,-2,8,-6,7v-14,-10,-20,-41,-20,-73v0,-22,14,-190,14,-257","w":59},"}":{"d":"91,-114v21,-36,80,-7,71,41v-5,25,-45,34,-65,49v-1,9,-10,9,-13,12v-7,-33,-58,-25,-63,-66v-14,-30,12,-55,44,-52v11,1,21,5,26,16xm117,-123v-6,0,-11,1,-14,4v1,-1,6,-2,14,-4xm145,-58v5,-1,12,-16,11,-25v-1,11,-4,19,-11,25xm86,-103v-12,-17,-55,-12,-51,17v4,32,36,33,56,49v-1,3,-3,4,1,7v23,-12,80,-45,47,-80v-14,-14,-48,-2,-42,17v0,1,-3,4,-6,3v-1,-5,-7,-8,-5,-13xm85,-111r1,0r-1,0","w":183},"~":{"d":"24,-301v25,-23,42,8,47,34v2,4,3,4,4,7v11,-3,20,-29,30,-35v16,14,-15,39,-26,49v-25,1,-27,-79,-53,-35v0,2,-17,45,-17,17v0,-11,5,-23,15,-37","w":103},"\u00a0":{"w":83,"k":{"p":-28,"j":38,"d":13}}}});;
Cufon.registerFont({"w":240,"face":{"font-family":"Sniglet","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"3","bbox":"3.87794 -322.158 352 104.791","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":154},"\u00a0":{"w":154},"e":{"d":"201,-115v0,36,-36,48,-72,40v19,23,77,-2,68,50v-27,52,-149,32,-171,-12v-34,-68,2,-169,99,-153v43,7,76,28,76,75xm134,-105v1,-12,-16,-21,-25,-11v-9,10,-3,25,11,24v8,0,15,-5,14,-13","w":210},"f":{"d":"172,-131v7,63,7,132,-49,137v-69,6,-60,-69,-60,-137v-26,9,-51,1,-51,-26v-1,-26,26,-34,51,-28v-9,-77,69,-113,136,-80v18,9,18,51,-12,49v-18,-1,-24,12,-23,31v26,-6,52,-4,53,24v0,26,-19,34,-45,30","w":230},"g":{"d":"135,-3v-109,36,-162,-116,-75,-167v83,-48,179,10,179,113v0,110,-67,193,-174,146v-33,-15,-15,-74,30,-65v23,-1,38,-7,40,-27xm145,-78v1,-12,-16,-21,-25,-11v-9,10,-3,25,11,24v8,0,14,-5,14,-13","w":244},"h":{"d":"13,-95v0,-70,-15,-177,59,-177v50,0,60,48,59,102v95,-56,154,76,101,154v-24,35,-100,16,-94,-32v-3,-19,-2,-40,-12,-51v2,55,1,103,-54,102v-52,-1,-59,-48,-59,-98","w":263},"i":{"d":"53,-196v-43,-8,-36,-78,9,-77v45,-9,64,55,25,73v-9,5,-22,7,-34,4xm115,-165v25,48,30,170,-40,170v-79,0,-71,-127,-40,-173v17,-25,67,-21,80,3","w":140},"j":{"d":"113,-275v25,1,44,18,44,42v-1,26,-22,39,-48,39v-27,0,-45,-16,-45,-43v0,-25,22,-40,49,-38xm171,-39v0,-78,2,-170,-86,-140v-47,16,-29,105,-29,169v0,30,-9,49,-31,55v-22,18,-4,59,24,58v91,14,122,-56,122,-142","w":185},"k":{"d":"35,-251v36,-43,106,-5,95,56v17,-43,97,-41,98,12v0,28,-12,40,-28,58v41,19,85,112,12,129v-51,-2,-64,-41,-83,-82v2,48,-11,90,-58,83v-80,-13,-60,-164,-44,-240v1,-5,5,-11,8,-16","w":265},"l":{"d":"12,-116v0,-70,-6,-157,60,-157v69,0,58,103,58,179v0,51,-7,103,-61,99v-52,-4,-57,-63,-57,-121","w":141},"m":{"d":"177,6v-44,0,-56,-40,-61,-80v13,72,-89,114,-101,34v-12,-77,6,-147,81,-147v46,0,69,33,81,67v10,-62,119,-94,153,-28v23,44,26,154,-37,153v-42,-1,-54,-36,-55,-77v-6,39,-16,78,-61,78","w":357},"n":{"d":"185,-177v81,0,92,168,16,179v-60,9,-61,-45,-69,-93v-1,-5,-3,-8,-5,-8v3,55,-1,104,-54,102v-61,-2,-59,-69,-59,-133v0,-56,85,-78,112,-31v21,-11,41,-16,59,-16","w":257},"o":{"d":"113,-186v116,-6,117,172,22,189v-70,13,-127,-22,-127,-88v0,-69,38,-97,105,-101xm125,-84v0,-12,-17,-21,-25,-10v-8,10,-3,25,11,24v8,0,14,-5,14,-14","w":210},"p":{"d":"114,60v-21,56,-107,23,-101,-33v-14,-120,15,-214,149,-214v96,0,108,170,18,187v-23,4,-46,2,-65,-6v5,26,6,46,-1,66xm146,-84v0,-8,-6,-16,-14,-15v-7,0,-16,9,-14,15v0,11,5,13,14,14v8,0,14,-5,14,-14","w":246},"q":{"d":"230,-152v35,60,58,240,-35,240v-48,0,-53,-48,-50,-97v-97,54,-175,-79,-97,-156v42,-41,156,-33,182,13xm150,-84v1,-12,-16,-21,-25,-10v-8,10,-2,25,11,24v8,0,14,-5,14,-14","w":259},"r":{"d":"67,-194v27,0,41,13,47,33v19,-40,102,-33,97,19v5,46,-51,63,-84,37v9,56,-4,108,-57,108v-57,-1,-61,-59,-61,-114v0,-48,13,-83,58,-83","w":219},"s":{"d":"117,-192v51,-4,103,28,66,68v-16,9,-38,12,-64,10v41,5,76,19,78,60v3,77,-122,78,-169,45v-30,-38,13,-74,58,-71v-33,-9,-56,-20,-62,-52v5,-46,45,-56,93,-60","w":201},"t":{"d":"179,-116v5,56,5,117,-46,120v-62,4,-57,-65,-52,-122v-41,5,-72,-4,-73,-43v0,-36,31,-48,66,-49v-6,-39,11,-63,49,-63v38,0,53,26,52,64v39,-2,68,10,68,48v-1,36,-28,47,-64,45","w":249},"u":{"d":"74,-185v52,2,26,73,50,90v15,-3,9,-22,11,-43v-7,-51,62,-60,85,-29v32,76,-1,173,-93,173v-90,0,-127,-62,-108,-151v6,-28,23,-42,55,-40","w":244},"v":{"d":"122,-109v-3,-57,64,-106,104,-55v15,71,-32,135,-83,162v-77,16,-112,-54,-132,-118v-17,-56,54,-87,87,-45v12,14,20,33,24,56"},"w":{"d":"222,5v-38,0,-59,-19,-63,-52v1,51,-76,68,-105,31v-25,-33,-49,-95,-35,-147v9,-15,21,-26,42,-26v49,0,63,38,66,85v-2,-27,10,-42,33,-42v25,0,36,18,36,42v1,-46,15,-84,58,-85v36,-1,51,24,51,58v0,68,-20,136,-83,136","w":315},"x":{"d":"63,-190v28,0,37,17,50,36v12,-18,23,-34,50,-34v50,0,62,68,23,94v28,17,41,66,8,88v-29,30,-77,7,-84,-23v-12,29,-50,52,-78,23v-30,-18,-25,-70,5,-86v-15,-16,-24,-26,-24,-53v0,-25,25,-45,50,-45","w":224},"y":{"d":"11,-137v-1,-43,55,-62,85,-34v13,11,25,29,35,44v16,-27,40,-77,87,-55v50,23,10,114,-7,145v-25,47,-38,102,-89,118v-65,20,-69,-71,-38,-113v-30,-29,-71,-50,-73,-105","w":255},"z":{"d":"19,-44v3,-33,24,-50,46,-66v-33,0,-58,-12,-55,-46v5,-57,117,-51,160,-31v37,30,-6,77,-29,96v34,2,63,10,63,47v1,57,-67,50,-121,48v-36,0,-67,-11,-64,-48","w":216},"A":{"d":"134,-62v-7,34,-28,65,-71,62v-86,-7,-41,-144,-18,-190v24,-47,84,-97,138,-52v43,35,69,94,73,171v2,41,-12,69,-50,71v-44,3,-65,-28,-72,-62xm150,-118v1,-13,-16,-20,-25,-10v-8,9,-2,25,11,24v8,-1,14,-5,14,-14","w":268},"B":{"d":"185,-136v51,7,54,87,16,114v-46,32,-150,26,-170,-20v-39,-89,-17,-235,103,-215v74,-8,115,87,51,121xm122,-156v18,0,18,-30,0,-29v-8,0,-15,5,-15,14v0,8,4,16,15,15xm139,-84v0,-7,-6,-15,-14,-15v-7,0,-16,8,-14,15v-1,11,6,13,14,14v7,0,15,-5,14,-14"},"C":{"d":"240,-203v4,47,-34,49,-81,49v-24,0,-30,42,-5,47v33,6,88,-5,89,41v3,103,-176,76,-210,20v-13,-21,-25,-47,-23,-85v3,-81,50,-127,133,-127v46,0,92,10,97,55","w":250},"D":{"d":"96,-255v89,3,138,42,138,133v-1,84,-45,126,-132,126v-85,0,-93,-66,-87,-151v4,-61,16,-110,81,-108xm139,-123v0,-7,-5,-16,-14,-15v-10,0,-14,4,-14,15v0,11,4,13,14,13v8,0,15,-5,14,-13","w":246},"E":{"d":"225,-41v-21,69,-197,56,-207,-8v-12,-78,-19,-192,58,-203v56,-8,140,-7,148,42v-3,45,-48,49,-95,48v27,5,49,13,49,38v0,23,-18,33,-39,37v43,0,82,8,86,46"},"F":{"d":"180,-134v-1,29,-24,39,-53,41v12,50,-2,97,-52,93v-82,-6,-69,-125,-61,-203v8,-73,148,-74,195,-34v32,42,-23,76,-74,69v25,3,41,12,45,34","w":229},"G":{"d":"178,-21v-31,41,-127,21,-146,-15v-42,-41,-35,-154,8,-186v39,-50,183,-56,189,28v2,35,-34,50,-68,33v-28,-6,-48,1,-48,30v1,27,20,41,48,31v-32,-14,-11,-41,18,-41v56,0,81,12,81,74v0,37,0,82,-39,82v-27,0,-43,-11,-43,-36","w":271},"H":{"d":"73,1v-69,0,-64,-96,-60,-164v3,-49,10,-95,59,-95v45,0,58,38,60,82r13,0v4,-44,14,-82,61,-82v62,0,63,88,60,159v-2,51,-8,100,-60,100v-45,0,-55,-40,-59,-82r-13,0v-7,42,-17,82,-61,82","w":275},"I":{"d":"140,-136v0,74,-4,158,-82,136v-46,-13,-47,-76,-47,-138v1,-59,9,-116,66,-116v53,0,63,61,63,118","w":151},"J":{"d":"181,-146v0,88,-10,153,-96,149v-37,-1,-71,-11,-75,-43v-7,-48,70,-14,51,-82v-1,-64,-5,-132,56,-134v57,-1,64,54,64,110","w":196},"K":{"d":"201,-134v25,30,50,51,50,100v0,42,-74,49,-95,16v-11,-11,-20,-24,-28,-41v13,58,-69,83,-94,37v-34,-61,-38,-227,43,-235v42,-4,65,19,60,62v4,-56,104,-73,104,-4v0,33,-20,46,-40,65","w":263},"L":{"d":"74,-255v66,0,61,84,54,153v37,-26,101,-16,97,38v-4,48,-44,67,-97,68v-91,2,-119,-62,-115,-154v2,-52,10,-105,61,-105","w":234},"M":{"d":"112,-258v45,0,63,34,65,78v7,-41,21,-78,68,-78v81,0,90,101,96,182v3,44,-14,78,-54,78v-58,0,-70,-56,-73,-114v-3,28,-9,52,-35,52v-28,0,-37,-26,-40,-53v0,59,-13,115,-62,115v-47,0,-66,-30,-66,-76v0,-89,17,-184,101,-184","w":355},"N":{"d":"69,1v-79,0,-56,-131,-49,-200v5,-57,97,-79,128,-30v12,17,19,40,20,67v0,-50,13,-90,57,-93v54,-3,58,55,58,102v0,71,3,154,-67,154v-62,0,-79,-53,-89,-108v4,58,-8,108,-58,108","w":296},"O":{"d":"12,-118v0,-88,44,-136,129,-135v79,0,116,51,116,122v0,82,-41,135,-116,135v-82,0,-129,-47,-129,-122xm150,-123v0,-9,-6,-15,-14,-15v-7,0,-16,7,-14,15v0,10,5,14,14,14v8,-1,14,-5,14,-14","w":269},"P":{"d":"31,-193v40,-119,257,-66,215,61v-14,42,-52,61,-106,58v26,66,-58,96,-95,50v-30,-37,-31,-120,-14,-169xm154,-159v1,-13,-16,-20,-25,-10v-8,9,-2,25,11,24v8,-1,14,-5,14,-14","w":265},"Q":{"d":"153,-252v97,0,137,94,107,178v46,18,23,102,-28,91v-13,-3,-27,-12,-33,-21v-89,33,-178,-21,-178,-112v0,-90,46,-136,132,-136xm167,-118v0,-8,-5,-16,-14,-15v-8,-1,-16,8,-14,15v0,9,6,13,14,13v9,0,14,-5,14,-13","w":299},"R":{"d":"205,-105v47,22,46,124,-22,108v-32,-7,-43,-37,-58,-67v17,61,-60,91,-89,47v-44,-67,-30,-210,45,-232v97,-28,184,55,124,144xm139,-147v0,-8,-6,-15,-14,-15v-7,0,-16,7,-14,15v-1,10,5,13,14,13v8,0,15,-5,14,-13","w":247},"S":{"d":"199,-220v12,50,-40,59,-89,54v53,9,98,26,103,80v8,92,-128,111,-188,65v-35,-43,11,-93,69,-78v-77,-2,-97,-124,-27,-148v45,-15,123,-12,132,27","w":225},"T":{"d":"140,4v-70,4,-61,-94,-54,-153v-40,2,-73,-9,-73,-48v0,-81,129,-63,202,-54v25,3,41,20,41,46v0,39,-28,55,-67,53v9,64,16,153,-49,156","w":264},"U":{"d":"119,-201v0,30,-8,69,14,77v24,-6,14,-48,14,-77v0,-70,98,-65,108,-13v20,108,-4,219,-118,219v-111,0,-139,-96,-124,-206v5,-35,24,-55,60,-55v29,0,46,20,46,55","w":276},"V":{"d":"151,-153v10,-54,25,-113,91,-104v94,51,3,235,-65,254v-106,29,-142,-87,-166,-178v-18,-71,74,-101,110,-49v15,22,24,46,30,77","w":290},"W":{"d":"114,4v-87,-13,-101,-116,-97,-209v1,-30,24,-52,54,-52v60,0,72,56,75,117v-1,-31,8,-54,37,-54v30,0,39,24,40,54v0,-60,15,-117,65,-117v46,0,64,33,64,78v0,90,-16,182,-100,182v-47,0,-66,-32,-67,-78v-7,42,-24,76,-71,79","w":364},"X":{"d":"60,-130v-40,-21,-78,-79,-29,-115v50,-36,97,13,114,51v12,-55,93,-95,122,-32v19,42,-14,73,-37,99v33,22,65,77,25,114v-47,43,-101,-10,-115,-49v-14,45,-61,90,-106,49v-40,-36,-10,-95,26,-117","w":299},"Z":{"d":"163,-104v47,-4,86,6,87,49v1,81,-109,64,-182,58v-42,-3,-58,-60,-31,-95v15,-19,30,-35,51,-49v-42,0,-75,-12,-75,-54v0,-71,137,-69,192,-43v40,19,6,76,-11,100v-8,11,-18,22,-31,34","w":261},".":{"d":"63,-87v29,0,44,17,45,45v0,28,-17,46,-45,46v-28,0,-45,-18,-45,-46v0,-28,15,-44,45,-45","w":126},",":{"d":"18,-9v-23,-28,-6,-76,35,-76v28,0,43,19,45,43v2,47,-11,79,-54,79v-12,0,-12,-16,-4,-20v8,2,11,-5,9,-12v-13,-1,-24,-5,-31,-14","w":117},"{":{"d":"143,-44v-4,33,43,18,29,54v-14,36,-99,27,-97,-14v-6,-28,14,-47,7,-70v-2,-4,-5,-8,-11,-8v-37,0,-43,-62,-16,-78v11,-7,33,-5,29,-25v-17,-41,-14,-104,50,-95v23,3,52,23,35,46v-8,10,-30,7,-26,30v-1,11,12,33,12,47v0,17,-11,27,-19,33v8,6,19,18,19,33v3,13,-13,37,-12,47","w":204},"}":{"d":"29,7v-14,-37,34,-22,28,-54v2,-10,-14,-34,-12,-47v2,-15,11,-26,20,-33v-15,-8,-27,-32,-16,-53v6,-11,8,-20,8,-27v6,-31,-45,-19,-28,-54v20,-42,113,-23,97,35v-5,18,-23,51,3,57v21,5,33,16,33,43v0,35,-26,36,-44,48v1,38,28,116,-52,107v-17,-3,-32,-8,-37,-22","w":186},"*":{"d":"58,-159v-33,-5,-45,-52,-10,-63v17,-5,29,2,40,10v-5,-24,4,-44,29,-43v26,1,39,19,28,48v27,-8,52,-1,52,28v0,26,-17,37,-44,32v23,19,5,63,-25,55v-14,-4,-22,-15,-27,-29v-10,27,-54,24,-59,-6v-2,-15,2,-24,16,-32","w":225},"d":{"d":"239,-78v41,17,16,96,-31,78v-9,-2,-15,-5,-22,-8v-66,33,-171,15,-171,-69v0,-76,54,-118,129,-98v-5,-49,-2,-97,44,-97v81,0,64,126,51,194xm157,-85v0,-13,-16,-21,-25,-10v-8,9,-3,23,11,23v8,0,14,-5,14,-13","w":271},"Y":{"d":"90,-115v-46,-15,-99,-76,-61,-130v23,-33,91,-16,103,14v8,9,13,21,17,34v5,-61,100,-91,117,-28v14,53,-28,87,-65,107v30,71,-30,158,-96,103v-22,-18,-24,-62,-15,-100","w":285},"a":{"d":"240,-33v-6,41,-79,58,-87,6v-10,41,-94,38,-120,9v-38,-42,-22,-149,27,-160v31,-15,82,-6,91,21v7,-16,17,-31,41,-30v61,3,56,98,48,154xm149,-85v0,-7,-5,-15,-14,-15v-7,0,-16,7,-14,15v0,10,6,12,14,13v8,0,15,-5,14,-13","w":253},"b":{"d":"21,-60v-18,-69,-32,-215,51,-215v45,0,50,55,40,100v96,-44,162,95,82,158v-56,43,-159,14,-173,-43xm135,-89v0,-9,-6,-15,-14,-15v-7,0,-15,8,-14,15v1,10,5,13,14,13v9,0,14,-5,14,-13","w":244},"c":{"d":"114,-191v49,-3,105,40,66,81v-10,11,-35,6,-54,6v-9,0,-13,3,-13,12v3,22,31,3,46,4v22,1,40,16,40,40v0,69,-128,70,-162,25v-13,-16,-24,-38,-23,-69v1,-62,39,-95,100,-99","w":205},"&":{"d":"176,-3v-64,50,-184,8,-159,-92v8,-32,24,-54,46,-73v-33,-55,14,-124,82,-101v35,12,53,68,22,101v15,15,28,31,37,52v21,-25,76,-29,70,16v-3,21,-18,31,-32,43v22,18,34,59,6,78v-26,18,-60,-2,-72,-24xm111,-93v-17,5,-17,26,-2,30v8,0,12,-4,17,-9","w":287},"?":{"d":"136,-63v26,0,47,16,47,41v0,26,-21,39,-47,39v-26,0,-46,-16,-46,-40v0,-27,19,-40,46,-40xm67,-141v-36,0,-60,-52,-36,-85v29,-68,175,-49,178,25v3,60,-12,120,-66,127v-51,6,-56,-56,-28,-89v-14,12,-26,22,-48,22","w":232},"~":{"d":"107,-103v7,-26,52,-22,52,5v0,22,-18,48,-47,43v-21,-3,-31,-11,-47,-23v-2,30,-53,31,-53,-2v0,-53,66,-55,95,-23","w":178},":":{"d":"59,-188v25,1,40,16,41,41v0,24,-15,40,-41,40v-25,0,-40,-16,-40,-40v0,-23,15,-42,40,-41xm59,-75v25,-1,42,17,41,41v0,24,-15,40,-41,40v-25,0,-40,-16,-40,-40v0,-26,15,-40,40,-41","w":122},";":{"d":"58,-184v25,0,40,18,40,40v0,24,-14,40,-40,40v-24,0,-39,-17,-39,-40v0,-21,16,-40,39,-40xm54,6v6,16,-20,8,-11,26v38,10,58,-23,54,-67v-2,-20,-15,-37,-39,-37v-25,0,-40,16,-40,39v0,23,13,38,36,39","w":121},"-":{"d":"17,-103v0,-60,106,-55,144,-33v10,6,13,15,14,27v5,43,-42,47,-76,47v-36,0,-82,-2,-82,-41","w":189},"=":{"d":"101,-133v-45,5,-110,-17,-70,-56v36,-18,138,-24,145,19v6,36,-47,34,-75,37xm101,-53v-45,5,-110,-17,-70,-56v37,-18,138,-25,145,19v6,36,-47,34,-75,37","w":192},"_":{"d":"108,-57v51,0,117,-11,125,32v-4,53,-81,32,-139,36v-40,3,-85,-6,-69,-46v9,-21,53,-22,83,-22","w":246},"\"":{"d":"57,-180v-32,24,-47,-21,-45,-56v1,-23,6,-42,30,-41v45,1,31,73,15,97xm130,-180v-32,24,-48,-21,-45,-56v-7,-40,45,-57,58,-22v9,25,-1,62,-13,78","w":161},"'":{"d":"55,-180v-33,25,-46,-23,-44,-56v1,-23,6,-42,30,-41v45,1,32,75,14,97","w":80},"`":{"d":"48,-218v-28,-5,-40,-55,-6,-60v35,-5,68,21,78,51v-2,35,-52,18,-72,9","w":135},"!":{"d":"81,-89v-51,0,-62,-45,-62,-100v1,-46,14,-84,62,-82v42,2,61,38,62,83v2,55,-11,99,-62,99xm80,-67v27,0,47,14,47,39v0,25,-20,39,-47,39v-25,0,-46,-13,-46,-39v0,-26,21,-39,46,-39","w":160},"1":{"d":"147,-222v29,59,45,222,-35,222v-66,0,-51,-110,-38,-163v-21,20,-66,20,-66,-17v0,-64,112,-97,139,-42","w":177},"6":{"d":"135,-159v48,0,72,29,72,75v0,57,-36,83,-90,86v-103,5,-125,-129,-73,-198v18,-39,95,-89,124,-27v6,31,-23,42,-33,64xm127,-84v0,-8,-6,-16,-14,-15v-18,0,-19,30,0,29v8,0,14,-5,14,-14","w":221},"2":{"d":"123,-251v72,14,60,123,17,160v33,1,60,15,57,49v-5,53,-98,47,-147,37v-47,-10,-41,-81,-4,-98v18,-13,58,-45,25,-66v-30,4,-73,1,-58,-45v11,-35,66,-45,110,-37","w":209},"3":{"d":"16,-211v0,-35,37,-41,73,-44v49,-3,97,7,97,52v-1,19,-8,30,-18,43v45,14,54,94,24,130v-39,46,-170,45,-182,-20v-6,-33,36,-48,63,-29v15,11,42,9,42,-12v0,-12,-13,-18,-27,-17v-27,0,-41,-11,-41,-35v0,-23,21,-30,41,-35v-36,4,-72,-1,-72,-33","w":222},"4":{"d":"193,-135v19,0,25,14,28,31v-1,20,-11,29,-28,31v5,44,-9,76,-50,76v-41,0,-51,-33,-48,-76v-54,4,-99,-14,-80,-70v18,-55,49,-126,130,-109v42,9,50,62,48,117xm104,-140v0,-8,-5,-16,-14,-16v-8,0,-16,8,-14,16v0,9,6,13,14,13v7,0,14,-5,14,-13","w":233},"5":{"d":"48,-129v-59,-38,-19,-138,60,-124v38,7,77,10,77,46v0,36,-38,42,-76,41v107,-11,124,149,27,165v-58,9,-133,-4,-120,-71v8,-39,49,-8,74,-13v20,-26,-24,-33,-42,-44","w":212},"7":{"d":"116,-258v83,0,102,76,72,144v-19,43,-26,128,-98,114v-55,-11,-22,-96,-6,-127v7,-14,14,-27,22,-40v-39,10,-92,12,-92,-29v0,-54,47,-62,102,-62","w":216},"8":{"d":"174,-145v22,13,37,36,37,68v-1,58,-40,83,-98,83v-59,0,-99,-26,-99,-83v0,-34,12,-55,36,-68v-12,-11,-19,-24,-19,-45v2,-45,35,-62,80,-66v65,-5,101,66,63,111xm128,-83v1,-12,-16,-21,-25,-11v-9,10,-3,25,11,24v8,0,14,-5,14,-13xm128,-178v1,-13,-15,-20,-25,-11v-8,9,-3,24,11,24v8,0,14,-5,14,-13","w":225},"9":{"d":"85,-94v-48,0,-72,-29,-72,-74v0,-60,39,-84,96,-87v104,-6,117,130,68,198v-23,33,-85,89,-121,39v-21,-30,17,-57,29,-76xm126,-155v0,-8,-5,-15,-14,-15v-7,0,-16,7,-14,15v0,10,5,14,14,14v7,-1,15,-5,14,-14","w":219},"0":{"d":"108,-254v81,-1,95,64,95,142v-1,67,-32,111,-95,111v-63,0,-94,-44,-94,-111v0,-77,17,-141,94,-142xm124,-121v0,-10,-4,-17,-13,-17v-9,0,-14,7,-14,16v0,9,5,14,14,14v9,0,13,-6,13,-13","w":213},"+":{"d":"66,-167v-8,-59,79,-74,84,-13v1,4,1,7,2,10v61,-6,76,79,14,85v-3,0,-6,1,-10,1v-1,32,-11,56,-44,55v-29,-1,-41,-23,-44,-51v-59,10,-70,-75,-17,-84","w":222},"#":{"d":"112,-60v-6,21,-8,47,-36,44v-19,-2,-26,-21,-23,-47v-39,6,-54,-46,-15,-54v6,-2,14,-3,22,-4v1,-6,2,-12,4,-18v-38,4,-42,-48,-9,-54v6,-1,13,-2,22,-3v5,-21,9,-48,38,-46v21,1,28,21,22,43r28,0v1,-29,36,-62,59,-30v5,7,1,23,1,35v38,-6,50,52,11,56r-20,1v0,6,-9,19,1,19v32,-1,36,56,2,55r-19,1v1,33,-32,63,-55,33v-6,-7,-4,-19,-4,-31r-29,0xm126,-124v12,0,27,6,25,-11r-23,-1v-1,5,-2,9,-2,12","w":273},"\/":{"d":"144,-240v-21,91,-46,178,-87,248v-21,14,-49,0,-43,-30v15,-83,46,-160,71,-233v11,-32,69,-30,59,15","w":154},"|":{"d":"47,-279v48,3,35,88,33,129r-8,147v-2,17,-13,25,-29,26v-43,2,-31,-57,-31,-95r0,-69v7,-54,-14,-130,35,-138","w":92},"\\":{"d":"148,-54v13,38,0,83,-37,61v-43,-67,-65,-159,-87,-248v-8,-34,23,-46,46,-31v38,57,53,145,78,218","w":178},"(":{"d":"145,-7v-2,31,-51,42,-76,22v-75,-62,-68,-258,9,-307v29,-9,60,9,62,34v-7,47,-23,83,-20,140v3,43,19,73,25,111","w":159},")":{"d":"23,-30v29,-73,13,-168,-7,-231v1,-31,51,-42,76,-21v73,62,69,259,-10,306v-35,11,-75,-15,-59,-54","w":160},"%":{"d":"205,-226v-21,83,-71,156,-118,216v-38,13,-36,-30,-21,-59v28,-54,60,-110,88,-161v12,-21,48,-21,51,4xm32,-233v47,-33,102,23,71,68v-25,37,-104,12,-89,-36v4,-12,9,-26,18,-32xm161,-91v48,-34,103,24,71,69v-30,42,-119,3,-83,-54v4,-6,8,-11,12,-15","w":267},"[":{"d":"23,-240v-11,-92,159,-101,191,-47v-4,37,-60,26,-96,31v7,77,3,169,0,248v37,2,92,-11,93,26v1,38,-58,35,-90,37v-140,7,-83,-163,-98,-295","w":222},"]":{"d":"195,-218v0,87,16,189,-16,244v-24,22,-71,26,-117,23v-26,-3,-58,-3,-58,-29v0,-36,59,-26,96,-31v-7,-77,-3,-169,0,-248v-37,-2,-92,11,-93,-26v-1,-38,57,-37,89,-37v74,-3,99,37,99,104","w":209},"<":{"d":"142,-96v35,33,-17,84,-55,58v-39,-27,-104,-80,-56,-137v23,-28,74,-82,113,-37v22,40,-22,57,-41,80v13,14,27,24,39,36","w":170},">":{"d":"65,-130v-28,-21,-78,-65,-27,-96v46,-16,72,27,99,51v35,31,10,91,-18,108v-21,22,-68,58,-95,18v-26,-39,22,-57,41,-81","w":168},"^":{"d":"89,-153v-19,39,-92,19,-75,-30v17,-49,84,-119,144,-69v28,23,84,78,36,112v-38,27,-56,-22,-80,-41","w":228},"@":{"d":"85,-109v-14,29,-77,17,-70,-26v-4,-38,29,-61,62,-45v3,3,5,5,6,8v23,-34,47,-2,47,30v0,29,-3,48,-26,49v-11,0,-19,-5,-19,-16xm81,-135v0,-4,-3,-8,-7,-7v-3,-1,-7,2,-6,7v-1,4,2,7,6,6v5,1,7,-2,7,-6xm147,-150v-27,-3,-21,-44,4,-44v4,-1,7,-1,10,-1v-1,-19,5,-31,24,-31v20,0,25,12,26,31v18,0,33,6,33,24v0,18,-13,21,-31,22v6,34,-9,72,-40,53v-13,-8,-10,-35,-8,-54r-18,0xm156,-87v-55,6,-125,-16,-138,20v22,37,115,17,182,17v20,0,38,0,38,-18v0,-31,-54,-14,-82,-19","w":255},"$":{"d":"79,-229v2,-26,2,-55,27,-55v24,0,27,25,26,53v30,4,56,11,58,41v2,30,-34,30,-56,38v67,5,75,104,14,120v-36,-2,-9,62,-57,47v-13,-4,-14,-25,-14,-43v-35,-6,-63,-17,-63,-50v0,-32,28,-37,61,-35v-57,-6,-68,-93,-14,-110v6,-2,12,-5,18,-6","w":210}}});;
Cufon.registerFont({"w":81,"face":{"font-family":"Goudy Bookletter 1911","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"265","descent":"-95","x-height":"7","bbox":"-29.8037 -268 360 85.6319","underline-thickness":"16.2","underline-position":"-32.4","stemh":"18","stemv":"24","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":90},"!":{"d":"39,-220v4,-14,38,-26,31,-23v7,64,-4,170,-19,173v-7,0,-5,-10,-5,-17v-2,-80,-7,-133,-7,-133xm60,-31v9,0,18,8,18,19v0,9,-8,18,-18,18v-10,0,-19,-8,-19,-19v0,-10,9,-18,19,-18","w":117},"\"":{"d":"67,-244v-11,28,-35,74,-46,79v-4,0,-7,-3,-7,-8v0,-2,0,-3,21,-64v0,-17,29,-30,32,-7xm95,-237v0,-17,30,-30,32,-7v-6,24,-39,71,-40,76v-4,5,-15,3,-14,-5v0,-2,0,-3,22,-64","w":140},"#":{"d":"118,-76v3,-40,12,-46,4,-51v-13,1,-31,-3,-41,2v0,20,-12,51,-4,52v13,-2,33,4,41,-3xm128,-146v16,-81,-1,-69,20,-75v4,0,6,1,6,4v2,5,-14,71,-8,74v12,2,34,-6,33,9v-1,17,-28,0,-38,9v-1,20,-11,50,-5,52v14,3,43,-9,43,8v0,20,-38,-1,-48,12v-14,75,0,59,-18,68v-5,0,-7,-2,-7,-5v-2,-5,15,-67,6,-67v-10,0,-41,-2,-41,3v-15,76,4,61,-18,69v-4,0,-7,-1,-7,-5v-2,-5,15,-66,6,-67v-11,-1,-32,5,-33,-6v-2,-18,25,-7,39,-10v0,-21,12,-52,4,-54v-15,-3,-41,8,-43,-8v2,-19,38,0,49,-11v16,-81,-2,-69,19,-75v3,0,7,0,7,4v2,5,-16,74,-7,74v13,-2,33,4,41,-3","w":198},"$":{"d":"135,-191v0,9,-5,16,-14,16v-23,2,-15,-45,-39,-39v6,30,-17,77,17,80v40,21,46,32,46,66v0,40,-30,62,-60,67v-10,6,7,35,-10,36v-17,2,-1,-27,-11,-35v-36,-1,-58,-29,-58,-48v0,-11,7,-20,17,-20v14,-1,19,16,14,29v0,19,23,28,30,22v-2,-32,4,-72,-3,-98v-67,-13,-62,-108,0,-114v8,-2,-4,-18,11,-18v11,0,3,12,9,17v32,4,51,24,51,39xm66,-216v-6,0,-30,10,-30,35v0,25,28,38,31,32xm120,-62v0,-31,-33,-50,-38,-41v2,53,-6,68,2,87v5,0,36,-14,36,-46","w":173},"%":{"d":"85,40v-5,8,-22,3,-16,-7v142,-243,142,-242,143,-244v5,-6,23,-3,18,7v-144,244,-144,243,-145,244xm69,-75v31,-3,29,-27,29,-50v0,-28,-12,-60,-34,-60v-23,0,-28,31,-28,49v0,18,8,64,33,61xm69,-199v20,0,50,14,50,64v0,44,-22,74,-55,74v-19,0,-49,-14,-49,-64v0,-49,26,-74,54,-74xm231,19v29,-4,28,-27,28,-50v0,-28,-11,-60,-33,-60v-22,-1,-31,34,-28,49v-1,20,8,64,33,61xm231,-104v20,0,49,14,49,64v0,43,-22,73,-54,73v-20,0,-50,-14,-50,-63v0,-50,26,-74,55,-74","w":295},"&":{"d":"11,-88v1,-42,23,-56,25,-64v0,-4,-15,-15,-15,-38v0,-33,29,-62,63,-62v13,0,38,4,38,22v0,9,-8,16,-16,16v-15,0,-15,-18,-31,-18v-15,0,-38,16,-38,42v0,41,11,20,53,20v18,0,32,8,32,20v0,12,-16,20,-34,20v-20,0,-32,-8,-34,-8v-12,8,-14,28,-15,42v-2,31,26,77,97,77v58,0,75,-38,75,-63v0,-24,-15,-43,-37,-43v-22,0,-39,17,-39,35v0,16,23,30,33,16v1,-4,-17,-5,-15,-17v0,-7,5,-13,14,-13v10,0,21,9,21,21v0,14,-14,28,-31,28v-48,0,-42,-68,0,-85v49,-20,115,-4,119,-65v2,-27,-24,-48,-45,-35v8,4,8,27,-9,27v-9,0,-16,-8,-16,-18v0,-15,15,-26,32,-26v26,0,53,24,53,60v0,39,-35,70,-75,70v-15,4,7,15,7,44v0,48,-48,91,-107,91v-61,0,-105,-45,-105,-96xm63,-150v8,12,40,14,46,1v0,-4,-2,-9,-15,-9v-18,0,-31,5,-31,8","w":298},"'":{"d":"67,-244v-11,28,-35,74,-46,79v-4,0,-7,-3,-7,-8v0,-2,0,-3,21,-64v0,-17,29,-30,32,-7","w":80},"(":{"d":"106,70v-112,-68,-121,-242,-10,-323v4,-5,17,-8,18,1v0,5,-3,8,-5,9v-36,33,-65,84,-65,148v0,59,24,111,64,148v6,3,9,17,-2,17","w":130},")":{"d":"25,-260v114,68,120,259,-1,329v-10,0,-9,-13,-2,-16v36,-33,65,-84,65,-148v0,-59,-24,-111,-64,-148v-7,-3,-8,-17,2,-17","w":130},"*":{"d":"116,-222v0,15,-34,18,-34,23v0,7,33,3,33,24v0,37,-38,-12,-44,-2v5,18,5,40,-12,39v-17,3,-10,-32,-12,-41v-6,4,-41,28,-42,3v0,-16,33,-19,33,-26v0,-7,-32,-4,-32,-23v7,-27,33,2,42,7v4,-7,-9,-45,13,-42v20,-2,12,32,10,41v6,-4,45,-33,45,-3","w":120},"+":{"d":"27,-83v-7,1,-9,-5,-8,-13v0,-7,5,-8,9,-8r88,0r0,-89v-1,-7,4,-9,12,-8v8,0,9,6,9,10r0,87r89,0v7,0,9,5,8,12v0,8,-5,9,-10,9r-87,0r0,89v1,7,-5,9,-13,8v-8,0,-8,-5,-8,-9r0,-88r-89,0","w":252},",":{"d":"49,16v0,-22,-33,-7,-35,-32v0,-12,11,-20,22,-20v17,0,32,18,32,41v0,34,-32,59,-44,42v0,-6,30,-22,25,-31"},"-":{"d":"72,-121v7,2,7,22,-1,25v-53,36,-56,41,-60,41v-10,-2,-11,-21,0,-25v55,-38,57,-41,61,-41"},".":{"d":"19,-15v0,-29,43,-26,43,0v0,11,-9,21,-21,21v-11,0,-22,-9,-22,-21"},"\/":{"d":"18,66v-5,2,-14,2,-16,-4v0,-2,0,-1,136,-268v3,-5,15,-4,16,4","w":156},"0":{"d":"85,-158v43,0,79,36,79,82v0,45,-36,82,-80,82v-43,0,-80,-36,-80,-82v0,-46,37,-82,81,-82xm84,-139v-31,0,-56,28,-56,62v0,34,26,62,57,62v29,0,57,-24,57,-61v0,-36,-28,-63,-58,-63","w":171},"1":{"d":"76,-22v3,17,48,3,38,18v-5,14,-18,4,-50,4v-24,0,-43,2,-44,2v-5,0,-5,-3,-5,-7v3,-16,43,-3,34,-16r0,-110v0,-5,-3,-6,-6,-6v-28,-2,-34,1,-34,-10v7,-13,15,-5,50,-5v34,0,45,-10,49,7v0,8,-5,6,-27,8v-4,0,-5,2,-5,6r0,109","w":128},"2":{"d":"68,-24v30,10,62,-1,76,-32v15,10,6,-4,-6,51v-2,5,-6,5,-11,5v-44,-3,-102,15,-109,-2v13,-21,78,-47,81,-88v3,-39,-73,-56,-77,-15v0,4,0,11,-6,10v-3,0,-7,-3,-7,-13v0,-26,21,-45,50,-45v32,0,63,22,63,53v0,29,-29,48,-54,76","w":162},"3":{"d":"38,-41v6,-10,36,-34,36,-57v0,-13,-7,-35,-33,-35v-29,0,-11,19,-25,26v-17,-13,-1,-52,27,-52v14,0,55,11,55,42v0,21,-21,50,-21,52v9,8,45,13,45,52v0,12,-4,38,-15,55v-20,32,-95,29,-97,-3v0,-8,8,-14,16,-14v18,0,15,25,44,25v24,0,33,-24,33,-46v0,-28,-20,-45,-59,-41v-4,0,-6,-3,-6,-4","w":129},"4":{"d":"150,-23v-2,3,1,27,-8,23v-7,2,-21,-4,-23,3r0,60v0,7,-12,3,-18,4v-3,0,-4,-2,-4,-4r0,-59v0,-3,0,-4,-3,-4r-80,0v-10,0,-4,-12,0,-17v6,-3,88,-136,100,-137v2,0,5,1,5,6r0,117v-1,11,27,-3,31,8xm94,-24v7,-20,4,-61,1,-84r-56,82v13,6,38,0,55,2","w":160},"5":{"d":"103,-139v9,0,15,-28,23,-12v0,2,-1,1,-16,39v-5,13,-57,-15,-64,-13v-4,-1,-5,6,-11,30v34,3,72,23,72,73v0,44,-43,87,-66,92v-18,-14,10,-11,31,-41v27,-39,1,-121,-54,-94v-11,-8,17,-90,24,-92v5,0,55,18,61,18","w":137},"6":{"d":"132,-51v0,-32,-19,-80,-60,-80v-30,0,-37,29,-37,53v0,43,26,74,56,74v23,0,41,-18,41,-47xm12,-82v0,-70,56,-132,129,-145v8,1,9,13,1,15v-36,10,-67,36,-89,68v53,-6,108,27,107,83v0,38,-27,71,-68,71v-39,0,-80,-33,-80,-92","w":173},"7":{"d":"80,-121v-48,6,-42,-15,-56,37v0,3,-1,6,-5,6v-16,-8,3,-32,0,-84v0,-4,2,-7,7,-7v9,-4,3,21,13,21r108,0v5,0,8,1,8,7v0,2,1,2,-21,64v-59,164,-28,153,-61,156v-6,0,-10,-1,-10,-5r63,-185v-3,-16,-30,-8,-46,-10","w":162},"8":{"d":"81,-132v37,-15,37,-92,-10,-92v-20,0,-34,18,-34,39v0,36,36,53,44,53xm79,-9v75,0,41,-84,-13,-102v-5,0,-34,25,-34,57v0,27,22,45,47,45xm52,-117v-19,-17,-40,-37,-40,-64v0,-28,25,-59,63,-59v31,0,60,16,60,51v1,26,-20,48,-40,62v30,18,58,40,58,69v0,35,-37,66,-78,66v-39,0,-69,-30,-69,-63v-7,-28,42,-56,46,-62","w":160},"9":{"d":"102,-12v34,0,40,-23,40,-51v0,-42,-30,-75,-62,-75v-19,0,-42,13,-42,48v0,35,22,78,64,78xm170,-63v1,57,-52,122,-125,139v-9,-2,-9,-12,-1,-15v56,-17,88,-60,84,-64v-55,19,-116,-24,-116,-79v0,-41,34,-72,74,-72v45,0,84,40,84,91","w":183},":":{"d":"45,-148v11,0,21,9,21,21v0,11,-9,22,-21,22v-12,0,-22,-9,-22,-22v0,-12,10,-21,22,-21xm45,-36v11,0,21,9,21,21v0,11,-9,21,-21,21v-12,0,-22,-9,-22,-21v0,-13,10,-21,22,-21","w":82},";":{"d":"58,16v1,-23,-33,-6,-35,-32v0,-12,10,-20,22,-20v17,0,31,18,31,41v0,32,-28,48,-36,48v-4,0,-7,-2,-7,-6v-1,-6,30,-22,25,-31xm45,-148v11,0,21,9,21,21v0,11,-9,22,-21,22v-12,0,-22,-9,-22,-22v0,-12,10,-21,22,-21"},"<":{"d":"25,-76v-8,-1,-9,-20,0,-20v188,-69,187,-69,190,-69v5,0,9,4,9,14v0,4,-4,6,-7,7r-159,58r161,58v10,3,4,19,-6,20v-3,0,-2,0,-188,-68","w":241},"=":{"d":"27,-110v-7,1,-9,-5,-8,-13v0,-7,4,-8,8,-8r199,0v7,-1,7,5,7,12v0,8,-5,9,-9,9r-197,0xm27,-56v-7,1,-9,-5,-8,-13v0,-8,5,-8,9,-8r198,0v7,-1,9,4,8,12v0,8,-5,9,-10,9r-197,0","w":252},">":{"d":"217,-96v6,1,8,5,7,13v0,4,-3,6,-7,7v-185,67,-185,68,-188,68v-10,-1,-13,-16,-6,-20r161,-58r-158,-58v-12,-1,-5,-23,1,-21v3,0,3,0,190,69","w":241},"?":{"d":"57,-36v12,0,22,9,22,21v0,11,-10,21,-22,21v-11,0,-21,-9,-21,-21v0,-13,10,-21,21,-21xm28,-245v49,-14,100,20,93,50v0,48,-64,55,-59,113v0,10,-6,13,-9,13v-4,0,-10,-3,-10,-20v0,-47,48,-67,48,-108v0,-20,-14,-37,-32,-37v-23,0,-20,26,-38,26v-21,-5,-26,-27,7,-37","w":136},"@":{"d":"180,50v41,0,63,-14,81,-24v2,0,4,1,4,4v-9,18,-59,33,-92,33v-78,0,-141,-48,-141,-130v0,-35,12,-97,85,-134v19,-9,47,-19,78,-19v71,0,117,51,117,113v0,62,-42,110,-84,110v-35,0,-34,-27,-37,-27v-16,29,-80,46,-82,-6v8,-42,53,-119,110,-111v7,-1,4,-15,14,-13v4,0,8,2,8,6v0,5,-14,38,-25,103v-6,13,2,35,15,31v40,-1,66,-48,66,-94v0,-64,-46,-98,-102,-98v-69,0,-134,53,-134,135v0,70,48,121,119,121xm207,-131v-14,-3,-66,46,-72,94v6,34,33,15,51,-1v6,-6,7,-7,8,-12v16,-85,23,-70,13,-81","w":360},"A":{"d":"195,-4v-6,-17,25,-4,29,-19v0,-7,-13,-49,-27,-81v-2,-4,-3,-4,-7,-4r-84,0v-4,0,-6,0,-8,4v-18,33,-32,71,-32,78v-3,16,29,4,31,20v-7,17,-15,6,-48,6v-30,0,-41,9,-46,-5v3,-20,35,-5,37,-28v16,-43,115,-232,111,-218v9,-9,23,5,24,11r91,216v10,15,27,2,28,18v-4,17,-17,6,-48,6v-35,0,-42,9,-51,-4xm183,-127v9,-5,-24,-71,-32,-79v-3,0,-6,4,-7,6v-21,44,-42,70,-35,73r74,0","w":295,"k":{"y":11}},"B":{"d":"6,-8v-5,-11,27,-2,28,-15r0,-197v3,-18,-25,-2,-25,-21v0,-10,14,-5,23,-6v63,-4,139,-13,145,53v3,23,-22,44,-34,57v28,6,50,31,50,63v0,86,-91,76,-180,75v-4,0,-7,-1,-7,-9xm68,-143v38,3,77,-3,77,-44v0,-17,-11,-47,-53,-47v-9,0,-28,-1,-27,9r0,77v0,3,0,5,3,5xm65,-30v-3,13,14,15,28,15v35,0,68,-20,68,-57v0,-37,-37,-64,-91,-56v-5,0,-5,3,-5,6r0,92","w":203},"C":{"d":"224,-245v11,0,10,71,14,81v0,2,-1,6,-7,6v-17,-1,-6,-33,-20,-41v-49,-64,-170,-34,-170,72v0,66,45,117,102,117v41,0,80,-27,94,-71v0,-1,1,-4,5,-4v2,0,6,1,6,4v-7,9,4,78,-28,64v-23,9,-58,26,-83,26v-70,0,-130,-60,-130,-130v0,-72,61,-130,132,-130v44,0,66,20,71,20v7,-1,3,-14,14,-14","w":252},"D":{"d":"72,-33v-1,17,21,16,36,16v53,0,106,-33,106,-97v0,-34,-15,-71,-43,-92v-24,-18,-53,-22,-75,-22v-21,0,-24,2,-24,11r0,184xm250,-123v0,73,-58,123,-136,123r-102,0v-3,0,-8,-1,-8,-10v-6,-16,42,1,36,-22r0,-182v0,-14,-8,-12,-30,-13v-5,0,-6,-3,-6,-8v0,-7,5,-8,8,-8v122,-6,238,5,238,120","w":255},"E":{"d":"188,-190v-22,-10,-27,-51,-38,-40r-68,0v-23,5,-6,45,-11,68v0,4,1,8,7,8r56,0v20,6,3,-29,23,-31v9,0,10,7,10,11r0,66v0,4,-1,10,-10,10v-24,2,3,-32,-19,-35v-25,5,-67,-14,-67,15r0,82v4,28,71,15,96,9v9,-6,17,-39,29,-40v2,0,6,3,6,9v0,2,0,3,-11,51v-1,5,-3,7,-11,7r-123,0v-36,-1,-47,12,-54,-6v0,-7,4,-7,28,-16v6,-2,8,-6,8,-14r0,-188v-1,-14,-38,-1,-34,-17v0,-7,4,-8,7,-8r165,0v6,0,7,2,8,6v1,23,23,51,3,53","w":208},"F":{"d":"135,-150v13,6,3,-30,19,-31v15,5,7,12,7,41v0,30,7,38,-9,43v-8,0,-7,-7,-10,-28v0,-4,-2,-5,-6,-5r-59,0v-8,0,-8,5,-8,10r0,90v-7,23,57,2,47,25v-7,15,-19,5,-55,5v-37,0,-50,11,-57,-6v-6,-17,35,-3,31,-21r0,-191v5,-20,-28,-1,-31,-19v3,-21,9,-9,36,-9r129,-1v15,-1,27,52,13,55v-7,0,-9,-6,-23,-29v-11,-19,-53,-8,-79,-8v-9,0,-10,6,-10,13r0,60v0,4,1,6,5,6r60,0","w":194},"G":{"d":"211,-22v-81,73,-205,6,-205,-105v0,-74,54,-127,121,-127v44,0,67,23,74,23v10,0,17,-26,25,-10v-6,42,18,83,-6,82v-12,0,0,-12,-19,-36v-49,-64,-158,-64,-159,63v0,95,56,122,94,122v55,0,60,-18,60,-71v0,-12,-7,-10,-34,-13v-4,0,-10,-1,-10,-8v6,-15,15,-7,46,-7v32,0,40,-7,48,6v-1,13,-20,7,-20,21r0,60v0,16,-11,2,-15,0","w":248},"H":{"d":"71,-28v-7,13,33,8,35,20v-2,21,-15,8,-49,8v-36,0,-47,12,-52,-8v0,-7,5,-6,25,-8v9,-1,9,-5,9,-11r0,-191v2,-20,-32,-4,-34,-20v11,-20,61,-5,95,-9v6,0,7,4,7,10v0,8,-5,7,-27,8v-8,0,-9,4,-9,11r0,59v0,3,1,5,5,5r122,0v5,0,6,-3,6,-6r0,-53v4,-25,-33,-10,-33,-26v0,-19,79,-3,93,-9v4,0,6,3,6,7v5,17,-34,5,-34,22r0,191v-5,18,35,6,32,21v-4,18,-17,7,-51,7v-32,0,-43,9,-49,-5v-7,-18,42,-2,36,-25r0,-97v0,-4,-1,-4,-5,-4r-122,0v-5,0,-6,2,-6,6r0,97","w":274},"I":{"d":"11,-235v4,-19,15,-8,49,-8v31,0,38,-9,44,5v7,15,-25,5,-29,18r0,194v-2,17,43,4,35,18v-3,20,-16,8,-53,8v-34,0,-50,14,-52,-9v0,-8,5,-6,30,-8v6,-1,7,-4,7,-10r1,-193v0,-7,-5,-6,-24,-7v-4,-1,-8,-2,-8,-8","w":116},"J":{"d":"21,55v19,-4,20,-26,21,-46r0,-223v0,-13,-8,-11,-29,-14v-3,0,-8,-1,-8,-7v4,-19,19,-8,54,-8v26,0,38,-1,43,-1v5,0,6,3,6,7v6,17,-38,2,-33,24v-8,117,34,273,-76,289v-28,4,-42,-45,-12,-45v17,0,19,24,34,24","w":113},"K":{"d":"76,-133v28,-25,73,-76,78,-89v0,-16,-24,-5,-24,-18v12,-16,54,-3,85,-7v7,0,10,4,10,7v0,10,-19,8,-32,13v-34,25,-111,114,-91,95r105,111v14,8,23,1,26,15v-2,10,-13,6,-27,6v-27,0,-26,2,-35,-9v-90,-103,-90,-104,-94,-104v-5,-1,-6,4,-6,7r0,76v0,14,6,12,29,14v3,1,8,1,8,8v0,20,-17,8,-52,8v-33,0,-47,11,-51,-6v0,-20,35,3,35,-27r0,-179v5,-27,-31,-8,-36,-27v6,-15,19,-7,51,-7v33,0,44,-9,50,8v-1,14,-33,-2,-33,22r0,77v0,2,0,6,4,6","w":235},"L":{"d":"5,-6v-5,-11,34,-5,28,-23r0,-189v5,-17,-31,1,-29,-17v3,-20,16,-4,50,-8v35,3,47,-11,50,9v-3,19,-46,-1,-37,18r0,183v0,6,0,11,9,11r70,0v23,5,27,-38,40,-43v2,0,11,1,11,8v-4,2,2,58,-17,59r-169,-2v-5,0,-6,-3,-6,-6","w":202},"M":{"d":"323,-36v-9,27,39,14,36,30v-4,18,-18,6,-54,6v-34,0,-48,10,-52,-6v0,-19,40,3,38,-29v-3,-44,3,-97,-3,-137v-43,51,-84,170,-107,177v-7,0,-10,-8,-13,-13v-39,-79,-91,-162,-93,-164v-2,0,-3,0,-3,2v-2,42,-3,110,0,148v4,12,34,-1,34,16v-5,16,-17,6,-50,6v-34,0,-45,12,-50,-6v-5,-17,48,-3,39,-31v5,-64,9,-144,9,-161v-7,-15,-13,-26,-39,-31v-2,0,-7,0,-7,-6v0,-8,4,-8,6,-8v20,2,50,-6,61,5r110,180v1,5,9,7,12,1r97,-183v14,-7,40,-1,59,-3v2,0,5,0,5,8v6,14,-36,4,-37,24v2,139,2,157,2,175","w":359},"N":{"d":"67,-50v-7,53,38,19,42,45v-5,16,-16,5,-50,5v-33,0,-45,10,-51,-5v1,-17,29,-5,36,-21r10,-171v-6,-10,-16,-27,-44,-31v-4,0,-7,-1,-7,-8v3,-19,35,-5,52,-9v8,0,11,2,15,7r89,102v65,70,68,74,71,74v8,-40,0,-102,0,-149v0,-25,-26,-8,-32,-26v7,-13,14,-7,45,-7v31,0,35,-9,42,7v0,19,-33,-5,-33,30r0,198v-1,21,-8,21,-25,2r-154,-173v-9,37,0,87,-6,130","w":287},"O":{"d":"144,9v-73,1,-139,-63,-138,-136v0,-73,61,-132,133,-132v78,0,135,64,135,138v0,75,-59,130,-130,130xm238,-115v0,-56,-39,-125,-104,-125v-45,0,-93,30,-93,102v0,62,34,126,102,126v41,0,95,-27,95,-103","w":280},"P":{"d":"171,-179v0,-30,-29,-54,-80,-54v-20,0,-22,1,-22,5r0,103v0,4,1,4,13,4v53,0,89,-23,89,-58xm5,-6v-6,-17,32,-3,32,-21r0,-192v4,-20,-28,1,-29,-19v-1,-9,8,-8,17,-8v85,-5,171,-13,177,65v-10,60,-46,73,-129,73v-4,0,-5,2,-5,5r0,73v0,8,3,12,12,13v35,2,39,-2,39,11v-5,17,-20,6,-57,6v-37,0,-51,10,-57,-6","w":205},"Q":{"d":"236,-118v0,-54,-36,-125,-101,-125v-46,0,-93,35,-93,102v0,63,40,129,105,129v48,0,89,-41,89,-106xm266,73v-50,0,-61,-50,-102,-69v-86,15,-157,-53,-157,-131v0,-71,61,-134,133,-134v66,0,128,64,128,133v0,51,-29,98,-67,124v37,26,41,58,93,59v3,0,4,2,4,4v0,5,-16,14,-32,14","w":270},"R":{"d":"95,-132v36,0,63,-13,63,-47v0,-28,-27,-54,-63,-54v-8,0,-27,-2,-24,10r0,85v0,6,3,6,24,6xm9,-8v-5,-12,39,-2,32,-21r0,-186v0,-11,-6,-11,-31,-15v-6,0,-7,-13,0,-13v34,2,66,-4,92,-4v65,0,84,37,84,62v1,40,-37,54,-42,63v44,52,54,76,66,93v9,13,27,12,35,3v2,0,4,2,4,4v0,6,-11,27,-32,27v-44,-12,-49,-50,-74,-78v-51,-57,-6,-41,-65,-46v-3,0,-5,1,-5,6r0,84v-2,19,51,7,42,23v-6,18,-18,6,-54,6v-36,0,-49,13,-52,-8","w":250},"S":{"d":"91,6v-32,0,-47,-26,-76,-24v-16,-9,3,-15,2,-64v1,-4,2,-7,8,-7v8,0,8,3,10,21v3,25,1,15,10,30v23,37,100,27,98,-26v-2,-45,-53,-51,-89,-63v-66,-21,-50,-119,22,-120v29,0,42,15,46,15v5,-1,17,-27,21,-8v-4,7,7,67,-6,65v-12,-2,-10,-12,-25,-33v-20,-27,-75,-27,-75,13v0,42,53,43,87,56v27,10,46,35,46,68v0,43,-35,77,-79,77","w":177},"T":{"d":"241,-185v-18,-13,-24,-49,-35,-39r-53,0v-8,0,-8,5,-8,10r0,188v0,10,4,8,32,11v6,1,7,3,7,10v-4,16,-20,5,-55,5v-37,0,-52,12,-56,-7v-9,-15,45,-3,38,-23r0,-183v0,-5,0,-11,-9,-11r-54,0v-25,1,-28,52,-36,41v-4,0,-8,-4,-8,-10v0,-2,1,-3,11,-49v1,-5,4,-6,7,-6r210,0v6,0,7,4,7,9v8,36,9,44,9,46v0,4,-3,8,-7,8","w":249},"U":{"d":"222,-213v3,-26,-26,-10,-32,-27v6,-16,11,-7,39,-7v27,0,38,-8,38,8v0,15,-24,-3,-24,37v0,77,22,148,-32,190v-17,13,-41,17,-68,17v-86,0,-105,-47,-108,-61v-10,-47,-4,-108,-4,-164v0,-18,-23,-3,-25,-19v4,-17,16,-8,46,-8v32,0,40,-9,45,8v5,15,-36,4,-34,22v8,67,-17,143,22,182v18,17,45,20,65,20v14,0,53,-1,66,-33v18,-46,0,-107,6,-165","w":272},"V":{"d":"238,-219v-1,-20,-31,-4,-31,-20v5,-16,14,-8,45,-8v32,0,39,-10,44,9v0,12,-16,4,-27,16v-11,12,-30,80,-107,222v0,8,-17,8,-18,0v-116,-202,-111,-220,-122,-228v-8,-2,-28,-17,-6,-20v6,5,90,-9,85,7v5,16,-39,2,-28,28v38,83,81,158,84,161v2,3,8,0,7,-2v29,-52,55,-105,74,-165","w":298,"k":{"i":14,"r":-4}},"W":{"d":"173,-120v-53,124,-42,126,-56,128v-8,0,-10,-12,-14,-20v-49,-120,-73,-204,-76,-212v-4,-14,-20,2,-22,-14v4,-16,12,-9,43,-9v29,0,39,-8,41,8v2,15,-32,-1,-26,20v20,65,27,81,56,160v1,3,3,6,6,6v4,0,4,0,38,-90v5,-13,0,0,-23,-75v-5,-14,-4,-13,-25,-14v-4,0,-6,-1,-6,-8v6,-16,14,-7,45,-7v22,0,34,-1,37,-1v5,0,6,3,6,8v3,15,-34,0,-26,22v29,82,53,161,70,170v3,0,5,-5,6,-7v35,-75,59,-159,59,-167v5,-13,-31,-3,-31,-18v4,-15,12,-7,43,-7v30,0,37,-9,42,7v0,14,-19,3,-26,17v-3,4,-31,87,-87,214v-10,23,-23,18,-30,-2v-41,-111,-42,-109,-44,-109","w":360,"k":{"i":7,"a":14,"g":14,"m":14,"n":14,"p":14,"q":14,"r":14,"s":14,"u":14,"v":14,"w":14,"x":14,"y":14,"z":14}},"X":{"d":"60,-25v-4,14,34,3,32,19v-2,16,-16,6,-46,6v-29,0,-41,10,-44,-5v0,-10,3,-9,17,-12v14,-2,16,-7,31,-28v53,-74,53,-73,53,-75v0,-2,-1,-3,-58,-93v-11,-17,-14,-16,-30,-18v-4,0,-9,-2,-9,-9v6,-16,16,-7,50,-7v25,0,37,-1,40,-1v5,0,7,1,7,10v0,12,-25,1,-25,16v24,48,50,89,46,74v41,-56,46,-62,46,-72v1,-19,-30,-2,-29,-22v6,-13,15,-5,47,-5v33,0,42,-8,49,5v0,19,-19,4,-33,17v-24,21,-83,114,-69,94v0,2,0,3,62,100v9,14,10,13,31,16v4,0,9,2,9,10v-6,17,-17,5,-53,5v-34,0,-47,10,-53,-5v-6,-15,30,-6,30,-20v1,-2,-4,-10,-48,-79v-1,0,-1,0,-49,70v-2,2,-4,6,-4,9","w":239},"Y":{"d":"168,-16v8,0,8,4,8,11v-4,17,-21,1,-56,5v-42,-4,-53,13,-60,-8v0,-10,4,-8,28,-9v5,-1,10,0,10,-8v-3,-33,7,-73,-7,-95v0,0,-65,-103,-67,-106v-7,-9,-19,1,-20,-14v6,-15,16,-7,49,-7v31,0,40,-8,45,6v6,19,-30,1,-32,20v0,4,1,5,51,91v3,6,5,6,8,3v53,-74,63,-85,63,-95v0,-18,-34,0,-34,-19v5,-13,14,-4,41,-6v45,-4,51,4,24,26v-20,27,-95,113,-90,126r0,70v0,8,5,7,39,9","w":240,"k":{"e":7,"i":7}},"Z":{"d":"6,-8v45,-75,106,-136,160,-204v0,-1,-1,-4,-5,-4r-117,0v-18,0,-17,5,-23,33v-2,8,-15,13,-15,-1v0,-1,4,-42,3,-67v0,-8,4,-10,7,-10v14,3,9,18,29,18r157,0v8,0,9,4,9,6v-27,51,-117,134,-144,197v2,13,55,10,79,11v26,0,43,-1,53,-22v7,-15,0,-40,16,-41v3,0,8,3,8,10v0,26,1,82,-18,82r-189,0v-3,0,-10,0,-10,-8","w":226},"[":{"d":"46,-244r0,302v0,-1,13,-6,23,-11r0,-281v0,-3,-10,-4,-23,-10xm28,-256v8,-26,18,1,52,1v31,0,42,-19,48,-5v3,7,-23,24,-44,27r0,279v0,7,8,-1,27,11v10,7,23,16,12,22v-3,0,-20,-12,-47,-12v-25,0,-37,9,-41,9v-5,0,-6,-4,-6,-8r-2,-152v-5,8,-23,0,-19,-11v0,-15,13,-15,19,-10v3,-47,0,-102,1,-151","w":136},"\\":{"d":"84,72v-1,7,-15,13,-16,5v-59,-254,-67,-290,-67,-292v1,-6,16,-11,17,-2v33,165,66,282,66,289","w":84},"]":{"d":"90,58r-1,-302v-14,9,-22,6,-22,10r1,283v15,2,20,9,22,9xm9,75v-2,-14,48,-27,43,-29r-2,-281v-26,-2,-52,-21,-37,-30v1,0,19,10,43,10v28,0,34,-13,43,-13v8,0,9,8,9,12r1,151v7,-4,19,-5,19,10v3,11,-13,20,-19,11v-7,45,0,103,-2,152v-5,20,-15,-1,-47,-1v-33,0,-44,20,-51,8","w":136},"^":{"d":"18,-174v36,-62,43,-87,57,-84v9,0,14,9,18,15v39,63,41,64,41,69v-5,17,-22,2,-26,-7v-29,-37,-28,-37,-32,-37v-3,0,-2,-2,-33,38v-8,10,-20,21,-25,6","w":152},"_":{"d":"15,27v-8,0,-8,-19,0,-19r160,0v5,0,5,4,5,9v0,5,0,10,-5,10r-160,0","w":189},"`":{"d":"12,-223v-10,-3,-13,-29,5,-29v10,0,16,10,19,15v36,53,38,54,38,59v0,4,-3,7,-7,7v-5,0,-5,-1,-55,-52"},"a":{"d":"90,-83v10,-22,0,-58,-26,-56v-30,2,-23,26,-39,28v-7,0,-15,-5,-15,-13v0,-37,113,-55,109,20r0,71v2,29,23,10,28,4v9,9,-5,33,-25,33v-18,0,-23,-14,-26,-15v-5,5,-26,18,-43,18v-25,0,-41,-18,-41,-40v-10,-39,68,-51,78,-50xm90,-69v-11,-1,-56,5,-51,32v-2,12,8,26,23,24v33,-5,33,-16,32,-46v0,-9,-1,-10,-4,-10","w":152},"b":{"d":"26,-214v0,-17,-41,-18,-20,-27v36,-15,40,-16,41,-16v15,15,-3,105,6,117v3,0,18,-15,49,-15v76,0,102,120,22,155v-37,16,-71,-10,-93,8v-5,0,-6,-6,-6,-11v0,-42,1,-169,1,-211xm50,-26v-1,18,24,18,38,18v37,0,61,-25,61,-61v0,-40,-29,-67,-60,-67v-17,0,-39,10,-39,18r0,92","w":174},"c":{"d":"137,-30v-9,22,-33,36,-62,36v-41,0,-69,-33,-69,-77v0,-49,31,-83,77,-83v26,0,46,13,46,27v-12,32,-35,-6,-58,-8v-65,9,-46,118,16,118v33,0,37,-31,50,-13","w":137},"d":{"d":"128,-116v-25,-43,-103,-19,-98,38v5,60,67,87,97,51v2,-28,0,-60,1,-89xm177,-19v-6,2,-58,52,-50,13v-1,0,-14,14,-42,14v-48,0,-79,-37,-79,-83v0,-37,23,-77,80,-77v29,0,37,10,42,2r0,-61v6,-8,-23,-10,-29,-20v31,-17,54,-36,54,-21v0,8,-1,198,0,222v-2,10,20,0,24,11","w":177},"e":{"d":"144,-31v-35,56,-133,58,-136,-43v-3,-91,104,-105,131,-38v0,10,-18,14,-29,18v-74,25,-77,25,-77,28v0,4,8,52,54,52v20,0,36,-13,51,-22v3,0,6,2,6,5xm104,-112v-15,-33,-78,-30,-72,28v0,2,1,3,2,3v4,-4,71,-22,70,-31","w":147},"f":{"d":"55,-23v-4,17,35,5,28,17v-3,16,-12,6,-38,6v-27,0,-36,10,-39,-7v-4,-9,27,-2,23,-16v1,-9,1,-33,1,-103v0,-4,-2,-3,-19,-4v-2,0,-7,0,-7,-6v-6,-20,32,-5,26,-15v0,-14,2,-46,15,-69v14,-24,44,-39,66,-39v30,0,35,33,11,33v-10,0,-19,-9,-30,-9v-27,0,-38,38,-37,81v0,5,0,6,3,6v15,3,41,-8,44,8v2,15,-29,11,-44,11v-2,0,-3,0,-3,3r0,103","w":105},"g":{"d":"67,-144v-18,0,-31,16,-31,40v0,27,15,51,37,51v20,0,32,-18,32,-40v0,-25,-15,-51,-38,-51xm44,11v-9,0,-14,13,-14,21v0,21,25,35,59,35v37,0,45,-16,45,-26v-11,-40,-40,-21,-90,-30xm37,-50v-2,-2,-35,-29,-29,-50v0,-30,25,-56,58,-56v26,0,38,13,46,13v13,1,17,-17,29,-20v7,0,13,8,13,15v-1,17,-25,17,-27,25v17,44,-26,100,-77,79v-6,0,-16,11,-16,19v0,21,60,12,88,20v23,6,33,24,33,40v0,20,-15,49,-75,49v-84,0,-77,-57,-51,-78v0,-2,-13,-5,-13,-21v1,-21,19,-33,21,-35","w":158},"h":{"d":"133,-45v0,-73,-6,-76,-46,-89v-17,2,-33,9,-32,23v0,2,0,86,1,89v3,16,38,4,23,24v-6,-7,-78,9,-71,-7v-2,-10,26,-6,22,-20r0,-189v-4,-9,-40,-11,-20,-22v40,-23,37,-23,42,-23v2,0,5,1,5,7v2,36,-4,80,2,113v2,0,18,-13,42,-13v24,0,40,14,48,33v8,17,9,28,11,95v-4,16,29,8,15,26v-5,-7,-76,8,-70,-7v0,-8,5,-7,21,-9v7,-1,7,-4,7,-31","w":185},"i":{"d":"37,-222v0,-10,8,-17,18,-17v9,0,17,7,17,16v0,10,-8,17,-18,17v-9,0,-17,-7,-17,-16xm6,-4v-6,-14,34,-5,28,-23r0,-86v0,-6,-1,-5,-24,-15v-2,-1,-5,-2,-5,-4v20,-14,55,-40,55,-21r-2,94v0,44,0,45,8,46v17,-1,20,8,12,15v-6,-8,-76,8,-72,-6","w":87},"j":{"d":"60,23v-4,25,-31,51,-59,60v-8,0,-14,-5,-14,-12v3,-32,47,7,47,-43r1,-141v4,-8,-14,-11,-25,-24v0,-4,0,-3,43,-21v3,-3,6,0,6,5v-2,15,0,182,1,176xm37,-217v0,-10,8,-17,18,-17v9,0,17,7,17,16v0,10,-8,17,-18,17v-9,0,-17,-7,-17,-16","w":83},"k":{"d":"24,-214v1,-16,-36,-19,-15,-29v34,-15,34,-15,36,-15v3,0,4,3,4,6r1,171v37,-38,47,-35,28,-59v-2,-13,18,-6,29,-8v30,3,39,-8,45,5v0,10,-8,7,-21,10v-16,4,-34,21,-55,45v0,2,0,1,42,51v9,11,19,23,36,25v3,1,6,2,6,7v-4,15,-12,5,-40,5v-25,0,-36,10,-39,-4v0,-14,17,-4,17,-15v0,-8,-36,-53,-39,-53v-15,4,-9,31,-10,51v-6,11,38,6,19,22v-7,-4,-66,7,-62,-6v0,-12,18,-3,18,-15r0,-194","w":163},"l":{"d":"4,-234r49,-26v4,0,5,3,5,7r0,227v-7,18,35,7,20,28v-6,-7,-78,9,-72,-8v-3,-12,32,-4,25,-21r0,-184v0,-10,-32,-18,-27,-23","w":86},"m":{"d":"10,-132r36,-24v8,1,1,14,5,20v2,0,17,-16,39,-16v24,0,36,21,40,20v3,-2,45,-25,50,-20v47,-4,62,65,53,127v-2,18,21,7,22,20v-3,14,-11,5,-35,5v-27,0,-30,9,-37,-4v-6,-11,28,-4,24,-19v-3,-47,13,-107,-37,-111v-29,9,-29,4,-30,41r-1,73v-7,10,40,4,20,22v-6,-7,-80,9,-72,-8v-4,-10,35,-1,29,-21v-1,-48,12,-107,-37,-107v-51,0,-21,68,-29,111v-8,14,39,8,20,25r-57,-1v-4,0,-5,-3,-5,-7v0,-11,20,-1,20,-16r0,-89v3,-7,-10,-12,-18,-21","w":260},"n":{"d":"27,-111v4,-9,-9,-11,-18,-24v0,-3,1,-3,34,-21v3,-2,9,-1,8,4v1,6,-1,14,1,18v2,0,19,-22,50,-22v20,-5,57,23,52,70r0,63v-6,15,36,8,17,25v-7,-6,-69,8,-65,-7v-5,-11,25,0,24,-17v-3,-35,3,-62,-4,-95v-17,-38,-74,-18,-74,7r0,86v-2,16,45,8,23,27v-1,0,-16,-3,-34,-3v-26,0,-32,9,-37,-4v-5,-13,29,-4,23,-21r0,-86","w":179},"o":{"d":"8,-73v0,-50,37,-83,77,-83v43,0,76,34,76,83v0,51,-37,80,-77,80v-46,0,-76,-36,-76,-80xm85,-11v31,0,51,-29,51,-61v0,-39,-26,-67,-53,-67v-19,0,-47,16,-47,64v0,37,19,64,49,64","w":168},"p":{"d":"57,-27v-2,10,21,17,33,17v29,0,57,-24,57,-60v0,-35,-27,-64,-56,-64v-11,0,-39,11,-34,30r0,77xm5,-131v13,-11,30,-18,44,-28v7,4,0,20,4,28v1,0,21,-24,50,-24v40,0,68,36,68,78v0,54,-52,90,-109,77v-5,14,-2,37,-2,55v0,17,54,3,32,26v-11,-7,-94,9,-87,-6v-6,-11,28,-2,28,-20r0,-167v-2,-11,-38,-19,-28,-19","w":177},"q":{"d":"134,-123v-1,-18,-26,-21,-41,-21v-34,0,-61,26,-61,60v0,37,31,65,66,65v19,0,38,-2,37,-20v0,-8,1,-17,-1,-84xm104,78v-4,-11,37,-7,31,-24r0,-62v-7,-7,-16,11,-49,11v-44,0,-80,-35,-80,-80v0,-34,25,-79,96,-79v33,1,44,9,55,-5v3,0,4,5,4,20r0,191v-3,21,18,12,25,23v-3,11,-8,8,-27,7v-37,-2,-49,15,-55,-2","w":189},"r":{"d":"27,-117v3,-7,-10,-8,-21,-22r41,-20v9,2,1,16,5,23v9,-8,67,-46,76,-8v-3,11,-13,16,-24,19v-9,0,-10,-9,-22,-9v-13,3,-30,9,-29,22r0,88v-4,16,45,7,35,19v-2,15,-14,5,-41,5v-29,0,-39,10,-43,-4v-4,-13,23,-1,23,-18r0,-95","w":128},"s":{"d":"64,7v-29,1,-55,-13,-55,-52v0,-9,1,-11,7,-11v9,0,3,12,8,22v4,19,71,35,70,-3v0,-23,-31,-27,-43,-30v-60,-17,-50,-87,12,-87v19,0,16,3,27,-2v9,10,22,53,4,51v-7,0,-6,-11,-11,-18v-9,-15,-52,-22,-52,5v0,5,1,19,28,26v25,1,59,22,59,50v0,23,-19,49,-54,49","w":121},"t":{"d":"108,-143v2,20,-33,10,-52,12v-2,0,-3,1,-3,4v-1,67,-1,75,-1,84v0,12,3,26,19,26v21,0,35,-34,45,-15v-19,46,-89,61,-89,-17v0,-18,4,-75,-1,-82v-8,-1,-18,3,-19,-5v0,-6,18,-13,38,-46v1,-4,11,-10,12,-1v1,10,-7,34,6,33v16,3,40,-8,45,7","w":119},"u":{"d":"92,-12v18,0,34,-11,37,-24r0,-89v5,-13,-22,-7,-29,-18v0,-5,2,-6,5,-6v35,-1,39,-2,44,-2v5,0,5,4,5,7r0,113v0,4,3,3,18,11v9,16,-1,6,-33,24v-9,5,-9,-8,-10,-16v-2,0,-20,18,-50,18v-57,0,-60,-68,-56,-132v4,-10,-32,-11,-17,-23v30,-2,34,-3,38,-3v3,0,4,2,4,5v2,59,-15,135,44,135","w":181},"v":{"d":"134,-129v3,-12,-27,1,-27,-15v4,-11,10,-4,33,-4v25,0,30,-7,35,5v-1,14,-22,-1,-22,18v-25,74,-41,127,-59,134v-6,0,-9,-5,-12,-11v-46,-82,-59,-122,-64,-129v-8,-9,-17,0,-17,-14v5,-10,13,-3,38,-3v28,0,36,-8,40,6v3,12,-27,0,-28,14v0,2,19,64,47,100v27,-45,37,-96,36,-101","w":176},"w":{"d":"90,-30v18,-17,35,-62,37,-66v0,-3,-13,-29,-14,-31v-9,-14,-27,-3,-27,-14v4,-16,13,-4,43,-7v29,3,38,-9,42,6v0,6,-1,5,-21,7v-3,0,-8,1,-8,7v0,7,21,55,45,92v2,6,8,6,10,2v26,-46,35,-89,35,-93v4,-14,-28,-1,-29,-16v3,-12,9,-5,33,-5v24,0,30,-7,34,5v0,9,-8,7,-11,8v-16,3,0,29,-62,135v-14,24,-18,6,-38,-31v-24,-43,-22,-45,-23,-45v-7,4,-44,104,-48,85v-4,0,-7,-3,-11,-9v-38,-73,-56,-126,-59,-130v-6,-10,-16,-1,-16,-13v4,-12,11,-5,34,-5v23,0,27,-8,31,5v0,13,-23,2,-23,13v12,35,27,70,46,100","w":270},"x":{"d":"76,-63v-12,9,-23,32,-35,45v0,10,34,3,18,19v-7,-6,-63,11,-56,-7v0,-11,17,-3,20,-13v43,-60,44,-49,41,-59v-49,-61,-44,-57,-54,-57v-9,0,-7,-15,-1,-14v8,6,70,-11,64,9v3,7,-19,1,-19,10v11,16,30,45,28,34v22,-29,26,-33,26,-35v0,-8,-18,-1,-18,-9v2,-18,8,-5,31,-8v21,2,27,-7,31,4v1,15,-28,5,-32,20v-30,40,-30,39,-30,41v0,1,2,0,49,64v7,9,13,2,17,12v-2,16,-10,7,-34,7v-25,0,-30,7,-34,-5v-4,-11,31,-5,21,-17","w":159},"y":{"d":"33,80v-8,0,-14,-5,-14,-13v0,-14,20,-16,32,-31v41,-50,26,-40,-16,-131v-6,-13,-19,-35,-20,-36v-7,-5,-22,-8,-9,-18v6,4,64,-6,62,5v3,13,-17,4,-19,14v0,0,16,52,42,90v21,-37,32,-80,33,-88v2,-13,-24,-1,-24,-15v5,-12,10,-5,35,-5v24,0,29,-7,32,6v0,6,-3,5,-14,7v-8,1,-4,1,-29,63v-16,40,-38,90,-64,130v-9,13,-16,22,-27,22","w":168},"z":{"d":"35,-128v-8,-6,-6,36,-21,17r4,-47v1,-5,4,-5,8,-5v8,0,1,13,10,13r78,0v4,0,8,1,8,5r-84,118v13,10,43,1,64,4v6,0,6,-4,9,-22v1,-1,1,-6,6,-6v20,4,4,19,4,58v0,19,6,25,-10,26v-15,1,4,-33,-12,-33r-84,0v-16,-1,-11,-13,-6,-19r76,-104v-7,-11,-34,-2,-50,-5","w":129},"{":{"d":"38,-53v-1,-31,-20,-36,-22,-39v0,-3,21,-6,21,-37v0,-28,-9,-53,-9,-82v0,-42,25,-52,47,-46v0,1,-16,5,-22,23v-9,29,7,51,7,86v0,35,-16,53,-16,57v0,3,15,17,15,48v0,23,-10,46,-10,68v0,33,23,44,23,45v-21,4,-45,-8,-46,-49v0,-28,12,-51,12,-74","w":90},"|":{"d":"28,71v-4,0,-10,1,-10,-4r0,-321v0,-4,5,-4,9,-4v8,0,10,1,10,4r0,321v0,2,-1,4,-9,4","w":55},"}":{"d":"64,-211v0,29,-10,54,-10,82v-1,33,23,32,20,38v-35,20,-9,70,-9,112v0,42,-24,53,-46,49v0,-1,23,-12,23,-45v0,-22,-10,-45,-10,-68v-1,-37,21,-42,14,-52v-26,-36,-5,-84,-5,-122v0,-32,-24,-39,-24,-40v22,-7,47,5,47,46","w":90},"~":{"d":"14,-62v-13,-12,17,-50,40,-50v21,0,32,21,54,21v29,1,31,-37,46,-16v0,2,-24,41,-54,41v-25,0,-33,-21,-52,-21v-15,0,-23,14,-34,25","w":162},"\u00a0":{"w":90}}});;
$(function() {
  var themePath = Drupal.settings.current_theme_path;

  $("a.cufon-set").mouseover(function () {
    Cufon.set('fontFamily', $(this).attr('id'));
    Cufon.refresh();
  });

  $("a.bg-set").mouseover(function () {
    $('body').css('background-image','url('+themePath+'images/backgrounds/'+$(this).attr('id')+'.jpg)');
  });

  $("div.play-animation").click(function () {
    $('#container').css('min-width', '0');
    $('#container').css('max-width', 'none');
    pagerAnim();
    containerAnim();
  });

  function pagerAnim()  {
    $('#ch1').animate(
      {'fontSize': '200%'},
      1000,
      "swing"
    ).css('color','#b91553').animate({opacity: 1.0}, 9000).animate(
      {'fontSize': '100%'},
      1000,
      "swing"
    );
    $('#ch2').animate({opacity: 1.0}, 10000).animate(
      {'fontSize': '200%'},
      1000,
      "swing"
    ).css('color','#b91553').animate({opacity: 1.0}, 6100).animate(
      {'fontSize': '100%'},
      1000,
      "swing"
    );
    $('#ch3').animate({opacity: 1.0}, 17100).animate(
      {'fontSize': '200%'},
      1000,
      "swing"
    ).css('color','#b91553').animate({opacity: 1.0}, 6000).animate(
      {'fontSize': '100%'},
      1000,
      "swing"
    ).animate({opacity: 1.0}, 2000, cleanUp);
  }

  function cleanUp()  {
    $('.adtblocks .render').remove();
    $('.adtblocks .block').css('width', '100%');
    $('#anim-chapters li').css('color','#222222')
  }


  function containerAnim() {
    $('#container').animate(
      {'width': '95%'},
      4000,
      "swing"
    ).animate(
      {'width': '600px'},
      4000,
      "swing"
    ).animate(
      {'width': '960px'},
      2000,
      "swing",
      columnsAnim
    );
  }

  function columnsAnim() {
    $('#content').animate(
      {'width': '30%'},
      3000,
      "swing"
    ).animate(
      {'width': '70%'},
      100,
      "swing"
    ).animate(
      {'width': '54%'},
      3000,
      "swing",
      addBlock1
    );
    $('.sidebar').animate(
      {'width': '35%'},
      3000,
      "swing"
    ).animate(
      {'width': '15%'},
      100,
      "swing"
    ).animate(
      {'width': '23%'},
      3000,
      "swing"
    );
  }

  function addBlock1() {
    $('.preblocks .block').animate(
      {'width': '50%'},
      2000,
      "swing",
      function () { preblocks1() }
    );
    $('.postblocks .block').animate(
      {'width': '50%'},
      2000,
      "swing",
      function () { postblocks1() }
    );
  }

  function preblocks1() {
    $('.preblocks').prepend('<div class="block block-block region-odd odd region-count-1 count-1 first callout-1 render" ><div class="block-inner clearfix"> <h2 class="title blocktitle"><span>Dynamic Region 1</span></h2> <div class="content"> <p>This is the "pre-blocks" region.<br /> You can put as many blocks as you like in here</p>  </div> </div></div><!-- end .inner --><!-- end .block --> ');
    $('.preblocks .block').css('width', '50%');
  }
  function postblocks1() {
    $('.postblocks').prepend('<div class="block block-block region-odd odd region-count-1 count-1 first callout-1 render" ><div class="block-inner clearfix"> <h2 class="title blocktitle"><span>Dynamic Region 2</span></h2> <div class="content"> <p>This is the "post-blocks" region.<br /> You can put as many blocks as you like in here</p></p>  </div> </div></div><!-- end .inner --><!-- end .block --> ');
    $('.postblocks .block').css('width', '50%');
    addBlock2();
  }

  function addBlock2() {
    $('.preblocks .block').animate({opacity: 1.0}, 2000).animate(
      {'width': '25%'},
      2000,
      "swing",
      function () { preblocks2() }
    );
    $('.postblocks .block').animate({opacity: 1.0}, 2000).animate(
      {'width': '25%'},
      2000,
      "swing",
      function () { postblocks2() }
    );
  }

  function preblocks2() {
    $('.preblocks .last').before('<div class="block block-block region-odd odd region-count-1 count-1 callout-3 render" ><div class="block-inner clearfix"> <h2 class="title blocktitle"><span>Dynamic Region 1</span></h2> <div class="content"> <p>This is the "pre-blocks" region.<br /> You can put as many blocks as you like in here</p>  </div> </div></div><!-- end .inner --><!-- end .block --> ');
    $('.preblocks .block').css('width', '25%');
  }
  function postblocks2() {
    $('.postblocks .last').before('<div class="block block-block region-odd odd region-count-1 count-1 callout-3 render" ><div class="block-inner clearfix"> <h2 class="title blocktitle"><span>Dynamic Region 2</span></h2> <div class="content"> <p>This is the "post-blocks" region.<br /> You can put as many blocks as you like in here</p></p>  </div> </div></div><!-- end .inner --><!-- end .block --> ');
    $('.postblocks .block').css('width', '25%');
  }

});;

(function($) {

Drupal.RotorBanner = {};

Drupal.RotorBanner.initialize = function() {
    Drupal.RotorBanner.animate();
};

Drupal.RotorBanner.animate = function() {
	// redefine Cycle's updateActivePagerLink function 
	$.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex){
		$(pager).find('.rotor-tab').removeClass('selected')
		.filter('.rotor-tab:eq(' + currSlideIndex + ')').addClass('selected');
	};
	
  for (rotor_item in Drupal.settings.RotorBanner) {
    var settings = Drupal.settings.RotorBanner[rotor_item];
    // cache the jquery context for a performance boost
    var $rotor = $('#rotor-view-id-'+ settings.view_id +'-view-display-id-'+ settings.display_id);
    
    if (settings.effect == 'random') {
      settings.effect = 'blindX, blindY, blindZ, cover, curtainX, curtainY, fade, fadeZoom, growX, growY, scrollUp, scrollDown, scrollLeft, scrollRight, scrollHorz, scrollVert, shuffle, slideX, slideY, toss, turnUp, turnDown, turnLeft, turnRight, uncover, wipe, zoom';
      settings.randomize = 1;
    }

    $items = $rotor.find('div.rotor-items');
  	$items.cycle({
  		timeout: settings.time * 1000,
  		speed: settings.speed,
  		fx: settings.effect,
  		randomizeEffects: settings.randomize,
  		pause: settings.pause,
  		cleartypeNoBg: true,
  		pager: $('div.rotor-tabs', $rotor),
  		pagerAnchorBuilder: function(idx, slide){
  			return $('div.rotor-tabs .rotor-tab:eq(' + idx + ')', $rotor); 
  		}
  	}).css('visibility', 'visible');
  }
};

if (Drupal.jsEnabled) {
  $(document).ready(function() {
    Drupal.RotorBanner.initialize();
  });
}

})(jQuery);
;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.65 (07-APR-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
;(function($){var ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length==0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options,o);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;default:options={fx:options};}}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;i<els.length;i++){var $e=$(els[i]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingOp=($.browser.opera&&this.cycleW==42&&this.cycleH==19&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];var tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){var tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(var i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):'<a href="#">'+(i+1)+"</a>";if(!a){return;}var $a=$(a);if($a.parents("body").length==0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);

/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.52
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var t=parseInt(h/2);var l=parseInt(w/2);clip="rect("+t+"px "+l+"px "+t+"px "+l+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);
;

