/*
 * 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);};});})();;// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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>';
  }
};
;// $Id: panels.js,v 1.2.4.1 2009/10/05 22:40:35 merlinofchaos Exp $

(function ($) {
  Drupal.Panels = {};

  Drupal.Panels.autoAttach = function() {
    if ($.browser.msie) {
      // If IE, attach a hover event so we can see our admin links.
      $("div.panel-pane").hover(
        function() {
          $('div.panel-hide', this).addClass("panel-hide-hover"); return true;
        },
        function() {
          $('div.panel-hide', this).removeClass("panel-hide-hover"); return true;
        }
      );
      $("div.admin-links").hover(
        function() {
          $(this).addClass("admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("admin-links-hover"); return true;
        }
      );
    }
  };

  $(Drupal.Panels.autoAttach);
})(jQuery);
;/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();;/*
 * 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);
;// $Id: views_slideshow.js,v 1.1.2.1.2.34 2010/05/18 05:16:07 redndahead Exp $

/**
 *  @file
 *  A simple jQuery SingleFrame Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowSingleFrame = function (context) {
  $('.views_slideshow_singleframe_main:not(.viewsSlideshowSingleFrame-processed)', context).addClass('viewsSlideshowSingleFrame-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowSingleFrame[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
    settings.paused = false;

    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_hover==1 || settings.pager_click_to_page),
      prev:(settings.controls > 0)?'#views_slideshow_singleframe_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_singleframe_next_' + settings.vss_id:null,
      pager:(settings.pager > 0)?'#views_slideshow_singleframe_pager_' + settings.vss_id:null,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder: function(idx, slide) {
        var classes = 'pager-item pager-num-' + (idx+1);
        if (idx == 0) {
          classes += ' first';
        }
        if ($(slide).siblings().length == idx) {
          classes += ' last';
        }

        if (idx % 2) {
          classes += ' odd';
        }
        else {
          classes += ' even';
        }
        
        var theme = 'viewsSlideshowPager' + settings.pager_type;
        return Drupal.theme.prototype[theme] ? Drupal.theme(theme, classes, idx, slide, settings) : '';
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(curr, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.vss_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
      },
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    }
    
    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.vss_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.pager_hover == 1) {
      settings.opts.pagerEvent = 'mouseover';
      settings.opts.pauseOnPagerHover = true;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowPause(settings);
      });
    }

    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }
    
    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_pause) {
      viewsSlideshowSingleFramePause(settings);
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_singleframe_image_count_' + settings.vss_id).show();

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_singleframe_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_singleframe_playpause_' + settings.vss_id).click(function(e) {
      	if (settings.paused) {
      	  viewsSlideshowSingleFrameResume(settings);
      	}
      	else {
      	  viewsSlideshowSingleFramePause(settings);
      	}
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowSingleFramePause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_singleframe_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowSingleFrameResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_singleframe_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

Drupal.theme.prototype.viewsSlideshowPagerThumbnails = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '"><img src="' + $(slide).find('img').attr('src') + '" /></a></div>';
}

Drupal.theme.prototype.viewsSlideshowPagerNumbered = function (classes, idx, slide) {
  return '<div class="' + classes + '"><a href="#">' + (idx+1) + '</a></div>';
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}
;// $Id: views_slideshow.js,v 1.1.2.2.2.31 2010/05/18 05:16:07 redndahead Exp $

/**
 * @file
 * A simple jQuery ThumbnailHover Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowThumbnailHover = function (context) {
  $('.views_slideshow_thumbnailhover_main:not(.viewsSlideshowThumbnailHover-processed)', context).addClass('viewsSlideshowThumbnailHover-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowThumbnailHover[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
		settings.paused = false;
		
    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_event=='click')? false : true,
      pager:(settings.pager_event == 'hoverIntent') ? null : '#views_slideshow_breakout_teasers_' + settings.vss_id,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder:(settings.pager_event == 'hoverIntent') ? null : function(idx, slide) { 
        return '#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + idx; 
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(current, next) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.view_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
        
        var currId = (currId=$(current).attr('id')).substring(currId.lastIndexOf('_')+1)
        var nextId = (nextId=$(next).attr('id')).substring(nextId.lastIndexOf('_')+1)
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + currId).removeClass('activeSlide');
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + nextId).addClass('activeSlide');
      },
      pagerEvent: (settings.pager_event == 'hoverIntent') ? null : settings.pager_event,
      prev:(settings.controls > 0)?'#views_slideshow_thumbnailhover_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_thumbnailhover_next_' + settings.vss_id:null,
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    };

    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.view_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowThumbnailHoverPause(settings);
      });
    }
    
    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }

    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_pause) {
      viewsSlideshowThumbnailHoverPause(settings);
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id).show();
    
    if (settings.pager_event == 'hoverIntent') {
      $('#views_slideshow_thumbnailhover_breakout_teasers_' + settings.vss_id + ' .views_slideshow_thumbnailhover_div_breakout_teaser').each(function(i,obj) {
        $(obj).hoverIntent(
          function() {
            $('.views_slideshow_thumbnailhover_div_breakout_teaser').removeClass('activeSlide');
            var id = $(this).attr('id');
            id = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(id);
            $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + id).addClass('activeSlide');
            $(settings.targetId).cycle('stop');
          },
          function() {
            var id = $(this).attr('id');
            settings.opts.startingSlide = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(settings.opts);
          }
        );
      });
    }

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_thumbnailhover_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id).click(function(e) {
        if (settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else {
          viewsSlideshowThumbnailHoverPause(settings);
        }
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowThumbnailHoverPause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_thumbnailhover_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowThumbnailHoverResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_thumbnailhover_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

;// $Id: views_slideshow_ddblock.admin.js,v 1.2 2010/03/21 09:24:07 ppblaauw Exp $

/**
 *  @file
 *  Views Slideshow DDblock admin page functionality 
 */
/**
 * Show/hide imagacache settings sections on the views_slideshow_ddblock configuration page.
 * don't change
 */
Drupal.behaviors.ddblockShowHideImgCacheOptions = function(context) {
  // Show/hide image cache options depending on the checkbox.
  $('#edit-style-options-ddblock-imgcache-toggle:not(.ddblock-show-hide-imgcache-options-processed)', context)
  .addClass('ddblock-show-hide-imgcache-options-processed')
  .bind("click change", function() {
    if (this.checked) {
      $("#ddblock-imgcache-settings-wrapper").show();
    }
    else {
      $("#ddblock-imgcache-settings-wrapper").hide();
    }
    return true;
  }).trigger('change').trigger('change')
};

/**
 * Show/hide pager settings sections on the views_slideshow_ddblock configuration page.
 * don't change
 */
Drupal.behaviors.ddblockShowHidePagerOptions = function(context) {
  // Show/hide pager options depending on the checkbox.
  $('#edit-style-options-ddblock-settings-pager-toggle:not(.ddblock-show-hide-pager-options-processed)', context)
  .addClass('ddblock-show-hide-pager-options-processed')
  .bind("click change", function() {
    if (this.checked){
      $("#ddblock-pager-settings-wrapper").show();
    }
    else {
      $("#ddblock-pager-settings-wrapper").hide();
    }
    return true;
  }).trigger('change').trigger('change')
};

/**
 * Show/hide prev/next pager settings sections on the views_slideshow_ddblock configuration page.
 * don't change
 */
Drupal.behaviors.ddblockShowHidePager2Options = function(context) {
  // Show/hide pev/next pager options depending on the checkbox.
  $('#edit-style-options-ddblock-settings-pager2:not(.ddblock-show-hide-pager2-options-processed)', context)
  .addClass('ddblock-show-hide-pager2-options-processed')
  .bind("click change", function() {
    if (this.checked){
      $("#ddblock-pager2-settings-wrapper").show();
    }
    else {
      $("#ddblock-pager2-settings-wrapper").hide();
    }
    return true;
  }).trigger('change').trigger('change')
};

