/*
 * 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: auto_image_handling.js,v 1.1.4.33 2010/09/22 21:07:57 snpower Exp $ */

// Image Node Auto-Format with Auto Image Grouping.
// Original version by Steve McKenzie.
// Altered by Stella Power for jQuery version.

function parse_url(url, param) {
  param = param.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  url = url.replace(/&amp;/, "&");
  var regexS = "[\\?&]"+param+"=([^&#]*)";
  var regex = new RegExp(regexS);
  var results = regex.exec(url);
  if (results === null) {
    return "";
  }
  else {
    return results[1];
  }
}


function lightbox2_init_triggers(classes, rel_type, custom_class) {
  if (classes == '' || rel_type == 0) {
    return;
  }
  var settings = Drupal.settings.lightbox2;

  var link_target  = "";
  if (settings.node_link_target !== 0) {
    link_target = 'target="'+ settings.node_link_target +'"';
  }

  $("a:has("+classes+")").each(function(i) {

    if ((!settings.disable_for_gallery_lists && !settings.disable_for_acidfree_gallery_lists) || (!$(this).parents("td.giAlbumCell").attr("class") && !$(this).parents(".galleries").length && !$(this).parents(".acidfree-folder").length && !$(this).parents(".acidfree-list").length) || ($(this).parents(".galleries").length && !settings.disable_for_gallery_lists) || (($(this).parents(".acidfree-folder").length || $(this).parents(".acidfree-list").length) && !settings.disable_for_acidfree_gallery_lists)) {

      var child = $(this).find(classes);

      // Ensure the child has a class attribute we can work with.
      if ($(child).attr("class") && !$(this).parents("div.acidfree-video").length) {

        // Set the alt text.
        var alt = $(child).attr("alt");
        if (!alt) {
          alt = "";
        }

        // Set the image node link text.
        var link_text = settings.node_link_text;
        var download_link_text = settings.download_link_text;
        var rewrite = 1;

        // Set the rel attribute.
        var rel = "lightbox";
        var lightframe = false;
        if (rel_type == "lightframe_ungrouped") {
          rel = "lightframe[]";
          lightframe = true;
        }
        else if (rel_type == "lightframe") {
          lightframe = true;
        }
        else if (rel_type == "lightbox_ungrouped") {
          rel = "lightbox[]";
        }
        if (rel_type != "lightbox_ungrouped" && rel_type != "lightframe_ungrouped") {
          rel = rel_type + "[" + $(child).attr("class") + "]";
        }

        // Set the basic href attribute - need to ensure there's no language
        // string (e.g. /en) prepended to the URL.
        var id = null;
        var href = $(child).attr("src");
        var download = null;
        var orig_href = $(this).attr("href");
        var pattern = new RegExp(settings.file_path);
        if (orig_href.match(pattern)) {
          var lang_pattern = new RegExp(Drupal.settings.basePath + "\\w\\w\\/");
          orig_href = orig_href.replace(lang_pattern, Drupal.settings.basePath);
        }
        var frame_href = orig_href;

        // Handle flickr images.
        if ($(child).attr("class").match("flickr-photo-img") ||
          $(child).attr("class").match("flickr-photoset-img")) {
          href = $(child).attr("src").replace("_s.", ".").replace("_t.", ".").replace("_m.", ".").replace("_b.", ".");
          if (rel_type != "lightbox_ungrouped" && rel_type != "lightframe_ungrouped") {
            rel = rel_type + "[flickr]";
            if ($(child).parents("div.block-flickr").attr("class")) {
              id = $(child).parents("div.block-flickr").attr("id");
              rel = rel_type + "["+ id +"]";
            }
          }
          download = href;
        }

        // Handle "image-img_assist_custom" images.
        else if ($(child).filter("img[class*=img_assist_custom]").size()) {
          // Image assist uses "+" signs for spaces which doesn't work for
          // normal links.
          if (settings.display_image_size != "original") {
            orig_href = orig_href.replace(/\+/, " ");
            href = $(child).attr("src").replace(new RegExp("\\.img_assist_custom-[0-9]+x[0-9]+"), ((settings.display_image_size === "")?settings.display_image_size:"."+ settings.display_image_size));
            if (rel_type != "lightbox_ungrouped" && rel_type != "lightframe_ungrouped") {
              rel = rel_type + "[node_images]";
            }
            if (lightframe) {
              frame_href = orig_href + "/lightbox2";
            }
          }
          else {
            rewrite = 0;
          }
        }

        // Handle "inline" images.
        else if ($(child).attr("class").match("inline")) {
          href = orig_href;
        }

        // Handle gallery2 block images.
        else if ($(child).attr("class").match("ImageFrame_image") || $(child).attr("class").match("ImageFrame_none")) {
          var thumb_id = parse_url(href, "g2_itemId");
          var new_id = parse_url(orig_href, "g2_itemId");
          if (new_id && thumb_id) {
            var g2pattern = new RegExp("g2_itemId="+thumb_id);
            var replacement = "g2_itemId="+ new_id;
            href = href.replace(g2pattern, replacement);
          }
          rel = rel_type + "[gallery2]";
          if ($(child).parents("div.block-gallery").attr("class")) {
            id = $(child).parents("div.block-gallery").attr("id");
            rel = rel_type + "["+ id +"]";
          }
          download = href;
        }


        // Set the href attribute.
        else if (settings.image_node_sizes != '()' && !custom_class) {
          if (settings.display_image_size != "original") {
            href = $(child).attr("src").replace(new RegExp(settings.image_node_sizes), ((settings.display_image_size === "")?settings.display_image_size:"."+ settings.display_image_size)).replace(/(image\/view\/\d+)(\/[\w\-]*)/, ((settings.display_image_size === "")?"$1/_original":"$1/"+ settings.display_image_size));
            if (rel_type != "lightbox_ungrouped" && rel_type != "lightframe_ungrouped") {
              rel = rel_type + "[node_images]";
              if ($(child).parents("div.block-multiblock,div.block-image").attr("class")) {
                id = $(child).parents("div.block-multiblock,div.block-image").attr("id");
                rel = rel_type + "["+ id +"]";
              }
            }
            download = $(child).attr("src").replace(new RegExp(settings.image_node_sizes), "").replace(/(image\/view\/\d+)(\/[\w\-]*)/, "$1/_original");
            if (lightframe) {
              frame_href = orig_href + "/lightbox2";
            }
          }
          else {
            rewrite = 0;
          }
        }

        // Modify the image url.
        var img_title = $(child).attr("title");
        if (!img_title) {
          img_title = $(this).attr("title");
          if (!img_title) {
            img_title = $(child).attr("alt");
          }
          $(child).attr({title: img_title});
        }
        if (lightframe) {
          href = frame_href;
        }
        if (rewrite) {
          if (!custom_class) {
            var title_link = "";
            if (link_text.length) {
              title_link = "<br /><br /><a href=\"" + orig_href + "\" id=\"lightbox2-node-link-text\" "+ link_target +" >"+ link_text + "</a>";
            }
            if (download_link_text.length && download) {
              title_link = title_link + " - <a href=\"" + download + "\" id=\"lightbox2-download-link-text\" target=\"_blank\">" + download_link_text + "</a>";
            }
            rel = rel + "[" + img_title + title_link + "]";
            $(this).attr({
              rel: rel,
              href: href
            });
          }
          else {
            if (rel_type != "lightbox_ungrouped" && rel_type != "lightframe_ungrouped") {
              rel = rel_type + "[" + $(child).attr("class") + "]";
              if ($(child).parents("div.block-image").attr("class")) {
                id = $(child).parents("div.block-image").attr("id");
                rel = rel_type + "["+ id +"]";
              }
            }
            rel = rel + "[" + img_title + "]";
            $(this).attr({
              rel: rel,
              href: orig_href
            });
          }
        }
      }
    }

  });
}

function lightbox2_init_acidfree_video() {
  var settings = Drupal.settings.lightbox2;

  var link_target  = "";
  if (settings.node_link_target !== 0) {
    link_target = 'target="'+ settings.node_link_target +'"';
  }

  var link_text = settings.node_link_text;
  var rel = "lightframe";

  $("div.acidfree-video a").each(function(i) {

    if (!settings.disable_for_acidfree_gallery_lists || (!$(this).parents(".acidfree-folder").length && !$(this).parents(".acidfree-list").length) || (($(this).parents(".acidfree-folder").length || $(this).parents(".acidfree-list").length) && !settings.disable_for_acidfree_gallery_lists)) {
      var orig_href = $(this).attr("href");
      var href = orig_href + "/lightframevideo";
      var title = $(this).attr("title");
      var title_link = "";
      if (link_text.length) {
        title_link = "<br /><a href=\"" + orig_href + "\" id=\"lightbox2-node-link-text\" "+ link_target +" >"+ link_text + "</a>";
      }

      $(this).attr({
        rel: rel,
        title: title + title_link,
        href: href
      });
    }
  });
}

function lightbox2_image_nodes() {

  var settings = Drupal.settings.lightbox2;

  // Don't do it on the image assist popup selection screen.
  var img_assist = document.getElementById("img_assist_thumbs");
  if (!img_assist) {

    // Select the enabled image types.
    lightbox2_init_triggers(settings.trigger_lightbox_classes, "lightbox_ungrouped");
    lightbox2_init_triggers(settings.custom_trigger_classes, settings.custom_class_handler, true);
    lightbox2_init_triggers(settings.trigger_lightbox_group_classes, "lightbox");
    lightbox2_init_triggers(settings.trigger_slideshow_classes, "lightshow");
    lightbox2_init_triggers(settings.trigger_lightframe_classes, "lightframe_ungrouped");
    lightbox2_init_triggers(settings.trigger_lightframe_group_classes, "lightframe");
    if (settings.enable_acidfree_videos) {
      lightbox2_init_acidfree_video();
    }

  }
}


Drupal.behaviors.initAutoLightbox = function (context) {
  lightbox2_image_nodes();
};

;
/* $Id: lightbox.js,v 1.5.2.6.2.136 2010/09/24 08:39:40 snpower Exp $ */

/**
 * jQuery Lightbox
 * @author
 *   Stella Power, <http://drupal.org/user/66894>
 *
 * Based on Lightbox v2.03.3 by Lokesh Dhakar
 * <http://www.huddletogether.com/projects/lightbox2/>
 * Also partially based on the jQuery Lightbox by Warren Krewenki
 *   <http://warren.mesozen.com>
 *
 * Permission has been granted to Mark Ashmead & other Drupal Lightbox2 module
 * maintainers to distribute this file via Drupal.org
 * Under GPL license.
 *
 * Slideshow, iframe and video functionality added by Stella Power.
 */