/**
 * Show/hide prev/next pager settings sections on the views_slideshow_ddblock configuration page.
 * don't change
 */
Drupal.behaviors.ddblockShowHidePager2PagerOptions = function(context) {
  // Show/hide pager options depending on the checkbox.
  $('#edit-style-options-ddblock-settings-pager2-settings-pager2-position-pager:not(.ddblock-show-hide-pager2-pager-options-processed)', context)
  .addClass('ddblock-show-hide-pager2-pager-options-processed')
  .bind("click change", function() {
    if (this.checked){
      $("#ddblock-pager2-pager-settings-wrapper").show();
    }
    else {
      $("#ddblock-pager2-pager-settings-wrapper").hide();
    }
    return true;
  }).trigger('change').trigger('change')
};

/**
 * Show/hide prev/next pager settings sections on the views_slideshow_ddblock configuration page.
 * don't change
 */
Drupal.behaviors.ddblockShowHidePager2SlideOptions = function(context) {
  // Show/hide pager options depending on the checkbox.
  $('#edit-style-options-ddblock-settings-pager2-settings-pager2-position-slide:not(.ddblock-show-hide-pager2-slide-options-processed)', context)
  .addClass('ddblock-show-hide-pager2-slide-options-processed')
  .bind("click change", function() {
    if (this.checked){
      $("#ddblock-pager2-slide-settings-wrapper").show();
    }
    else {
      $("#ddblock-pager2-slide-settings-wrapper").hide();
    }
    return true;
  }).trigger('change').trigger('change')
};

/**
 * Show/hide slide text settings sections on the views_slideshow_ddblock configuration page.
 * don't change
 */
Drupal.behaviors.ddblockShowHideSlideTextOptions = function(context) {
  // Show/hide slide text options depending on the checkbox.
  $('#edit-style-options-ddblock-settings-slide-text:not(.ddblock-show-hide-text-options-processed)', context)
  .addClass('ddblock-show-hide-text-options-processed')
  .bind("click change", function() {
    if (this.checked) {
      $("#ddblock-slide-text-settings-wrapper").show();
    }
    else {
      $("#ddblock-slide-text-settings-wrapper").hide();
    }
    return true;
  }).trigger('change').trigger('change')
};

/**
 * Show/hide jquery slide text settings sections on the views_slideshow_ddblock configuration page.
 * don't change
 */
Drupal.behaviors.ddblockShowHideSlideJqueryTextOptions = function(context) {
  // Show/hide slide text options depending on the checkbox.
  $('#edit-style-options-ddblock-settings-slide-text-settings-slide-text-jquery:not(.ddblock-show-hide-text-jquery-options-processed)', context)
  .addClass('ddblock-show-hide-text-jquery-options-processed')
  .bind("click change", function() {
    if (this.checked) {
      $("#ddblock-slide-jquery-settings-wrapper").show();
    }
    else {
      $("#ddblock-slide-jquery-settings-wrapper").hide();
    }
    return true;
  }).trigger('change').trigger('change')
};

/**
 * Change pager container depending on the pager.
 */
Drupal.behaviors.ddblockChangePagerContainerOptions = function(context) {

  // Change pager container option depending on select.
  $('#edit-style-options-ddblock-settings-pager-settings-pager:not(.ddblock-change-pager-container-options-processed)', context)
  .addClass('ddblock-change-pager-container-options-processed')
  .bind("change", function() {
    val = $('#edit-style-options-ddblock-settings-pager-settings-pager').val();
    switch (val) {
      case "number-pager" :
      case "prev-next-pager" :
      case "custom-pager" :
        $('#edit-style-options-ddblock-settings-pager-settings-pager-container').val('.custom-pager-item');
      break;
      case "scrollable-pager" :
        $('#edit-style-options-ddblock-settings-pager-settings-pager-container').val('.scrollable-pager-item');
      break;
    }
    return false;
  }).trigger('change').trigger('change')
};



/**
 * Show/hide custom template settings sections on the views_slideshow_ddblock configuration page.
 */
Drupal.behaviors.ddblockShowHideCustomTemplateOptions = function(context) {

  // get variables
  var ddblockSettings = Drupal.settings.ddblockCustomTemplate;

  // Show/hide imagefolder/contenttype options depending on the select.
  $('#edit-style-options-ddblock-template:not(.ddblock-show-hide-custom-template-options-processed)', context)
  .addClass('ddblock-show-hide-custom-template-options-processed')
  .bind("change", function() {
    val = $('#edit-style-options-ddblock-template').val();
    switch (val) {
    case "custom" :
      $('#ddblock-custom-template-settings-wrapper').show();
    break;  
    case "vsd-upright10" :
      $('#edit-style-options-ddblock-settings-pager-settings-pager').val('number-pager');
      $('#edit-style-options-ddblock-settings-pager-settings-pager-container').val('.custom-pager-item');
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="number-pager"]').show();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="custom-pager"]').hide();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="scrollable-pager"]').hide();
    break;
    case "vsd-upright20" :
      $('#edit-style-options-ddblock-settings-pager-settings-pager').val('prev-next-pager');
      $('#edit-style-options-ddblock-settings-pager-settings-pager-container').val('.custom-pager-item');
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="number-pager"]').hide();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="custom-pager"]').hide();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="scrollable-pager"]').hide();
    break;
    case "vsd-upright30" :
    case "vsd-upright40" :
    case "vsd-upright50" :
      $('#edit-style-options-ddblock-settings-pager-settings-pager').val('custom-pager');
      $('#edit-style-options-ddblock-settings-pager-settings-pager-container').val('.custom-pager-item');
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="number-pager"]').hide();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="prev-next-pager"]').hide();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="custom-pager"]').show();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="scrollable-pager"]').hide();
    break;
    case "vsd-upright60" :
      $('#edit-style-options-ddblock-settings-pager-settings-pager').val('scrollable-pager');
      $('#edit-style-options-ddblock-settings-pager-settings-pager-container').val('.scrollable-pager-item');
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="number-pager"]').hide();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="prev-next-pager"]').hide();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="custom-pager"]').hide();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="scrollable-pager"]').show();
    break;
    }
    if (val.match("upright") == "upright") {
      if (!$.browser.mozilla) {
        var uprightPagerPositionOptions = {
          "top" : "Top",
	        "bottom" : "Bottom"
        }
//        $("#edit-style-options-ddblock-settings-pager-settings-pager-position").removeOption(/./);
//        $("#edit-style-options-ddblock-settings-pager-settings-pager-position").addOption(uprightPagerPositionOptions, false); // use true if you want to select the added options 
      }
      else {
        $("#edit-style-options-ddblock-settings-pager-settings-pager-position option[@value='top']").show();
        $("#edit-style-options-ddblock-settings-pager-settings-pager-position option[@value='right']").hide();
        $("#edit-style-options-ddblock-settings-pager-settings-pager-position option[@value='bottom']").show();
        $("#edit-style-options-ddblock-settings-pager-settings-pager-position option[@value='left']").hide();
        $("#edit-style-options-ddblock-settings-pager-settings-pager-position option[@value='both']").hide();
      }
      $("#ddblock-custom-template-settings-wrapper").hide();
 //     $('#edit-style-options-ddblock-settings-pager-settings-pager-position').val(ddblockSettings.pagerPosition);
    }
    else { /* custom themes */
      if (!$.browser.mozilla) {
        var customPagerPositionOptions = {
          "top" : "Top",
	        "right" : "Right",
	        "bottom" : "Bottom",
          "left" : "Left",
          "both" : "Both"
        }
//        $("#edit-style-options-ddblock-settings-pager-settings-pager-position").removeOption(/./);
//        $("#edit-style-options-ddblock-settings-pager-settings-pager-position").addOption(customPagerPositionOptions, false); // use true if you want to select the added options 
      }
      else {
        $('#edit-style-options-ddblock-settings-pager-settings-pager-position option[value="right"]').show();
        $('#edit-style-options-ddblock-settings-pager-settings-pager-position option[value="left"]').show();
        $('#edit-style-options-ddblock-settings-pager-settings-pager-position option[value="both"]').show();
      }
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="number-pager"]').show();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="prev-next-pager"]').show();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="custom-pager"]').show();
      $('#edit-style-options-ddblock-settings-pager-settings-pager option[value="scrollable-pager"]').show();
//      $('#edit-style-options-ddblock-settings-pager-settings-pager').val(ddblockSettings.pager);
//      $('#edit-style-options-ddblock-settings-pager-settings-pager-position').val(ddblockSettings.pagerPosition);
      $("#edit-style-options-ddblock-settings-pager-settings-pager-position-wrapper").show();
    }
    return false;
  }).trigger('change').trigger('change')
};
;/*
 * Based on easing equations by Robert Penner. Adapted from jqueryt easing plugin by George McGinley Smith. See below for copyright notice of equations
 *
*/

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright Â© 2001 Robert Penner
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
 */

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutTurbo',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
  easeInTurbo: function (x, t, b, c, d) {
    return c*(t/=d)*t + b;
  },
  easeOutTurbo: function (x, t, b, c, d) {
    return -c *(t/=d)*(t-2) + b;
  },
  easeInTurbo2: function (x, t, b, c, d) {
    return c*(t/=d)*t*t + b;
  },
  easeOutTurbo2: function (x, t, b, c, d) {
    return c*((t=t/d-1)*t*t + 1) + b;
  },
  easeInTurbo3: function (x, t, b, c, d) {
    return c*(t/=d)*t*t*t + b;
  },
  easeOutTurbo3: function (x, t, b, c, d) {
    return -c * ((t=t/d-1)*t*t*t - 1) + b;
  },
  easeInSine: function (x, t, b, c, d) {
    return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
  },
  easeOutSine: function (x, t, b, c, d) {
    return c * Math.sin(t/d * (Math.PI/2)) + b;
  },
  easeInExpo: function (x, t, b, c, d) {
    return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
  },
  easeOutExpo: function (x, t, b, c, d) {
    return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
  },
  easeInCirc: function (x, t, b, c, d) {
    return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
  },
  easeOutCirc: function (x, t, b, c, d) {
    return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
  },
  easeInElastic: function (x, t, b, c, d) {
    var s=1.70158;var p=0;var a=c;
    if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
    if (a < Math.abs(c)) { a=c; var s=p/4; }
    else var s = p/(2*Math.PI) * Math.asin (c/a);
    return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
  },
  easeOutElastic: function (x, t, b, c, d) {
    var s=1.70158;var p=0;var a=c;
    if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
    if (a < Math.abs(c)) { a=c; var s=p/4; }
    else var s = p/(2*Math.PI) * Math.asin (c/a);
    return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
  },
  easeInOvershoot: function (x, t, b, c, d, s) {
    if (s == undefined) s = 1.70158;
    return c*(t/=d)*t*((s+1)*t - s) + b;
  },
  easeOutOvershoot: function (x, t, b, c, d, s) {
    if (s == undefined) s = 1.70158;
    return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
  },
  easeInOvershootTurbo: function (x, t, b, c, d, s) {
    if (s == undefined) s = 1.70158;
    return c*(t/=d)*t*t*((s+1)*t - s) + b;
  },
  easeOutOvershootTurbo: function (x, t, b, c, d, s) {
    if (s == undefined) s = 1.70158;
    return c*((t=t/d-1)*t*t*((s+1)*t + s) + 1) + b;
  },
  easeInBounce: function (x, t, b, c, d) {
    return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
  },
  easeOutBounce: function (x, t, b, c, d) {
    if ((t/=d) < (1/2.75)) {
      return c*(7.5625*t*t) + b;
    } else if (t < (2/2.75)) {
      return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
    } else if (t < (2.5/2.75)) {
      return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
    } else {
      return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
    }
  }
});

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright Â© 2001 Robert Penner
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
 */;/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.05
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I-1]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/[^\S\u00a0]+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.alt}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.alt=w;n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data © 2007 Ascender Corporation. All rights reserved.
 * 
 * Trademark:
 * Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and
 * Trademark Office and certain other jurisdictions.
 * 
 * Manufacturer:
 * Ascender Corporation
 * 
 * Designer:
 * Steve Matteson
 * 
 * Vendor URL:
 * http://www.ascendercorp.com/
 * 
 * License information:
 * http://www.ascendercorp.com/liberation.html
 */