var Lightbox = {
  auto_modal : false,
  overlayOpacity : 0.8, // Controls transparency of shadow overlay.
  overlayColor : '000', // Controls colour of shadow overlay.
  disableCloseClick : true,
  // Controls the order of the lightbox resizing animation sequence.
  resizeSequence: 0, // 0: simultaneous, 1: width then height, 2: height then width.
  resizeSpeed: 'normal', // Controls the speed of the lightbox resizing animation.
  fadeInSpeed: 'normal', // Controls the speed of the image appearance.
  slideDownSpeed: 'slow', // Controls the speed of the image details appearance.
  minWidth: 240,
  borderSize : 10,
  boxColor : 'fff',
  fontColor : '000',
  topPosition : '',
  infoHeight: 20,
  alternative_layout : false,
  imageArray : [],
  imageNum : null,
  total : 0,
  activeImage : null,
  inprogress : false,
  disableResize : false,
  disableZoom : false,
  isZoomedIn : false,
  rtl : false,
  loopItems : false,
  keysClose : ['c', 'x', 27],
  keysPrevious : ['p', 37],
  keysNext : ['n', 39],
  keysZoom : ['z'],
  keysPlayPause : [32],

  // Slideshow options.
  slideInterval : 5000, // In milliseconds.
  showPlayPause : true,
  autoStart : true,
  autoExit : true,
  pauseOnNextClick : false, // True to pause the slideshow when the "Next" button is clicked.
  pauseOnPrevClick : true, // True to pause the slideshow when the "Prev" button is clicked.
  slideIdArray : [],
  slideIdCount : 0,
  isSlideshow : false,
  isPaused : false,
  loopSlides : false,

  // Iframe options.
  isLightframe : false,
  iframe_width : 600,
  iframe_height : 400,
  iframe_border : 1,

  // Video and modal options.
  enableVideo : false,
  flvPlayer : '/flvplayer.swf',
  flvFlashvars : '',
  isModal : false,
  isVideo : false,
  videoId : false,
  modalWidth : 400,
  modalHeight : 400,
  modalHTML : null,


  // initialize()
  // Constructor runs on completion of the DOM loading.
  // The function inserts html at the bottom of the page which is used
  // to display the shadow overlay and the image container.
  initialize: function() {

    var s = Drupal.settings.lightbox2;
    Lightbox.overlayOpacity = s.overlay_opacity;
    Lightbox.overlayColor = s.overlay_color;
    Lightbox.disableCloseClick = s.disable_close_click;
    Lightbox.resizeSequence = s.resize_sequence;
    Lightbox.resizeSpeed = s.resize_speed;
    Lightbox.fadeInSpeed = s.fade_in_speed;
    Lightbox.slideDownSpeed = s.slide_down_speed;
    Lightbox.borderSize = s.border_size;
    Lightbox.boxColor = s.box_color;
    Lightbox.fontColor = s.font_color;
    Lightbox.topPosition = s.top_position;
    Lightbox.rtl = s.rtl;
    Lightbox.loopItems = s.loop_items;
    Lightbox.keysClose = s.keys_close.split(" ");
    Lightbox.keysPrevious = s.keys_previous.split(" ");
    Lightbox.keysNext = s.keys_next.split(" ");
    Lightbox.keysZoom = s.keys_zoom.split(" ");
    Lightbox.keysPlayPause = s.keys_play_pause.split(" ");
    Lightbox.disableResize = s.disable_resize;
    Lightbox.disableZoom = s.disable_zoom;
    Lightbox.slideInterval = s.slideshow_interval;
    Lightbox.showPlayPause = s.show_play_pause;
    Lightbox.showCaption = s.show_caption;
    Lightbox.autoStart = s.slideshow_automatic_start;
    Lightbox.autoExit = s.slideshow_automatic_exit;
    Lightbox.pauseOnNextClick = s.pause_on_next_click;
    Lightbox.pauseOnPrevClick = s.pause_on_previous_click;
    Lightbox.loopSlides = s.loop_slides;
    Lightbox.alternative_layout = s.use_alt_layout;
    Lightbox.iframe_width = s.iframe_width;
    Lightbox.iframe_height = s.iframe_height;
    Lightbox.iframe_border = s.iframe_border;
    Lightbox.enableVideo = s.enable_video;
    if (s.enable_video) {
      Lightbox.flvPlayer = s.flvPlayer;
      Lightbox.flvFlashvars = s.flvFlashvars;
    }

    // Make the lightbox divs.
    var layout_class = (s.use_alt_layout ? 'lightbox2-alt-layout' : 'lightbox2-orig-layout');
    var output = '<div id="lightbox2-overlay" style="display: none;"></div>\
      <div id="lightbox" style="display: none;" class="' + layout_class + '">\
        <div id="outerImageContainer"></div>\
        <div id="imageDataContainer" class="clearfix">\
          <div id="imageData"></div>\
        </div>\
      </div>';
    var loading = '<div id="loading"><a href="#" id="loadingLink"></a></div>';
    var modal = '<div id="modalContainer" style="display: none;"></div>';
    var frame = '<div id="frameContainer" style="display: none;"></div>';
    var imageContainer = '<div id="imageContainer" style="display: none;"></div>';
    var details = '<div id="imageDetails"></div>';
    var bottomNav = '<div id="bottomNav"></div>';
    var image = '<img id="lightboxImage" alt="" />';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" href="#"></a><a id="nextLink" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" href="#"></a><a id="frameNextLink" href="#"></a></div>';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="nextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="frameNextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var caption = '<span id="caption"></span>';
    var numberDisplay = '<span id="numberDisplay"></span>';
    var close = '<a id="bottomNavClose" title="' + Drupal.t('Close') + '" href="#"></a>';
    var zoom = '<a id="bottomNavZoom" href="#"></a>';
    var zoomOut = '<a id="bottomNavZoomOut" href="#"></a>';
    var pause = '<a id="lightshowPause" title="' + Drupal.t('Pause Slideshow') + '" href="#" style="display: none;"></a>';
    var play = '<a id="lightshowPlay" title="' + Drupal.t('Play Slideshow') + '" href="#" style="display: none;"></a>';

    $("body").append(output);
    $('#outerImageContainer').append(modal + frame + imageContainer + loading);
    if (!s.use_alt_layout) {
      $('#imageContainer').append(image + hoverNav);
      $('#imageData').append(details + bottomNav);
      $('#imageDetails').append(caption + numberDisplay);
      $('#bottomNav').append(frameNav + close + zoom + zoomOut + pause + play);
    }
    else {
      $('#outerImageContainer').append(bottomNav);
      $('#imageContainer').append(image);
      $('#bottomNav').append(close + zoom + zoomOut);
      $('#imageData').append(hoverNav + details);
      $('#imageDetails').append(caption + numberDisplay + pause + play);
    }

    // Setup onclick handlers.
    if (Lightbox.disableCloseClick) {
      $('#lightbox2-overlay').click(function() { Lightbox.end(); return false; } ).hide();
    }
    $('#loadingLink, #bottomNavClose').click(function() { Lightbox.end('forceClose'); return false; } );
    $('#prevLink, #framePrevLink').click(function() { Lightbox.changeData(Lightbox.activeImage - 1); return false; } );
    $('#nextLink, #frameNextLink').click(function() { Lightbox.changeData(Lightbox.activeImage + 1); return false; } );
    $('#bottomNavZoom').click(function() { Lightbox.changeData(Lightbox.activeImage, true); return false; } );
    $('#bottomNavZoomOut').click(function() { Lightbox.changeData(Lightbox.activeImage, false); return false; } );
    $('#lightshowPause').click(function() { Lightbox.togglePlayPause("lightshowPause", "lightshowPlay"); return false; } );
    $('#lightshowPlay').click(function() { Lightbox.togglePlayPause("lightshowPlay", "lightshowPause"); return false; } );

    // Fix positioning.
    $('#prevLink, #nextLink, #framePrevLink, #frameNextLink').css({ 'paddingTop': Lightbox.borderSize + 'px'});
    $('#imageContainer, #frameContainer, #modalContainer').css({ 'padding': Lightbox.borderSize + 'px'});
    $('#outerImageContainer, #imageDataContainer, #bottomNavClose').css({'backgroundColor': '#' + Lightbox.boxColor, 'color': '#'+Lightbox.fontColor});
    if (Lightbox.alternative_layout) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'bottom': Lightbox.borderSize + 'px', 'right': Lightbox.borderSize + 'px'});
    }
    else if (Lightbox.rtl == 1 && $.browser.msie) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'left': '0px'});
    }

    // Force navigation links to always be displayed
    if (s.force_show_nav) {
      $('#prevLink, #nextLink').addClass("force_show_nav");
    }

  },

  // initList()
  // Loops through anchor tags looking for 'lightbox', 'lightshow' and
  // 'lightframe', etc, references and applies onclick events to appropriate
  // links. You can rerun after dynamically adding images w/ajax.
  initList : function(context) {

    if (context == undefined || context == null) {
      context = document;
    }

    // Attach lightbox to any links with rel 'lightbox', 'lightshow' or
    // 'lightframe', etc.
    $("a[rel^='lightbox']:not(.lightbox-processed), area[rel^='lightbox']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightshow']:not(.lightbox-processed), area[rel^='lightshow']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, true, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightframe']:not(.lightbox-processed), area[rel^='lightframe']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, true, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    if (Lightbox.enableVideo) {
      $("a[rel^='lightvideo']:not(.lightbox-processed), area[rel^='lightvideo']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
        if (Lightbox.disableCloseClick) {
          $('#lightbox').unbind('click');
          $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
        }
        Lightbox.start(this, false, false, true, false);
        if (e.preventDefault) { e.preventDefault(); }
        return false;
      });
    }
    $("a[rel^='lightmodal']:not(.lightbox-processed), area[rel^='lightmodal']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      $('#lightbox').unbind('click');
      // Add classes from the link to the lightbox div - don't include lightbox-processed
      $('#lightbox').addClass($(this).attr('class'));
      $('#lightbox').removeClass('lightbox-processed');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("#lightboxAutoModal:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      Lightbox.auto_modal = true;
      $('#lightbox').unbind('click');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
  },

  // start()
  // Display overlay and lightbox. If image is part of a set, add siblings to
  // imageArray.
  start: function(imageLink, slideshow, lightframe, lightvideo, lightmodal) {

    Lightbox.isPaused = !Lightbox.autoStart;

    // Replaces hideSelectBoxes() and hideFlash() calls in original lightbox2.
    Lightbox.toggleSelectsFlash('hide');

    // Stretch overlay to fill page and fade in.
    var arrayPageSize = Lightbox.getPageSize();
    $("#lightbox2-overlay").hide().css({
      'width': '100%',
      'zIndex': '10090',
      'height': arrayPageSize[1] + 'px',
      'backgroundColor' : '#' + Lightbox.overlayColor
    });
    // Detect OS X FF2 opacity + flash issue.
    if (lightvideo && this.detectMacFF2()) {
      $("#lightbox2-overlay").removeClass("overlay_default");
      $("#lightbox2-overlay").addClass("overlay_macff2");
      $("#lightbox2-overlay").css({'opacity' : null});
    }
    else {
      $("#lightbox2-overlay").removeClass("overlay_macff2");
      $("#lightbox2-overlay").addClass("overlay_default");
      $("#lightbox2-overlay").css({'opacity' : Lightbox.overlayOpacity});
    }
    $("#lightbox2-overlay").fadeIn(Lightbox.fadeInSpeed);


    Lightbox.isSlideshow = slideshow;
    Lightbox.isLightframe = lightframe;
    Lightbox.isVideo = lightvideo;
    Lightbox.isModal = lightmodal;
    Lightbox.imageArray = [];
    Lightbox.imageNum = 0;

    var anchors = $(imageLink.tagName);
    var anchor = null;
    var rel_parts = Lightbox.parseRel(imageLink);
    var rel = rel_parts["rel"];
    var rel_group = rel_parts["group"];
    var title = (rel_parts["title"] ? rel_parts["title"] : imageLink.title);
    var rel_style = null;
    var i = 0;

    if (rel_parts["flashvars"]) {
      Lightbox.flvFlashvars = Lightbox.flvFlashvars + '&' + rel_parts["flashvars"];
    }

    // Set the title for image alternative text.
    var alt = imageLink.title;
    if (!alt) {
      var img = $(imageLink).find("img");
      if (img && $(img).attr("alt")) {
        alt = $(img).attr("alt");
      }
      else {
        alt = title;
      }
    }

    if ($(imageLink).attr('id') == 'lightboxAutoModal') {
      rel_style = rel_parts["style"];
      Lightbox.imageArray.push(['#lightboxAutoModal > *', title, alt, rel_style, 1]);
    }
    else {
      // Handle lightbox images with no grouping.
      if ((rel == 'lightbox' || rel == 'lightshow') && !rel_group) {
        Lightbox.imageArray.push([imageLink.href, title, alt]);
      }

      // Handle other items with no grouping.
      else if (!rel_group) {
        rel_style = rel_parts["style"];
        Lightbox.imageArray.push([imageLink.href, title, alt, rel_style]);
      }

      // Handle grouped items.
      else {

        // Loop through anchors and add them to imageArray.
        for (i = 0; i < anchors.length; i++) {
          anchor = anchors[i];
          if (anchor.href && typeof(anchor.href) == "string" && $(anchor).attr('rel')) {
            var rel_data = Lightbox.parseRel(anchor);
            var anchor_title = (rel_data["title"] ? rel_data["title"] : anchor.title);
            img_alt = anchor.title;
            if (!img_alt) {
              var anchor_img = $(anchor).find("img");
              if (anchor_img && $(anchor_img).attr("alt")) {
                img_alt = $(anchor_img).attr("alt");
              }
              else {
                img_alt = title;
              }
            }
            if (rel_data["rel"] == rel) {
              if (rel_data["group"] == rel_group) {
                if (Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) {
                  rel_style = rel_data["style"];
                }
                Lightbox.imageArray.push([anchor.href, anchor_title, img_alt, rel_style]);
              }
            }
          }
        }

        // Remove duplicates.
        for (i = 0; i < Lightbox.imageArray.length; i++) {
          for (j = Lightbox.imageArray.length-1; j > i; j--) {
            if (Lightbox.imageArray[i][0] == Lightbox.imageArray[j][0]) {
              Lightbox.imageArray.splice(j,1);
            }
          }
        }
        while (Lightbox.imageArray[Lightbox.imageNum][0] != imageLink.href) {
          Lightbox.imageNum++;
        }
      }
    }

    if (Lightbox.isSlideshow && Lightbox.showPlayPause && Lightbox.isPaused) {
      $('#lightshowPlay').show();
      $('#lightshowPause').hide();
    }

    // Calculate top and left offset for the lightbox.
    var arrayPageScroll = Lightbox.getPageScroll();
    var lightboxTop = arrayPageScroll[1] + (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
    var lightboxLeft = arrayPageScroll[0];
    $('#frameContainer, #modalContainer, #lightboxImage').hide();
    $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
    $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();
    $('#outerImageContainer').css({'width': '250px', 'height': '250px'});
    $('#lightbox').css({
      'zIndex': '10500',
      'top': lightboxTop + 'px',
      'left': lightboxLeft + 'px'
    }).show();

    Lightbox.total = Lightbox.imageArray.length;
    Lightbox.changeData(Lightbox.imageNum);
  },

  // changeData()
  // Hide most elements and preload image in preparation for resizing image
  // container.
  changeData: function(imageNum, zoomIn) {

    if (Lightbox.inprogress === false) {
      if (Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) {
        if (imageNum >= Lightbox.total) imageNum = 0;
        if (imageNum < 0) imageNum = Lightbox.total - 1;
      }

      if (Lightbox.isSlideshow) {
        for (var i = 0; i < Lightbox.slideIdCount; i++) {
          window.clearTimeout(Lightbox.slideIdArray[i]);
        }
      }
      Lightbox.inprogress = true;
      Lightbox.activeImage = imageNum;

      if (Lightbox.disableResize && !Lightbox.isSlideshow) {
        zoomIn = true;
      }
      Lightbox.isZoomedIn = zoomIn;


      // Hide elements during transition.
      $('#loading').css({'zIndex': '10500'}).show();
      if (!Lightbox.alternative_layout) {
        $('#imageContainer').hide();
      }
      $('#frameContainer, #modalContainer, #lightboxImage').hide();
      $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
      $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();

      // Preload image content, but not iframe pages.
      if (!Lightbox.isLightframe && !Lightbox.isVideo && !Lightbox.isModal) {
        $("#lightbox #imageDataContainer").removeClass('lightbox2-alt-layout-data');
        imgPreloader = new Image();
        imgPreloader.onerror = function() { Lightbox.imgNodeLoadingError(this); };

        imgPreloader.onload = function() {
          var photo = document.getElementById('lightboxImage');
          photo.src = Lightbox.imageArray[Lightbox.activeImage][0];
          photo.alt = Lightbox.imageArray[Lightbox.activeImage][2];

          var imageWidth = imgPreloader.width;
          var imageHeight = imgPreloader.height;

          // Resize code.
          var arrayPageSize = Lightbox.getPageSize();
          var targ = { w:arrayPageSize[2] - (Lightbox.borderSize * 2), h:arrayPageSize[3] - (Lightbox.borderSize * 6) - (Lightbox.infoHeight * 4) - (arrayPageSize[3] / 10) };
          var orig = { w:imgPreloader.width, h:imgPreloader.height };

          // Image is very large, so show a smaller version of the larger image
          // with zoom button.
          if (zoomIn !== true) {
            var ratio = 1.0; // Shrink image with the same aspect.
            $('#bottomNavZoomOut, #bottomNavZoom').hide();
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              ratio = ((targ.w / orig.w) < (targ.h / orig.h)) ? targ.w / orig.w : targ.h / orig.h;
              if (!Lightbox.disableZoom && !Lightbox.isSlideshow) {
                $('#bottomNavZoom').css({'zIndex': '10500'}).show();
              }
            }

            imageWidth  = Math.floor(orig.w * ratio);
            imageHeight = Math.floor(orig.h * ratio);
          }

          else {
            $('#bottomNavZoom').hide();
            // Only display zoom out button if the image is zoomed in already.
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              // Only display zoom out button if not a slideshow and if the
              // buttons aren't disabled.
              if (!Lightbox.disableResize && Lightbox.isSlideshow === false && !Lightbox.disableZoom) {
                $('#bottomNavZoomOut').css({'zIndex': '10500'}).show();
              }
            }
          }

          photo.style.width = (imageWidth) + 'px';
          photo.style.height = (imageHeight) + 'px';
          Lightbox.resizeContainer(imageWidth, imageHeight);

          // Clear onLoad, IE behaves irratically with animated gifs otherwise.
          imgPreloader.onload = function() {};
        };

        imgPreloader.src = Lightbox.imageArray[Lightbox.activeImage][0];
        imgPreloader.alt = Lightbox.imageArray[Lightbox.activeImage][2];
      }

      // Set up frame size, etc.
      else if (Lightbox.isLightframe) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var src = Lightbox.imageArray[Lightbox.activeImage][0];
        $('#frameContainer').html('<iframe id="lightboxFrame" style="display: none;" src="'+src+'"></iframe>');

        // Enable swf support in Gecko browsers.
        if ($.browser.mozilla && src.indexOf('.swf') != -1) {
          setTimeout(function () {
            document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
          }, 1000);
        }

        if (!Lightbox.iframe_border) {
          $('#lightboxFrame').css({'border': 'none'});
          $('#lightboxFrame').attr('frameborder', '0');
        }
        var iframe = document.getElementById('lightboxFrame');
        var iframeStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        iframe = Lightbox.setStyles(iframe, iframeStyles);
        Lightbox.resizeContainer(parseInt(iframe.width, 10), parseInt(iframe.height, 10));
      }
      else if (Lightbox.isVideo || Lightbox.isModal) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var container = document.getElementById('modalContainer');
        var modalStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        container = Lightbox.setStyles(container, modalStyles);
        if (Lightbox.isVideo) {
          Lightbox.modalHeight =  parseInt(container.height, 10) - 10;
          Lightbox.modalWidth =  parseInt(container.width, 10) - 10;
          Lightvideo.startVideo(Lightbox.imageArray[Lightbox.activeImage][0]);
        }
        Lightbox.resizeContainer(parseInt(container.width, 10), parseInt(container.height, 10));
      }
    }
  },

  // imgNodeLoadingError()
  imgNodeLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    var original_image = Lightbox.imageArray[Lightbox.activeImage][0];
    if (s.display_image_size !== "") {
      original_image = original_image.replace(new RegExp("."+s.display_image_size), "");
    }
    Lightbox.imageArray[Lightbox.activeImage][0] = original_image;
    image.onerror = function() { Lightbox.imgLoadingError(image); };
    image.src = original_image;
  },

  // imgLoadingError()
  imgLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    Lightbox.imageArray[Lightbox.activeImage][0] = s.default_image;
    image.src = s.default_image;
  },

  // resizeContainer()
  resizeContainer: function(imgWidth, imgHeight) {

    imgWidth = (imgWidth < Lightbox.minWidth ? Lightbox.minWidth : imgWidth);

    this.widthCurrent = $('#outerImageContainer').width();
    this.heightCurrent = $('#outerImageContainer').height();

    var widthNew = (imgWidth  + (Lightbox.borderSize * 2));
    var heightNew = (imgHeight  + (Lightbox.borderSize * 2));

    // Scalars based on change from old to new.
    this.xScale = ( widthNew / this.widthCurrent) * 100;
    this.yScale = ( heightNew / this.heightCurrent) * 100;

    // Calculate size difference between new and old image, and resize if
    // necessary.
    wDiff = this.widthCurrent - widthNew;
    hDiff = this.heightCurrent - heightNew;

    $('#modalContainer').css({'width': imgWidth, 'height': imgHeight});
    // Detect animation sequence.
    if (Lightbox.resizeSequence) {
      var animate1 = {width: widthNew};
      var animate2 = {height: heightNew};
      if (Lightbox.resizeSequence == 2) {
        animate1 = {height: heightNew};
        animate2 = {width: widthNew};
      }
      $('#outerImageContainer').animate(animate1, Lightbox.resizeSpeed).animate(animate2, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }
    // Simultaneous.
    else {
      $('#outerImageContainer').animate({'width': widthNew, 'height': heightNew}, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }

    // If new and old image are same size and no scaling transition is necessary
    // do a quick pause to prevent image flicker.
    if ((hDiff === 0) && (wDiff === 0)) {
      if ($.browser.msie) {
        Lightbox.pause(250);
      }
      else {
        Lightbox.pause(100);
      }
    }

    var s = Drupal.settings.lightbox2;
    if (!s.use_alt_layout) {
      $('#prevLink, #nextLink').css({'height': imgHeight + 'px'});
    }
    $('#imageDataContainer').css({'width': widthNew + 'px'});
  },

  // showData()
  // Display image and begin preloading neighbors.
  showData: function() {
    $('#loading').hide();

    if (Lightbox.isLightframe || Lightbox.isVideo || Lightbox.isModal) {
      Lightbox.updateDetails();
      if (Lightbox.isLightframe) {
        $('#frameContainer').show();
        if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
          $('#lightboxFrame').css({'zIndex': '10500'}).show();
        }
        else {
          $('#lightboxFrame').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
        }
      }
      else {
        if (Lightbox.isVideo) {
          $("#modalContainer").html(Lightbox.modalHTML).click(function(){return false;}).css('zIndex', '10500').show();
        }
        else {
          var src = unescape(Lightbox.imageArray[Lightbox.activeImage][0]);
          if (Lightbox.imageArray[Lightbox.activeImage][4]) {
            $(src).appendTo("#modalContainer");
            $('#modalContainer').css({'zIndex': '10500'}).show();
          }
          else {
            // Use a callback to show the new image, otherwise you get flicker.
            $("#modalContainer").hide().load(src, function () {$('#modalContainer').css({'zIndex': '10500'}).show();});
          }
          $('#modalContainer').unbind('click');
        }
        // This might be needed in the Lightframe section above.
        //$('#modalContainer').css({'zIndex': '10500'}).show();
      }
    }

    // Handle display of image content.
    else {
      $('#imageContainer').show();
      if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
        $('#lightboxImage').css({'zIndex': '10500'}).show();
      }
      else {
        $('#lightboxImage').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
      }
      Lightbox.updateDetails();
      this.preloadNeighborImages();
    }
    Lightbox.inprogress = false;

    // Slideshow specific stuff.
    if (Lightbox.isSlideshow) {
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        if (Lightbox.autoExit) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.end('slideshow');}, Lightbox.slideInterval);
        }
      }
      else {
        if (!Lightbox.isPaused && Lightbox.total > 1) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.changeData(Lightbox.activeImage + 1);}, Lightbox.slideInterval);
        }
      }
      if (Lightbox.showPlayPause && Lightbox.total > 1 && !Lightbox.isPaused) {
        $('#lightshowPause').show();
        $('#lightshowPlay').hide();
      }
      else if (Lightbox.showPlayPause && Lightbox.total > 1) {
        $('#lightshowPause').hide();
        $('#lightshowPlay').show();
      }
    }

    // Adjust the page overlay size.
    var arrayPageSize = Lightbox.getPageSize();
    var arrayPageScroll = Lightbox.getPageScroll();
    var pageHeight = arrayPageSize[1];
    if (Lightbox.isZoomedIn && arrayPageSize[1] > arrayPageSize[3]) {
      var lightboxTop = (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
      pageHeight = pageHeight + arrayPageScroll[1] + lightboxTop;
    }
    $('#lightbox2-overlay').css({'height': pageHeight + 'px', 'width': arrayPageSize[0] + 'px'});

    // Gecko browsers (e.g. Firefox, SeaMonkey, etc) don't handle pdfs as
    // expected.
    if ($.browser.mozilla) {
      if (Lightbox.imageArray[Lightbox.activeImage][0].indexOf(".pdf") != -1) {
        setTimeout(function () {
          document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
        }, 1000);
      }
    }
  },

  // updateDetails()
  // Display caption, image number, and bottom nav.
  updateDetails: function() {

    $("#imageDataContainer").hide();

    var s = Drupal.settings.lightbox2;

    if (s.show_caption) {
      var caption = Lightbox.filterXSS(Lightbox.imageArray[Lightbox.activeImage][1]);
      if (!caption) caption = '';
      $('#caption').html(caption).css({'zIndex': '10500'}).show();
    }

    // If image is part of set display 'Image x of x'.
    var numberDisplay = null;
    if (s.image_count && Lightbox.total > 1) {
      var currentImage = Lightbox.activeImage + 1;
      if (!Lightbox.isLightframe && !Lightbox.isModal && !Lightbox.isVideo) {
        numberDisplay = s.image_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else if (Lightbox.isVideo) {
        numberDisplay = s.video_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else {
        numberDisplay = s.page_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      $('#numberDisplay').html(numberDisplay).css({'zIndex': '10500'}).show();
    }
    else {
      $('#numberDisplay').hide();
    }

    $("#imageDataContainer").hide().slideDown(Lightbox.slideDownSpeed, function() {
      $("#bottomNav").show();
    });
    if (Lightbox.rtl == 1) {
      $("#bottomNav").css({'float': 'left'});
    }
    Lightbox.updateNav();
  },

  // updateNav()
  // Display appropriate previous and next hover navigation.
  updateNav: function() {

    $('#hoverNav').css({'zIndex': '10500'}).show();
    var prevLink = '#prevLink';
    var nextLink = '#nextLink';

    // Slideshow is separated as we need to show play / pause button.
    if (Lightbox.isSlideshow) {
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage !== 0) {
        $(prevLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnPrevClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage != (Lightbox.total - 1)) {
        $(nextLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnNextClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // All other types of content.
    else {

      if ((Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) && !Lightbox.alternative_layout) {
        $('#frameHoverNav').css({'zIndex': '10500'}).show();
        $('#hoverNav').css({'zIndex': '10500'}).hide();
        prevLink = '#framePrevLink';
        nextLink = '#frameNextLink';
      }

      // If not first image in set, display prev image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage !== 0) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(prevLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage != (Lightbox.total - 1)) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(nextLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // Don't enable keyboard shortcuts so forms will work.
    if (!Lightbox.isModal) {
      this.enableKeyboardNav();
    }
  },


  // enableKeyboardNav()
  enableKeyboardNav: function() {
    $(document).bind("keydown", this.keyboardAction);
  },

  // disableKeyboardNav()
  disableKeyboardNav: function() {
    $(document).unbind("keydown", this.keyboardAction);
  },

  // keyboardAction()
  keyboardAction: function(e) {
    if (e === null) { // IE.
      keycode = event.keyCode;
      escapeKey = 27;
    }
    else { // Mozilla.
      keycode = e.keyCode;
      escapeKey = e.DOM_VK_ESCAPE;
    }

    key = String.fromCharCode(keycode).toLowerCase();

    // Close lightbox.
    if (Lightbox.checkKey(Lightbox.keysClose, key, keycode)) {
      Lightbox.end('forceClose');
    }
    // Display previous image (p, <-).
    else if (Lightbox.checkKey(Lightbox.keysPrevious, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage !== 0) {
        Lightbox.changeData(Lightbox.activeImage - 1);
      }

    }
    // Display next image (n, ->).
    else if (Lightbox.checkKey(Lightbox.keysNext, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage != (Lightbox.total - 1)) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    // Zoom in.
    else if (Lightbox.checkKey(Lightbox.keysZoom, key, keycode) && !Lightbox.disableResize && !Lightbox.disableZoom && !Lightbox.isSlideshow && !Lightbox.isLightframe) {
      if (Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, false);
      }
      else if (!Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, true);
      }
      return false;
    }
    // Toggle play / pause (space).
    else if (Lightbox.checkKey(Lightbox.keysPlayPause, key, keycode) && Lightbox.isSlideshow) {

      if (Lightbox.isPaused) {
        Lightbox.togglePlayPause("lightshowPlay", "lightshowPause");
      }
      else {
        Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
      }
      return false;
    }
  },

  preloadNeighborImages: function() {

    if ((Lightbox.total - 1) > Lightbox.activeImage) {
      preloadNextImage = new Image();
      preloadNextImage.src = Lightbox.imageArray[Lightbox.activeImage + 1][0];
    }
    if (Lightbox.activeImage > 0) {
      preloadPrevImage = new Image();
      preloadPrevImage.src = Lightbox.imageArray[Lightbox.activeImage - 1][0];
    }

  },

  end: function(caller) {
    var closeClick = (caller == 'slideshow' ? false : true);
    if (Lightbox.isSlideshow && Lightbox.isPaused && !closeClick) {
      return;
    }
    // To prevent double clicks on navigation links.
    if (Lightbox.inprogress === true && caller != 'forceClose') {
      return;
    }
    Lightbox.disableKeyboardNav();
    $('#lightbox').hide();
    $("#lightbox2-overlay").fadeOut();
    Lightbox.isPaused = true;
    Lightbox.inprogress = false;
    // Replaces calls to showSelectBoxes() and showFlash() in original
    // lightbox2.
    Lightbox.toggleSelectsFlash('visible');
    if (Lightbox.isSlideshow) {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
      $('#lightshowPause, #lightshowPlay').hide();
    }
    else if (Lightbox.isLightframe) {
      $('#frameContainer').empty().hide();
    }
    else if (Lightbox.isVideo || Lightbox.isModal) {
      if (!Lightbox.auto_modal) {
        $('#modalContainer').hide().html("");
      }
      Lightbox.auto_modal = false;
    }
  },


  // getPageScroll()
  // Returns array with x,y page scroll values.
  // Core code from - quirksmode.com.
  getPageScroll : function() {

    var xScroll, yScroll;

    if (self.pageYOffset || self.pageXOffset) {
      yScroll = self.pageYOffset;
      xScroll = self.pageXOffset;
    }
    else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {  // Explorer 6 Strict.
      yScroll = document.documentElement.scrollTop;
      xScroll = document.documentElement.scrollLeft;
    }
    else if (document.body) {// All other Explorers.
      yScroll = document.body.scrollTop;
      xScroll = document.body.scrollLeft;
    }

    arrayPageScroll = [xScroll,yScroll];
    return arrayPageScroll;
  },

  // getPageSize()
  // Returns array with page width, height and window width, height.
  // Core code from - quirksmode.com.
  // Edit for Firefox by pHaez.

  getPageSize : function() {

    var xScroll, yScroll;

    if (window.innerHeight && window.scrollMaxY) {
      xScroll = window.innerWidth + window.scrollMaxX;
      yScroll = window.innerHeight + window.scrollMaxY;
    }
    else if (document.body.scrollHeight > document.body.offsetHeight) { // All but Explorer Mac.
      xScroll = document.body.scrollWidth;
      yScroll = document.body.scrollHeight;
    }
    else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari.
      xScroll = document.body.offsetWidth;
      yScroll = document.body.offsetHeight;
    }

    var windowWidth, windowHeight;

    if (self.innerHeight) { // All except Explorer.
      if (document.documentElement.clientWidth) {
        windowWidth = document.documentElement.clientWidth;
      }
      else {
        windowWidth = self.innerWidth;
      }
      windowHeight = self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode.
      windowWidth = document.documentElement.clientWidth;
      windowHeight = document.documentElement.clientHeight;
    }
    else if (document.body) { // Other Explorers.
      windowWidth = document.body.clientWidth;
      windowHeight = document.body.clientHeight;
    }
    // For small pages with total height less than height of the viewport.
    if (yScroll < windowHeight) {
      pageHeight = windowHeight;
    }
    else {
      pageHeight = yScroll;
    }
    // For small pages with total width less than width of the viewport.
    if (xScroll < windowWidth) {
      pageWidth = xScroll;
    }
    else {
      pageWidth = windowWidth;
    }
    arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
    return arrayPageSize;
  },


  // pause(numberMillis)
  pause : function(ms) {
    var date = new Date();
    var curDate = null;
    do { curDate = new Date(); }
    while (curDate - date < ms);
  },


  // toggleSelectsFlash()
  // Hide / unhide select lists and flash objects as they appear above the
  // lightbox in some browsers.
  toggleSelectsFlash: function (state) {
    if (state == 'visible') {
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").show();
    }
    else if (state == 'hide') {
      $("select:visible, embed:visible, object:visible").not('#lightboxAutoModal select, #lightboxAutoModal embed, #lightboxAutoModal object').addClass("lightbox_hidden");
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").hide();
    }
  },


  // parseRel()
  parseRel: function (link) {
    var parts = [];
    parts["rel"] = parts["title"] = parts["group"] = parts["style"] = parts["flashvars"] = null;
    if (!$(link).attr('rel')) return parts;
    parts["rel"] = $(link).attr('rel').match(/\w+/)[0];

    if ($(link).attr('rel').match(/\[(.*)\]/)) {
      var info = $(link).attr('rel').match(/\[(.*?)\]/)[1].split('|');
      parts["group"] = info[0];
      parts["style"] = info[1];
      if (parts["style"] != undefined && parts["style"].match(/flashvars:\s?(.*?);/)) {
        parts["flashvars"] = parts["style"].match(/flashvars:\s?(.*?);/)[1];
      }
    }
    if ($(link).attr('rel').match(/\[.*\]\[(.*)\]/)) {
      parts["title"] = $(link).attr('rel').match(/\[.*\]\[(.*)\]/)[1];
    }
    return parts;
  },

  // setStyles()
  setStyles: function(item, styles) {
    item.width = Lightbox.iframe_width;
    item.height = Lightbox.iframe_height;
    item.scrolling = "auto";

    if (!styles) return item;
    var stylesArray = styles.split(';');
    for (var i = 0; i< stylesArray.length; i++) {
      if (stylesArray[i].indexOf('width:') >= 0) {
        var w = stylesArray[i].replace('width:', '');
        item.width = jQuery.trim(w);
      }
      else if (stylesArray[i].indexOf('height:') >= 0) {
        var h = stylesArray[i].replace('height:', '');
        item.height = jQuery.trim(h);
      }
      else if (stylesArray[i].indexOf('scrolling:') >= 0) {
        var scrolling = stylesArray[i].replace('scrolling:', '');
        item.scrolling = jQuery.trim(scrolling);
      }
      else if (stylesArray[i].indexOf('overflow:') >= 0) {
        var overflow = stylesArray[i].replace('overflow:', '');
        item.overflow = jQuery.trim(overflow);
      }
    }
    return item;
  },


  // togglePlayPause()
  // Hide the pause / play button as appropriate.  If pausing the slideshow also
  // clear the timers, otherwise move onto the next image.
  togglePlayPause: function(hideId, showId) {
    if (Lightbox.isSlideshow && hideId == "lightshowPause") {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
    }
    $('#' + hideId).hide();
    $('#' + showId).show();

    if (hideId == "lightshowPlay") {
      Lightbox.isPaused = false;
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        Lightbox.end();
      }
      else if (Lightbox.total > 1) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    else {
      Lightbox.isPaused = true;
    }
  },

  triggerLightbox: function (rel_type, rel_group) {
    if (rel_type.length) {
      if (rel_group && rel_group.length) {
        $("a[rel^='" + rel_type +"\[" + rel_group + "\]'], area[rel^='" + rel_type +"\[" + rel_group + "\]']").eq(0).trigger("click");
      }
      else {
        $("a[rel^='" + rel_type +"'], area[rel^='" + rel_type +"']").eq(0).trigger("click");
      }
    }
  },

  detectMacFF2: function() {
    var ua = navigator.userAgent.toLowerCase();
    if (/firefox[\/\s](\d+\.\d+)/.test(ua)) {
      var ffversion = new Number(RegExp.$1);
      if (ffversion < 3 && ua.indexOf('mac') != -1) {
        return true;
      }
    }
    return false;
  },

  checkKey: function(keys, key, code) {
    return (jQuery.inArray(key, keys) != -1 || jQuery.inArray(String(code), keys) != -1);
  },

  filterXSS: function(str, allowed_tags) {
    var output = "";
    $.ajax({
      url: Drupal.settings.basePath + 'system/lightbox2/filter-xss',
      data: {
        'string' : str,
        'allowed_tags' : allowed_tags
      },
      type: "POST",
      async: false,
      dataType:  "json",
      success: function(data) {
        output = data;
      }
    });
    return output;
  }

};

// Initialize the lightbox.
Drupal.behaviors.initLightbox = function (context) {
  $('body:not(.lightbox-processed)', context).addClass('lightbox-processed').each(function() {
    Lightbox.initialize();
    return false; // Break the each loop.
  });

  // Attach lightbox to any links with lightbox rels.
  Lightbox.initList(context);
  $('#lightboxAutoModal', context).triggerHandler('click');
};

;
// $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);
;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}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;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;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;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};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"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);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 checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var 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,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}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&&!opts.backwards));});}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);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}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=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{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||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}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;}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.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);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;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){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){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}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 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||opts.pagerAnchorBuilder){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]);}debug("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||opts.pagerAnchorBuilder){$.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){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");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.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;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]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){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];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);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){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;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(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);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}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[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$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;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",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){debug("applying clearType background-color hack");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,fwd,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,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,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,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(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-2010 M. Alsup
 * Version:	 2.72
 * 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.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.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);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}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);;