Cufon.registerFont({"w":1139,"face":{"font-family":"Liberation Sans","font-weight":700,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 7 4 2 2 2 2 2 4","ascent":"1638","descent":"-410","x-height":"20","bbox":"-32 -1520 1931 455","underline-thickness":"215","underline-position":"-110","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":569,"k":{"Y":37,"A":76}},"\u00a0":{"w":569},"!":{"d":"455,-426r-230,0r-32,-983r294,0xm193,0r0,-270r288,0r0,270r-288,0","w":682},"\"":{"d":"807,-898r-219,0r-27,-511r275,0xm381,-898r-219,0r-27,-511r273,0","w":971},"#":{"d":"909,-862r-69,332r215,0r0,149r-246,0r-82,381r-156,0r80,-381r-307,0r-80,381r-153,0r79,-381r-155,0r0,-149r188,0r70,-332r-207,0r0,-148r238,0r84,-385r153,0r-82,385r307,0r84,-385r156,0r-84,385r164,0r0,148r-197,0xm449,-862r-72,332r309,0r70,-332r-307,0"},"$":{"d":"629,-838v247,54,481,125,481,426v0,279,-201,376,-481,389r0,175r-109,0r0,-172v-289,-8,-446,-139,-493,-388r256,-47v21,136,90,216,237,228r0,-391v-232,-52,-448,-127,-448,-412v0,-259,196,-342,448,-356r0,-134r109,0r0,134v267,5,397,128,446,350r-264,39v-20,-112,-70,-177,-182,-193r0,352xm520,-1194v-109,9,-184,49,-186,160v-2,122,95,140,186,172r0,-332xm629,-227v129,-10,219,-52,221,-181v2,-138,-116,-154,-221,-186r0,367"},"%":{"d":"1417,-881v260,0,350,176,350,449v-1,270,-98,448,-354,448v-258,0,-353,-178,-354,-448v0,-277,92,-449,358,-449xm552,0r-206,0r920,-1409r209,0xm51,-977v-1,-277,92,-448,357,-448v260,0,352,175,352,448v-1,271,-99,449,-357,449v-256,0,-351,-179,-352,-449xm1415,-141v133,0,137,-145,137,-291v0,-127,-3,-239,-76,-282v-60,-35,-145,-6,-166,48v-23,60,-34,137,-34,234v0,149,2,291,139,291xm406,-684v135,0,137,-146,137,-293v0,-126,-5,-232,-76,-279v-16,-10,-36,-14,-59,-14v-141,5,-142,143,-142,293v0,149,3,293,140,293","w":1821},"&":{"d":"575,20v-293,0,-485,-123,-485,-405v0,-244,167,-343,338,-428v-37,-75,-74,-178,-74,-279v0,-223,144,-325,377,-325v212,0,363,89,363,297v0,173,-127,246,-246,314v-47,26,-96,50,-146,73v70,123,151,233,244,336v72,-109,121,-224,158,-363r209,70v-47,161,-108,293,-193,420v66,66,186,92,295,57r0,203v-166,59,-367,-13,-461,-99v-95,71,-213,129,-379,129xm729,-1247v-139,0,-186,128,-143,255v11,33,24,65,39,95v88,-39,180,-75,226,-151v55,-91,-12,-199,-122,-199xm344,-389v0,144,93,217,242,219v84,2,159,-39,202,-76v-102,-114,-196,-239,-272,-377v-96,47,-172,108,-172,234","w":1479},"'":{"d":"354,-898r-219,0r-26,-511r272,0","w":487},"(":{"d":"379,-530v0,421,126,699,301,955r-281,0v-176,-253,-297,-534,-297,-956v0,-421,122,-700,297,-953r281,0v-176,255,-301,534,-301,954","w":682},")":{"d":"580,-531v0,421,-121,703,-297,956r-281,0v175,-257,301,-533,301,-955v0,-420,-126,-699,-301,-954r281,0v176,253,297,531,297,953","w":682},"*":{"d":"492,-1135r235,-104r68,197r-250,61r186,213r-184,121r-146,-252r-149,252r-186,-123r190,-211r-250,-61r68,-197r239,104r-18,-274r215,0","w":797},"+":{"d":"711,-569r0,408r-226,0r0,-408r-399,0r0,-224r399,0r0,-408r226,0r0,408r402,0r0,224r-402,0","w":1196},",":{"d":"432,-66v1,167,-39,288,-108,383r-185,0v65,-84,127,-177,133,-317r-129,0r0,-305r289,0r0,239","w":569},"-":{"d":"80,-409r0,-244r520,0r0,244r-520,0","w":682},"\u00ad":{"d":"80,-409r0,-244r520,0r0,244r-520,0","w":682},".":{"d":"139,0r0,-305r289,0r0,305r-289,0","w":569},"\/":{"d":"20,41r291,-1525r238,0r-286,1525r-243,0","w":569},"0":{"d":"1018,-1058v45,173,48,519,0,694v-63,228,-184,384,-453,384v-386,0,-481,-318,-484,-725v-2,-254,37,-442,136,-575v77,-103,191,-150,356,-150v265,0,386,146,445,372xm725,-308v60,-139,57,-454,37,-644v-15,-145,-43,-258,-191,-258v-152,0,-184,113,-199,260v-19,189,-22,502,36,642v29,70,71,107,159,107v86,0,129,-38,158,-107"},"1":{"d":"129,0r0,-209r349,0r0,-961r-338,211r0,-221r353,-229r266,0r0,1200r323,0r0,209r-953,0","k":{"1":113}},"2":{"d":"563,-1430v285,0,472,118,472,396v0,227,-142,347,-275,453r-144,115v-82,69,-170,137,-213,235r654,0r0,231r-986,0r0,-195v117,-261,353,-412,545,-593v66,-62,132,-126,134,-234v2,-124,-63,-184,-185,-184v-130,0,-181,74,-199,194r-283,-16v34,-255,187,-402,480,-402"},"3":{"d":"728,-721v197,25,337,120,337,330v0,292,-199,414,-500,414v-309,0,-480,-141,-518,-406r286,-25v18,125,87,203,231,203v135,0,214,-66,213,-203v-2,-185,-178,-200,-368,-194r0,-227v181,8,335,-16,335,-191v0,-118,-69,-186,-190,-186v-119,0,-193,71,-202,184r-281,-20v35,-253,208,-388,488,-388v278,0,470,111,470,375v0,202,-125,294,-301,330r0,4"},"4":{"d":"940,-287r0,287r-268,0r0,-287r-641,0r0,-211r595,-911r314,0r0,913r188,0r0,209r-188,0xm672,-496r2,-562r7,-97v-126,233,-282,438,-421,659r412,0"},"5":{"d":"385,-844v58,-49,145,-92,255,-90v220,3,352,111,412,276v41,114,40,271,-4,384v-71,183,-233,294,-488,294v-288,0,-453,-130,-497,-372r281,-23v25,104,88,172,219,172v147,-1,233,-103,230,-260v-4,-149,-75,-241,-224,-244v-94,-1,-148,41,-191,91r-274,0r49,-793r847,0r0,209r-592,0"},"6":{"d":"350,-752v55,-94,164,-155,306,-155v270,0,409,172,409,446v0,305,-166,481,-474,481v-370,0,-516,-282,-516,-692v0,-251,46,-440,135,-568v112,-163,313,-226,541,-172v154,37,236,148,276,306r-265,37v-22,-87,-75,-139,-170,-139v-75,0,-135,38,-178,113v-43,75,-64,190,-64,343xm582,-199v136,0,203,-108,201,-254v-1,-149,-63,-247,-208,-247v-130,0,-205,81,-205,217v0,155,62,284,212,284"},"7":{"d":"1049,-1186v-205,344,-454,654,-463,1186r-293,0v11,-534,279,-840,495,-1178r-700,0r0,-231r961,0r0,223"},"8":{"d":"785,-739v174,32,291,138,291,342v0,293,-201,417,-505,417v-303,0,-506,-123,-506,-415v0,-200,118,-309,287,-342r0,-4v-148,-37,-254,-140,-254,-316v0,-264,194,-373,469,-373v281,0,474,105,474,375v0,175,-105,278,-256,312r0,4xm569,-838v132,0,183,-74,183,-202v0,-126,-56,-193,-185,-193v-127,0,-182,69,-182,193v1,126,54,202,184,202xm573,-178v156,0,213,-89,212,-242v-1,-145,-71,-222,-220,-221v-144,0,-209,84,-211,225v-1,153,63,238,219,238"},"9":{"d":"563,-1430v391,0,500,299,500,703v0,250,-48,435,-137,561v-115,162,-323,222,-552,167v-156,-38,-238,-152,-278,-312r264,-37v24,90,76,147,180,147v147,0,198,-116,228,-249v12,-56,18,-122,19,-199v-54,100,-163,160,-311,160v-274,0,-405,-189,-405,-469v0,-310,180,-472,492,-472xm557,-698v132,0,209,-88,209,-226v0,-157,-58,-286,-210,-286v-142,0,-200,107,-200,254v0,146,58,258,201,258"},":":{"d":"197,-752r0,-282r288,0r0,282r-288,0xm197,0r0,-281r288,0r0,281r-288,0","w":682},";":{"d":"199,-752r0,-282r288,0r0,282r-288,0xm487,-66v1,167,-39,288,-108,383r-184,0v64,-85,127,-177,133,-317r-129,0r0,-281r288,0r0,215","w":682},"\u037e":{"d":"199,-752r0,-282r288,0r0,282r-288,0xm487,-66v1,167,-39,288,-108,383r-184,0v64,-85,127,-177,133,-317r-129,0r0,-281r288,0r0,215","w":682},"<":{"d":"86,-516r0,-322r1027,-391r0,228r-833,325r833,324r0,227","w":1196},"=":{"d":"85,-842r0,-223r1027,0r0,223r-1027,0xm85,-291r0,-221r1027,0r0,221r-1027,0","w":1196},">":{"d":"86,-125r0,-227r832,-324r-832,-325r0,-228r1027,391r0,322","w":1196},"?":{"d":"94,-1001v42,-270,218,-429,531,-429v233,0,397,79,473,236v55,114,35,291,-29,374v-94,122,-259,173,-335,310v-13,24,-20,52,-21,84r-267,0v12,-273,260,-317,376,-484v19,-29,28,-64,28,-104v0,-124,-89,-193,-221,-190v-146,3,-230,85,-250,215xm438,0r0,-270r289,0r0,270r-289,0","w":1251},"@":{"d":"1571,147v-211,131,-571,234,-898,149v-342,-89,-556,-336,-556,-757v0,-422,191,-695,461,-859v135,-82,307,-134,514,-134v390,1,634,169,740,450v95,253,29,595,-96,748v-79,96,-184,179,-339,182v-142,4,-214,-92,-185,-239r-6,0v-65,123,-172,239,-350,239v-233,0,-330,-159,-330,-385v0,-262,114,-460,289,-559v62,-35,132,-53,211,-53v141,0,223,71,264,174r6,0r39,-152r156,0r-117,506v-17,81,-35,163,-37,240v-5,115,123,106,193,54v122,-90,196,-260,196,-474v0,-286,-145,-461,-360,-545v-142,-55,-361,-59,-517,-14v-294,85,-476,296,-547,600v-43,183,-23,407,46,542v100,195,279,320,572,320v244,0,427,-71,589,-155xm772,-778v-96,156,-151,574,117,563v136,-6,207,-100,261,-201v44,-82,76,-185,81,-305v7,-168,-157,-259,-314,-195v-65,26,-109,79,-145,138","w":1997},"A":{"d":"1133,0r-125,-360r-537,0r-125,360r-295,0r514,-1409r348,0r512,1409r-292,0xm942,-582r-182,-540r-21,-70r-63,205r-139,405r405,0","w":1479,"k":{"y":76,"w":37,"v":76,"Y":188,"W":113,"V":152,"T":152," ":76}},"B":{"d":"1036,-741v207,23,350,127,350,339v0,300,-242,402,-544,402r-705,0r0,-1409r645,0v290,4,523,74,523,354v0,178,-105,282,-269,314xm770,-841v149,0,238,-42,238,-174v0,-138,-94,-175,-240,-175r-336,0r0,349r338,0xm817,-219v159,0,273,-47,273,-206v0,-156,-127,-198,-284,-198r-374,0r0,404r385,0","w":1479},"C":{"d":"381,-711v0,298,117,499,414,499v210,0,311,-119,371,-268r257,97v-99,237,-286,405,-628,403v-470,-3,-711,-267,-711,-731v0,-462,232,-717,698,-719v340,-2,538,140,623,392r-260,71v-49,-141,-167,-231,-357,-231v-293,0,-407,193,-407,487","w":1479},"D":{"d":"647,-1409v466,6,746,224,746,694v0,352,-159,572,-415,669v-83,32,-174,46,-271,46r-570,0r0,-1409r510,0xm1096,-715v0,-305,-156,-462,-455,-466r-209,0r0,953v148,-5,304,17,414,-31v160,-70,250,-225,250,-456","w":1479},"E":{"d":"137,0r0,-1409r1108,0r0,228r-813,0r0,354r752,0r0,228r-752,0r0,371r854,0r0,228r-1149,0","w":1366},"F":{"d":"432,-1181r0,436r721,0r0,228r-721,0r0,517r-295,0r0,-1409r1039,0r0,228r-744,0","w":1251,"k":{"A":113,".":227,",":227}},"G":{"d":"381,-711v0,299,127,500,425,500v163,0,300,-46,390,-119r0,-195r-344,0r0,-218r614,0r0,518v-150,146,-373,245,-668,245v-474,0,-714,-264,-714,-731v0,-468,248,-719,721,-719v333,0,541,126,631,367r-272,82v-56,-132,-170,-217,-359,-217v-298,0,-424,189,-424,487","w":1593},"H":{"d":"1046,0r0,-604r-614,0r0,604r-295,0r0,-1409r295,0r0,561r614,0r0,-561r295,0r0,1409r-295,0","w":1479},"I":{"d":"137,0r0,-1409r295,0r0,1409r-295,0","w":569},"J":{"d":"999,-446v-5,302,-170,462,-475,466v-303,4,-449,-141,-493,-402r293,-43v22,121,67,214,202,214v126,0,180,-93,179,-228r0,-739r-281,0r0,-231r575,0r0,963"},"K":{"d":"1112,0r-506,-647r-174,133r0,514r-295,0r0,-1409r295,0r0,639r635,-639r344,0r-602,596r651,813r-348,0","w":1479},"L":{"d":"137,0r0,-1409r295,0r0,1181r756,0r0,228r-1051,0","w":1251,"k":{"y":76,"Y":188,"W":113,"V":152,"T":152," ":37}},"M":{"d":"1307,0r1,-959r9,-202r-105,375r-254,786r-210,0r-284,-887r-77,-274r12,307r0,854r-262,0r0,-1409r395,0r252,788r70,265r74,-260r248,-793r393,0r0,1409r-262,0","w":1706},"N":{"d":"995,0r-614,-1085r15,170v2,29,3,57,3,84r0,831r-262,0r0,-1409r337,0r623,1094r-15,-176v-2,-33,-3,-66,-3,-99r0,-819r262,0r0,1409r-346,0","w":1479},"O":{"d":"1460,-1008v63,173,63,425,-2,597v-97,262,-312,431,-665,431v-359,0,-572,-170,-665,-438v-60,-175,-59,-420,2,-591v94,-263,312,-421,665,-421v353,0,570,160,665,422xm793,-212v294,0,413,-204,413,-499v0,-290,-124,-487,-411,-487v-290,0,-414,195,-414,487v0,226,80,388,234,462v51,25,111,37,178,37","w":1593},"P":{"d":"770,-1409v321,3,526,135,526,446v0,303,-198,467,-514,467r-350,0r0,496r-295,0r0,-1409r633,0xm745,-723v162,-1,254,-77,254,-235v0,-155,-98,-222,-262,-222r-305,0r0,457r313,0","w":1366,"k":{"A":152,".":264,",":264," ":37}},"Q":{"d":"1251,183v41,0,82,-4,119,-10r-2,202v-118,27,-295,45,-408,-1v-152,-61,-225,-199,-276,-364v-392,-42,-600,-297,-600,-721v0,-348,150,-570,406,-669v170,-66,440,-66,610,1v255,101,407,320,407,668v0,396,-193,634,-524,707v39,119,113,189,268,187xm793,-211v295,0,413,-205,413,-500v0,-290,-124,-487,-411,-487v-290,0,-414,195,-414,487v0,226,80,389,234,463v51,25,111,37,178,37","w":1593},"R":{"d":"1367,-989v0,224,-129,348,-311,397r381,592r-332,0r-327,-535r-346,0r0,535r-295,0r0,-1409r704,0v312,3,526,118,526,420xm818,-764v155,-1,252,-65,252,-213v0,-147,-105,-203,-260,-203r-378,0r0,416r386,0","w":1479,"k":{"Y":76,"W":37,"V":37}},"S":{"d":"680,-1221v-149,1,-268,32,-268,168v0,172,192,172,340,211v43,11,88,20,131,30v216,53,408,136,403,406v-6,326,-261,424,-604,426v-341,2,-561,-113,-623,-387r285,-47v36,150,153,215,346,213v172,-1,309,-37,309,-188v0,-135,-124,-166,-239,-196v-289,-74,-640,-89,-635,-451v4,-304,251,-390,561,-394v318,-4,515,91,563,353r-286,39v-32,-126,-120,-184,-283,-183","w":1366},"T":{"d":"773,-1181r0,1181r-295,0r0,-1181r-455,0r0,-228r1206,0r0,228r-456,0","w":1251,"k":{"y":152,"w":152,"u":152,"s":152,"r":113,"o":152,"i":37,"e":152,"c":152,"a":152,"O":37,"A":152,";":227,":":227,".":227,"-":113,",":227}},"U":{"d":"731,-211v218,0,328,-126,328,-350r0,-848r295,0r0,866v-6,387,-245,563,-631,563v-373,0,-600,-172,-600,-548r0,-881r295,0r0,858v0,218,100,340,313,340","w":1479},"V":{"d":"834,0r-299,0r-521,-1409r308,0r290,905r74,266r72,-266r289,-905r305,0","w":1366,"k":{"y":76,"u":76,"r":113,"o":152,"i":37,"e":113,"a":113,"A":152,";":113,":":113,".":188,"-":113,",":188}},"W":{"d":"1567,0r-350,0r-211,-903r-39,-213r-62,301r-190,815r-350,0r-363,-1409r299,0r228,1021r22,109r80,-380r174,-750r330,0r190,803r59,327r78,-346r170,-784r299,0","w":1933,"k":{"y":37,"u":37,"r":37,"o":37,"i":18,"e":37,"a":76,"A":113,";":37,":":37,".":113,"-":41,",":113}},"X":{"d":"1038,0r-354,-561r-354,561r-312,0r488,-741r-447,-668r312,0r313,498r313,-498r310,0r-428,668r469,741r-310,0","w":1366},"Y":{"d":"831,-578r0,578r-294,0r0,-578r-502,-831r309,0r338,596r342,-596r309,0","w":1366,"k":{"v":113,"u":113,"q":152,"p":113,"o":152,"i":76,"e":113,"a":113,"A":188,";":152,":":152,".":227,"-":113,",":227," ":37}},"Z":{"d":"1192,0r-1131,0r0,-209r762,-969r-686,0r0,-231r1014,0r0,205r-762,973r803,0r0,231","w":1251},"[":{"d":"115,425r0,-1909r542,0r0,190r-276,0r0,1528r276,0r0,191r-542,0","w":682},"\\":{"d":"307,41r-286,-1526r238,0r291,1526r-243,0","w":569},"]":{"d":"25,425r0,-191r278,0r0,-1528r-278,0r0,-190r542,0r0,1909r-542,0","w":682},"^":{"d":"922,-514r-326,-752r-324,752r-227,0r391,-895r322,0r393,895r-229,0","w":1196},"_":{"d":"-20,250r0,-78r1177,0r0,78r-1177,0"},"`":{"d":"406,-1183r-340,-276r0,-43r258,0r251,288r0,31r-169,0","w":682},"a":{"d":"749,-193v-70,124,-174,213,-356,213v-213,0,-333,-113,-333,-326v0,-253,179,-340,427,-346r233,-4v5,-148,-15,-264,-158,-264v-108,0,-150,54,-160,153r-293,-14v39,-219,202,-321,465,-321v266,0,427,124,427,388r0,394v1,84,5,160,89,160v21,0,42,-2,62,-6r0,152v-57,13,-108,26,-180,26v-145,0,-203,-73,-217,-205r-6,0xm353,-328v0,95,44,152,130,152v169,0,245,-137,237,-325r-144,2v-130,3,-223,33,-223,171"},"b":{"d":"424,-894v60,-136,169,-208,346,-208v303,0,397,249,397,557v0,246,-68,437,-229,523v-52,28,-115,42,-186,42v-170,-1,-269,-79,-330,-194v-1,56,-5,127,-14,174r-273,0v2,-23,3,-57,5,-100v2,-43,3,-92,3,-147r0,-1237r281,0r0,414r-4,176r4,0xm420,-536v0,201,48,364,231,364v71,0,126,-29,165,-88v39,-59,58,-154,58,-285v-2,-210,-42,-362,-221,-362v-185,0,-233,166,-233,371","w":1251},"c":{"d":"596,-172v120,0,188,-82,201,-201r282,13v-41,237,-208,380,-485,380v-346,0,-514,-210,-514,-555v0,-353,169,-567,518,-567v270,0,425,136,473,361r-283,14v-16,-106,-75,-185,-196,-182v-176,4,-217,161,-217,363v0,249,74,374,221,374"},"d":{"d":"1108,-236r8,236r-272,0v-9,-48,-14,-119,-15,-176r-4,0v-60,131,-168,196,-346,196v-301,0,-395,-253,-395,-560v0,-246,69,-434,230,-520v52,-28,114,-42,186,-42v170,0,269,77,329,191r-2,-573r281,0r0,1248xm598,-172v183,0,233,-171,233,-375v0,-202,-47,-364,-231,-364v-189,0,-223,171,-223,371v0,245,74,368,221,368","w":1251},"e":{"d":"1053,-274v-70,175,-212,297,-467,294v-347,-4,-506,-212,-506,-566v0,-355,170,-556,510,-556v356,0,477,255,479,615r-694,0v2,177,51,319,225,319v104,0,163,-45,188,-129xm797,-663v-2,-182,-115,-308,-291,-247v-88,30,-125,125,-129,247r420,0"},"f":{"d":"604,-1296v-92,-3,-133,38,-131,129r0,85r213,0r0,190r-213,0r0,892r-280,0r0,-892r-158,0r0,-190r158,0r0,-113v0,-199,109,-290,315,-289v61,0,127,8,178,16r0,181v-22,-5,-56,-9,-82,-9","w":682},"g":{"d":"1108,-33v-2,322,-190,467,-512,467v-252,0,-420,-88,-467,-291r281,-33v20,86,88,139,194,139v188,0,233,-143,225,-343v-1,-34,6,-77,0,-107v-59,131,-171,199,-348,199v-300,0,-397,-242,-397,-548v0,-317,106,-553,418,-553v162,0,272,71,327,195r5,0v1,-56,5,-127,14,-174r266,0r-6,250r0,799xm600,-197v181,0,231,-160,231,-359v0,-196,-51,-354,-229,-354v-185,0,-225,164,-225,360v0,201,49,353,223,353","w":1251},"h":{"d":"424,-1079r-8,213r4,0v67,-145,161,-236,348,-236v254,0,356,165,356,416r0,686r-280,0r0,-606v-1,-157,-39,-285,-193,-285v-163,0,-227,142,-227,312r0,579r-281,0r0,-1484r281,0r0,405","w":1251},"i":{"d":"143,-1277r0,-207r281,0r0,207r-281,0xm143,0r0,-1082r281,0r0,1082r-281,0","w":569},"j":{"d":"144,-1277r0,-207r281,0r0,207r-281,0xm425,128v-2,190,-94,296,-287,297v-65,0,-119,-3,-170,-9r0,-198v16,2,34,4,51,4v106,5,125,-58,125,-162r0,-1142r281,0r0,1210","w":569},"k":{"d":"834,0r-289,-490r-121,84r0,406r-281,0r0,-1484r281,0r0,850r386,-448r302,0r-380,422r409,660r-307,0"},"l":{"d":"143,0r0,-1484r281,0r0,1484r-281,0","w":569},"m":{"d":"1251,-892v-145,0,-192,146,-192,299r0,593r-279,0r0,-607v-3,-147,-24,-285,-164,-285v-148,0,-192,153,-192,312r0,580r-281,0r-3,-982r-5,-100r268,0v7,61,12,148,13,215r4,0v60,-142,141,-236,315,-236v173,0,268,90,301,236r6,0v60,-137,140,-236,328,-236v240,0,324,176,324,416r0,687r-279,0r0,-607v-3,-147,-24,-285,-164,-285","w":1821},"n":{"d":"768,-1103v254,0,356,165,356,416r0,687r-280,0r0,-607v-1,-157,-39,-285,-193,-285v-163,0,-227,142,-227,312r0,580r-281,0r-3,-982r-5,-100r268,0v7,61,12,148,13,215r4,0v67,-145,161,-236,348,-236","w":1251},"o":{"d":"627,-1102v365,0,544,201,544,560v0,356,-191,562,-550,562v-354,0,-541,-209,-541,-562v0,-354,189,-560,547,-560xm618,-172v203,0,258,-158,259,-370v1,-223,-56,-367,-246,-367v-192,0,-258,145,-256,367v2,205,52,370,243,370","w":1251},"p":{"d":"424,-906v60,-131,171,-199,346,-199v302,0,397,250,397,559v0,246,-68,438,-229,524v-52,28,-115,42,-186,42v-167,0,-271,-74,-328,-192r-6,0v12,187,4,400,6,597r-281,0r0,-1258v0,-55,-1,-105,-3,-148v-2,-43,-3,-77,-5,-101r273,0v10,46,11,120,12,176r4,0xm649,-172v189,0,225,-174,225,-374v0,-123,-22,-212,-56,-274v-63,-114,-254,-115,-324,-12v-47,69,-75,165,-74,294v3,201,48,366,229,366","w":1251},"q":{"d":"832,-180v-59,131,-176,200,-353,200v-301,0,-395,-253,-395,-560v0,-246,71,-435,232,-521v52,-28,114,-42,186,-42v162,0,272,71,327,195v1,-57,6,-127,15,-174r270,0r-6,249r0,1258r-279,0r5,-605r-2,0xm600,-172v183,0,231,-170,231,-374v0,-201,-46,-364,-229,-364v-188,0,-225,170,-225,370v0,245,74,368,223,368","w":1251},"r":{"d":"646,-868v-164,5,-222,146,-222,337r0,531r-281,0r-3,-976r-5,-106r268,0v7,64,12,160,13,231r4,0v48,-129,86,-252,259,-252v29,0,68,6,87,15r0,235v-39,-8,-71,-16,-120,-15","w":797,"k":{".":113,",":113}},"s":{"d":"573,-916v-113,2,-200,15,-200,111v0,90,87,102,167,121v34,8,72,15,113,25v202,45,402,97,402,343v0,312,-356,371,-670,321v-167,-27,-273,-117,-313,-275r247,-37v25,112,113,145,252,141v114,-2,226,-12,226,-124v0,-101,-101,-112,-191,-134v-38,-9,-80,-16,-123,-26v-186,-43,-368,-97,-368,-325v0,-298,327,-367,622,-311v154,29,261,119,293,275r-249,26v-17,-98,-92,-133,-208,-131"},"t":{"d":"657,-16v-70,23,-145,34,-237,34v-170,-1,-258,-95,-258,-272r0,-638r-137,0r0,-190r151,0r88,-254r176,0r0,254r205,0r0,190r-205,0r0,562v0,98,32,152,123,154v38,0,61,-7,94,-14r0,174","w":682},"u":{"d":"483,20v-252,0,-356,-164,-356,-415r0,-687r281,0r0,607v2,157,39,285,192,285v163,0,227,-142,227,-312r0,-580r281,0r2,982r6,100r-268,0r-12,-215r-5,0v-66,145,-162,235,-348,235","w":1251},"v":{"d":"731,0r-336,0r-387,-1082r297,0r227,735r33,120r74,-247r197,-608r294,0","k":{".":152,",":152}},"w":{"d":"1313,0r-297,0r-188,-730r-31,-152r-52,224r-174,658r-297,0r-280,-1082r264,0r178,827v55,-290,139,-552,209,-827r301,0r180,695r27,132r184,-827r260,0","w":1593,"k":{".":76,",":76}},"x":{"d":"819,0r-252,-392r-254,392r-299,0r396,-559r-377,-523r303,0r231,354r230,-354r305,0r-377,520r399,562r-305,0"},"y":{"d":"106,212v80,12,181,11,228,-31v50,-45,83,-117,110,-192r-428,-1071r297,0r223,674r48,167r90,-330r160,-511r294,0r-428,1139v-84,190,-156,368,-417,368v-60,0,-125,-4,-177,-13r0,-200","k":{".":152,",":152}},"z":{"d":"68,0r0,-199r540,-680r-499,0r0,-203r809,0r0,201r-537,676r586,0r0,205r-899,0","w":1024},"{":{"d":"524,25v-3,158,67,222,230,209r0,191r-197,0v-189,-4,-295,-109,-295,-299r0,-328v1,-156,-78,-227,-229,-229r0,-195v150,-4,229,-74,229,-231r0,-328v-2,-190,109,-299,295,-299r197,0r0,190r-58,0v-128,1,-171,76,-172,209r0,301v-4,144,-89,222,-207,252r0,4v118,31,207,107,207,252r0,301","w":797},"|":{"d":"156,455r0,-1939r262,0r0,1939r-262,0","w":573},"}":{"d":"535,126v-3,190,-106,299,-295,299r-197,0r0,-191r57,0v131,-1,172,-74,172,-209r0,-301v5,-144,89,-221,207,-252r0,-4v-118,-30,-207,-108,-207,-252r0,-301v-1,-134,-41,-208,-172,-209r-57,0r0,-190r197,0v186,0,295,109,295,299r0,328v-1,157,81,227,231,231r0,195v-152,2,-232,73,-231,229r0,328","w":797},"~":{"d":"1119,-596v-71,50,-147,82,-267,80v-195,-1,-326,-115,-516,-115v-115,0,-185,41,-255,88r0,-213v92,-78,283,-103,434,-60v116,33,217,93,356,93v102,0,187,-43,248,-92r0,219","w":1196}}});
;Cufon.replace('h1#sitename a, h1.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)');;/*
 * SooperFish 0.1
 * (c) 2010 Jurriaan Roelofs - SooperThemes.com
 * Inspired by Suckerfish, Superfish and Droppy
 */
$.fn.sooperfish = function(op) {

  var sf = $.fn.sooperfish;
  sf.o = [];
  sf.op = {};
  sf.c = {
    menuClass   : 'sf-js-enabled',
    isParent : 'sf-parent',
    arrowClass  : 'sf-arrow'
  };
  sf.defaults = {
    sooperfishWidth : 150, //match with the width you gave submenu list items in CSS (including margin and padding applied to these list items)
    multiColumn  : true,
    dualColumn  : 6, //if a submenu has at least this many items it will be divided in 2 columns
    tripleColumn  : 12, //if a submenu has at least this many items it will be divided in 3 columns
    hoverClass  : 'sfHover',
    delay    : 500, //make sure menus only disappear when intended, 500ms is advised by Jacob Nielsen
    animationShow  : {height:'show'},
    speedShow    : 600,
    easingShow      : 'easeOutBounce',
    animationHide  : {height:'hide',opacity:'hide'},
    speedHide    : 200,
    easingHide      : 'easeInTurbo',
    autoArrows  : true, //Adds span elements to parent li elements, projecting arrow images on these items to indicate submenus. I added an alternative image file with white arrows.
    onShow    : function(){}, //callback after showing menu
    onHide    : function(){} //callback after hiding menu
  };
  

  //Merge default settings with o function parameter
  var o = $.extend({},sf.defaults,op);
  if (!o.sooperfishWidth) {
  o.sooperfishWidth = $('ul:first li:first', this).width();
  alert(o.sooperfishWidth);
  }

  this.each(function() {
  
    
    //Check dom for submenus
    var parentLi = $('li:has(ul)', this);
    parentLi.each(function(){
      if (o.autoArrows) { //Add autoArrows if requested
      $('>a',this).append('<span class="'+sf.c.arrowClass+'"></span>');
      }
      $(this).addClass(sf.c.isParent);
    });

    //Divide menu in columns
    //Set width override
    if (o.multiColumn) {
    var uls = $('ul',this);
    uls.each(function(){
      var ulsize = $('>li:not(.backLava)',this).length; //Skip list items added by Lavalamp plugin
      if (ulsize >= o.dualColumn) {
        if (ulsize >= o.tripleColumn) {
          $(this).width(3*o.sooperfishWidth);
        } else {
          $(this).width(2*o.sooperfishWidth);
        }
      }
    });
    }

    var root = this, zIndex = 1000;

    function getSubmenu(ele) {
      if (ele.nodeName.toLowerCase() == 'li') {
        var submenu = $('> ul', ele);
        return submenu.length ? submenu[0] : null;
      } else {
        return ele;
      }
    }

    function getActuator(ele) {
      if (ele.nodeName.toLowerCase() == 'ul') {
        return $(ele).parents('li')[0];
      } else {
        return ele;
      }
    }

    function hideSooperfishUl() {
      var submenu = getSubmenu(this);
      if (!submenu) return;
      $.data(submenu, 'cancelHide', false);
      setTimeout(function() {
        if (!$.data(submenu, 'cancelHide')) {
          $(submenu).animate(o.animationHide,o.speedHide,o.easingHide,function(){ o.onHide.call(submenu); });
        }
      }, o.delay);
    }

    function showSooperfishUl() {
      var submenu = getSubmenu(this);
      if (!submenu) return;
      $.data(submenu, 'cancelHide', true);
      $(submenu).css({zIndex: zIndex++}).animate(o.animationShow,o.speedShow,o.easingShow,function(){ o.onShow.call(submenu); });
      if (this.nodeName.toLowerCase() == 'ul') {
        var li = getActuator(this);
        $(li).addClass('hover');
        $('> a', li).addClass('hover');
      }
    }
    
    // Bind Events. Yes it's that simple!
    $('li', this).hover(showSooperfishUl, hideSooperfishUl);

  });

};
;		// initialise plugins
  $(document).ready(function() {
    $('#navbar > ul ul').hide().css('left','auto');
    $('#navbar > ul').sooperfish({
      sooperfishWidth: Drupal.settings.sooperfish.sooperfishWidth,
      hoverClass:  'over',           // hover class
      delay:     Drupal.settings.sooperfish.delay,                // 500ms delay on mouseout as per Jacob Nielsen advice
      dualColumn:     Drupal.settings.sooperfish.dualColumn,
      tripleColumn:     Drupal.settings.sooperfish.tripleColumn,
      animationShow:   Drupal.settings.sooperfish.animationShow,
      speedShow:     parseInt(Drupal.settings.sooperfish.speedShow),
      easingShow:    Drupal.settings.sooperfish.easingShow,
      animationHide:   Drupal.settings.sooperfish.animationHide,
      speedHide:     parseInt(Drupal.settings.sooperfish.speedHide),
      easingHide:    Drupal.settings.sooperfish.easingHide,
      autoArrows:  false,              // generation of arrow mark-up
      dropShadows: false               // drop shadows
    });
  });;/*
 * 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(A){A.fn.example=function(E,C){var D=A.isFunction(E);var B=A.extend({},C,{example:E});return this.each(function(){var F=A(this);if(A.metadata){var G=A.extend({},A.fn.example.defaults,F.metadata(),B)}else{var G=A.extend({},A.fn.example.defaults,B)}if(!A.fn.example.boundClassNames[G.className]){A(window).unload(function(){A("."+G.className).val("")});A("form").submit(function(){A(this).find("."+G.className).val("")});A.fn.example.boundClassNames[G.className]=true}if(A.browser.msie&&!F.attr("defaultValue")&&(D||F.val()==G.example)){F.val("")}if(F.val()==""&&this!=document.activeElement){F.addClass(G.className);F.val(D?G.example.call(this):G.example)}F.focus(function(){if(A(this).is("."+G.className)){A(this).val("");A(this).removeClass(G.className)}});F.blur(function(){if(A(this).val()==""){A(this).addClass(G.className);A(this).val(D?G.example.call(this):G.example)}})})};A.fn.example.defaults={className:"example"};A.fn.example.boundClassNames=[]})(jQuery);
/* Invoke example functino: */
$(document).ready(function(){    
  $('.block-search input.form-text, #search-theme-form input.form-text').example('Enter search...');
});;/****
* 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 sooperthemes.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);
	});
});;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.theme_path;

  $("a.cufon-set").mouseover(function () {
    Cufon.set('fontFamily', $(this).attr('id'));
    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)');
  });

  $("a.bg-set").mouseover(function () {
    $('body').css('background-image','url('+themePath+'images/backgrounds/'+$(this).attr('id')+'.jpg)');
  });
  
  $("body.page-configurator #content input#edit-submit,body.page-configurator #content input#edit-reset").click(function () {
    alert('Sorry, you cannot change the settings of this demo site!');
	return false;
  });  

  $("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()  {
    $('.sooperblocks .render').remove();
    $('.sooperblocks .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%');
  }

});;// $Id: openid.js,v 1.6 2008/01/30 22:11:22 goba Exp $

Drupal.behaviors.openid = function (context) {
  var $loginElements = $("#edit-name-wrapper, #edit-pass-wrapper, li.openid-link");
  var $openidElements = $("#edit-openid-identifier-wrapper, li.user-link");

  // This behavior attaches by ID, so is only valid once on a page.
  if (!$("#edit-openid-identifier.openid-processed").size() && $("#edit-openid-identifier").val()) {
    $("#edit-openid-identifier").addClass('openid-processed');
    $loginElements.hide();
    // Use .css("display", "block") instead of .show() to be Konqueror friendly.
    $openidElements.css("display", "block");
  }
  $("li.openid-link:not(.openid-processed)", context)
    .addClass('openid-processed')
    .click( function() {
       $loginElements.hide();
       $openidElements.css("display", "block");
      // Remove possible error message.
      $("#edit-name, #edit-pass").removeClass("error");
      $("div.messages.error").hide();
      // Set focus on OpenID Identifier field.
      $("#edit-openid-identifier")[0].focus();
      return false;
    });
  $("li.user-link:not(.openid-processed)", context)
    .addClass('openid-processed')
    .click(function() {
       $openidElements.hide();
       $loginElements.css("display", "block");
      // Clear OpenID Identifier field and remove possible error message.
      $("#edit-openid-identifier").val('').removeClass("error");
      $("div.messages.error").css("display", "block");
      // Set focus on username field.
      $("#edit-name")[0].focus();
      return false;
    });
};
;// $Id: emvideo.thumbnail-replacement.js,v 1.1.2.2 2009/09/01 20:35:24 aaron Exp $

/**
 *  @file
 *  This will use jQuery AJAX to replace a thumbnail with its video version.
 */