// $Id: views_slideshow.js,v 1.1.2.1.2.39 2010/07/01 03:29:08 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() { 
        viewsSlideshowSingleFramePause(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_paused) {
      viewsSlideshowSingleFramePause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowSingleFrameIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowSingleFrameResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowSingleFramePause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when the window is resized.
      $(window).resize(function() {
        checkPause(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, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '">' + (idx+1) + '</a></div>';
}

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

  for (var 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);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * type = The way to calculate how much is visible.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowSingleFrameIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}

;
// $Id: views_slideshow.js,v 1.1.2.2.2.35 2010/07/01 03:29:08 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, opts) {
        // 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_paused) {
      viewsSlideshowThumbnailHoverPause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowThumbnailHoverIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowThumbnailHoverPause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when window is resized.
      $(window).resize(function() {
        checkPause(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 (var 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);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowThumbnailHoverIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1989, 1990, 2002 Adobe Systems Incorporated. All rights reserved. © 1981,
 * 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Trade Gothic is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * TradeGothicLTStd
 * 
 * Designer:
 * Jackson Burke
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":611,"face":{"font-family":"Trade Gothic LT Std","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 5 3 2 5 2 2 2 4","ascent":"722","descent":"-278","x-height":"10","bbox":"-8 -799 829 192.203","underline-thickness":"50","underline-position":"-50","stemh":"50","stemv":"72","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":305},"!":{"d":"113,-722r106,0r-21,494r-64,0xm117,-110r98,0r0,110r-98,0r0,-110","w":333},"\"":{"d":"76,-452r0,-270r62,0r0,270r-62,0xm195,-452r0,-270r62,0r0,270r-62,0","w":333},"#":{"d":"250,-438r-20,152r135,0r21,-152r-136,0xm222,-230r-31,230r-62,0r31,-230r-99,0r0,-56r107,0r20,-152r-99,0r0,-56r107,0r31,-228r62,0r-31,228r136,0r30,-228r62,0r-30,228r94,0r0,56r-102,0r-21,152r95,0r0,56r-103,0r-31,230r-62,0r31,-230r-135,0"},"$":{"d":"275,-417r0,-243v-80,-2,-130,44,-130,110v0,88,66,120,130,133xm343,-322r0,260v72,-4,140,-50,140,-122v0,-88,-72,-116,-140,-138xm275,-722r0,-77r68,0r0,77v82,6,150,64,185,118r-52,42v-29,-48,-79,-88,-133,-98r0,261v140,45,212,95,212,209v0,112,-98,190,-212,190r0,124r-68,0r0,-124v-96,-2,-170,-72,-220,-131r58,-44v32,47,94,109,162,113r0,-279v-72,-17,-202,-65,-202,-197v0,-124,100,-184,202,-184"},"%":{"d":"662,-62v59,0,105,-42,105,-104v0,-62,-46,-104,-105,-104v-59,0,-105,42,-105,104v0,62,46,104,105,104xm662,0v-93,0,-167,-72,-167,-166v0,-94,74,-166,167,-166v93,0,167,72,167,166v0,94,-74,166,-167,166xm227,-390v-93,0,-167,-72,-167,-166v0,-94,74,-166,167,-166v93,0,167,72,167,166v0,94,-74,166,-167,166xm227,-452v59,0,105,-42,105,-104v0,-62,-46,-104,-105,-104v-59,0,-105,42,-105,104v0,62,46,104,105,104xm207,10r415,-742r59,0r-415,742r-59,0","w":889},"&":{"d":"302,-670v-116,0,-75,158,-36,214v50,-32,108,-86,108,-141v0,-45,-36,-73,-72,-73xm530,-364r66,16v-14,74,-46,164,-81,215v31,33,93,61,119,61r0,72v-66,5,-112,-26,-168,-72v-48,52,-112,82,-206,82v-112,0,-216,-81,-216,-207v0,-98,81,-170,157,-218v-29,-43,-57,-115,-57,-173v0,-82,62,-144,162,-144v82,0,148,48,148,134v0,84,-86,150,-152,198v48,86,112,162,163,218v23,-30,52,-105,65,-182xm124,-192v2,161,218,162,292,74v-66,-76,-130,-158,-182,-242v-58,38,-110,80,-110,168","w":667},"(":{"d":"203,-732r78,0v-95,128,-143,250,-143,411v0,152,55,282,142,405r-74,0v-184,-232,-186,-582,-3,-816","w":333},")":{"d":"130,84r-78,0v95,-128,143,-250,143,-411v0,-152,-55,-282,-142,-405r74,0v184,232,186,582,3,816","w":333},"*":{"d":"222,-544r-148,-23r18,-65r137,65r6,-4r-22,-151r67,0r-18,149r7,6r132,-69r25,67r-149,31r-3,8r106,106r-54,42r-73,-134r-8,0r-73,132r-52,-39r104,-114","w":500},"+":{"d":"269,-291r0,-229r62,0r0,229r229,0r0,62r-229,0r0,229r-62,0r0,-229r-229,0r0,-62r229,0","w":600},",":{"d":"201,-110r0,110r-63,148r-42,0r47,-148r-40,0r0,-110r98,0","w":305},"-":{"d":"292,-229r-252,0r0,-62r252,0r0,62","w":333},".":{"d":"103,-110r98,0r0,110r-98,0r0,-110","w":305},"\/":{"d":"225,-732r61,0r-234,742r-60,0","w":278},"0":{"d":"50,-361v0,-261,98,-371,255,-371v157,0,255,110,255,371v0,261,-98,371,-255,371v-157,0,-255,-110,-255,-371xm126,-361v0,219,62,309,179,309v117,0,179,-90,179,-309v0,-219,-62,-309,-179,-309v-117,0,-179,90,-179,309"},"1":{"d":"475,0r-320,0r0,-62r125,0r0,-587r-139,14r0,-47v50,-15,107,-30,139,-50r72,0r0,670r123,0r0,62"},"2":{"d":"535,-62r0,62r-469,0r0,-76v125,-253,394,-268,394,-462v0,-84,-54,-132,-146,-132v-104,0,-158,84,-170,157r-71,-16v23,-100,82,-203,243,-203v118,0,220,68,220,192v0,220,-316,280,-394,478r393,0"},"3":{"d":"34,-132r58,-40v55,74,123,120,198,120v106,0,170,-54,170,-140v0,-101,-60,-162,-204,-162r-71,0r0,-62r43,0v144,0,206,-46,206,-135v0,-73,-63,-119,-132,-119v-88,0,-126,38,-174,100r-59,-40v49,-68,117,-122,233,-122v128,0,208,66,208,180v0,87,-56,138,-112,160v114,44,138,126,138,192v0,123,-95,210,-246,210v-138,0,-222,-86,-256,-142"},"4":{"d":"566,-170r-124,0r0,170r-72,0r0,-170r-332,0r0,-62r298,-490r106,0r0,490r124,0r0,62xm367,-646r-253,414r256,0r0,-414r-3,0"},"5":{"d":"501,-722r0,62r-310,0r-18,231v148,-129,379,-42,379,185v0,110,-66,254,-250,254v-123,0,-185,-68,-230,-138r65,-34v35,65,91,110,167,110v95,0,172,-56,172,-192v0,-106,-62,-182,-162,-182v-70,0,-123,42,-152,109r-63,-14r32,-391r370,0"},"6":{"d":"512,-690r-31,61v-33,-26,-67,-41,-123,-41v-114,0,-220,94,-222,302v44,-46,98,-86,198,-86v108,0,217,76,217,232v0,154,-113,232,-233,232v-150,0,-258,-88,-258,-334v0,-228,102,-408,296,-408v78,0,135,22,156,42xm475,-220v0,-112,-75,-172,-151,-172v-88,0,-186,72,-186,154v0,102,70,186,174,186v102,0,163,-70,163,-168"},"7":{"d":"440,-660r-366,0r0,-62r458,0r0,44r-305,678r-84,0"},"8":{"d":"568,-188v0,110,-86,198,-263,198v-177,0,-263,-88,-263,-198v0,-94,76,-154,158,-198v-80,-30,-128,-91,-128,-166v0,-118,100,-180,233,-180v133,0,233,62,233,180v0,77,-52,134,-128,168v86,31,158,98,158,196xm118,-188v0,64,56,136,187,136v131,0,187,-72,187,-136v0,-84,-86,-126,-200,-164v-88,38,-174,80,-174,164xm462,-556v0,-80,-78,-114,-157,-114v-79,0,-157,34,-157,114v0,78,98,122,157,139v80,-20,157,-69,157,-139"},"9":{"d":"99,-32r31,-61v33,26,67,41,123,41v114,0,213,-102,222,-302v-44,46,-98,86,-198,86v-108,0,-217,-76,-217,-232v0,-154,113,-232,233,-232v150,0,258,88,258,334v0,228,-102,408,-296,408v-78,0,-135,-22,-156,-42xm136,-502v0,112,75,172,151,172v88,0,156,-58,184,-134v-2,-126,-68,-206,-172,-206v-102,0,-163,70,-163,168"},":":{"d":"201,0r-98,0r0,-110r98,0r0,110xm201,-290r-98,0r0,-110r98,0r0,110","w":305},";":{"d":"201,-110r0,110r-63,148r-42,0r47,-148r-40,0r0,-110r98,0xm201,-290r-98,0r0,-110r98,0r0,110","w":305},"<":{"d":"554,-62r0,62r-508,-232r0,-56r508,-232r0,62r-436,198","w":600},"=":{"d":"560,-393r0,62r-520,0r0,-62r520,0xm560,-189r0,62r-520,0r0,-62r520,0","w":600},">":{"d":"46,-62r436,-198r-436,-198r0,-62r508,231r0,58r-508,231r0,-62","w":600},"?":{"d":"220,-228r-68,0r0,-55v0,-151,150,-183,150,-301v0,-40,-24,-86,-84,-86v-46,0,-76,22,-105,77r-60,-29v33,-72,91,-110,163,-110v84,0,162,54,162,152v0,130,-158,186,-158,296r0,56xm135,-110r98,0r0,110r-98,0r0,-110","w":444},"@":{"d":"270,-308v0,58,22,98,68,98v92,0,162,-118,162,-199v0,-65,-37,-92,-72,-92v-96,0,-158,113,-158,193xm456,-202v-30,30,-73,63,-121,62v-85,0,-145,-72,-145,-158v0,-133,91,-273,222,-273v54,0,95,22,120,77r20,-60r67,0r-80,275v-5,19,-10,36,-10,49v0,15,6,25,22,25v75,0,141,-111,141,-209v0,-162,-127,-254,-277,-254v-175,0,-299,137,-299,310v0,176,133,304,299,304v100,0,191,-38,247,-108r76,0v-64,114,-191,172,-323,172v-206,0,-371,-163,-371,-368v0,-211,168,-374,371,-374v185,0,341,126,341,307v0,195,-140,285,-230,285v-40,0,-68,-28,-70,-62","w":800},"A":{"d":"300,-666r-104,372r219,0r-104,-372r-11,0xm108,0r-84,0r222,-722r119,0r222,722r-84,0r-68,-226r-259,0"},"B":{"d":"454,-378v78,24,140,91,140,184v0,108,-66,194,-262,194r-224,0r0,-722r266,0v224,-10,278,285,80,344xm188,-344r0,276r150,0v118,0,176,-40,176,-130v0,-92,-74,-146,-188,-146r-138,0xm188,-654r0,242r140,0v121,0,168,-62,168,-123v0,-81,-44,-119,-136,-119r-172,0","w":667},"C":{"d":"500,-230r72,14v-32,134,-106,226,-254,226v-162,0,-276,-118,-276,-371v0,-235,102,-371,276,-371v134,0,212,78,244,210r-74,22v-26,-102,-72,-164,-180,-164v-104,0,-186,96,-186,303v0,209,82,303,202,303v111,0,154,-84,176,-172"},"D":{"d":"180,-654r0,586r108,0v166,0,252,-99,252,-293v0,-211,-100,-293,-248,-293r-112,0xm100,0r0,-722r194,0v196,0,326,124,326,361v0,212,-114,361,-330,361r-190,0","w":667},"E":{"d":"108,-722r433,0r0,68r-353,0r0,242r251,0r0,68r-251,0r0,276r373,0r0,68r-453,0r0,-722"},"F":{"d":"100,-722r428,0r0,68r-348,0r0,242r258,0r0,68r-258,0r0,344r-80,0r0,-722","w":556,"k":{"A":74,",":129,".":129}},"G":{"d":"344,-347r243,0r0,347r-66,0v-2,-21,4,-49,-2,-66v-37,51,-109,76,-189,76v-164,0,-282,-118,-282,-371v0,-253,118,-371,282,-371v122,0,216,58,260,212r-76,15v-36,-115,-96,-159,-180,-159v-106,0,-206,72,-206,303v0,231,100,303,206,303v143,0,184,-88,173,-221r-163,0r0,-68","w":667},"H":{"d":"534,-722r80,0r0,722r-80,0r0,-344r-346,0r0,344r-80,0r0,-722r80,0r0,310r346,0r0,-310","w":722},"I":{"d":"126,-722r80,0r0,722r-80,0r0,-722","w":333},"J":{"d":"264,-722r80,0r0,536v0,136,-58,196,-166,196v-84,0,-132,-44,-170,-93r60,-39v45,79,196,108,196,-43r0,-557","w":444},"K":{"d":"196,-242r0,242r-80,0r0,-722r80,0r0,375r2,0r299,-375r95,0r-224,272r251,450r-91,0r-215,-384","w":667},"L":{"d":"530,0r-422,0r0,-722r80,0r0,654r342,0r0,68","w":556,"k":{"T":92,"V":92,"W":74,"y":55,"Y":92}},"M":{"d":"725,0r-72,0r0,-660r-3,0r-202,660r-62,0r-203,-660r-3,0r0,660r-72,0r0,-722r124,0r184,584r2,0r181,-584r126,0r0,722","w":833},"N":{"d":"180,0r-72,0r0,-722r115,0r315,556r4,0r0,-556r72,0r0,722r-66,0r-366,-644r-2,0r0,644","w":722},"O":{"d":"131,-361v0,205,75,303,202,303v127,0,202,-98,202,-303v0,-205,-75,-303,-202,-303v-127,0,-202,98,-202,303xm51,-361v0,-241,105,-371,282,-371v177,0,282,130,282,371v0,241,-105,371,-282,371v-177,0,-282,-130,-282,-371","w":667},"P":{"d":"180,-654r0,264r136,0v133,0,177,-46,177,-132v0,-86,-51,-132,-159,-132r-154,0xm180,0r-80,0r0,-722r252,0v154,0,221,88,221,202v0,120,-83,198,-265,198r-128,0r0,322","k":{"A":55,",":129,".":129}},"Q":{"d":"650,-20r0,78v-90,0,-121,-32,-160,-95v-42,31,-95,47,-157,47v-177,0,-282,-130,-282,-371v0,-241,105,-371,282,-371v177,0,282,130,282,371v0,120,-26,213,-74,275v25,47,59,66,109,66xm362,-157r0,-77v65,9,103,28,135,74v25,-48,38,-115,38,-201v0,-205,-75,-303,-202,-303v-127,0,-202,98,-202,303v0,205,75,303,202,303v46,0,85,-13,117,-40v-24,-36,-46,-53,-88,-59","w":667},"R":{"d":"180,-654r0,258r145,0v110,0,168,-41,168,-132v0,-149,-168,-125,-313,-126xm180,0r-80,0r0,-722r232,0v156,0,241,70,241,190v0,102,-59,160,-144,188r153,344r-87,0r-146,-328r-169,0r0,328","w":667,"k":{"T":37,"V":18,"W":18,"Y":18}},"S":{"d":"520,-554r-72,16v-18,-70,-75,-126,-168,-126v-84,0,-134,40,-135,112v-2,158,406,118,406,350v0,105,-59,212,-243,212v-158,0,-220,-102,-258,-188r73,-26v29,76,83,146,189,146v106,0,159,-56,159,-130v0,-184,-406,-130,-406,-358v0,-104,87,-186,217,-186v112,0,200,59,238,178"},"T":{"d":"534,-654r-216,0r0,654r-80,0r0,-654r-216,0r0,-68r512,0r0,68","w":556,"k":{"w":92,"y":92,"A":55,",":92,".":92,"-":92,"a":92,"c":92,"e":92,"i":92,"o":92,"r":92,"s":92,"u":92,":":92,";":92}},"U":{"d":"108,-722r80,0r0,510v0,84,60,154,173,154v113,0,173,-70,173,-154r0,-510r80,0r0,504v0,144,-104,228,-253,228v-149,0,-253,-84,-253,-228r0,-504","w":722},"V":{"d":"241,0r-223,-722r80,0r178,592r2,0r179,-592r81,0r-224,722r-73,0","w":556,"k":{"y":18,"A":37,",":111,".":111,"-":55,"a":37,"e":37,"i":18,"o":37,"r":18,"u":18,":":74,";":74}},"W":{"d":"202,0r-174,-722r76,0r134,576r2,0r140,-576r71,0r144,576r2,0r132,-576r76,0r-171,722r-71,0r-148,-584r-2,0r-140,584r-71,0","w":833,"k":{"y":18,"A":37,",":92,".":92,"-":37,"a":37,"e":37,"i":18,"o":37,"r":18,"u":18,":":55,";":55}},"X":{"d":"276,-298r-170,298r-92,0r216,-377r-202,-345r92,0r155,265r152,-265r92,0r-197,345r220,377r-92,0","w":556},"Y":{"d":"238,0r0,-304r-222,-418r88,0r174,331r174,-331r88,0r-222,418r0,304r-80,0","w":556,"k":{"v":37,"A":55,",":111,".":111,"-":92,"a":55,"e":55,"i":37,"o":55,"u":37,":":92,";":92,"p":37,"q":55}},"Z":{"d":"511,-68r0,68r-466,0r0,-58r362,-596r-329,0r0,-68r429,0r0,52r-368,602r372,0","w":556},"[":{"d":"76,74r0,-796r204,0r0,42r-132,0r0,712r132,0r0,42r-204,0","w":333},"\\":{"d":"-8,-732r61,0r233,742r-60,0","w":278},"]":{"d":"257,-722r0,796r-204,0r0,-42r132,0r0,-712r-132,0r0,-42r204,0","w":333},"^":{"d":"111,-279r-64,0r224,-443r58,0r224,443r-63,0r-191,-375","w":600},"_":{"d":"500,125r-500,0r0,-50r500,0r0,50","w":500},"a":{"d":"120,-387r-63,-33v33,-60,97,-110,195,-110v88,0,180,42,180,156v0,118,-10,281,12,374r-74,0r-8,-72v-36,40,-94,82,-172,82v-80,0,-148,-48,-148,-143v0,-114,87,-171,318,-212v8,-85,-35,-123,-107,-123v-80,0,-119,46,-133,81xm360,-138r0,-143v-165,29,-246,77,-246,149v0,48,46,80,86,80v52,0,118,-38,160,-86","w":500},"b":{"d":"160,-470v42,-31,90,-60,141,-60v88,0,209,68,209,270v0,208,-121,270,-213,270v-62,0,-108,-26,-150,-65r-13,55r-50,0v6,-38,4,-76,4,-114r0,-608r72,0r0,252xm160,-396r0,274v115,133,278,73,278,-134v0,-240,-168,-261,-278,-140","w":556},"c":{"d":"443,-389r-67,24v-20,-63,-61,-103,-123,-103v-89,0,-141,76,-141,208v0,132,52,208,141,208v66,0,103,-22,143,-96r58,26v-52,88,-98,132,-201,132v-130,0,-213,-102,-213,-270v0,-168,83,-270,213,-270v107,0,157,60,190,141","w":500},"d":{"d":"255,-530v51,0,99,29,141,60r0,-252r72,0r0,608v0,38,-2,76,4,114r-66,0r-10,-51v-24,33,-75,61,-137,61v-92,0,-213,-62,-213,-270v0,-202,121,-270,209,-270xm396,-122r0,-274v-109,-121,-278,-99,-278,140v0,132,57,204,147,204v46,0,80,-20,131,-70","w":556},"e":{"d":"410,-140r56,29v-34,59,-82,121,-200,121v-116,0,-226,-80,-226,-270v0,-168,84,-270,212,-270v122,0,213,101,198,284r-338,0v0,114,68,194,154,194v64,0,114,-34,144,-88xm114,-308r264,0v0,-96,-46,-160,-124,-160v-87,0,-134,64,-140,160","w":500},"f":{"d":"187,0r-72,0r0,-458r-88,0r0,-62r88,0r0,-59v-3,-153,73,-162,191,-148r0,64v-61,-12,-127,-16,-119,67r0,76r113,0r0,62r-113,0r0,458","w":333},"g":{"d":"480,-540r0,72v-30,0,-62,5,-80,14v15,18,36,58,36,106v0,135,-147,217,-282,168v-53,8,-56,86,2,86v246,0,325,44,325,146v0,76,-75,140,-237,140v-146,0,-224,-40,-224,-126v0,-52,32,-77,88,-106v-40,-12,-65,-43,-65,-74v0,-45,30,-64,70,-89v-49,-37,-71,-88,-71,-145v0,-110,86,-182,197,-182v56,0,95,12,129,36v31,-22,73,-42,112,-46xm413,55v0,-51,-53,-77,-180,-77v-113,0,-145,50,-145,87v0,39,24,65,168,65v86,0,157,-24,157,-75xm368,-344v0,-76,-44,-124,-132,-124v-82,0,-126,52,-126,120v0,69,54,120,134,120v82,0,124,-54,124,-116","w":500},"h":{"d":"89,-722r72,0r0,272v44,-42,95,-80,156,-80v77,0,150,40,150,152r0,378r-72,0r0,-376v-4,-158,-185,-78,-234,-13r0,389r-72,0r0,-722","w":556},"i":{"d":"103,0r0,-520r72,0r0,520r-72,0xm103,-732r72,0r0,86r-72,0r0,-86","w":278},"j":{"d":"117,-520r72,0r0,603v7,86,-90,133,-167,97r0,-59v38,18,95,13,95,-43r0,-598xm189,-732r0,86r-72,0r0,-86r72,0","w":278},"k":{"d":"84,0r0,-722r72,0r0,465r2,0r210,-263r87,0r-153,192r173,328r-85,0r-138,-266r-96,110r0,156r-72,0","w":500},"l":{"d":"103,-722r72,0r0,722r-72,0r0,-722","w":278},"m":{"d":"154,-451v43,-48,104,-79,155,-79v67,0,114,34,133,82v46,-49,104,-82,165,-82v69,0,143,29,143,158r0,372r-72,0r0,-372v0,-70,-35,-96,-81,-96v-64,0,-106,42,-145,80r0,388r-72,0r0,-372v0,-70,-35,-96,-81,-96v-64,0,-106,42,-145,80r0,388r-72,0r0,-520r72,0r0,69","w":833},"n":{"d":"89,-520r72,0v2,22,-4,52,2,70v41,-46,95,-80,154,-80v77,0,150,40,150,152r0,378r-72,0r0,-376v-4,-158,-185,-78,-234,-13r0,389r-72,0r0,-520","w":556},"o":{"d":"391,-260v0,-134,-55,-208,-141,-208v-86,0,-141,74,-141,208v0,134,55,208,141,208v86,0,141,-74,141,-208xm463,-260v0,150,-71,270,-213,270v-142,0,-213,-120,-213,-270v0,-150,71,-270,213,-270v142,0,213,120,213,270","w":500},"p":{"d":"301,10v-51,0,-99,-29,-141,-60r0,242r-72,0r0,-712r72,0v2,19,-4,46,2,61v27,-39,85,-71,135,-71v92,0,213,62,213,270v0,202,-121,270,-209,270xm160,-398r0,274v109,121,278,99,278,-140v0,-132,-57,-204,-147,-204v-46,0,-80,20,-131,70","w":556},"q":{"d":"396,-50v-42,31,-90,60,-141,60v-88,0,-209,-68,-209,-270v0,-208,121,-270,213,-270v62,0,108,26,138,65r13,-55r58,0r0,712r-72,0r0,-242xm396,-124r0,-274v-115,-133,-278,-73,-278,134v0,240,168,261,278,140","w":556},"r":{"d":"70,0r0,-520r72,0v2,33,-4,74,2,103v40,-71,83,-111,169,-111r0,72v-90,2,-137,61,-171,168r0,288r-72,0","w":333,"k":{",":55,".":55,"-":37}},"s":{"d":"24,-89r57,-43v34,49,84,80,149,80v78,0,112,-42,112,-86v0,-132,-308,-62,-302,-252v3,-90,72,-141,172,-140v68,1,143,38,178,91r-50,44v-40,-49,-78,-73,-134,-73v-61,0,-94,31,-94,77v0,113,302,55,302,249v0,101,-88,152,-182,152v-81,0,-160,-35,-208,-99","w":444},"t":{"d":"18,-520r85,0r0,-171r72,0r0,171r120,0r0,62r-120,0r0,370v-8,44,84,38,123,31r0,59v-13,4,-42,8,-84,8v-78,0,-111,-20,-111,-86r0,-382r-85,0r0,-62","w":333},"u":{"d":"467,0r-72,0v-2,-22,4,-52,-2,-70v-41,46,-95,80,-154,80v-77,0,-150,-40,-150,-152r0,-378r72,0r0,376v4,158,185,78,234,13r0,-389r72,0r0,520","w":556},"v":{"d":"428,-520r-156,520r-96,0r-160,-520r73,0r132,430r2,0r132,-430r73,0","w":444,"k":{",":55,".":55}},"w":{"d":"157,0r-141,-520r73,0r105,400r2,0r102,-400r73,0r104,402r2,0r101,-402r73,0r-139,520r-73,0r-104,-402r-2,0r-103,402r-73,0","w":667,"k":{",":55,".":55}},"x":{"d":"105,-520r114,185r109,-185r81,0r-146,247r169,273r-83,0r-130,-213r-126,213r-81,0r164,-273r-152,-247r81,0","w":444},"y":{"d":"352,-520r76,0r-183,566v-51,135,-117,158,-227,140r0,-59v10,1,23,3,39,3v44,0,111,-10,136,-124r-181,-526r76,0r140,397r2,0","w":444,"k":{",":74,".":74}},"z":{"d":"414,-62r0,62r-384,0r0,-52r284,-406r-256,0r0,-62r354,0r0,52r-284,406r286,0","w":444},"{":{"d":"48,-303r0,-42v41,0,62,-28,62,-78v0,-124,-39,-312,93,-309r62,0r0,42v-50,-2,-84,-2,-83,56r0,230v2,53,-34,69,-74,81v45,7,74,29,74,79r0,230v0,57,32,59,83,56r0,42r-62,0v-63,0,-93,-42,-93,-110r0,-199v0,-50,-21,-78,-62,-78","w":333},"|":{"d":"80,10r0,-742r62,0r0,742r-62,0","w":222},"}":{"d":"285,-345r0,42v-41,0,-62,28,-62,78v0,124,39,312,-93,309r-62,0r0,-42v50,2,84,2,83,-56r0,-230v-2,-53,34,-69,74,-81v-45,-7,-74,-29,-74,-79r0,-230v0,-57,-32,-59,-83,-56r0,-42r62,0v63,0,93,42,93,110r0,199v0,50,21,78,62,78","w":333},"~":{"d":"194,-326v67,0,156,68,213,68v40,0,65,-37,88,-71r39,44v-33,45,-66,89,-128,89v-83,0,-129,-69,-217,-68v-44,0,-68,36,-84,73r-39,-45v25,-46,61,-90,128,-90","w":600},"'":{"d":"80,-452r0,-270r62,0r0,270r-62,0","w":222},"`":{"d":"6,-722r109,0r89,142r-67,0","w":278},"\u00a0":{"w":305}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1997, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Briem is a registered trademark of Gunnlaugur SE Briem.
 * 
 * Full name:
 * BriemAkademiStd-Semibold
 * 
 * Designer:
 * Gunnlaugur SE Briem
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":572,"face":{"font-family":"Briem Akademi Std Semibold","font-weight":600,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 7 3 3 2 4 8 2 4","ascent":"939","descent":"-61","bbox":"-28 -795.788 1234 207.788","underline-thickness":"50","underline-position":"-50","stemh":"91","stemv":"131","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":274},"!":{"d":"202,-706r0,471r-130,0r0,-471r130,0xm202,-147r0,147r-130,0r0,-147r130,0","w":274},"\"":{"d":"147,-706r0,235r-111,0r0,-235r111,0xm405,-706r0,235r-111,0r0,-235r111,0","w":441},"#":{"d":"672,-581r0,89r-82,0r-57,278r106,0r0,89r-106,0r0,125r-130,0r0,-125r-166,0r0,125r-131,0r0,-125r-82,0r0,-89r82,0r57,-278r-106,0r0,-89r106,0r0,-125r130,0r0,125r166,0r0,-125r131,0r0,125r82,0xm405,-214r57,-278r-171,0r-57,278r171,0","w":696},"$":{"d":"500,-282r0,98v-2,92,-57,134,-149,133r0,110r-130,0r0,-110v-111,4,-160,-62,-149,-184r130,0r0,104r167,0r0,-168r-160,0v-80,0,-137,-46,-137,-135r0,-98v2,-93,57,-137,149,-133r0,-110r130,0r0,110v112,-5,160,62,149,184r-131,0r0,-103r-167,0r0,167r160,0v81,0,138,46,138,135"},"%":{"d":"796,-706r0,208r-192,290r0,208r-130,0r0,-208r192,-290r0,-208r130,0xm167,-326r167,0r0,-289r-167,0r0,289xm936,-91r167,0r0,-289r-167,0r0,289xm465,-571r0,201v0,89,-58,135,-138,135r-153,0v-80,0,-138,-46,-138,-135r0,-201v0,-89,58,-135,138,-135r153,0v80,0,138,46,138,135xm1234,-336r0,201v0,89,-58,135,-138,135r-153,0v-80,0,-138,-46,-138,-135r0,-201v0,-89,58,-135,138,-135r153,0v80,0,138,46,138,135","w":1270},"&":{"d":"588,-471r0,91r-88,0r0,380r-291,0v-80,0,-137,-46,-137,-135r0,-200v0,-46,27,-76,72,-90v-64,-20,-72,-66,-72,-146v0,-89,57,-135,137,-135r206,0r0,91r-213,0r0,144r167,0r0,-71r131,0r0,71r88,0xm202,-91r167,0r0,-289r-167,0r0,289","w":588},"(":{"d":"297,115r0,91r-82,0v-80,0,-137,-46,-137,-135r0,-730v1,-122,95,-144,219,-135r0,91r-88,0r0,818r88,0","w":306},")":{"d":"228,-659r0,730v0,122,-95,144,-219,135r0,-91r88,0r0,-818r-88,0r0,-91v124,-9,218,13,219,135","w":306},"*":{"d":"568,-638r37,109r-223,67r138,185r-93,71r-133,-193r-132,193r-94,-71r139,-185r-223,-67r37,-109r220,74r-5,-230r117,0r-5,230","w":589},"+":{"d":"521,-407r0,108r-170,0r0,181r-130,0r0,-181r-171,0r0,-108r171,0r0,-181r130,0r0,181r170,0"},",":{"d":"208,-147r0,130v0,122,-95,144,-219,135r0,-91r89,0r0,-174r130,0","w":286},"-":{"d":"286,-373r0,99r-286,0r0,-99r286,0","w":286},".":{"d":"208,-147r0,147r-130,0r0,-147r130,0","w":286},"\/":{"d":"395,-706r0,208r-193,290r0,208r-130,0r0,-208r193,-290r0,-208r130,0","w":467},"0":{"d":"500,-571r0,436v0,89,-57,135,-137,135r-154,0v-80,0,-137,-46,-137,-135r0,-436v0,-89,57,-135,137,-135r154,0v80,0,137,46,137,135xm202,-91r167,0r0,-524r-167,0r0,524"},"1":{"d":"417,-706r0,706r-131,0r0,-615r-131,0r0,-91r262,0"},"2":{"d":"500,-91r0,91r-428,0r0,-251v0,-89,57,-135,137,-135r160,0r0,-229r-167,0r0,96r-130,0v-12,-116,38,-187,137,-187r154,0v80,0,137,46,137,135r0,163v0,89,-57,135,-137,135r-161,0r0,182r298,0"},"3":{"d":"500,-263r0,128v0,89,-57,135,-137,135r-154,0v-80,0,-137,-46,-137,-135r0,-71r130,0r0,115r167,0r0,-216r-147,0r0,-92r147,0r0,-216r-167,0r0,115r-130,0r0,-71v0,-89,57,-135,137,-135r154,0v80,0,137,46,137,135r0,128v0,45,-27,75,-71,90v44,14,71,45,71,90"},"4":{"d":"532,-262r0,91r-97,0r0,171r-131,0r0,-171r-295,0r0,-92r256,-443r127,0r-256,444r168,0r0,-215r131,0r0,215r97,0"},"5":{"d":"500,-298r0,163v0,89,-57,135,-137,135r-154,0v-80,0,-137,-46,-137,-135r0,-71r130,0r0,115r167,0r0,-231r-291,0r0,-384r404,0r0,91r-273,0r0,182r154,0v80,0,137,46,137,135"},"6":{"d":"500,-282r0,147v0,89,-57,135,-137,135r-154,0v-80,0,-137,-46,-137,-135r0,-436v0,-89,57,-135,137,-135r140,0v80,0,137,46,137,135r0,71r-124,0r0,-115r-160,0r0,289r61,-91r100,0v80,0,137,46,137,135xm202,-91r167,0r0,-234r-167,0r0,234"},"7":{"d":"500,-706r0,235r-161,236r0,235r-131,0r0,-235r161,-236r0,-144r-167,0r0,144r-130,0r0,-235r428,0"},"8":{"d":"500,-263r0,128v0,89,-57,135,-137,135r-154,0v-80,0,-137,-46,-137,-135r0,-128v0,-45,27,-76,72,-90v-45,-15,-72,-45,-72,-90r0,-128v0,-89,57,-135,137,-135r154,0v80,0,137,46,137,135r0,128v0,45,-27,75,-71,90v44,14,71,45,71,90xm202,-399r167,0r0,-216r-167,0r0,216xm202,-91r167,0r0,-216r-167,0r0,216"},"9":{"d":"500,-571r0,436v0,89,-58,135,-137,135r-140,0v-80,0,-137,-46,-137,-135r0,-71r124,0r0,115r159,0r0,-289r-61,91r-99,0v-80,0,-137,-46,-137,-135r0,-147v0,-89,57,-135,137,-135r154,0v79,0,137,46,137,135xm202,-381r167,0r0,-234r-167,0r0,234"},":":{"d":"208,-588r0,147r-130,0r0,-147r130,0xm208,-147r0,147r-130,0r0,-147r130,0","w":286},";":{"d":"208,-588r0,147r-130,0r0,-147r130,0xm208,-147r0,130v0,122,-95,144,-219,135r0,-91r89,0r0,-174r130,0","w":286},"<":{"d":"521,-215r0,115r-471,-205r0,-96r471,-204r0,114r-323,138"},"=":{"d":"521,-539r0,101r-471,0r0,-101r471,0xm521,-268r0,101r-471,0r0,-101r471,0"},">":{"d":"521,-401r0,96r-471,205r0,-115r324,-138r-324,-138r0,-114"},"?":{"d":"437,-571r0,136v-2,96,-60,141,-161,133r0,67r-131,0r0,-164r162,0r0,-216r-167,0r0,96r-131,0v-12,-116,39,-187,137,-187r154,0v81,0,137,46,137,135xm276,-147r0,147r-131,0r0,-147r131,0","w":474},"@":{"d":"1046,-659r0,485v0,89,-57,135,-137,135r-267,0r0,-91r-61,91r-99,0v-80,0,-137,-46,-137,-135r0,-240v0,-89,57,-135,137,-135r108,0r52,77r0,-77r131,0r0,429r142,0r0,-583r-713,0r0,818r633,0r0,91r-626,0v-80,0,-137,-46,-137,-135r0,-730v0,-89,57,-135,137,-135r700,0v80,0,137,46,137,135xm475,-131r167,0r0,-327r-167,0r0,327","w":1118},"A":{"d":"500,-471r0,471r-131,0r0,-189r-167,0r0,189r-130,0r0,-471r157,-235r114,0xm202,-281r167,0r0,-194r-83,-125r-84,125r0,194"},"B":{"d":"500,-263r0,128v0,89,-57,135,-137,135r-291,0r0,-706r291,0v80,0,137,46,137,135r0,128v0,45,-27,75,-71,90v44,14,71,45,71,90xm202,-399r167,0r0,-216r-167,0r0,216xm202,-91r167,0r0,-216r-167,0r0,216"},"C":{"d":"500,-225r0,90v0,89,-57,135,-137,135r-154,0v-80,0,-137,-46,-137,-135r0,-436v0,-89,57,-135,137,-135r154,0v80,0,137,46,137,135r0,90r-131,0r0,-134r-167,0r0,524r167,0r0,-134r131,0","w":536},"D":{"d":"500,-571r0,436v0,89,-57,135,-137,135r-291,0r0,-706r291,0v80,0,137,46,137,135xm202,-91r167,0r0,-524r-167,0r0,524"},"E":{"d":"364,-91r0,91r-155,0v-80,0,-137,-46,-137,-135r0,-436v0,-89,57,-135,137,-135r155,0r0,91r-162,0r0,216r162,0r0,92r-162,0r0,216r162,0","w":401},"F":{"d":"364,-399r0,92r-162,0r0,307r-130,0r0,-571v0,-89,57,-135,137,-135r155,0r0,91r-162,0r0,216r162,0","w":401,"k":{",":50,".":81}},"G":{"d":"500,-340r0,340r-291,0v-80,0,-137,-46,-137,-135r0,-436v0,-89,57,-135,137,-135r154,0v80,0,137,46,137,135r0,90r-131,0r0,-134r-167,0r0,524r167,0r0,-157r-80,0r0,-92r211,0"},"H":{"d":"500,-706r0,706r-131,0r0,-307r-167,0r0,307r-130,0r0,-706r130,0r0,307r167,0r0,-307r131,0"},"I":{"d":"202,-706r0,706r-130,0r0,-706r130,0","w":274},"J":{"d":"214,-706r0,689v-1,118,-91,145,-214,135r0,-91r83,0r0,-733r131,0","w":285},"K":{"d":"381,-706r131,0r-146,317v82,-5,134,27,134,106r0,283r-131,0r0,-306r-167,0r0,306r-130,0r0,-706r130,0r0,398","w":548},"L":{"d":"364,-91r0,91r-155,0v-80,0,-137,-46,-137,-135r0,-571r130,0r0,615r162,0","w":364,"k":{"T":25}},"M":{"d":"798,-471r0,471r-131,0r0,-471r-55,-118r-112,178r0,411r-131,0r0,-411r-112,-178r-55,118r0,471r-130,0r0,-471r101,-235r130,0r131,207r132,-207r131,0","w":869},"N":{"d":"500,-706r0,706r-131,0r0,-213r-167,-250r0,463r-130,0r0,-706r130,0r0,72r167,250r0,-322r131,0"},"O":{"d":"500,-571r0,436v0,89,-57,135,-137,135r-154,0v-80,0,-137,-46,-137,-135r0,-436v0,-89,57,-135,137,-135r154,0v80,0,137,46,137,135xm202,-91r167,0r0,-524r-167,0r0,524"},"P":{"d":"500,-571r0,188v0,89,-57,135,-137,135r-161,0r0,248r-130,0r0,-706r291,0v80,0,137,46,137,135xm202,-340r167,0r0,-275r-167,0r0,275","w":536,"k":{",":121,".":121}},"Q":{"d":"500,-571r0,436v-2,92,-55,138,-149,133r0,120r-130,0r0,-120v-95,5,-149,-41,-149,-133r0,-436v0,-89,57,-135,137,-135r154,0v80,0,137,46,137,135xm202,-86r167,0r0,-529r-167,0r0,529"},"R":{"d":"500,-263r0,263r-131,0r0,-307r-167,0r0,307r-130,0r0,-706r291,0v80,0,137,46,137,135r0,128v0,45,-27,75,-71,90v44,14,71,45,71,90xm202,-399r167,0r0,-216r-167,0r0,216"},"S":{"d":"500,-277r0,142v0,89,-57,135,-137,135r-154,0v-98,2,-150,-69,-137,-186r130,0r0,95r167,0r0,-203r-160,0v-80,0,-137,-46,-137,-135r0,-142v0,-89,57,-135,137,-135r154,0v99,-2,150,70,137,187r-131,0r0,-96r-167,0r0,203r161,0v80,0,137,46,137,135"},"T":{"d":"412,-706r0,91r-141,0r0,615r-130,0r0,-615r-141,0r0,-91r412,0","w":412,"k":{",":50,".":50,"-":50}},"U":{"d":"500,-706r0,571v0,89,-57,135,-137,135r-154,0v-80,0,-137,-46,-137,-135r0,-571r130,0r0,615r167,0r0,-615r131,0"},"V":{"d":"500,-706r0,471r-157,235r-114,0r-157,-235r0,-471r130,0r0,475r84,125r83,-125r0,-475r131,0"},"W":{"d":"798,-706r0,471r-101,235r-131,0r-132,-207r-131,207r-130,0r-101,-235r0,-471r130,0r0,471r55,118r112,-178r0,-411r131,0r0,411r112,178r55,-118r0,-471r131,0","w":869,"k":{".":40}},"X":{"d":"500,-263r0,263r-131,0r0,-307r-167,0r0,307r-130,0r0,-263v0,-45,27,-76,72,-90v-45,-15,-72,-45,-72,-90r0,-263r130,0r0,307r167,0r0,-307r131,0r0,263v0,45,-27,75,-71,90v44,14,71,45,71,90"},"Y":{"d":"185,-250v-92,8,-149,-38,-149,-129r0,-327r131,0r0,365r166,0r0,-365r131,0r0,327v-2,90,-57,137,-148,129r0,250r-131,0r0,-250","w":500,"k":{",":50,".":50}},"Z":{"d":"339,-91r0,91r-330,0r0,-91r201,-524r-201,0r0,-91r330,0r0,91r-200,524r200,0","w":349},"[":{"d":"297,115r0,91r-219,0r0,-1000r219,0r0,91r-88,0r0,818r88,0","w":306},"\\":{"d":"395,-208r0,208r-130,0r0,-208r-193,-290r0,-208r130,0r0,208","w":467},"]":{"d":"228,-794r0,1000r-219,0r0,-91r88,0r0,-818r-88,0r0,-91r219,0","w":306},"^":{"d":"392,-794r118,216r-124,0r-80,-150r-80,150r-123,0r117,-216r172,0","w":613},"_":{"d":"308,147r0,59r-311,0r0,-59r311,0","w":305},"a":{"d":"500,-453r0,453r-131,0r0,-90r-61,90r-99,0v-80,0,-137,-46,-137,-135r0,-70v0,-89,57,-135,137,-135r160,0r0,-157r-159,0r0,85r-124,0v-10,-111,42,-176,137,-176r140,0v80,0,137,46,137,135xm202,-91r167,0r0,-157r-167,0r0,157"},"b":{"d":"500,-453r0,318v0,89,-57,135,-137,135r-99,0r-62,-90r0,90r-130,0r0,-794r130,0r0,296r61,-90r100,0v80,0,137,46,137,135xm202,-91r167,0r0,-406r-167,0r0,406"},"c":{"d":"500,-186v12,116,-38,186,-137,186r-154,0v-80,0,-137,-46,-137,-135r0,-318v0,-89,57,-135,137,-135r154,0v98,-2,150,69,137,186r-131,0r0,-95r-167,0r0,406r167,0r0,-95r131,0"},"d":{"d":"500,-794r0,794r-131,0r0,-90r-61,90r-99,0v-80,0,-137,-46,-137,-135r0,-318v0,-89,57,-135,137,-135r99,0r61,90r0,-296r131,0xm202,-91r167,0r0,-406r-167,0r0,406"},"e":{"d":"500,-176v10,111,-42,176,-137,176r-154,0v-80,0,-137,-46,-137,-135r0,-318v0,-89,57,-135,137,-135r154,0v80,0,137,46,137,135r0,205r-298,0r0,157r167,0r0,-85r131,0xm202,-340r167,0r0,-157r-167,0r0,157"},"f":{"d":"344,-581r0,89r-123,0r0,492r-130,0r0,-492r-82,0r0,-89r82,0r0,-78v0,-89,57,-135,137,-135r116,0r0,89r-123,0r0,124r123,0","w":344},"g":{"d":"500,-588r0,659v0,89,-57,135,-137,135r-234,0r0,-91r240,0r0,-205r-61,90r-99,0v-80,0,-137,-46,-137,-135r0,-318v0,-89,57,-135,137,-135r99,0r61,90r0,-90r131,0xm202,-91r167,0r0,-406r-167,0r0,406"},"h":{"d":"500,-453r0,453r-131,0r0,-497r-167,0r0,497r-130,0r0,-794r130,0r0,296r61,-90r100,0v80,0,137,46,137,135"},"i":{"d":"202,-794r0,118r-130,0r0,-118r130,0xm202,-588r0,588r-130,0r0,-588r130,0","w":274},"j":{"d":"202,-794r0,118r-130,0r0,-118r130,0xm202,-588r0,659v0,89,-56,135,-137,135r-93,0r0,-91r100,0r0,-703r130,0","w":274},"k":{"d":"381,-588r131,0r-133,214v75,-3,121,31,121,105r0,269r-131,0r0,-294r-167,0r0,294r-130,0r0,-794r130,0r0,499","w":536},"l":{"d":"292,-91r0,91r-83,0v-80,0,-137,-46,-137,-135r0,-659r130,0r0,703r90,0","w":316},"m":{"d":"798,-453r0,453r-131,0r0,-497r-167,0r0,497r-131,0r0,-497r-167,0r0,497r-130,0r0,-588r130,0r0,90r61,-90v114,-4,212,-3,237,90r61,-90r99,0v80,0,138,46,138,135","w":869},"n":{"d":"500,-453r0,453r-131,0r0,-497r-167,0r0,497r-130,0r0,-588r130,0r0,90r61,-90r100,0v80,0,137,46,137,135"},"o":{"d":"500,-453r0,318v0,89,-57,135,-137,135r-154,0v-80,0,-137,-46,-137,-135r0,-318v0,-89,57,-135,137,-135r154,0v80,0,137,46,137,135xm202,-91r167,0r0,-406r-167,0r0,406"},"p":{"d":"500,-453r0,318v0,89,-57,135,-137,135r-99,0r-62,-90r0,296r-130,0r0,-794r130,0r0,90r61,-90r100,0v80,0,137,46,137,135xm202,-91r167,0r0,-406r-167,0r0,406"},"q":{"d":"500,-588r0,794r-131,0r0,-296r-61,90r-99,0v-80,0,-137,-46,-137,-135r0,-318v0,-89,57,-135,137,-135r99,0r61,90r0,-90r131,0xm202,-91r167,0r0,-406r-167,0r0,406"},"r":{"d":"345,-588r0,122r-143,0r0,466r-130,0r0,-588r130,0r0,91r62,-91r81,0","w":345,"k":{",":50,".":50,"-":50}},"s":{"d":"500,-218r0,83v0,89,-57,135,-137,135r-154,0v-95,1,-148,-64,-137,-176r130,0r0,85r167,0r0,-145r-160,0v-80,0,-137,-45,-137,-134r0,-83v0,-89,57,-135,137,-135r154,0v95,-1,148,64,137,176r-131,0r0,-85r-167,0r0,144r161,0v80,0,137,46,137,135"},"t":{"d":"343,-89r0,89r-115,0v-80,0,-137,-46,-137,-135r0,-357r-82,0r0,-89r82,0r0,-125r130,0r0,125r122,0r0,89r-122,0r0,403r122,0","w":367},"u":{"d":"500,-588r0,588r-131,0r0,-90r-60,90r-100,0v-80,0,-137,-46,-137,-135r0,-453r130,0r0,497r167,0r0,-497r131,0"},"v":{"d":"500,-588r0,353r-157,235r-114,0r-157,-235r0,-353r130,0r0,357r84,125r83,-125r0,-357r131,0","k":{".":50}},"w":{"d":"798,-588r0,353r-101,235r-131,0r-132,-207r-131,207r-130,0r-101,-235r0,-353r130,0r0,353r55,118r112,-178r0,-293r131,0r0,293r112,178r55,-118r0,-353r131,0","w":869},"x":{"d":"500,-204r0,204r-131,0r0,-248r-167,0r0,248r-130,0r0,-204v0,-45,27,-76,72,-90v-45,-15,-72,-45,-72,-91r0,-203r130,0r0,248r167,0r0,-248r131,0r0,203v0,46,-27,76,-71,91v44,14,71,45,71,90"},"y":{"d":"500,-588r0,659v0,89,-57,135,-138,135r-233,0r0,-91r240,0r0,-205r-61,90r-99,0v-80,0,-137,-46,-137,-135r0,-453r130,0r0,497r167,0r0,-497r131,0"},"z":{"d":"342,-91r0,91r-331,0r0,-91r201,-406r-201,0r0,-91r331,0r0,91r-201,406r201,0","w":353},"{":{"d":"297,115r0,91r-82,0v-80,0,-137,-46,-137,-135r0,-319r-51,0r0,-92r51,0r0,-319v0,-122,95,-144,219,-135r0,91r-88,0r0,317v0,47,-28,77,-72,92v44,14,72,45,72,91r0,318r88,0","w":306},"|":{"d":"202,-794r0,1000r-130,0r0,-1000r130,0","w":274},"}":{"d":"279,-340r0,92r-51,0r0,319v0,122,-95,144,-219,135r0,-91r88,0r0,-318v0,-46,27,-77,72,-91v-45,-15,-72,-45,-72,-92r0,-317r-88,0r0,-91r82,0v80,0,137,46,137,135r0,319r51,0","w":306},"~":{"d":"539,-426r0,97v0,54,-28,90,-82,90v-82,0,-194,-54,-273,-82r0,82r-109,0r0,-96v0,-55,28,-91,82,-91v83,0,193,54,272,83r0,-83r110,0","w":613},"'":{"d":"147,-706r0,235r-111,0r0,-235r111,0","w":183},"`":{"d":"218,-779r66,123r-145,0r-67,-123r146,0","w":356},"\u00a0":{"w":274}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1989, 1990, 2002 Adobe Systems Incorporated. All rights reserved. © 1981,
 * 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Trade Gothic is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * TradeGothicLTStd
 * 
 * Designer:
 * Jackson Burke
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Trade Gothic LT Std","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 2 5 2 2 2 4","ascent":"260","descent":"-100","x-height":"4","bbox":"-60 -346 360 80.6135","underline-thickness":"18","underline-position":"-18","stemh":"18","stemv":"26","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":109},"!":{"d":"41,-260r38,0r-8,178r-23,0xm42,-40r35,0r0,40r-35,0r0,-40","w":119},"\"":{"d":"27,-163r0,-97r23,0r0,97r-23,0xm70,-163r0,-97r23,0r0,97r-23,0","w":119},"#":{"d":"90,-158r-7,55r48,0r8,-55r-49,0xm80,-83r-11,83r-23,0r12,-83r-36,0r0,-20r38,0r8,-55r-36,0r0,-20r39,0r11,-82r22,0r-11,82r49,0r11,-82r22,0r-11,82r34,0r0,20r-37,0r-7,55r34,0r0,20r-37,0r-11,83r-23,0r12,-83r-49,0","w":219},"$":{"d":"99,-150r0,-88v-29,-1,-47,16,-47,40v0,32,24,43,47,48xm123,-116r0,94v26,-1,51,-18,51,-44v0,-32,-27,-42,-51,-50xm99,-260r0,-28r24,0r0,28v30,2,54,24,67,43r-19,15v-10,-17,-29,-32,-48,-36r0,94v50,16,77,35,77,76v0,40,-36,68,-77,68r0,45r-24,0r0,-45v-35,-1,-61,-26,-79,-47r21,-16v12,17,34,40,58,41r0,-101v-26,-6,-73,-23,-73,-71v0,-45,36,-66,73,-66","w":219},"%":{"d":"238,-22v21,0,38,-16,38,-38v0,-22,-17,-37,-38,-37v-21,0,-37,15,-37,37v0,22,16,38,37,38xm238,0v-33,0,-60,-26,-60,-60v0,-34,27,-60,60,-60v33,0,60,26,60,60v0,34,-27,60,-60,60xm82,-140v-33,0,-60,-26,-60,-60v0,-34,27,-60,60,-60v33,0,60,26,60,60v0,34,-27,60,-60,60xm82,-163v21,0,38,-15,38,-37v0,-22,-17,-38,-38,-38v-21,0,-38,16,-38,38v0,22,17,37,38,37xm75,4r149,-268r21,0r-149,268r-21,0","w":320},"&":{"d":"109,-241v-42,2,-27,57,-13,77v18,-12,39,-31,39,-51v0,-16,-13,-26,-26,-26xm191,-131r24,6v-5,27,-17,59,-30,77v11,12,34,22,43,22r0,26v-24,2,-40,-10,-60,-26v-39,51,-152,35,-152,-45v0,-35,29,-61,56,-78v-28,-39,-31,-115,38,-115v30,0,53,18,53,49v0,30,-30,54,-54,71v17,31,40,58,58,78v8,-11,19,-37,24,-65xm45,-69v1,59,78,58,105,27v-24,-27,-47,-58,-66,-88v-21,14,-39,29,-39,61","w":240},"\u2019":{"d":"69,-260r0,40r-23,51r-15,0r17,-51r-15,0r0,-40r36,0","w":100,"k":{"\u2019":27,"s":20,"\u0161":20}},"(":{"d":"73,-264r28,0v-69,84,-66,210,0,294r-27,0v-67,-83,-66,-210,-1,-294","w":119},")":{"d":"47,30r-28,0v69,-84,66,-210,0,-294r27,0v66,84,66,210,1,294","w":119},"*":{"d":"80,-196r-53,-8r6,-24r49,24r3,-2r-8,-54r24,0r-7,54v16,1,33,-17,50,-23r9,24r-53,11r-1,3r38,38r-20,15r-26,-48r-3,0r-26,48r-19,-14r38,-41"},"+":{"d":"97,-105r0,-82r22,0r0,82r83,0r0,23r-83,0r0,82r-22,0r0,-82r-83,0r0,-23r83,0","w":216},",":{"d":"72,-40v4,43,-11,66,-22,93r-15,0r16,-53r-14,0r0,-40r35,0","w":109},"-":{"d":"105,-82r-91,0r0,-23r91,0r0,23","w":119},".":{"d":"37,-40r35,0r0,40r-35,0r0,-40","w":109},"\/":{"d":"81,-264r22,0r-84,268r-22,0","w":100},"0":{"d":"18,-130v0,-94,35,-134,92,-134v57,0,92,40,92,134v0,94,-35,134,-92,134v-57,0,-92,-40,-92,-134xm45,-130v0,79,23,111,65,111v42,0,64,-32,64,-111v0,-79,-22,-111,-64,-111v-42,0,-65,32,-65,111","w":219},"1":{"d":"171,0r-115,0r0,-22r45,0r0,-212r-50,5r0,-17v29,-5,42,-21,76,-18r0,242r44,0r0,22","w":219},"2":{"d":"193,-22r0,22r-169,0r0,-27v45,-91,142,-97,142,-167v0,-30,-20,-47,-53,-47v-37,0,-57,30,-61,56r-26,-5v8,-36,30,-74,88,-74v42,0,79,25,79,70v0,79,-114,101,-142,172r142,0","w":219},"3":{"d":"12,-48r21,-14v20,27,44,43,71,43v38,0,62,-19,62,-50v0,-44,-40,-63,-99,-58r0,-23v53,3,89,-11,89,-48v0,-26,-22,-43,-47,-43v-32,0,-46,14,-63,36r-21,-15v18,-24,42,-44,84,-44v46,0,75,24,75,65v0,31,-21,50,-41,58v89,36,53,145,-39,145v-50,0,-80,-32,-92,-52","w":219},"4":{"d":"204,-61r-45,0r0,61r-26,0r0,-61r-119,0r0,-23r107,-176r38,0r0,176r45,0r0,23xm133,-233r-92,149r92,0r0,-149","w":219},"5":{"d":"180,-260r0,22r-111,0r-7,84v53,-47,137,-16,137,66v0,40,-24,92,-90,92v-44,0,-67,-25,-83,-50r23,-12v26,56,122,55,122,-30v0,-72,-93,-87,-113,-26r-22,-5r11,-141r133,0","w":219},"6":{"d":"184,-248r-11,22v-58,-38,-124,-2,-124,94v39,-50,149,-42,149,52v0,55,-41,84,-84,84v-54,0,-92,-32,-92,-121v0,-82,36,-147,106,-147v28,0,48,9,56,16xm171,-79v2,-87,-121,-72,-121,-7v0,37,25,67,62,67v37,0,59,-25,59,-60","w":219},"7":{"d":"158,-238r-131,0r0,-22r165,0r0,16r-110,244r-31,0","w":219},"8":{"d":"204,-68v0,40,-30,72,-94,72v-64,0,-95,-32,-95,-72v-1,-34,28,-55,57,-71v-29,-11,-46,-33,-46,-60v0,-42,36,-65,84,-65v48,0,84,23,84,65v1,28,-19,48,-46,61v31,11,56,35,56,70xm42,-68v0,23,21,49,68,49v47,0,67,-26,67,-49v0,-30,-31,-45,-72,-59v-32,14,-63,29,-63,59xm166,-200v0,-56,-113,-55,-113,0v0,28,36,44,57,50v29,-7,56,-25,56,-50","w":219},"9":{"d":"36,-12r11,-21v59,37,122,-2,124,-94v-39,50,-149,41,-149,-53v0,-55,40,-84,83,-84v54,0,93,32,93,121v0,82,-36,147,-106,147v-28,0,-48,-9,-56,-16xm49,-181v0,84,105,73,121,14v9,-90,-123,-98,-121,-14","w":219},":":{"d":"72,0r-35,0r0,-40r35,0r0,40xm72,-104r-35,0r0,-40r35,0r0,40","w":109},";":{"d":"72,-40v4,43,-11,66,-22,93r-15,0r16,-53r-14,0r0,-40r35,0xm72,-104r-35,0r0,-40r35,0r0,40","w":109},"<":{"d":"199,-22r0,22r-182,-84r0,-20r182,-83r0,22r-157,71","w":216},"=":{"d":"202,-141r0,22r-188,0r0,-22r188,0xm202,-68r0,22r-188,0r0,-22r188,0","w":216},">":{"d":"17,-22r157,-72r-157,-71r0,-22r182,83r0,21r-182,83r0,-22","w":216},"?":{"d":"79,-82r-24,0v-10,-68,52,-82,54,-128v0,-14,-9,-31,-31,-31v-17,0,-27,8,-37,28r-22,-11v20,-57,117,-53,117,15v0,55,-68,66,-57,127xm49,-40r35,0r0,40r-35,0r0,-40","w":159},"@":{"d":"97,-111v0,21,8,35,25,35v33,0,58,-42,58,-71v0,-23,-13,-33,-26,-33v-35,0,-57,40,-57,69xm164,-73v-27,40,-96,21,-96,-34v0,-68,83,-140,124,-71r7,-21r24,0r-33,116v0,5,2,9,8,9v27,0,51,-40,51,-75v0,-58,-46,-91,-100,-91v-63,0,-107,49,-107,111v0,105,138,146,196,71r28,0v-23,41,-69,62,-117,62v-74,0,-133,-59,-133,-133v0,-76,60,-135,133,-135v67,0,123,46,123,111v0,70,-51,103,-83,103v-14,0,-24,-11,-25,-23","w":288},"A":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0","w":219},"B":{"d":"163,-136v28,9,52,33,51,66v0,39,-23,70,-94,70r-81,0r0,-260r96,0v80,-3,99,102,28,124xm68,-124r0,100v54,1,117,4,117,-47v0,-50,-59,-57,-117,-53xm68,-235r0,87r50,0v78,5,81,-89,12,-87r-62,0","w":240},"C":{"d":"180,-83r26,5v-12,48,-39,82,-92,82v-58,0,-99,-43,-99,-134v0,-85,36,-134,99,-134v48,0,76,28,88,76r-26,8v-9,-37,-26,-59,-65,-59v-37,0,-67,34,-67,109v0,75,30,109,73,109v40,0,55,-30,63,-62","w":219},"D":{"d":"65,-235r0,211v85,7,130,-19,129,-106v-1,-93,-47,-111,-129,-105xm36,0r0,-260v113,-9,187,15,187,130v0,76,-41,130,-119,130r-68,0","w":240},"E":{"d":"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260","w":219},"F":{"d":"36,-260r154,0r0,25r-125,0r0,87r93,0r0,24r-93,0r0,124r-29,0r0,-260","w":200,"k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":46,".":46}},"G":{"d":"124,-125r87,0r0,125r-23,0v-1,-7,2,-18,-1,-24v-13,18,-39,28,-68,28v-59,0,-102,-43,-102,-134v0,-153,159,-182,195,-57r-27,5v-13,-41,-35,-57,-65,-57v-38,0,-74,26,-74,109v0,83,36,109,74,109v51,0,67,-31,63,-79r-59,0r0,-25","w":240},"H":{"d":"192,-260r29,0r0,260r-29,0r0,-124r-124,0r0,124r-29,0r0,-260r29,0r0,112r124,0r0,-112","w":259},"I":{"d":"45,-260r29,0r0,260r-29,0r0,-260","w":119},"J":{"d":"95,-260r29,0r0,193v9,86,-93,86,-121,37r21,-14v16,28,71,39,71,-15r0,-201","w":159},"K":{"d":"71,-87r0,87r-29,0r0,-260r29,0r0,135r108,-135r34,0r-81,98r91,162r-33,0r-77,-138","w":240},"L":{"d":"191,0r-152,0r0,-260r29,0r0,236r123,0r0,24","w":200,"k":{"T":33,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":33,"\u00dd":33,"\u0178":33,"\u2019":40}},"M":{"d":"261,0r-26,0r-1,-238r-73,238r-22,0r-74,-238r0,238r-26,0r0,-260r45,0r66,210r66,-210r45,0r0,260","w":299},"N":{"d":"65,0r-26,0r0,-260r41,0r115,200r0,-200r26,0r0,260r-24,0r-132,-232r0,232","w":259},"O":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134","w":240},"P":{"d":"65,-235r0,95v54,3,121,0,112,-48v5,-51,-59,-49,-112,-47xm65,0r-29,0r0,-260r91,0v55,0,79,32,79,73v0,58,-65,78,-141,71r0,116","w":219,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":46,".":46}},"Q":{"d":"234,-7r0,28v-32,0,-44,-11,-58,-34v-78,46,-158,-4,-158,-117v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,43,-9,77,-26,99v9,17,21,24,39,24xm130,-57r0,-27v23,3,37,9,49,26v9,-17,14,-41,14,-72v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109v0,95,55,132,115,95v-9,-13,-17,-20,-32,-22","w":240},"R":{"d":"65,-235r0,92v53,1,112,5,112,-47v0,-54,-60,-44,-112,-45xm65,0r-29,0r0,-260r84,0v102,-11,111,118,34,136r56,124r-32,0r-52,-118r-61,0r0,118","w":240,"k":{"T":13,"V":6,"W":6,"Y":6,"\u00dd":6,"\u0178":6}},"S":{"d":"187,-199r-26,5v-1,-49,-109,-66,-109,-5v0,57,146,42,146,126v0,38,-21,77,-87,77v-57,0,-79,-37,-93,-68r26,-9v10,27,30,52,68,52v38,0,58,-20,58,-47v0,-66,-147,-47,-147,-129v0,-37,32,-67,79,-67v40,0,71,22,85,65","w":219},"T":{"d":"192,-235r-78,0r0,235r-28,0r0,-235r-78,0r0,-25r184,0r0,25","w":200,"k":{"\u00fc":33,"\u0161":33,"\u00f2":33,"\u00f6":33,"\u00ec":33,"\u00ee":33,"\u00ed":33,"\u00e8":33,"\u00eb":33,"\u00ea":33,"\u00e3":33,"\u00e5":33,"\u00e0":33,"\u00e4":33,"\u00e2":33,"w":33,"y":33,"\u00fd":33,"\u00ff":33,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33,"-":33,"a":33,"\u00e6":33,"\u00e1":33,"c":33,"\u00e7":33,"e":33,"\u00e9":33,"i":33,"\u00ef":33,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f5":33,"r":33,"s":33,"u":33,"\u00fa":33,"\u00fb":33,"\u00f9":33,":":33,";":33}},"U":{"d":"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182","w":259},"V":{"d":"87,0r-81,-260r29,0r65,213r65,-213r29,0r-81,260r-26,0","w":200,"k":{"\u00f6":13,"\u00f4":13,"\u00ee":6,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"y":6,"\u00fd":6,"\u00ff":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":40,".":40,"-":20,"a":13,"\u00e6":13,"\u00e1":13,"e":13,"\u00e9":13,"i":6,"\u00ed":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f2":13,"\u00f5":13,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,":":27,";":27}},"W":{"d":"73,0r-63,-260r27,0r49,207r51,-207r25,0r53,207r47,-207r28,0r-62,260r-25,0r-54,-210r-51,210r-25,0","w":299,"k":{"\u00fc":6,"\u00f6":13,"\u00ea":13,"\u00e4":13,"y":6,"\u00fd":6,"\u00ff":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":13,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":13,"\u00e9":13,"\u00eb":13,"\u00e8":13,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f2":13,"\u00f5":13,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,":":20,";":20}},"X":{"d":"99,-107r-61,107r-33,0r78,-136r-73,-124r33,0r56,95r55,-95r33,0r-71,124r79,136r-33,0","w":200},"Y":{"d":"86,0r0,-109r-80,-151r31,0r63,119r63,-119r31,0r-80,151r0,109r-28,0","w":200,"k":{"\u00fc":13,"\u00f6":20,"v":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,":":33,";":33,"p":13,"q":20}},"Z":{"d":"184,-24r0,24r-168,0r0,-21r131,-214r-119,0r0,-25r155,0r0,19r-133,217r134,0","w":200},"[":{"d":"27,27r0,-287r74,0r0,15r-48,0r0,257r48,0r0,15r-74,0","w":119},"\\":{"d":"-3,-264r22,0r84,268r-22,0","w":100},"]":{"d":"93,-260r0,287r-74,0r0,-15r48,0r0,-257r-48,0r0,-15r74,0","w":119},"^":{"d":"40,-100r-23,0r81,-160r20,0r81,160r-23,0r-68,-135","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18"},"\u2018":{"d":"31,-173r0,-39r23,-52r15,0r-17,52r15,0r0,39r-36,0","w":100,"k":{"\u2018":27}},"a":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2"},"b":{"d":"58,-169v51,-44,126,-25,126,75v0,105,-80,119,-131,74r-5,20r-18,0v5,-83,1,-174,2,-260r26,0r0,91xm58,-143r0,99v41,47,100,27,100,-48v0,-86,-60,-93,-100,-51","w":200},"c":{"d":"159,-140r-24,9v-7,-23,-22,-37,-44,-37v-32,0,-51,26,-51,74v0,81,73,101,103,41r20,9v-19,32,-35,48,-72,48v-47,0,-77,-38,-77,-98v0,-60,30,-97,77,-97v39,0,56,22,68,51"},"d":{"d":"17,-94v2,-101,74,-117,126,-75r0,-91r25,0r2,260r-24,0r-3,-18v-46,43,-128,26,-126,-76xm143,-44r0,-99v-41,-42,-101,-36,-101,51v0,76,60,95,101,48","w":200},"e":{"d":"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57"},"f":{"d":"67,0r-26,0r0,-165r-31,0r0,-22r31,0v-5,-59,15,-89,69,-75r0,23v-22,-3,-46,-6,-43,24r0,28r41,0r0,22r-41,0r0,165","w":119},"g":{"d":"173,-194r0,26v-11,0,-23,2,-29,5v38,48,-18,129,-89,98v-19,3,-19,31,1,31v89,0,117,16,117,53v0,27,-27,50,-85,50v-82,0,-108,-57,-49,-83v-34,-11,-28,-48,2,-59v-51,-35,-21,-118,45,-118v20,0,34,4,46,13v11,-8,27,-15,41,-16xm149,20v0,-18,-19,-28,-65,-28v-41,0,-52,18,-52,31v0,14,8,24,60,24v31,0,57,-9,57,-27xm132,-124v0,-27,-15,-44,-47,-44v-30,0,-45,19,-45,43v0,25,19,43,48,43v30,0,44,-20,44,-42"},"h":{"d":"32,-260r26,0r1,98v30,-41,109,-44,109,26r0,136r-26,0r0,-135v-1,-57,-66,-28,-84,-5r0,140r-26,0r0,-260","w":200},"i":{"d":"37,0r0,-187r26,0r0,187r-26,0xm37,-264r26,0r0,31r-26,0r0,-31","w":100},"j":{"d":"42,-187r26,0r0,217v3,31,-32,47,-60,35r0,-21v14,6,34,4,34,-16r0,-215xm68,-264r0,31r-26,0r0,-31r26,0","w":100},"k":{"d":"30,0r0,-260r26,0r1,167r75,-94r32,0r-55,69r62,118r-31,0r-49,-96r-35,40r0,56r-26,0"},"l":{"d":"37,-260r26,0r0,260r-26,0r0,-260","w":100},"m":{"d":"55,-162v26,-36,87,-39,104,1v17,-18,38,-30,60,-30v25,0,51,11,51,57r0,134r-26,0r0,-134v-1,-57,-64,-31,-81,-6r0,140r-26,0r0,-134v-1,-57,-65,-30,-82,-6r0,140r-25,0r0,-187r25,0r0,25","w":299},"n":{"d":"32,-187r26,0v1,8,-2,19,1,25v30,-41,109,-44,109,26r0,136r-26,0r0,-135v-1,-57,-66,-28,-84,-5r0,140r-26,0r0,-187","w":200},"o":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97"},"p":{"d":"184,-94v0,100,-75,120,-126,76r0,87r-26,0r0,-256r26,0r0,22v45,-49,126,-31,126,71xm58,-143r0,98v39,43,100,37,100,-50v0,-75,-60,-95,-100,-48","w":200},"q":{"d":"143,-18v-52,43,-126,25,-126,-76v0,-103,80,-119,126,-73r5,-20r20,0r0,256r-25,0r0,-87xm143,-45r0,-98v-41,-47,-101,-27,-101,48v0,87,61,93,101,50","w":200},"r":{"d":"25,0r0,-187r26,0v1,12,-2,27,1,37v14,-26,30,-40,61,-40r0,26v-32,1,-50,21,-62,60r0,104r-26,0","w":119,"k":{",":20,".":20,"-":13}},"s":{"d":"9,-32r20,-16v14,35,94,40,94,-2v0,-48,-110,-22,-109,-90v1,-63,101,-64,126,-18r-18,16v-14,-18,-28,-26,-48,-26v-22,0,-34,10,-34,27v0,41,109,20,109,90v0,72,-110,67,-140,19","w":159},"t":{"d":"6,-187r31,0r0,-62r26,0r0,62r43,0r0,22r-43,0r0,133v-3,16,30,14,44,11r0,22v-24,5,-78,8,-70,-28r0,-138r-31,0r0,-22","w":119},"u":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187","w":200},"v":{"d":"154,-187r-56,187r-35,0r-57,-187r26,0r48,155r48,-155r26,0","w":159,"k":{",":20,".":20}},"w":{"d":"57,0r-51,-187r26,0r39,144r36,-144r27,0r38,145r36,-145r26,0r-50,187r-26,0r-38,-145r-37,145r-26,0","w":240,"k":{",":20,".":20}},"x":{"d":"38,-187r41,66r39,-66r29,0r-52,89r61,98r-30,0r-47,-77r-46,77r-29,0r59,-98r-54,-89r29,0","w":159},"y":{"d":"127,-187r27,0r-66,204v-19,49,-42,56,-82,50r0,-21v31,2,49,4,63,-44r-65,-189r28,0r51,143","w":159,"k":{",":27,".":27}},"z":{"d":"149,-22r0,22r-138,0r0,-19r102,-146r-92,0r0,-22r127,0r0,19r-102,146r103,0","w":159},"{":{"d":"17,-109r0,-15v62,-6,-29,-157,78,-140r0,16v-18,-1,-29,0,-29,20v0,43,15,107,-27,112v44,3,27,69,27,111v0,20,11,21,29,20r0,15v-34,3,-55,-5,-55,-39v0,-36,14,-98,-23,-100","w":119},"|":{"d":"29,4r0,-268r22,0r0,268r-22,0","w":79},"}":{"d":"103,-124r0,15v-62,5,30,157,-79,139r0,-15v18,1,30,1,30,-20v0,-43,-15,-107,27,-112v-44,-3,-27,-69,-27,-111v0,-20,-12,-21,-30,-20r0,-16v35,-3,56,6,56,40v0,36,-14,98,23,100","w":119},"~":{"d":"70,-117v24,-1,57,23,77,24v14,0,23,-13,31,-25r14,15v-12,16,-24,32,-46,32v-36,0,-90,-50,-108,2r-14,-16v9,-17,22,-32,46,-32","w":216},"\u00a1":{"d":"79,73r-38,0r8,-178r23,0xm78,-148r-36,0r0,-39r36,0r0,39","w":119},"\u00a2":{"d":"76,-33r49,-133v-43,-10,-67,18,-67,72v0,27,6,49,18,61xm141,-154r-48,132v31,8,52,1,68,-31r20,9v-20,39,-50,56,-96,44r-15,40r-20,0r17,-49v-22,-16,-35,-45,-35,-85v0,-69,39,-108,100,-94r12,-32r21,0r-15,41v13,9,21,23,27,39r-24,9v-3,-9,-7,-17,-12,-23","w":219},"\u00a3":{"d":"126,-140r0,22r-52,0v4,26,3,48,-8,73v43,32,108,40,118,-20r23,5v-6,82,-109,72,-154,36v-10,14,-22,25,-43,28r0,-28v29,-3,48,-52,38,-94r-39,0r0,-22r36,0v-16,-63,7,-124,75,-124v45,0,71,25,81,67r-25,5v-6,-20,-19,-49,-55,-49v-64,0,-54,55,-50,101r55,0","w":219},"\u2044":{"d":"-39,4r-21,0r158,-268r22,0","w":60},"\u00a5":{"d":"122,-84r0,84r-24,0r0,-84r-64,0r0,-23v20,-2,48,4,64,-2r-16,-29r-48,0r0,-23r37,0r-53,-99r26,0r66,125r66,-125r26,0r-53,99r37,0r0,23r-48,0v-5,11,-12,19,-16,31r64,0r0,23r-64,0","w":219},"\u0192":{"d":"19,67r4,-24v24,9,46,1,52,-32r28,-155r-41,0r0,-22r45,0v10,-62,30,-114,91,-95r-6,24v-38,-21,-49,24,-57,71r41,0r0,22r-45,0r-30,152v-7,45,-33,68,-82,59","w":219},"\u00a7":{"d":"35,-1r18,-12v9,25,62,37,62,1v0,-32,-94,-95,-94,-131v0,-22,14,-37,43,-38v-33,-27,-26,-81,25,-83v22,0,36,9,53,30r-17,10v-3,-17,-58,-32,-57,1v0,11,3,15,43,55v39,39,48,51,48,72v0,24,-18,35,-39,38v30,29,27,87,-30,88v-24,0,-45,-12,-55,-31xm135,-95v7,-9,-55,-76,-68,-69v-12,0,-22,9,-22,20v-3,13,55,73,69,69v11,0,21,-8,21,-20"},"\u00a4":{"d":"110,-62v37,0,67,-26,67,-68v0,-42,-30,-68,-67,-68v-37,0,-67,26,-67,68v0,42,30,68,67,68xm184,-220r15,15r-19,20v25,29,25,81,0,110r19,20r-15,15r-20,-20v-27,25,-82,25,-109,0r-20,20r-15,-15r20,-20v-25,-29,-25,-81,0,-110r-20,-20r15,-15r20,20v27,-25,82,-25,109,0","w":219},"'":{"d":"29,-163r0,-97r22,0r0,97r-22,0","w":79},"\u201c":{"d":"37,-173r0,-39r23,-52r15,0r-17,52r14,0r0,39r-35,0xm111,-173v-4,-42,11,-64,22,-91r15,0r-17,52r15,0r0,39r-35,0"},"\u00ab":{"d":"76,-150r25,0r-47,56r47,57r-25,0r-47,-57xm126,-150r25,0r-46,56r46,57r-24,0r-48,-57"},"\u2039":{"d":"66,-150r25,0r-46,56r46,57r-24,0r-48,-57","w":119},"\u203a":{"d":"28,-150r26,0r46,56r-47,57r-25,0r47,-57","w":119},"\ufb01":{"d":"63,0r-26,0r0,-165r-32,0r0,-22r32,0v-5,-59,14,-89,68,-75r0,23v-22,-4,-45,-5,-42,24r0,28r40,0r0,22r-40,0r0,165xm143,0r0,-187r26,0r0,187r-26,0xm143,-264r26,0r0,31r-26,0r0,-31","w":200},"\ufb02":{"d":"63,0r-26,0r0,-165r-32,0r0,-22r32,0v-5,-59,14,-89,68,-75r0,23v-22,-4,-45,-5,-42,24r0,28r40,0r0,22r-40,0r0,165xm143,-260r26,0r0,260r-26,0r0,-260","w":200},"\u2013":{"d":"0,-85r0,-18r180,0r0,18r-180,0"},"\u2020":{"d":"76,-264r28,0r-8,75r57,-8r0,29r-57,-10v13,65,3,138,0,208r-12,0v-3,-70,-13,-144,0,-208r-57,10r0,-29r57,8"},"\u2021":{"d":"96,-178v8,41,8,82,0,123r57,-10r0,28r-57,-8r8,75r-28,0r8,-75r-57,8r0,-28r57,10v-8,-41,-8,-82,0,-123r-57,10r0,-29r57,8r-8,-75r28,0r-8,75r57,-8r0,29"},"\u00b7":{"d":"32,-93v0,-13,10,-23,23,-23v12,0,22,10,22,23v0,12,-10,22,-22,22v-13,0,-23,-10,-23,-22","w":109},"\u00b6":{"d":"79,30r0,-149v-44,0,-75,-31,-75,-69v0,-47,31,-72,81,-72r99,0r0,18r-25,0r0,272r-22,0r0,-272r-37,0r0,272r-21,0"},"\u2022":{"d":"25,-130v0,-36,29,-65,65,-65v36,0,65,29,65,65v0,36,-29,65,-65,65v-36,0,-65,-29,-65,-65"},"\u201a":{"d":"69,-40r0,40r-23,51r-15,0r17,-51r-15,0r0,-40r36,0","w":100},"\u201e":{"d":"143,-40r0,40r-23,51r-15,0r17,-51r-14,0r0,-40r35,0xm69,-40r0,40r-22,51r-15,0r17,-51r-15,0r0,-40r35,0"},"\u201d":{"d":"143,-260r0,40r-23,51r-15,0r17,-51r-14,0r0,-40r35,0xm69,-260r0,40r-22,51r-15,0r17,-51r-15,0r0,-40r35,0"},"\u00bb":{"d":"79,-150r25,0r47,56r-47,57r-25,0r47,-57xm29,-150r25,0r47,56r-48,57r-24,0r46,-57"},"\u2026":{"d":"42,-40r36,0r0,40r-36,0r0,-40xm162,-40r36,0r0,40r-36,0r0,-40xm282,-40r36,0r0,40r-36,0r0,-40","w":360},"\u2030":{"d":"248,-53v0,-30,25,-54,53,-54v28,0,54,24,54,54v0,30,-26,53,-54,53v-28,0,-53,-23,-53,-53xm269,-53v0,17,14,32,32,32v15,0,33,-13,33,-32v-1,-42,-64,-43,-65,0xm118,-53v0,-30,25,-54,53,-54v28,0,53,24,53,54v0,30,-25,53,-53,53v-28,0,-53,-23,-53,-53xm139,-53v0,17,14,32,32,32v15,0,32,-13,32,-32v-1,-42,-63,-43,-64,0xm5,-207v0,-30,26,-53,54,-53v28,0,53,23,53,53v0,30,-25,54,-53,54v-28,0,-54,-24,-54,-54xm26,-207v0,17,15,33,33,33v15,0,32,-14,32,-33v-1,-42,-63,-41,-65,0xm197,-264r-144,268r-21,0r143,-268r22,0","w":360},"\u00bf":{"d":"81,-105r24,0v10,68,-54,82,-54,128v0,38,56,42,68,3r22,11v-20,56,-117,52,-117,-15v0,-55,68,-66,57,-127xm111,-148r-35,0r0,-39r35,0r0,39","w":159},"`":{"d":"2,-260r39,0r32,51r-24,0","w":100},"\u00b4":{"d":"59,-260r39,0r-47,51r-24,0","w":100},"\u02c6":{"d":"-3,-209r36,-51r34,0r36,51r-29,0r-24,-34r-24,34r-29,0","w":100},"\u02dc":{"d":"27,-251v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v-24,0,-63,-32,-71,3r-18,0v2,-22,15,-39,39,-39","w":100},"\u00af":{"d":"106,-220r-112,0r0,-22r112,0r0,22","w":100},"\u02d8":{"d":"88,-259r17,0v-4,33,-24,49,-55,49v-31,0,-51,-16,-55,-49r17,0v4,38,72,37,76,0","w":100},"\u02d9":{"d":"66,-212r-32,0r0,-34r32,0r0,34","w":100},"\u00a8":{"d":"94,-212r-31,0r0,-34r31,0r0,34xm37,-212r-31,0r0,-34r31,0r0,34","w":100},"\u02da":{"d":"14,-245v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm30,-245v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20","w":100},"\u00b8":{"d":"46,0r17,0v-4,7,-15,15,-16,22v22,-8,44,9,41,28v4,32,-55,37,-78,23r7,-16v12,9,43,11,43,-8v0,-15,-18,-16,-31,-11r-6,-7","w":100},"\u02dd":{"d":"32,-260r39,0r-45,51r-22,0xm86,-260r39,0r-47,51r-24,0","w":100},"\u02db":{"d":"95,44r5,11v-8,6,-29,21,-54,21v-23,0,-35,-13,-35,-32v0,-24,27,-42,81,-51r0,4v-19,6,-53,20,-53,44v1,29,42,15,56,3","w":100},"\u02c7":{"d":"-3,-260r29,0r24,34r24,-34r29,0r-36,51r-34,0","w":100},"\u2014":{"d":"0,-85r0,-18r360,0r0,18r-360,0","w":360},"\u00c6":{"d":"6,0r146,-260r183,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-81r-96,0r-44,81r-33,0xm97,-106r82,0r0,-134r-8,0","w":360},"\u00aa":{"d":"24,-231r-15,-9v12,-29,87,-38,88,10v1,26,-3,61,3,81r-19,0r-2,-13v-16,18,-74,25,-74,-16v0,-24,21,-38,73,-47v2,-16,-7,-22,-23,-22v-19,0,-28,8,-31,16xm78,-179r0,-29v-34,6,-54,16,-54,31v0,25,44,11,54,-2","w":108},"\u0141":{"d":"68,-121r0,97r123,0r0,24r-152,0r0,-110r-33,14r0,-25r33,-13r0,-126r29,0r0,114r69,-28r0,25","w":200,"k":{"T":33,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":33,"\u00dd":33,"\u0178":33,"\u2019":40}},"\u00d8":{"d":"62,-57r103,-165v-58,-42,-118,-5,-118,92v0,31,6,56,15,73xm178,-204r-103,165v55,44,118,6,118,-91v0,-32,-6,-56,-15,-74xm224,-277r-30,47v17,22,27,56,27,100v0,116,-84,165,-161,114r-24,39r-24,0r33,-54v-18,-23,-27,-56,-27,-99v0,-114,82,-164,161,-115r20,-32r25,0","w":240},"\u0152":{"d":"125,-264v67,0,142,3,214,4r0,25r-127,0r0,87r91,0r0,24r-91,0r0,100r135,0r0,24r-163,0r-59,4v-80,0,-112,-59,-112,-134v0,-75,32,-134,112,-134xm184,-68r0,-124v0,-35,-21,-47,-60,-47v-55,0,-82,38,-82,109v0,71,27,109,82,109v39,0,60,-12,60,-47","w":360},"\u00ba":{"d":"25,-206v0,27,10,42,29,42v19,0,29,-15,29,-41v0,-26,-10,-41,-29,-41v-18,0,-29,15,-29,40xm4,-205v0,-36,20,-59,50,-59v31,0,50,23,50,59v0,36,-19,58,-50,58v-30,0,-50,-22,-50,-58","w":108},"\u00e6":{"d":"121,-48r0,-53v-37,8,-83,20,-83,53v0,48,75,24,83,0xm262,-89r-115,0v-7,73,73,92,101,39r20,10v-15,42,-100,68,-133,12v-27,27,-48,32,-72,32v-24,0,-51,-18,-51,-48v0,-56,54,-70,109,-80v2,-28,-8,-45,-35,-44v-27,0,-42,16,-47,29r-22,-12v14,-40,94,-58,121,-15v42,-51,139,-22,124,77xm147,-111r89,0v0,-35,-17,-57,-45,-57v-30,0,-43,22,-44,57","w":280},"\u0131":{"d":"37,0r0,-187r26,0r0,187r-26,0","w":100},"\u0142":{"d":"63,-141r0,141r-26,0r0,-128r-32,17r0,-25r32,-16r0,-108r26,0r0,94r32,-16r0,25","w":100},"\u00f8":{"d":"131,-143r-68,115v41,25,80,-5,78,-66v0,-21,-4,-37,-10,-49xm151,-217r23,0r-29,51v42,52,24,170,-55,170v-16,0,-29,-5,-39,-12r-22,38r-23,0r30,-51v-43,-51,-26,-175,54,-170v15,0,29,4,39,11xm49,-45r68,-114v-41,-25,-80,4,-78,65v0,21,4,37,10,49"},"\u0153":{"d":"34,-94v0,48,17,75,47,75v32,0,47,-27,47,-75v0,-48,-14,-74,-47,-74v-30,0,-47,26,-47,74xm269,-89r-115,0v0,41,13,70,49,70v22,0,40,-12,48,-31r20,10v-8,45,-111,65,-130,9v-42,68,-133,31,-133,-63v0,-94,89,-129,133,-63v41,-68,142,-33,128,68xm155,-111r88,0v0,-35,-16,-57,-44,-57v-31,0,-43,22,-44,57","w":280},"\u00df":{"d":"83,-6r10,-21v27,20,63,-1,63,-42v0,-47,-25,-63,-65,-63r0,-23v30,3,49,-14,49,-44v0,-27,-13,-42,-40,-42v-28,0,-40,16,-40,48r0,193r-26,0r0,-199v0,-46,33,-65,67,-65v73,0,84,92,33,118v33,10,48,38,48,75v1,65,-53,91,-99,65","w":200},"\u00b9":{"d":"27,-253v20,-4,28,-13,52,-11r0,141r28,0r0,18r-76,0r0,-18r27,0r0,-123r-31,5r0,-12","w":131},"\u00ac":{"d":"179,-46r0,-73r-165,0r0,-22r188,0r0,95r-23,0","w":216},"\u00b5":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-21,24,-50,37,-83,23r0,71r-26,0r0,-256r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187","w":200},"\u2122":{"d":"135,-260r0,20r-46,0r0,128r-24,0r0,-128r-46,0r0,-20r116,0xm182,-235v-4,38,0,83,-1,123r-24,0r0,-148r38,0r44,112r44,-112r37,0r0,148r-24,0r-1,-123r-48,123r-16,0","w":356},"\u00d0":{"d":"65,-148r67,0r0,24r-67,0r0,100v85,7,130,-19,129,-106v-1,-93,-47,-111,-129,-105r0,87xm12,-148r24,0r0,-112v113,-9,187,15,187,130v0,76,-41,130,-119,130r-68,0r0,-124r-24,0r0,-24","w":240},"\u00bd":{"d":"32,-253v20,-4,28,-13,51,-11r0,141r29,0r0,18r-77,0r0,-18r27,0r0,-123r-30,5r0,-12xm310,0r-112,0r0,-19v29,-53,91,-58,91,-95v0,-44,-72,-24,-74,5r-17,-5v7,-23,25,-44,60,-44v30,0,51,15,51,41v0,50,-70,60,-92,99r93,0r0,18xm93,4r-21,0r158,-268r22,0","w":329},"\u00b1":{"d":"97,-123r0,-64r22,0r0,64r83,0r0,23r-83,0r0,64r-22,0r0,-64r-83,0r0,-23r83,0xm14,0r0,-22r188,0r0,22r-188,0","w":216},"\u00de":{"d":"65,-185r0,95v54,3,121,0,112,-48v5,-51,-59,-49,-112,-47xm65,0r-29,0r0,-260r29,0r0,50r62,0v55,0,79,32,79,73v0,58,-65,78,-141,71r0,66","w":219},"\u00bc":{"d":"312,-37r-29,0r0,37r-19,0r0,-37r-75,0r0,-16r67,-103r27,0r0,101r29,0r0,18xm264,-135v-20,25,-35,54,-53,80r53,0r0,-80xm32,-253v20,-4,28,-13,51,-11r0,141r29,0r0,18r-77,0r0,-18r27,0r0,-123r-30,5r0,-12xm100,4r-21,0r158,-268r22,0","w":329},"\u00f7":{"d":"202,-82r-188,0r0,-23r188,0r0,23xm86,-168v0,-12,10,-23,22,-23v12,0,22,11,22,23v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm86,-19v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,23,-22,23v-12,0,-22,-11,-22,-23","w":216},"\u00a6":{"d":"29,4r0,-101r22,0r0,101r-22,0xm29,-163r0,-101r22,0r0,101r-22,0","w":79},"\u00b0":{"d":"20,-212v0,-29,23,-52,52,-52v29,0,52,23,52,52v0,29,-23,52,-52,52v-29,0,-52,-23,-52,-52xm37,-212v0,21,16,36,35,36v19,0,35,-15,35,-36v0,-21,-16,-36,-35,-36v-19,0,-35,15,-35,36","w":144},"\u00fe":{"d":"184,-94v0,100,-75,120,-126,76r0,87r-26,0r0,-329r26,0r0,95v45,-49,126,-31,126,71xm58,-143r0,98v39,43,100,37,100,-50v0,-75,-60,-95,-100,-48","w":200},"\u00be":{"d":"312,-37r-29,0r0,37r-19,0r0,-37r-75,0r0,-16r67,-103r27,0r0,101r29,0r0,18xm264,-135v-20,25,-35,54,-53,80r53,0r0,-80xm53,-180r0,-18v29,1,58,-3,56,-27v-2,-28,-60,-27,-68,-2r-15,-10v15,-34,105,-39,103,12v0,19,-11,31,-24,35v51,21,33,87,-28,87v-32,0,-52,-18,-60,-30r15,-12v16,32,79,32,83,-3v3,-26,-26,-34,-62,-32xm106,4r-21,0r158,-268r22,0","w":329},"\u00b2":{"d":"122,-105r-112,0r0,-20v29,-53,92,-58,92,-95v0,-15,-12,-26,-33,-26v-25,0,-37,17,-42,32r-17,-6v7,-23,26,-44,61,-44v30,0,50,16,50,42v0,50,-69,60,-91,99r92,0r0,18","w":131},"\u00ae":{"d":"116,-120r0,67r-24,0r0,-154v51,0,114,-8,114,44v0,28,-17,39,-40,42r44,68r-26,0r-41,-67r-27,0xm116,-188r0,49v30,1,72,0,66,-26v6,-25,-38,-24,-66,-23xm9,-130v0,-77,62,-134,135,-134v73,0,135,57,135,134v0,77,-62,134,-135,134v-73,0,-135,-57,-135,-134xm253,-130v0,-64,-48,-112,-109,-112v-62,0,-109,48,-109,112v0,65,47,112,109,112v61,0,109,-47,109,-112","w":288},"\u2212":{"d":"202,-82r-188,0r0,-23r188,0r0,23","w":216},"\u00f0":{"d":"90,-19v34,0,51,-28,51,-70v0,-41,-17,-68,-51,-68v-34,0,-51,27,-51,68v0,42,17,70,51,70xm46,-251r23,-9v10,6,20,15,30,25r40,-22r11,18r-35,20v30,34,52,80,52,126v0,56,-26,97,-77,97v-51,0,-77,-38,-77,-93v0,-64,43,-104,104,-85v-5,-11,-13,-22,-23,-33r-39,21r-12,-18r37,-20v-13,-13,-27,-22,-34,-27"},"\u00d7":{"d":"108,-109r78,-78r16,16r-78,77r78,78r-16,16r-78,-78r-78,78r-16,-16r78,-78r-78,-77r16,-16","w":216},"\u00b3":{"d":"40,-180r0,-18v29,1,58,-3,56,-27v-2,-28,-60,-27,-68,-2r-15,-10v15,-34,105,-39,103,12v0,19,-10,31,-23,35v51,22,32,87,-29,87v-32,0,-52,-18,-60,-30r15,-12v16,32,79,32,83,-3v3,-26,-26,-34,-62,-32","w":131},"\u00a9":{"d":"190,-105r25,0v-17,96,-152,58,-145,-26v-11,-87,133,-114,145,-26r-25,0v-18,-59,-100,-32,-94,26v-9,59,84,86,94,26xm9,-130v0,-77,62,-134,135,-134v73,0,135,57,135,134v0,77,-62,134,-135,134v-73,0,-135,-57,-135,-134xm253,-130v0,-64,-48,-112,-109,-112v-62,0,-109,48,-109,112v0,65,47,112,109,112v61,0,109,-47,109,-112","w":288},"\u00c1":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm119,-325r39,0r-47,51r-24,0","w":219},"\u00c2":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm58,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0","w":219},"\u00c4":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm154,-277r-31,0r0,-34r31,0r0,34xm98,-277r-32,0r0,-34r32,0r0,34","w":219},"\u00c0":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm62,-325r40,0r32,51r-25,0","w":219},"\u00c5":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm74,-310v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm90,-310v0,11,9,21,20,21v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20","w":219},"\u00c3":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm87,-316v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39","w":219},"\u00c7":{"d":"180,-83r26,5v-11,45,-35,77,-82,81v-4,6,-14,13,-14,19v22,-8,44,9,41,28v5,33,-54,37,-77,23r6,-16v13,9,44,12,44,-8v0,-15,-19,-17,-31,-11r-7,-7r21,-28v-54,-4,-92,-46,-92,-133v0,-85,36,-134,99,-134v48,0,76,28,88,76r-26,8v-9,-37,-26,-59,-65,-59v-37,0,-67,34,-67,109v0,75,30,109,73,109v40,0,55,-30,63,-62","w":219},"\u00c9":{"d":"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm129,-325r39,0r-47,51r-24,0","w":219},"\u00ca":{"d":"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm68,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0","w":219},"\u00cb":{"d":"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm165,-277r-32,0r0,-34r32,0r0,34xm108,-277r-32,0r0,-34r32,0r0,34","w":219},"\u00c8":{"d":"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm72,-325r40,0r32,51r-24,0","w":219},"\u00cd":{"d":"45,-260r29,0r0,260r-29,0r0,-260xm69,-325r39,0r-47,51r-24,0","w":119},"\u00ce":{"d":"45,-260r29,0r0,260r-29,0r0,-260xm8,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0","w":119},"\u00cf":{"d":"45,-260r29,0r0,260r-29,0r0,-260xm104,-277r-31,0r0,-34r31,0r0,34xm48,-277r-32,0r0,-34r32,0r0,34","w":119},"\u00cc":{"d":"45,-260r29,0r0,260r-29,0r0,-260xm12,-325r39,0r33,51r-25,0","w":119},"\u00d1":{"d":"65,0r-26,0r0,-260r41,0r115,200r0,-200r26,0r0,260r-24,0r-132,-232r0,232xm107,-316v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v-24,0,-63,-32,-71,3r-18,0v2,-22,15,-39,39,-39","w":259},"\u00d3":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm129,-325r39,0r-47,51r-24,0","w":240},"\u00d4":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm68,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0","w":240},"\u00d6":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm165,-277r-32,0r0,-34r32,0r0,34xm108,-277r-32,0r0,-34r32,0r0,34","w":240},"\u00d2":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm72,-325r40,0r32,51r-24,0","w":240},"\u00d5":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm97,-316v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39","w":240},"\u0160":{"d":"187,-199r-26,5v-1,-49,-109,-66,-109,-5v0,57,146,42,146,126v0,38,-21,77,-87,77v-57,0,-79,-37,-93,-68r26,-9v10,27,30,52,68,52v38,0,58,-20,58,-47v0,-66,-147,-47,-147,-129v0,-37,32,-67,79,-67v40,0,71,22,85,65xm58,-325r28,0r24,34r24,-34r29,0r-36,51r-34,0","w":219},"\u00da":{"d":"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm139,-325r39,0r-47,51r-24,0","w":259},"\u00db":{"d":"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm77,-274r36,-51r34,0r36,51r-29,0r-24,-33r-24,33r-29,0","w":259},"\u00dc":{"d":"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm174,-277r-31,0r0,-34r31,0r0,34xm117,-277r-31,0r0,-34r31,0r0,34","w":259},"\u00d9":{"d":"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm82,-325r39,0r32,51r-24,0","w":259},"\u00dd":{"d":"86,0r0,-109r-80,-151r31,0r63,119r63,-119r31,0r-80,151r0,109r-28,0xm109,-325r39,0r-47,51r-24,0","w":200,"k":{"v":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":33,";":33,"p":13,"q":20}},"\u0178":{"d":"86,0r0,-109r-80,-151r31,0r63,119r63,-119r31,0r-80,151r0,109r-28,0xm144,-277r-31,0r0,-34r31,0r0,34xm87,-277r-31,0r0,-34r31,0r0,34","w":200,"k":{"v":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":33,";":33,"p":13,"q":20}},"\u017d":{"d":"184,-24r0,24r-168,0r0,-21r131,-214r-119,0r0,-25r155,0r0,19r-133,217r134,0xm48,-325r28,0r24,34r24,-34r29,0r-36,51r-34,0","w":200},"\u00e1":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm97,-260r39,0r-47,51r-24,0"},"\u00e2":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm36,-209r35,-51r34,0r36,51r-29,0r-24,-34r-24,34r-28,0"},"\u00e4":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm132,-212r-31,0r0,-34r31,0r0,34xm76,-212r-32,0r0,-34r32,0r0,34"},"\u00e0":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm40,-260r40,0r32,51r-25,0"},"\u00e5":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm52,-245v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm68,-245v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20"},"\u00e3":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm65,-251v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39"},"\u00e7":{"d":"159,-140r-24,9v-7,-23,-22,-37,-44,-37v-32,0,-51,26,-51,74v0,81,73,101,103,41r20,9v-17,29,-32,44,-63,47v-4,6,-13,13,-13,19v22,-8,44,9,41,28v4,32,-55,37,-78,23r7,-16v12,9,43,11,43,-8v0,-15,-18,-16,-31,-11v-13,-11,9,-23,14,-35v-42,-4,-69,-40,-69,-97v0,-60,30,-97,77,-97v39,0,56,22,68,51"},"\u00e9":{"d":"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm99,-260r39,0r-47,51r-24,0"},"\u00ea":{"d":"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm37,-209r36,-51r34,0r36,51r-29,0r-24,-34r-24,34r-29,0"},"\u00eb":{"d":"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm134,-212r-31,0r0,-34r31,0r0,34xm77,-212r-31,0r0,-34r31,0r0,34"},"\u00e8":{"d":"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm42,-260r39,0r32,51r-24,0"},"\u00ed":{"d":"37,0r0,-187r26,0r0,187r-26,0xm59,-260r39,0r-47,51r-24,0","w":100},"\u00ee":{"d":"37,0r0,-187r26,0r0,187r-26,0xm-3,-209r36,-51r34,0r36,51r-29,0r-24,-34r-24,34r-29,0","w":100},"\u00ef":{"d":"37,0r0,-187r26,0r0,187r-26,0xm94,-212r-31,0r0,-34r31,0r0,34xm37,-212r-31,0r0,-34r31,0r0,34","w":100},"\u00ec":{"d":"37,0r0,-187r26,0r0,187r-26,0xm2,-260r39,0r32,51r-24,0","w":100},"\u00f1":{"d":"32,-187r26,0v1,8,-2,19,1,25v30,-41,109,-44,109,26r0,136r-26,0r0,-135v-1,-57,-66,-28,-84,-5r0,140r-26,0r0,-187xm77,-251v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39","w":200},"\u00f3":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm99,-260r39,0r-47,51r-24,0"},"\u00f4":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm37,-209r36,-51r34,0r36,51r-29,0r-24,-34r-24,34r-29,0"},"\u00f6":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm134,-212r-31,0r0,-34r31,0r0,34xm77,-212r-31,0r0,-34r31,0r0,34"},"\u00f2":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm42,-260r39,0r32,51r-24,0"},"\u00f5":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm67,-251v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v-24,0,-63,-32,-71,3r-18,0v2,-22,15,-39,39,-39"},"\u0161":{"d":"9,-32r20,-16v14,35,94,40,94,-2v0,-48,-110,-22,-109,-90v1,-63,101,-64,126,-18r-18,16v-14,-18,-28,-26,-48,-26v-22,0,-34,10,-34,27v0,41,109,20,109,90v0,72,-110,67,-140,19xm27,-260r29,0r24,34r24,-34r28,0r-36,51r-33,0","w":159},"\u00fa":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm109,-260r39,0r-47,51r-24,0","w":200},"\u00fb":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm48,-209r35,-51r34,0r36,51r-29,0r-24,-34r-24,34r-28,0","w":200},"\u00fc":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm144,-212r-31,0r0,-34r31,0r0,34xm87,-212r-31,0r0,-34r31,0r0,34","w":200},"\u00f9":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm52,-260r39,0r32,51r-24,0","w":200},"\u00fd":{"d":"127,-187r27,0r-66,204v-19,49,-42,56,-82,50r0,-21v31,2,49,4,63,-44r-65,-189r28,0r51,143xm89,-260r39,0r-47,51r-24,0","w":159,"k":{",":27,".":27}},"\u00ff":{"d":"127,-187r27,0r-66,204v-19,49,-42,56,-82,50r0,-21v31,2,49,4,63,-44r-65,-189r28,0r51,143xm124,-212r-31,0r0,-34r31,0r0,34xm67,-212r-31,0r0,-34r31,0r0,34","w":159,"k":{",":27,".":27}},"\u017e":{"d":"149,-22r0,22r-138,0r0,-19r102,-146r-92,0r0,-22r127,0r0,19r-102,146r103,0xm27,-260r29,0r24,34r24,-34r28,0r-36,51r-33,0","w":159},"\u2126":{"d":"21,-19v19,-2,45,4,60,-2v-29,-23,-55,-63,-55,-116v0,-73,52,-124,119,-124v70,0,116,58,116,123v0,57,-31,94,-56,119r61,0r0,19r-93,0r0,-14v32,-19,64,-60,64,-120v0,-49,-33,-108,-93,-108v-57,0,-94,49,-94,108v0,57,32,102,63,120r0,14r-92,0r0,-19","w":287},"\u03bc":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-21,24,-50,37,-83,23r0,71r-26,0r0,-256r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187","w":200},"\u03c0":{"d":"211,-171r-33,0v1,51,-4,135,6,171r-23,0v-12,-30,-5,-123,-7,-171r-76,0v-2,49,-16,138,-30,171r-24,0v15,-39,28,-120,30,-171v-26,0,-38,2,-46,5r-4,-15v45,-19,145,-7,210,-10","w":221},"\u20ac":{"d":"204,-226r-10,29v-7,-13,-27,-44,-65,-44v-46,0,-62,43,-63,78r116,0r-7,23r-109,0r0,31r98,0r-8,23r-90,0v1,39,29,67,64,67v36,0,52,-19,64,-34r0,30v-15,17,-35,27,-64,27v-54,0,-87,-40,-91,-90r-30,0r8,-23r22,0r0,-31r-30,0r8,-23r22,0v-3,-88,104,-144,165,-63","w":219},"\u2113":{"d":"166,-55r12,10v-17,31,-42,47,-72,47v-46,-1,-63,-34,-63,-74v-7,5,-15,12,-23,18r-8,-14v11,-9,21,-17,30,-26r0,-103v0,-68,31,-88,58,-88v32,0,48,28,48,60v0,48,-33,92,-82,138v-3,44,19,70,45,70v26,0,46,-20,55,-38xm66,-200r0,89v36,-37,64,-74,64,-113v0,-24,-8,-43,-30,-43v-15,0,-34,17,-34,67","w":187},"\u212e":{"d":"67,-52v36,64,148,61,190,4r21,0v-26,31,-69,51,-117,51v-82,0,-148,-60,-148,-133v0,-74,66,-134,148,-134v83,1,150,60,148,138r-242,1r0,73xm255,-209v-37,-62,-153,-62,-188,2v1,24,-3,54,2,74r184,0v6,-20,0,-52,2,-76","w":322},"\u2202":{"d":"40,-251r-9,-17v72,-49,161,-8,161,119v0,81,-34,151,-101,151v-51,0,-74,-44,-74,-85v0,-57,38,-93,82,-93v39,0,61,29,69,39v9,-103,-60,-164,-128,-114xm41,-84v0,37,21,67,53,67v39,0,64,-45,70,-95v-6,-17,-28,-45,-61,-45v-33,0,-62,32,-62,73","w":211},"\u220f":{"d":"263,-236r-45,0r0,272r-23,0r0,-272r-117,0r0,272r-24,0r0,-272r-44,0r0,-21r253,0r0,21","w":272},"\u2211":{"d":"208,36r-199,0r0,-16r108,-130r-103,-130r0,-17r188,0r0,20v-50,2,-108,-4,-154,2r97,122r-104,126r167,0r0,23","w":217},"\u2219":{"d":"32,-93v0,-13,10,-23,23,-23v12,0,22,10,22,23v0,12,-10,22,-22,22v-13,0,-23,-10,-23,-22","w":109},"\u221a":{"d":"221,-305r-87,361r-22,0r-64,-173r-29,11r-6,-15r50,-19r53,144v3,8,3,19,7,25r79,-334r19,0","w":221},"\u221e":{"d":"279,-107v0,36,-28,60,-58,60v-25,0,-44,-16,-71,-46v-21,23,-41,46,-73,46v-31,0,-57,-25,-57,-58v0,-34,26,-60,60,-60v29,0,51,23,72,47v21,-23,40,-47,72,-47v33,0,55,24,55,58xm37,-105v0,23,16,42,43,42v25,0,45,-25,61,-42v-18,-21,-36,-45,-64,-45v-25,0,-40,21,-40,45xm222,-150v-27,0,-48,29,-62,43v26,28,42,44,63,44v25,0,39,-21,39,-42v0,-28,-17,-45,-40,-45","w":299},"\u222b":{"d":"129,-308r-5,17v-37,-16,-48,21,-48,71v0,57,5,128,5,187v0,71,-23,101,-77,85r5,-17v37,13,50,-12,50,-69v0,-105,-45,-306,70,-274","w":133},"\u2248":{"d":"72,-160v49,0,89,61,120,1r10,9v-10,19,-25,36,-49,36v-26,0,-55,-29,-84,-30v-18,0,-29,14,-39,29r-11,-9v12,-22,31,-36,53,-36xm72,-96v36,1,50,29,82,30v17,0,26,-10,38,-29r10,10v-10,19,-25,35,-49,35v-26,0,-55,-29,-84,-30v-19,0,-29,14,-39,29r-11,-9v12,-22,31,-36,53,-36","w":222},"\u2260":{"d":"156,-189r-18,39r64,0r0,16r-71,0r-27,58r98,0r0,16r-106,0r-21,47r-13,-6r19,-41r-61,0r0,-16r68,0r27,-58r-95,0r0,-16r102,0r21,-45","w":222},"\u2264":{"d":"201,-33r-179,-87r0,-16r179,-86r0,19r-160,75r160,75r0,20xm201,-1r-181,0r0,-16r181,0r0,16","w":222},"\u2265":{"d":"23,-222r178,86r0,17r-178,86r0,-20r159,-75r-159,-75r0,-19xm201,-1r-180,0r0,-16r180,0r0,16","w":222},"\u25ca":{"d":"199,-129r-79,147r-20,0r-78,-147r79,-146r19,0xm177,-128r-67,-127v-19,44,-45,84,-66,126r67,127v19,-45,45,-84,66,-126","w":221},"\u00a0":{"w":109},"\u00ad":{"d":"105,-82r-91,0r0,-23r91,0r0,23","w":119},"\u02c9":{"d":"106,-220r-112,0r0,-22r112,0r0,22","w":100},"\u03a9":{"d":"21,-19v19,-2,45,4,60,-2v-29,-23,-55,-63,-55,-116v0,-73,52,-124,119,-124v70,0,116,58,116,123v0,57,-31,94,-56,119r61,0r0,19r-93,0r0,-14v32,-19,64,-60,64,-120v0,-49,-33,-108,-93,-108v-57,0,-94,49,-94,108v0,57,32,102,63,120r0,14r-92,0r0,-19","w":287},"\u2215":{"d":"-39,4r-21,0r158,-268r22,0","w":60},"\u2206":{"d":"12,0r0,-18r102,-247r28,0r100,247r0,18r-230,0xm37,-19r179,0r-88,-219r-2,0","w":254},"\u2010":{"d":"105,-82r-91,0r0,-23r91,0r0,23","w":119}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1989, 1990, 2002 Adobe Systems Incorporated. All rights reserved. © 1981,
 * 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Trade Gothic is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * TradeGothicLTStd-Bold
 * 
 * Designer:
 * Jackson Burke
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Trade Gothic LT Std","font-weight":700,"font-stretch":"semi-condensed","units-per-em":"360","panose-1":"2 11 8 4 5 5 2 2 2 4","ascent":"260","descent":"-100","x-height":"4","bbox":"-60 -350 360 81.9651","underline-thickness":"18","underline-position":"-18","stemh":"30","stemv":"45","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"!":{"d":"76,-260r-10,172r-32,0r-10,-172r52,0xm76,0r-52,0r0,-51r52,0r0,51","w":100},"\"":{"d":"72,-163r0,-97r39,0r0,97r-39,0xm9,-163r0,-97r39,0r0,97r-39,0","w":119},"#":{"d":"182,-108r0,34r-35,0r-11,74r-34,0r10,-74r-36,0r-10,74r-35,0r10,-74r-34,0r0,-34r39,0r6,-44r-34,0r0,-34r39,0r10,-74r35,0r-11,74r36,0r11,-74r34,0r-10,74r31,0r0,34r-35,0r-7,44r31,0xm123,-152r-36,0r-6,44r35,0","w":200},"$":{"d":"7,-46r31,-28v11,15,28,30,46,34r0,-74v-37,-11,-72,-35,-72,-76v0,-42,32,-68,72,-70r0,-23r28,0r0,23v30,5,51,20,68,38r-28,27v-10,-13,-23,-23,-40,-25r0,66v40,14,76,33,76,82v0,44,-34,71,-76,72r0,41r-28,0r0,-41v-25,0,-59,-22,-77,-46xm84,-162r0,-60v-17,0,-31,10,-31,28v0,16,15,27,31,32xm112,-106r0,66v19,0,32,-13,32,-31v0,-21,-15,-27,-32,-35","w":200},"%":{"d":"77,-260v36,0,65,30,65,65v0,35,-29,65,-65,65v-36,0,-65,-30,-65,-65v0,-35,29,-65,65,-65xm77,-225v-41,0,-35,59,0,59v16,0,30,-14,30,-29v0,-15,-14,-30,-30,-30xm243,-130v36,0,65,30,65,65v0,35,-29,65,-65,65v-36,0,-65,-30,-65,-65v0,-35,29,-65,65,-65xm243,-94v-16,0,-30,14,-30,29v0,15,14,30,30,30v16,0,30,-15,30,-30v0,-15,-14,-29,-30,-29xm71,4r149,-268r31,0r-149,268r-31,0","w":320},"&":{"d":"99,-233v-32,0,-26,49,-8,69v14,-12,31,-24,31,-45v0,-11,-8,-24,-23,-24xm183,-131r39,11v-8,22,-17,44,-30,65v10,7,23,14,36,15r0,44v-25,0,-42,-6,-66,-27v-42,48,-150,31,-150,-45v0,-36,18,-55,44,-72v-14,-21,-21,-37,-21,-59v0,-87,130,-82,128,-6v0,33,-26,53,-50,72v14,19,29,37,46,53v9,-17,19,-33,24,-51xm81,-107v-32,16,-18,70,18,70v13,0,26,-7,33,-15v-20,-17,-36,-36,-51,-55","w":240},"\u2019":{"d":"18,-156r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0","w":79,"k":{"s":6,"\u0161":6}},"(":{"d":"109,30r-42,0v-63,-80,-64,-214,0,-294r42,0v-28,39,-51,84,-51,147v0,63,23,108,51,147","w":119},")":{"d":"53,30r-43,0v28,-39,52,-84,52,-147v0,-63,-24,-108,-52,-147r43,0v63,80,64,214,0,294","w":119},"*":{"d":"72,-260r36,0v-2,18,-10,37,-9,54r48,-24r9,32v-17,4,-39,1,-53,8r38,38r-27,20v-9,-15,-13,-36,-25,-48r-23,48r-27,-20v11,-14,31,-25,37,-40r-52,-6r9,-32r48,24v1,-17,-7,-36,-9,-54"},"+":{"d":"86,-120r0,-76r44,0r0,76r76,0r0,44r-76,0r0,76r-44,0r0,-76r-76,0r0,-44r76,0","w":216},",":{"d":"28,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0","w":100},"-":{"d":"104,-78r-89,0r0,-40r89,0r0,40","w":119},".":{"d":"76,0r-52,0r0,-51r52,0r0,51","w":100},"\/":{"d":"121,-264r-98,268r-44,0r98,-268r44,0","w":100},"0":{"d":"13,-86r0,-88v0,-55,31,-90,87,-90v56,0,87,35,87,90r0,88v0,55,-31,90,-87,90v-56,0,-87,-35,-87,-90xm100,-222v-53,0,-40,80,-40,130v0,42,13,55,40,55v53,0,40,-80,40,-131v0,-42,-13,-54,-40,-54","w":200},"1":{"d":"85,0r0,-199r-40,0r0,-28v38,-8,45,-21,57,-37r28,0r0,264r-45,0","w":200},"2":{"d":"178,0r-164,0r0,-42v104,-99,121,-118,121,-145v0,-21,-12,-35,-35,-35v-27,1,-39,17,-37,43r-48,0v-4,-50,27,-85,81,-85v51,0,86,26,86,76v0,60,-70,107,-107,147r103,0r0,41","w":200},"3":{"d":"12,-76r48,0v0,27,11,39,38,39v24,0,38,-17,38,-39v0,-29,-16,-41,-52,-41r0,-41v58,9,61,-64,12,-64v-18,0,-30,12,-31,30r-47,0v0,-48,35,-72,79,-72v77,0,108,93,49,128v28,11,38,33,38,62v0,51,-38,78,-85,78v-58,0,-87,-31,-87,-80","w":200},"4":{"d":"40,-105r74,0r-1,-102xm0,-110r110,-150r49,0r0,155r37,0r0,37r-37,0r0,68r-45,0r0,-68r-114,0r0,-42","w":200},"5":{"d":"13,-75r47,0v-1,24,14,38,37,38v31,0,41,-21,41,-57v0,-55,-54,-63,-76,-30r-40,0r0,-136r150,0r0,41r-109,0r0,54v14,-10,29,-16,48,-16v55,0,74,35,74,88v0,60,-25,97,-87,97v-65,0,-85,-40,-85,-79","w":200},"6":{"d":"60,-106v-2,43,8,69,40,69v25,0,38,-18,38,-48v0,-52,-55,-50,-78,-21xm180,-192r-47,0v-1,-18,-15,-30,-33,-30v-36,0,-43,34,-40,78v16,-12,35,-20,56,-20v45,0,69,35,69,77v0,53,-26,91,-85,91v-56,0,-87,-35,-87,-90r0,-88v0,-55,31,-90,87,-90v45,0,76,25,80,72","w":200},"7":{"d":"11,-219r0,-41r164,0r0,24r-70,236r-52,0r72,-219r-114,0","w":200},"8":{"d":"140,-75v0,-24,-16,-40,-40,-40v-24,0,-40,16,-40,40v0,22,11,38,40,38v29,0,40,-16,40,-38xm133,-189v0,-18,-14,-33,-33,-33v-19,0,-33,15,-33,33v0,18,15,33,33,33v18,0,33,-15,33,-33xm187,-74v0,51,-38,78,-87,78v-49,0,-87,-27,-87,-78v0,-29,10,-51,38,-62v-21,-10,-32,-34,-32,-57v0,-48,36,-71,81,-71v45,0,81,23,81,71v0,23,-11,47,-32,57v28,11,38,33,38,62","w":200},"9":{"d":"140,-154v2,-42,-8,-68,-40,-68v-25,0,-37,17,-37,47v-1,53,54,51,77,21xm20,-68r47,0v1,18,15,31,33,31v35,0,43,-35,40,-79v-16,12,-35,20,-56,20v-45,0,-69,-35,-69,-77v0,-53,26,-91,85,-91v56,0,87,35,87,90r0,88v0,55,-31,90,-87,90v-45,0,-76,-25,-80,-72","w":200},":":{"d":"76,0r-52,0r0,-51r52,0r0,51xm76,-108r-52,0r0,-51r52,0r0,51","w":100},";":{"d":"28,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0xm76,-108r-52,0r0,-51r52,0r0,51","w":100},"<":{"d":"206,-39r0,42r-196,-84r0,-34r196,-84r0,42r-140,59","w":216},"=":{"d":"206,-164r0,44r-196,0r0,-44r196,0xm206,-76r0,44r-196,0r0,-44r196,0","w":216},">":{"d":"10,3r0,-42r140,-59r-140,-59r0,-42r196,84r0,34","w":216},"?":{"d":"143,-202v0,40,-62,67,-52,116r-39,0r0,-36v0,-17,46,-63,46,-84v0,-12,-11,-21,-23,-21v-15,0,-29,16,-30,32r-41,-12v10,-74,139,-78,139,5xm97,0r-51,0r0,-51r51,0r0,51","w":159},"@":{"d":"148,-163v-39,-3,-57,70,-11,72v40,3,57,-70,11,-72xm186,-177r5,-18r32,0r-20,102v0,4,1,7,5,7v17,0,36,-20,36,-59v0,-58,-40,-88,-95,-88v-60,0,-99,44,-99,103v0,94,113,132,176,78r33,0v-64,104,-246,50,-246,-78v0,-76,62,-134,137,-134v63,0,125,43,125,109v0,79,-69,104,-91,104v-11,1,-18,-9,-21,-19v-31,41,-93,8,-93,-44v0,-61,76,-117,116,-63","w":288},"A":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0","w":200},"B":{"d":"22,0r0,-260v74,-3,154,-4,154,67v0,23,-11,41,-32,54v69,34,39,151,-49,139r-73,0xm72,-116r0,75v35,3,60,-7,60,-38v0,-31,-26,-39,-60,-37xm72,-219r0,62v30,3,54,-7,54,-31v0,-27,-24,-34,-54,-31","w":200},"C":{"d":"68,-183r0,106v0,29,12,37,32,37v26,0,35,-22,32,-54r50,0v3,68,-31,98,-82,98v-48,0,-82,-24,-82,-88r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r-50,0v2,-30,-10,-44,-32,-44v-20,0,-32,8,-32,37","w":200},"D":{"d":"22,0r0,-260v88,-2,161,-5,160,90r0,80v1,95,-71,93,-160,90xm72,-216r0,172v39,2,60,-5,60,-52v0,-59,15,-135,-60,-120","w":200},"E":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44"},"F":{"d":"72,0r-50,0r0,-260r130,0r0,44r-80,0r0,60r63,0r0,44r-63,0r0,112","w":159,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":40,".":40}},"G":{"d":"154,0r-7,-22v-42,51,-129,25,-129,-62r0,-92v0,-64,34,-88,82,-88v51,0,78,30,80,89r-50,0v6,-59,-62,-62,-62,-8r0,106v0,29,12,37,32,37v25,1,32,-23,30,-52r-35,0r0,-41r85,0r0,133r-26,0","w":200},"H":{"d":"75,0r-50,0r0,-260r50,0r0,104r70,0r0,-104r50,0r0,260r-50,0r0,-112r-70,0r0,112","w":219},"I":{"d":"75,0r-50,0r0,-260r50,0r0,260","w":100},"J":{"d":"45,-260r50,0r0,205v2,43,-40,66,-91,58r0,-44v24,3,41,1,41,-24r0,-195","w":119},"K":{"d":"72,0r-50,0r0,-260r50,0r1,107r64,-107r55,0r-67,105r74,155r-56,0r-52,-109r-19,29r0,80","w":200},"L":{"d":"152,0r-130,0r0,-260r50,0r0,216r80,0r0,44","w":159,"k":{"T":20,"V":20,"W":20,"y":13,"\u00fd":13,"\u00ff":13,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"M":{"d":"68,0r-43,0r0,-260r70,0r45,171r45,-171r70,0r0,260r-43,0r0,-204r-53,204r-38,0r-53,-204r0,204","w":280},"N":{"d":"71,0r-46,0r0,-260r55,0r69,154r0,-154r46,0r0,260r-48,0r-76,-168r0,168","w":219},"O":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37","w":200},"P":{"d":"75,0r-50,0r0,-260r72,0v61,0,91,29,91,78v0,56,-43,83,-113,78r0,104xm75,-219r0,74v36,2,63,-2,63,-37v0,-35,-27,-40,-63,-37","w":200,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":46,".":46}},"Q":{"d":"198,-24r0,43v-24,0,-41,-11,-53,-25v-60,25,-127,5,-127,-78r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88v0,49,7,110,-10,143v7,5,15,9,26,9xm97,-65r0,-43v16,2,27,12,35,24v-5,-47,19,-138,-32,-136v-20,0,-32,8,-32,37r0,106v-2,38,26,42,51,33v-7,-10,-14,-18,-22,-21","w":200},"R":{"d":"192,0r-53,0r-43,-106r-24,0r0,106r-50,0r0,-260r72,0v96,-12,118,114,49,144xm72,-219r0,72v34,2,61,0,61,-36v0,-36,-26,-38,-61,-36","w":200,"k":{"Y":6,"\u00dd":6,"\u0178":6}},"S":{"d":"177,-201r-45,13v-8,-24,-19,-34,-36,-34v-18,0,-28,10,-28,28v0,39,111,42,111,123v0,45,-31,75,-83,75v-40,0,-71,-22,-84,-73r48,-11v6,31,24,43,39,43v17,0,31,-12,31,-31v0,-49,-111,-50,-111,-123v0,-45,27,-73,78,-73v44,0,71,26,80,63","w":200},"T":{"d":"7,-260r166,0r0,44r-58,0r0,216r-50,0r0,-216r-58,0r0,-44","k":{"\u00fc":20,"\u0161":20,"\u00f2":20,"\u00f6":20,"\u00ec":20,"\u00ee":20,"\u00ed":20,"\u00e8":20,"\u00eb":20,"\u00ea":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"w":20,"y":20,"\u00fd":20,"\u00ff":20,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":27,".":27,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"c":20,"\u00e7":20,"e":20,"\u00e9":20,"i":20,"\u00ef":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f5":20,"r":20,"s":20,"u":20,"\u00fa":20,"\u00fb":20,"\u00f9":20,":":27,";":27}},"U":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182","w":219},"V":{"d":"72,0r-67,-260r49,0r47,186r45,-186r49,0r-66,260r-57,0","w":200,"k":{"\u00f6":13,"\u00f4":13,"\u00ee":6,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":27,".":27,"-":13,"a":13,"\u00e6":13,"\u00e1":13,"e":13,"\u00e9":13,"i":6,"\u00ed":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f2":13,"\u00f5":13,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,":":13,";":13}},"W":{"d":"63,0r-55,-260r46,0r36,170r36,-170r48,0r36,170r35,-170r46,0r-57,260r-48,0r-37,-178r-39,178r-47,0","w":299,"k":{"\u00f6":6,"\u00ea":6,"\u00e4":6,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":20,".":20,"-":6,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f2":6,"\u00f5":6,":":6,";":6}},"X":{"d":"63,-260r37,78r38,-78r53,0r-63,123r69,137r-54,0r-43,-92r-43,92r-54,0r70,-137r-64,-123r54,0","w":200},"Y":{"d":"57,-260r44,105r42,-105r53,0r-71,155r0,105r-50,0r0,-105r-71,-155r53,0","w":200,"k":{"\u00fc":13,"\u00f6":20,"v":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,":":20,";":20,"p":13,"q":20}},"Z":{"d":"22,-216r0,-44r144,0r0,42r-98,174r100,0r0,44r-156,0r0,-42r98,-174r-88,0"},"[":{"d":"102,27r-84,0r0,-287r84,0r0,22r-44,0r0,243r44,0r0,22","w":119},"\\":{"d":"77,4r-98,-268r44,0r98,268r-44,0","w":100},"]":{"d":"18,-260r84,0r0,287r-84,0r0,-22r44,0r0,-243r-44,0r0,-22","w":119},"^":{"d":"61,-115r-42,0r70,-145r38,0r70,145r-43,0r-46,-102","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18"},"\u2018":{"d":"62,-264r-18,54r22,0r0,51r-52,0r0,-51r23,-54r25,0","w":79},"a":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3"},"b":{"d":"67,-152r0,108v24,22,49,25,50,-33v1,-32,0,-99,-23,-89v-10,0,-18,4,-27,14xm63,0r-41,0r0,-260r45,0r0,82v50,-43,95,-20,95,56v0,59,1,126,-50,126v-21,0,-39,-17,-49,-28r0,24"},"c":{"d":"162,-128r-45,0v2,-21,-7,-32,-27,-32v-44,-1,-27,63,-27,101v0,15,11,23,27,23v21,0,30,-13,27,-35r45,0v0,52,-27,75,-72,75v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v44,0,71,21,72,71"},"d":{"d":"113,-44r0,-108v-24,-22,-49,-25,-50,33v-1,32,0,99,23,89v10,0,18,-4,27,-14xm158,0r-41,0v-1,-7,2,-18,-1,-24v-8,12,-28,28,-48,28v-51,0,-50,-67,-50,-126v0,-76,45,-99,95,-56r0,-82r45,0r0,260"},"e":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39"},"f":{"d":"97,-261r0,37v-26,-4,-31,11,-28,37r27,0r0,37r-27,0r0,150r-46,0r0,-150r-20,0r0,-37r20,0v-5,-60,22,-88,74,-74","w":100,"k":{"\u2019":-13}},"g":{"d":"105,-125v0,-25,-8,-38,-24,-38v-17,0,-23,12,-23,43v0,24,7,36,21,36v19,0,26,-7,26,-41xm172,-199r0,39v-11,-4,-19,-3,-29,2v17,62,-9,126,-79,109v-3,4,-8,6,-8,11v0,24,114,-13,114,58v0,33,-34,49,-87,49v-74,0,-96,-43,-48,-66v-30,-14,-16,-52,9,-61v-47,-30,-45,-141,37,-141v19,0,39,8,51,22v12,-14,23,-22,40,-22xm127,23v-4,-17,-48,-10,-67,-14v-5,5,-9,8,-9,15v0,10,15,15,42,15v22,0,34,-6,34,-16"},"h":{"d":"67,0r-45,0r0,-260r45,0r0,86v27,-33,91,-40,91,25r0,149r-45,0r0,-144v-1,-33,-31,-22,-46,-4r0,148"},"i":{"d":"27,-196r46,0r0,196r-46,0r0,-196xm73,-230r-46,0r0,-41r46,0r0,41","w":100},"j":{"d":"27,-196r46,0r0,212v-1,43,-33,57,-72,52r0,-40v19,0,26,-6,26,-18r0,-206xm73,-230r-46,0r0,-41r46,0r0,41","w":100},"k":{"d":"69,0r-45,0r0,-260r45,0r1,140r48,-76r51,0r-45,66r49,130r-48,0r-33,-92r-23,32r0,60"},"l":{"d":"27,0r0,-260r46,0r0,260r-46,0","w":100},"m":{"d":"22,0r0,-196r44,0r0,22v23,-27,71,-39,83,4v24,-37,89,-45,89,22r0,148r-45,0r0,-149v-1,-32,-31,-11,-40,1r0,148r-46,0r0,-149v-1,-32,-33,-11,-40,1r0,148r-45,0","w":259},"n":{"d":"67,0r-45,0r0,-196r44,0r0,22v30,-33,92,-41,92,25r0,149r-45,0r0,-144v-1,-33,-31,-22,-46,-4r0,148"},"o":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23"},"p":{"d":"67,-152r0,108v24,22,49,25,50,-33v1,-32,0,-99,-23,-89v-10,0,-18,4,-27,14xm22,-196r41,0v1,7,-2,18,1,24v8,-12,28,-27,48,-27v51,0,50,66,50,125v0,76,-46,100,-95,56r0,87r-45,0r0,-265"},"q":{"d":"113,-44r0,-108v-24,-22,-49,-25,-50,33v-1,32,0,99,23,89v10,0,18,-4,27,-14xm117,-196r41,0r0,265r-45,0r0,-87v-50,45,-95,20,-95,-56v0,-59,-1,-125,50,-125v21,0,39,16,49,27r0,-24"},"r":{"d":"67,0r-45,0r0,-196r44,0v1,8,-2,20,1,26v10,-19,23,-29,46,-29r0,49v-18,-10,-46,-6,-46,16r0,134","w":119,"k":{"\u2019":-6,",":20,".":20,"-":13}},"s":{"d":"145,-150r-37,14v-6,-29,-50,-39,-50,-9v0,30,89,31,89,89v0,39,-27,60,-65,60v-27,0,-52,-7,-74,-56r41,-11v4,18,15,30,33,30v14,0,22,-6,22,-17v0,-37,-89,-29,-89,-95v0,-37,30,-54,62,-54v34,0,57,19,68,49","w":159},"t":{"d":"20,-150r-18,0r0,-37r18,0r0,-53r46,0r0,53r29,0r0,37r-29,0r0,100v-1,13,14,15,29,14r0,38v-36,6,-75,1,-75,-37r0,-115","w":100},"u":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148"},"v":{"d":"50,-196r30,126r30,-126r46,0r-54,196r-44,0r-54,-196r46,0","w":159,"k":{",":13,".":13}},"w":{"d":"51,0r-46,-196r42,0r27,123r26,-123r39,0r29,123r25,-123r42,0r-46,196r-42,0r-29,-122r-24,122r-43,0","w":240,"k":{",":13,".":13}},"x":{"d":"56,-101r-50,-95r48,0r26,56r26,-56r48,0r-49,96r53,100r-49,0r-29,-63r-30,63r-48,0","w":159},"y":{"d":"12,68r0,-39v45,5,49,-25,37,-67r-45,-158r46,0r31,130r29,-130r46,0r-52,195v-15,58,-38,74,-92,69","w":159,"k":{",":13,".":13}},"z":{"d":"18,-156r0,-40r131,0r0,39r-83,117r83,0r0,40r-138,0r0,-39r82,-117r-75,0","w":159},"{":{"d":"94,-264r0,22v-67,-12,7,116,-59,125v41,2,29,63,29,104v0,21,11,23,30,22r0,21v-39,2,-66,-1,-70,-43v-3,-34,15,-96,-25,-93r0,-22v40,4,22,-59,25,-93v4,-41,31,-45,70,-43","w":119},"|":{"d":"18,4r0,-268r44,0r0,268r-44,0","w":79},"}":{"d":"26,30r0,-21v67,11,-6,-115,59,-126v-42,-2,-29,-62,-29,-103v0,-21,-11,-23,-30,-22r0,-22v39,-2,66,1,70,43v3,34,-14,97,25,94r0,22v-39,-4,-22,59,-25,92v-4,41,-31,45,-70,43","w":119},"~":{"d":"149,-64v-38,0,-97,-55,-116,1r-14,-35v9,-17,22,-33,48,-33v27,0,63,26,85,26v14,0,23,-14,32,-28r13,35v-11,16,-24,34,-48,34","w":216},"\u00a1":{"d":"76,64r-52,0r10,-172r32,0xm24,-196r52,0r0,51r-52,0r0,-51","w":100},"\u00a2":{"d":"69,-49r27,-111v-48,-2,-23,62,-29,101v0,4,0,7,2,10xm172,-128r-45,0v0,-10,1,-18,-5,-23r-30,115v27,1,38,-9,35,-35r46,0v1,56,-34,79,-89,74r-13,47r-32,0r15,-55v-35,-14,-32,-69,-32,-120v0,-57,32,-77,86,-74r12,-44r32,0r-14,51v22,9,34,31,34,64","w":200},"\u00a3":{"d":"40,-114r-34,0r0,-32r30,0v-20,-61,10,-118,68,-118v58,0,84,30,84,78r-46,0v-2,-22,-10,-38,-34,-38v-38,-1,-32,48,-25,78r48,0r0,32r-44,0v0,9,-2,45,-9,61v25,20,75,29,71,-25r43,0v0,42,-11,82,-65,82v-24,0,-36,-4,-68,-24v-19,17,-30,24,-51,24r0,-44v26,0,37,-39,32,-74","w":200},"\u2044":{"d":"-60,4r146,-268r34,0r-146,268r-34,0","w":60},"\u00a5":{"d":"180,-163r0,32r-46,0r-11,26r57,0r0,32r-59,0r0,73r-42,0r0,-73r-58,0r0,-32r56,0r-11,-26r-45,0r0,-32r30,0r-45,-97r44,0r51,116r49,-116r44,0r-45,97r31,0","w":200},"\u0192":{"d":"9,65r6,-37v22,8,37,7,42,-26r26,-134r-35,0r0,-31r42,0v16,-85,35,-113,97,-96r-6,36v-33,-11,-37,3,-47,60r36,0r0,31r-42,0r-23,119v-6,49,-35,97,-96,78","w":200},"\u00a7":{"d":"145,-235r-25,20v-8,-16,-46,-29,-46,-3v0,28,87,70,87,119v0,24,-17,37,-39,41v35,29,17,88,-33,88v-31,0,-43,-13,-58,-30r24,-19v5,17,51,31,51,2v0,-30,-87,-80,-87,-118v0,-32,15,-42,37,-46v-30,-29,-18,-84,31,-83v25,0,42,9,58,29xm53,-144v-5,9,55,68,60,62v9,0,14,-7,14,-16v5,-6,-53,-66,-60,-60v-7,0,-14,6,-14,14"},"\u00a4":{"d":"193,-58r-21,21r-20,-21v-23,23,-81,24,-104,0r-20,21r-21,-21r20,-20v-21,-25,-21,-79,0,-104r-20,-20r21,-21r20,21v23,-23,81,-24,104,0r20,-21r21,21r-20,20v21,25,21,79,0,104xm149,-130v0,-30,-18,-53,-49,-53v-31,0,-49,23,-49,53v0,30,18,53,49,53v31,0,49,-23,49,-53","w":200},"'":{"d":"20,-163r0,-97r40,0r0,97r-40,0","w":79},"\u201c":{"d":"62,-264r-18,54r22,0r0,51r-52,0r0,-51r23,-54r25,0xm142,-264r-18,54r21,0r0,51r-51,0r0,-51r23,-54r25,0","w":159},"\u00ab":{"d":"139,-40r-44,-58r44,-58r40,0r-44,58r44,58r-40,0xm66,-40r-44,-58r44,-58r39,0r-44,58r44,58r-39,0","w":200},"\u2039":{"d":"14,-98r44,-58r39,0r-44,58r44,58r-39,0","w":119},"\u203a":{"d":"106,-98r-44,58r-39,0r44,-58r-44,-58r39,0","w":119},"\ufb01":{"d":"116,-187r45,0r0,187r-45,0r0,-187xm161,-221r-45,0r0,-41r45,0r0,41xm97,-261r0,37v-26,-4,-31,11,-28,37r27,0r0,37r-27,0r0,150r-46,0r0,-150r-20,0r0,-37r20,0v-5,-60,22,-88,74,-74"},"\ufb02":{"d":"116,0r0,-260r45,0r0,260r-45,0xm97,-261r0,37v-26,-4,-31,11,-28,37r27,0r0,37r-27,0r0,150r-46,0r0,-150r-20,0r0,-37r20,0v-5,-60,22,-88,74,-74"},"\u2013":{"d":"180,-83r-180,0r0,-30r180,0r0,30"},"\u2020":{"d":"24,-168r0,-35r58,10r-9,-71r34,0r-9,71r58,-10r0,35r-57,-10r9,61v-5,41,-8,97,-11,144r-14,0v-3,-47,-6,-103,-11,-144r9,-61"},"\u2021":{"d":"72,-118r9,-64r-57,10r0,-35r58,10r-9,-67r34,0r-9,67r58,-10r0,35r-57,-10r9,64r-9,63r57,-9r0,34r-58,-10r9,67r-34,0r9,-67r-58,10r0,-34r57,9"},"\u00b7":{"d":"50,-125v16,0,27,13,27,27v0,14,-11,27,-27,27v-16,0,-27,-13,-27,-27v0,-14,11,-27,27,-27","w":100},"\u00b6":{"d":"68,30r0,-163v-40,0,-64,-23,-64,-62v0,-43,22,-65,77,-65r116,0r0,30r-25,0r0,260r-40,0r0,-260r-24,0r0,260r-40,0","w":200},"\u2022":{"d":"25,-130v0,-36,29,-65,65,-65v36,0,65,29,65,65v0,36,-29,65,-65,65v-36,0,-65,-29,-65,-65"},"\u201a":{"d":"18,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0","w":79},"\u201e":{"d":"18,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0xm98,53r18,-53r-22,0r0,-51r51,0r0,51r-22,53r-25,0","w":159},"\u201d":{"d":"18,-156r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0xm98,-156r18,-53r-22,0r0,-51r51,0r0,51r-22,53r-25,0","w":159},"\u00bb":{"d":"105,-98r-44,58r-39,0r44,-58r-44,-58r39,0xm179,-98r-44,58r-40,0r44,-58r-44,-58r40,0","w":200},"\u2026":{"d":"86,0r-51,0r0,-51r51,0r0,51xm325,0r-51,0r0,-51r51,0r0,51xm206,0r-52,0r0,-51r52,0r0,51","w":360},"\u2030":{"d":"58,-260v30,0,54,24,54,53v0,29,-24,54,-54,54v-30,0,-53,-25,-53,-54v0,-29,23,-53,53,-53xm58,-230v-14,0,-23,10,-23,23v0,13,9,24,23,24v14,0,24,-11,24,-24v0,-13,-10,-23,-24,-23xm172,-77v-14,0,-24,11,-24,24v0,13,10,23,24,23v14,0,23,-10,23,-23v0,-13,-9,-24,-23,-24xm172,-107v30,0,53,25,53,54v0,29,-23,53,-53,53v-30,0,-54,-24,-54,-53v0,-29,24,-54,54,-54xm302,-77v-14,0,-24,11,-24,24v0,13,10,23,24,23v14,0,23,-10,23,-23v0,-13,-9,-24,-23,-24xm302,-107v30,0,53,25,53,54v0,29,-23,53,-53,53v-30,0,-54,-24,-54,-53v0,-29,24,-54,54,-54xm27,4r147,-268r28,0r-147,268r-28,0","w":360},"\u00bf":{"d":"17,6v0,-40,61,-67,51,-115r40,0r0,35v0,17,-46,63,-46,84v0,12,11,21,23,21v15,0,29,-16,30,-32r41,12v-10,74,-137,78,-139,-5xm63,-196r51,0r0,51r-51,0r0,-51","w":159},"`":{"d":"-9,-272r56,0r34,52r-37,0","w":100},"\u00b4":{"d":"53,-272r56,0r-53,52r-37,0","w":100},"\u02c6":{"d":"27,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":100},"\u02dc":{"d":"93,-268r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":100},"\u00af":{"d":"113,-230r-126,0r0,-27r126,0r0,27","w":100},"\u02d8":{"d":"87,-271r24,0v-5,36,-27,52,-63,52v-34,0,-55,-17,-58,-52r23,0v4,35,69,35,74,0","w":100},"\u02d9":{"d":"28,-264r44,0r0,42r-44,0r0,-42","w":100},"\u00a8":{"d":"-6,-264r43,0r0,42r-43,0r0,-42xm63,-264r43,0r0,42r-43,0r0,-42","w":100},"\u02da":{"d":"50,-217v-21,0,-38,-18,-38,-39v0,-21,17,-38,38,-38v21,0,39,17,39,38v0,21,-18,39,-39,39xm50,-275v-11,0,-19,9,-19,19v0,11,8,19,19,19v10,0,19,-8,19,-19v0,-10,-9,-19,-19,-19","w":100},"\u00b8":{"d":"1,73r7,-15v16,6,43,12,47,-8v-1,-23,-34,-2,-39,-18r21,-32r20,0v-4,8,-14,16,-15,23v18,-9,45,5,44,25v-2,39,-55,40,-85,25","w":100},"\u02dd":{"d":"21,-272r55,0r-51,52r-35,0xm86,-272r56,0r-53,52r-36,0","w":100},"\u02db":{"d":"93,-8r0,5v-19,7,-51,21,-51,45v0,30,40,15,53,3r8,12v-25,22,-92,37,-92,-11v0,-38,54,-49,82,-54","w":100},"\u02c7":{"d":"73,-220r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":100},"\u2014":{"d":"360,-83r-360,0r0,-30r360,0r0,30","w":360},"\u00c6":{"d":"168,-220r-56,113r62,0r0,-113r-6,0xm58,0r-53,0r133,-260r192,0r0,44r-106,0r0,60r79,0r0,44r-79,0r0,68r110,0r0,44r-160,0r0,-63r-85,0","w":360},"\u00aa":{"d":"6,-226v1,-27,23,-37,48,-38v67,-2,37,66,45,120r-31,0v-1,-3,0,-7,-1,-12v-13,19,-63,22,-63,-14v0,-27,28,-40,62,-50v1,-11,-1,-19,-13,-18v-9,0,-15,5,-15,12r-32,0xm46,-166v17,1,23,-12,20,-31v-15,6,-30,11,-30,22v0,6,5,9,10,9","w":108},"\u0141":{"d":"72,-114r0,70r80,0r0,44r-130,0r0,-94r-22,9r0,-41r22,-9r0,-125r50,0r0,104r59,-23r-1,41","w":159,"k":{"T":20,"V":20,"W":20,"y":13,"\u00fd":13,"\u00ff":13,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"\u00d8":{"d":"127,-208v-17,-21,-59,-18,-59,25r0,89xm76,-48v21,15,56,12,56,-29r0,-79xm161,-277r37,0r-26,50v17,33,8,95,10,143v3,82,-64,102,-125,79r-17,33r-38,0r29,-56v-21,-31,-11,-98,-13,-148v-3,-85,70,-103,130,-77","w":200},"\u0152":{"d":"122,-220v-58,0,-52,60,-51,117v0,48,14,63,51,63v62,0,40,-80,40,-133v0,-30,-8,-47,-40,-47xm21,-167v-2,-98,88,-93,180,-93r118,0r0,44r-107,0r0,60r80,0r0,44r-80,0r0,68r110,0r0,44r-149,0v-86,14,-153,-6,-152,-98r0,-69","w":339},"\u00ba":{"d":"54,-142v-44,0,-47,-32,-47,-77v0,-31,17,-45,47,-45v42,0,47,33,47,78v0,31,-18,44,-47,44xm54,-237v-24,0,-14,35,-14,55v0,9,4,14,14,14v24,0,14,-35,14,-55v0,-9,-4,-14,-14,-14","w":108},"\u00e6":{"d":"114,-48r0,-48v-24,9,-52,24,-52,45v1,31,42,23,52,3xm258,-87r-99,0v-2,28,2,54,27,54v19,0,26,-12,26,-27r46,0v-2,40,-26,64,-72,64v-32,0,-52,-17,-60,-26v-30,23,-46,26,-64,26v-27,0,-45,-15,-45,-47v0,-45,43,-65,97,-82v2,-21,-3,-38,-21,-38v-14,0,-25,10,-25,24r-46,0v3,-68,86,-75,119,-38v35,-43,122,-18,117,44r0,46xm159,-124r53,0v2,-23,-4,-39,-26,-39v-22,0,-29,16,-27,39","w":280},"\u0131":{"d":"73,0r-46,0r0,-196r46,0r0,196","w":100},"\u0142":{"d":"73,-136r0,136r-46,0r0,-113r-26,14r0,-34r26,-14r0,-113r46,0r0,90r26,-13r0,34","w":100},"\u00f8":{"d":"63,-75v17,-25,29,-55,44,-81v-17,-9,-44,-2,-44,19r0,62xm117,-114v-16,23,-27,51,-41,75v17,8,41,0,41,-20r0,-55xm56,-2r-23,42r-32,0r32,-59v-19,-20,-13,-67,-15,-106v-3,-67,55,-85,109,-68r18,-34r32,0r-28,53v18,21,11,65,13,103v3,66,-52,87,-106,69"},"\u0153":{"d":"90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm262,-87r-100,0v-3,29,3,54,28,54v19,0,27,-12,27,-27r45,0v7,63,-92,86,-122,38v-32,46,-132,30,-122,-49r0,-54v-9,-78,89,-94,122,-49v30,-46,129,-23,122,41r0,46xm162,-124r55,0v2,-23,-5,-39,-27,-39v-22,0,-30,15,-28,39","w":280},"\u00df":{"d":"67,0r-45,0r0,-188v0,-42,15,-72,68,-72v61,0,87,86,41,119v55,20,41,145,-20,145v-9,0,-18,-2,-26,-6r0,-41v21,8,34,1,34,-32v0,-27,-6,-45,-34,-45r0,-37v16,-1,26,-13,26,-32v0,-18,-6,-31,-24,-31v-14,0,-20,10,-20,21r0,199"},"\u00b9":{"d":"51,-105r0,-119r-24,0r0,-19v22,-4,29,-12,35,-21r22,0r0,159r-33,0","w":119},"\u00ac":{"d":"162,-32r0,-88r-152,0r0,-44r196,0r0,132r-44,0","w":216},"\u00b5":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-15,13,-29,25,-47,26r0,65r-45,0r0,-265r45,0r0,144v1,33,31,22,46,4r0,-148"},"\u2122":{"d":"213,-260r34,90r33,-90r56,0r0,148r-39,0r0,-100r-36,100r-29,0r-36,-100r0,100r-38,0r0,-148r55,0xm134,-260r0,30r-41,0r0,118r-40,0r0,-118r-41,0r0,-30r122,0","w":360},"\u00d0":{"d":"3,-112r0,-44r19,0r0,-104v88,-2,161,-5,160,90r0,80v1,95,-71,93,-160,90r0,-112r-19,0xm104,-156r0,44r-32,0r0,68v39,2,60,-5,60,-52v0,-59,15,-135,-60,-120r0,60r32,0","w":200},"\u00bd":{"d":"53,-105r0,-119r-24,0r0,-19v22,-4,28,-12,34,-21r22,0r0,159r-32,0xm285,0r-107,0r0,-27v66,-58,77,-69,77,-85v0,-10,-6,-20,-21,-20v-18,1,-24,10,-23,24r-32,0v-2,-30,16,-50,52,-50v33,0,56,15,56,45v0,36,-43,63,-67,86r65,0r0,27xm49,4r145,-268r35,0r-146,268r-34,0","w":300},"\u00b1":{"d":"86,-148r0,-48r44,0r0,48r76,0r0,44r-76,0r0,49r-44,0r0,-49r-76,0r0,-44r76,0xm10,0r0,-44r196,0r0,44r-196,0","w":216},"\u00de":{"d":"75,0r-50,0r0,-260r50,0r0,48v70,-5,113,20,113,77v0,56,-43,83,-113,78r0,57xm75,-171r0,73v36,2,63,-2,63,-37v0,-35,-28,-38,-63,-36","w":200},"\u00bc":{"d":"194,-66r37,0v-1,-15,2,-34,-1,-47xm160,-66r71,-90r33,0r0,90r23,0r0,25r-23,0r0,41r-33,0r0,-41r-71,0r0,-25xm53,-105r0,-119r-24,0r0,-19v22,-4,28,-12,34,-21r22,0r0,159r-32,0xm55,4r146,-268r34,0r-145,268r-35,0","w":300},"\u00f7":{"d":"206,-76r-196,0r0,-44r196,0r0,44xm73,-178v0,-19,16,-34,35,-34v18,0,34,16,34,34v0,17,-16,34,-34,34v-19,0,-35,-15,-35,-34xm73,-18v0,-19,16,-34,35,-34v18,0,34,15,34,34v0,17,-16,35,-34,35v-19,0,-35,-17,-35,-35","w":216},"\u00a6":{"d":"18,4r0,-103r44,0r0,103r-44,0xm18,-161r0,-103r44,0r0,103r-44,0","w":79},"\u00b0":{"d":"72,-181v17,0,30,-14,30,-31v0,-17,-13,-31,-30,-31v-17,0,-30,14,-30,31v0,17,13,31,30,31xm72,-161v-29,0,-52,-22,-52,-51v0,-29,23,-52,52,-52v29,0,52,23,52,52v0,29,-23,51,-52,51","w":144},"\u00fe":{"d":"67,-152r0,108v24,22,49,25,50,-33v1,-32,0,-99,-23,-89v-10,0,-18,4,-27,14xm22,-260r44,0r1,84v5,-9,25,-23,45,-23v51,0,50,66,50,125v0,76,-46,100,-95,56r0,87r-45,0r0,-329"},"\u00be":{"d":"194,-66r37,0v-1,-15,2,-34,-1,-47xm160,-66r71,-90r33,0r0,90r23,0r0,25r-23,0r0,41r-33,0r0,-41r-71,0r0,-25xm17,-219v0,-30,22,-43,51,-45v49,-4,71,56,32,77v49,20,19,84,-31,84v-38,0,-56,-19,-56,-48r32,0v0,15,7,21,24,21v15,0,23,-8,23,-21v0,-17,-11,-23,-33,-23r0,-27v35,6,39,-35,9,-36v-11,0,-19,8,-19,18r-32,0xm62,4r146,-268r35,0r-146,268r-35,0","w":300},"\u00b2":{"d":"112,-105r-107,0r0,-27v66,-58,77,-69,77,-85v0,-10,-6,-20,-21,-20v-19,1,-23,9,-22,24r-33,0v-2,-30,17,-51,53,-51v33,0,55,16,55,46v0,36,-42,63,-66,86r64,0r0,27","w":119},"\u00ae":{"d":"121,-117r0,60r-31,0r0,-146v52,0,115,-9,115,44v0,27,-16,38,-37,39r34,63r-35,0r-31,-60r-15,0xm121,-177r0,34v22,-1,55,6,51,-19v5,-18,-31,-15,-51,-15xm144,4v-72,0,-138,-50,-138,-134v0,-84,66,-134,138,-134v72,0,138,50,138,134v0,84,-66,134,-138,134xm241,-130v0,-60,-44,-102,-97,-102v-54,0,-97,42,-97,102v0,60,43,102,97,102v53,0,97,-42,97,-102","w":288},"\u2212":{"d":"206,-76r-196,0r0,-44r196,0r0,44","w":216},"\u00f0":{"d":"90,-148v-42,-2,-27,54,-27,90v0,14,11,22,27,22v42,2,27,-54,27,-90v0,-14,-11,-22,-27,-22xm63,-255r43,-5v4,4,7,8,11,13r39,-13r11,27r-33,11v27,44,28,91,28,156v0,49,-27,70,-72,70v-65,0,-72,-51,-72,-121v0,-54,35,-75,87,-69v-2,-8,-5,-15,-9,-23r-39,14r-11,-27r34,-12v-5,-7,-11,-14,-17,-21"},"\u00d7":{"d":"10,-165r31,-31r67,67r67,-67r31,31r-67,67r67,67r-31,31r-67,-67r-67,67r-31,-31r67,-67","w":216},"\u00b3":{"d":"7,-219v0,-30,23,-43,52,-45v49,-3,71,56,32,77v47,18,19,84,-31,84v-38,0,-56,-19,-56,-48r32,0v0,15,6,21,23,21v15,0,24,-8,24,-21v0,-17,-11,-23,-33,-23r0,-27v35,6,37,-35,8,-36v-11,0,-18,8,-18,18r-33,0","w":119},"\u00a9":{"d":"144,4v-72,0,-138,-50,-138,-134v0,-84,66,-134,138,-134v72,0,138,50,138,134v0,84,-66,134,-138,134xm241,-130v0,-60,-44,-102,-97,-102v-54,0,-97,42,-97,102v0,60,43,102,97,102v53,0,97,-42,97,-102xm181,-110r33,0v-6,37,-34,57,-65,57v-45,0,-74,-34,-74,-78v0,-84,126,-110,137,-23r-31,0v-14,-40,-74,-25,-69,22v-6,47,60,66,69,22","w":288},"\u00c1":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm103,-327r56,0r-53,52r-37,0","w":200},"\u00c2":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm77,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":200},"\u00c4":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm44,-319r43,0r0,41r-43,0r0,-41xm113,-319r43,0r0,41r-43,0r0,-41","w":200},"\u00c0":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm41,-327r56,0r34,52r-37,0","w":200},"\u00c5":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm100,-273v-21,0,-38,-17,-38,-38v0,-21,17,-39,38,-39v21,0,39,18,39,39v0,21,-18,38,-39,38xm100,-330v-11,0,-19,9,-19,19v0,11,8,19,19,19v10,0,19,-8,19,-19v0,-10,-9,-19,-19,-19","w":200},"\u00c3":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm143,-323r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":200},"\u00c7":{"d":"68,-183r0,106v0,29,12,37,32,37v26,0,35,-22,32,-54r50,0v3,66,-29,99,-78,98v-3,6,-12,13,-12,19v18,-9,45,5,44,25v-2,39,-55,40,-85,25r7,-15v16,6,43,12,47,-8v-1,-23,-34,-2,-39,-18r20,-29v-40,-4,-68,-29,-68,-87r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r-50,0v2,-30,-10,-44,-32,-44v-20,0,-32,8,-32,37","w":200},"\u00c9":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm93,-327r56,0r-53,52r-37,0"},"\u00ca":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm67,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00cb":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm34,-319r43,0r0,41r-43,0r0,-41xm103,-319r43,0r0,41r-43,0r0,-41"},"\u00c8":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm31,-327r56,0r34,52r-37,0"},"\u00cd":{"d":"75,0r-50,0r0,-260r50,0r0,260xm53,-327r56,0r-53,52r-37,0","w":100},"\u00ce":{"d":"75,0r-50,0r0,-260r50,0r0,260xm27,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":100},"\u00cf":{"d":"75,0r-50,0r0,-260r50,0r0,260xm-6,-319r43,0r0,41r-43,0r0,-41xm63,-319r43,0r0,41r-43,0r0,-41","w":100},"\u00cc":{"d":"75,0r-50,0r0,-260r50,0r0,260xm-9,-327r56,0r34,52r-37,0","w":100},"\u00d1":{"d":"71,0r-46,0r0,-260r55,0r69,154r0,-154r46,0r0,260r-48,0r-76,-168r0,168xm153,-323r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":219},"\u00d3":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm103,-327r56,0r-53,52r-37,0","w":200},"\u00d4":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm77,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":200},"\u00d6":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm44,-319r43,0r0,41r-43,0r0,-41xm113,-319r43,0r0,41r-43,0r0,-41","w":200},"\u00d2":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm41,-327r56,0r34,52r-37,0","w":200},"\u00d5":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm143,-323r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":200},"\u0160":{"d":"177,-201r-45,13v-8,-24,-19,-34,-36,-34v-18,0,-28,10,-28,28v0,39,111,42,111,123v0,45,-31,75,-83,75v-40,0,-71,-22,-84,-73r48,-11v6,31,24,43,39,43v17,0,31,-12,31,-31v0,-49,-111,-50,-111,-123v0,-45,27,-73,78,-73v44,0,71,26,80,63xm123,-275r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":200},"\u00da":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm113,-327r56,0r-53,52r-36,0","w":219},"\u00db":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm87,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":219},"\u00dc":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm54,-319r44,0r0,41r-44,0r0,-41xm123,-319r43,0r0,41r-43,0r0,-41","w":219},"\u00d9":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm51,-327r56,0r34,52r-37,0","w":219},"\u00dd":{"d":"57,-260r44,105r42,-105r53,0r-71,155r0,105r-50,0r0,-105r-71,-155r53,0xm103,-327r56,0r-53,52r-37,0","w":200,"k":{"v":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":20,";":20,"p":13,"q":20}},"\u0178":{"d":"57,-260r44,105r42,-105r53,0r-71,155r0,105r-50,0r0,-105r-71,-155r53,0xm44,-319r43,0r0,41r-43,0r0,-41xm113,-319r43,0r0,41r-43,0r0,-41","w":200,"k":{"v":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":20,";":20,"p":13,"q":20}},"\u017d":{"d":"22,-216r0,-44r144,0r0,42r-98,174r100,0r0,44r-156,0r0,-42r98,-174r-88,0xm113,-275r-46,0r-41,-52r41,0r23,29r23,-29r41,0"},"\u00e1":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm93,-272r56,0r-53,52r-37,0"},"\u00e2":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm67,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00e4":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm34,-264r43,0r0,42r-43,0r0,-42xm103,-264r43,0r0,42r-43,0r0,-42"},"\u00e0":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm31,-272r56,0r34,52r-37,0"},"\u00e5":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm90,-217v-21,0,-39,-18,-39,-39v0,-21,18,-38,39,-38v21,0,39,17,39,38v0,21,-18,39,-39,39xm90,-275v-11,0,-19,9,-19,19v0,11,8,19,19,19v10,0,19,-8,19,-19v0,-10,-9,-19,-19,-19"},"\u00e3":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm132,-268r24,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,0,57,31,66,-2"},"\u00e7":{"d":"162,-128r-45,0v2,-21,-7,-32,-27,-32v-44,-1,-27,63,-27,101v0,15,11,23,27,23v21,0,30,-13,27,-35r45,0v0,50,-25,74,-68,75v-3,6,-12,13,-12,19v18,-9,45,5,44,25v-2,39,-55,40,-85,25r7,-15v16,6,43,12,47,-8v-1,-23,-34,-2,-39,-18r20,-29v-55,-1,-58,-63,-58,-128v0,-52,27,-74,72,-74v44,0,71,21,72,71"},"\u00e9":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm93,-272r56,0r-53,52r-37,0"},"\u00ea":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm67,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00eb":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm34,-264r43,0r0,42r-43,0r0,-42xm103,-264r43,0r0,42r-43,0r0,-42"},"\u00e8":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm31,-272r56,0r34,52r-37,0"},"\u00ed":{"d":"73,0r-46,0r0,-196r46,0r0,196xm53,-272r56,0r-53,52r-37,0","w":100},"\u00ee":{"d":"73,0r-46,0r0,-196r46,0r0,196xm27,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":100},"\u00ef":{"d":"73,0r-46,0r0,-196r46,0r0,196xm-6,-264r43,0r0,42r-43,0r0,-42xm63,-264r43,0r0,42r-43,0r0,-42","w":100},"\u00ec":{"d":"73,0r-46,0r0,-196r46,0r0,196xm-9,-272r56,0r34,52r-37,0","w":100},"\u00f1":{"d":"67,0r-45,0r0,-196r44,0r0,22v30,-33,92,-41,92,25r0,149r-45,0r0,-144v-1,-33,-31,-22,-46,-4r0,148xm132,-268r24,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,0,57,31,66,-2"},"\u00f3":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm93,-272r56,0r-53,52r-37,0"},"\u00f4":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm67,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00f6":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm34,-264r43,0r0,42r-43,0r0,-42xm103,-264r43,0r0,42r-43,0r0,-42"},"\u00f2":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm31,-272r56,0r34,52r-37,0"},"\u00f5":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm132,-268r24,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,0,57,31,66,-2"},"\u0161":{"d":"145,-150r-37,14v-6,-29,-50,-39,-50,-9v0,30,89,31,89,89v0,39,-27,60,-65,60v-27,0,-52,-7,-74,-56r41,-11v4,18,15,30,33,30v14,0,22,-6,22,-17v0,-37,-89,-29,-89,-95v0,-37,30,-54,62,-54v34,0,57,19,68,49xm103,-220r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":159},"\u00fa":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm90,-272r55,0r-52,52r-37,0"},"\u00fb":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm64,-272r45,0r41,52r-40,0r-23,-29r-23,29r-41,0"},"\u00fc":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm31,-264r43,0r0,42r-43,0r0,-42xm99,-264r44,0r0,42r-44,0r0,-42"},"\u00f9":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm28,-272r56,0r33,52r-36,0"},"\u00fd":{"d":"12,68r0,-39v45,5,49,-25,37,-67r-45,-158r46,0r31,130r29,-130r46,0r-52,195v-15,58,-38,74,-92,69xm83,-272r56,0r-53,52r-37,0","w":159,"k":{",":13,".":13}},"\u00ff":{"d":"12,68r0,-39v45,5,49,-25,37,-67r-45,-158r46,0r31,130r29,-130r46,0r-52,195v-15,58,-38,74,-92,69xm24,-264r43,0r0,42r-43,0r0,-42xm93,-264r43,0r0,42r-43,0r0,-42","w":159,"k":{",":13,".":13}},"\u017e":{"d":"18,-156r0,-40r131,0r0,39r-83,117r83,0r0,40r-138,0r0,-39r82,-117r-75,0xm103,-220r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":159},"\u2126":{"d":"14,-35v16,-1,36,2,50,-1v-23,-22,-45,-58,-45,-106v0,-66,45,-119,109,-119v122,-1,129,172,61,226r50,0r0,35r-93,0r0,-26v23,-15,45,-50,45,-109v0,-46,-22,-90,-64,-90v-40,0,-65,38,-65,91v0,54,22,93,45,108r0,26r-93,0r0,-35","w":254},"\u03bc":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-15,13,-29,25,-47,26r0,65r-45,0r0,-265r45,0r0,144v1,33,31,22,46,4r0,-148"},"\u03c0":{"d":"206,-157r-26,0v1,48,-3,120,4,157r-41,0v-11,-32,-4,-111,-6,-157r-52,0v-2,41,-11,118,-24,157r-41,0v13,-43,22,-115,23,-157v-18,0,-28,1,-36,4r-5,-28v41,-22,143,-8,207,-12","w":214},"\u20ac":{"d":"161,-141r-77,0r0,26r68,0r-10,32v-18,2,-44,-4,-58,2v-3,53,64,53,98,29r0,42v-63,31,-153,6,-143,-73r-28,0r10,-32r18,0r0,-26r-28,0r10,-31r18,0v-13,-87,93,-116,154,-70r-13,41v-30,-32,-105,-28,-96,29r87,0","w":200},"\u2113":{"d":"158,-66r18,18v-18,36,-45,50,-73,50v-45,-1,-63,-29,-64,-66v-6,5,-14,10,-20,15r-10,-23v11,-9,20,-17,29,-26r0,-94v0,-65,29,-92,63,-92v34,0,49,28,49,64v0,44,-28,86,-71,129v-3,34,10,59,33,59v20,0,36,-17,46,-34xm79,-192r0,61v26,-30,44,-62,44,-90v0,-20,-5,-32,-20,-32v-12,0,-24,13,-24,61","w":182},"\u212e":{"d":"67,-52v36,64,148,61,190,4r21,0v-26,31,-69,51,-117,51v-82,0,-148,-60,-148,-133v0,-74,66,-134,148,-134v83,1,150,60,148,138r-242,1r0,73xm255,-209v-37,-62,-153,-62,-188,2v1,24,-3,54,2,74r184,0v6,-20,0,-52,2,-76","w":322},"\u2202":{"d":"37,-238r-12,-32v70,-48,162,-11,162,118v0,92,-36,154,-100,154v-50,0,-73,-46,-73,-87v0,-59,36,-96,78,-96v31,0,47,21,54,30v3,-56,-21,-105,-62,-105v-22,0,-38,10,-47,18xm92,-34v28,0,46,-41,50,-80v-4,-12,-19,-33,-42,-33v-25,0,-44,30,-44,63v0,28,14,50,36,50","w":205},"\u220f":{"d":"249,-219r-37,0r0,255r-42,0r0,-255r-82,0r0,255r-42,0r0,-255r-37,0r0,-38r240,0r0,38","w":258},"\u2211":{"d":"193,36r-185,0r0,-28r89,-119r-85,-117r0,-29r175,0r0,36r-118,1r76,102r-85,114r133,0r0,40","w":200},"\u2219":{"d":"50,-125v16,0,27,13,27,27v0,14,-11,27,-27,27v-16,0,-27,-13,-27,-27v0,-14,11,-27,27,-27","w":100},"\u221a":{"d":"215,-309r-81,361r-34,0r-54,-163r-27,10r-7,-24r59,-24r39,120v3,12,5,23,7,31r68,-311r30,0","w":212},"\u221e":{"d":"209,-166v32,0,59,23,56,60v-5,75,-85,83,-123,20v-19,23,-38,42,-68,42v-30,0,-56,-25,-56,-60v0,-36,25,-62,59,-62v27,0,47,17,66,41v16,-18,34,-41,66,-41xm42,-104v0,20,14,36,36,36v21,0,37,-19,51,-36v-15,-20,-29,-39,-53,-39v-21,0,-34,17,-34,39xm240,-104v0,-23,-13,-39,-34,-39v-22,0,-39,24,-51,37v22,27,34,38,53,38v21,0,32,-19,32,-36","w":282},"\u222b":{"d":"49,-219v0,-69,27,-110,84,-94r-4,29v-36,-11,-43,22,-42,69v0,59,6,114,6,179v0,72,-27,113,-86,93r6,-31v35,11,42,-12,42,-62v0,-66,-6,-121,-6,-183","w":141},"\u2248":{"d":"66,-165v32,0,46,26,70,27v14,0,23,-10,33,-26r15,14v-11,22,-27,37,-48,37v-24,0,-47,-27,-72,-27v-16,0,-25,13,-34,26r-16,-13v11,-22,30,-38,52,-38xm66,-98v33,0,44,27,70,27v14,0,23,-11,33,-27r15,14v-11,21,-27,38,-48,38v-24,0,-48,-27,-72,-28v-16,0,-25,14,-34,27r-16,-14v11,-22,30,-37,52,-37","w":199},"\u2260":{"d":"145,-187r-14,33r50,0r0,24r-59,0r-22,50r81,0r0,26r-91,0r-18,41r-19,-8r14,-33r-49,0r0,-26r59,0r22,-50r-81,0r0,-24r90,0r18,-41","w":199},"\u2264":{"d":"180,-36r-161,-82r0,-27r161,-81r0,29r-136,66r136,65r0,30xm182,3r-164,0r0,-25r164,0r0,25","w":199},"\u2265":{"d":"20,-226r161,81r0,27r-161,82r0,-30r136,-66r-136,-65r0,-29xm181,3r-163,0r0,-25r163,0r0,25","w":199},"\u25ca":{"d":"194,-129r-72,147r-34,0r-70,-147r72,-146r34,0xm156,-127r-50,-113v-12,41,-34,73,-50,110v16,38,38,71,49,113","w":212},"\u00a0":{"w":100},"\u00ad":{"d":"104,-78r-89,0r0,-40r89,0r0,40","w":119},"\u02c9":{"d":"113,-230r-126,0r0,-27r126,0r0,27","w":100},"\u03a9":{"d":"14,-35v16,-1,36,2,50,-1v-23,-22,-45,-58,-45,-106v0,-66,45,-119,109,-119v122,-1,129,172,61,226r50,0r0,35r-93,0r0,-26v23,-15,45,-50,45,-109v0,-46,-22,-90,-64,-90v-40,0,-65,38,-65,91v0,54,22,93,45,108r0,26r-93,0r0,-35","w":254},"\u2215":{"d":"-60,4r146,-268r34,0r-146,268r-34,0","w":60},"\u2206":{"d":"10,0r0,-26r84,-237r50,0r81,237r0,26r-215,0xm53,-35r127,0r-41,-113v-8,-19,-14,-55,-23,-67v-16,56,-43,125,-63,180","w":235},"\u2010":{"d":"104,-78r-89,0r0,-40r89,0r0,40","w":119}}});
;
// $Id: at-scripts.js,v 1.1.2.4 2010/03/17 00:57:51 jmburnz Exp $
/**
 * Insert WAI-ARIA Landmark Roles (Roles for Accessible Rich Internet Applications)
 *
 * http://www.w3.org/TR/2006/WD-aria-role-20060926/
 * 
 * Due to validation errors with WAI-ARIA roles we use JavaScript to 
 * insert the roles. This is a stop-gap measure while the W3C sort 
 * out the validator.
 *
 * This is a starting point, you can copy this and use it in your subtheme for more granular control.
 */