Drupal.behaviors.emvideoThumbnailReplacement = function(context) {
  // On load, add a span for the play button to any required thumbnails.
  $('a.emvideo-thumbnail-replacement:not(.emvideo-thumbnail-replacement-processed)', context).addClass('emvideo-thumbnail-replacement-processed').each(function() {
    if (Drupal.settings.emvideo.thumbnail_overlay) {
      // Add the play button.
      $(this).prepend("<span></span>");
    }
  });

  // Inline videos will click through to the video.
  $('a.emvideo-modal-emvideo:not(.emvideo-modal-emvideo-processed)', context).addClass('emvideo-modal-emvideo-processed').each(function() {
    // When clicking the image, load the video with AJAX.
    // Note that this only happens if this is not a lightbox.
    $(this).click(function() {
      // 'this' won't point to the element when it's inside the ajax closures,
      // so we reference it using a variable.
      var element = this;
      $.ajax({
        url: element.href,
        dataType: 'html',
        success: function (data) {
          if (data) {
            // Success.
            $(element).parent().html(data);
          }
          else {
            // Failure.
            alert('An unknown error occurred.\n'+ element.href);
          }
        },
        error: function (xmlhttp) {
          alert('An HTTP error '+ xmlhttp.status +' occurred.\n'+ element.href);
        }
      });
      return false;
    });
  });
};
;