if (Drupal.jsEnabled) {
  $(document).ready(function() {

    // Set role=banner on #branding wrapper div.
    $("#branding").attr("role","banner");

    // Optionally set role=complementary
    // Set role=complementary on #main-content blocks, sidebars and regions.
    // $(".block").attr("role","complementary");

    // Remove role=complementary from system blocks.
    // $(".block-system, td.block, tr.region, td.region").removeAttr("role","complementary");

    // Set role=main on #main-content div.
    $("#main-content").attr("role","main");

    // Set role=search on search block and box.
    $("#search-theme-form, #search-block-form, #search-form").attr("role","search");

    // Set role=contentinfo on the footer message.
    $("#footer-message").attr("role","contentinfo");

    // Set role=article on nodes.
    // $(".article").attr("role","article");

    // Set role=nav on navigation-like blocks.
    $("#nav, .admin-panel, #breadcrumb, .block-menu, #block-user-1, .local-tasks").attr("role","navigation");
  
  });
}

/**
 * Theme Settings
 */
// Breadcrumb settings
$(document).ready( function() {
  // Hide the breadcrumb details, if no breadcrumb.
  $('#edit-breadcrumb-display-wrapper').change(
    function() {
      div = $('#div-breadcrumb-collapse');
      if ($('#edit-breadcrumb-display').val() == 'no') {
        div.slideUp('slow');
      } else if (div.css('display') == 'none') {
        div.slideDown('slow');
      }
    }
  );
  if ($('#edit-breadcrumb-display').val() == 'no') {
    $('#div-breadcrumb-collapse').css('display', 'none');
  }
  
  $('#edit-breadcrumb-title').change(
    function() {
      checkbox = $('#edit-breadcrumb-trailing');
      if ($('#edit-breadcrumb-title').attr('checked')) {
        checkbox.attr('disabled', 'disabled');
      } else {
        checkbox.removeAttr('disabled');
      }
    }
  );
  $('#edit-breadcrumb-title').change();
});

// Horizontal login block settings
$(document).ready( function() {
  $('#edit-horizontal-login-block-overlabel').attr('disabled', true);
  $('#edit-horizontal-login-block').change(function() {
    if ($(this).is(':checked')) {
      $('#edit-horizontal-login-block-overlabel').attr('disabled', false);
    } else {
      $('#edit-horizontal-login-block-overlabel').attr('disabled', true);
    }
  }); 
});

/**
 * In most instances this will be called using the built in theme settings.
 * However, if you want to use this manually you can call this file
 * in the info file and user the ready function e.g.:
 * 
 * This will set sidebars and the main content column all to equal height:
 *  if (Drupal.jsEnabled) {
 *    $(document).ready(function() {
 *    $('#content-column, .sidebar').equalHeight();
 *   });
 *  }
 *  
 * This will set all blocks in regions (not sidebars) to equal height:
 *  if (Drupal.jsEnabled) {
 *    $(document).ready(function() {
 *    $('#region-name .block-inner').equalHeight();
 *   });
 *  }
 */
jQuery.fn.equalHeight = function () {
  var height = 0;
  var maxHeight = 0;

  // Store the tallest element's height
  this.each(function () {
    height = jQuery(this).outerHeight();
    maxHeight = (height > maxHeight) ? height : maxHeight;
  });

  // Set element's min-height to tallest element's height
  return this.each(function () {
    var t = jQuery(this);
    var minHeight = maxHeight - (t.outerHeight() - t.height());
    var property = jQuery.browser.msie && jQuery.browser.version < 7 ? 'height' : 'min-height';
    
    t.css(property, minHeight + 'px');
 });
};;

