/* mootools.js */

var MooTools={version:'1.12'};function $defined(obj){return(obj!=undefined);};function $type(obj){if(!$defined(obj))return false;if(obj.htmlElement)return'element';var type=typeof obj;if(type=='object'&&obj.nodeName){switch(obj.nodeType){case 1:return'element';case 3:return(/\S/).test(obj.nodeValue)?'textnode':'whitespace';}}
if(type=='object'||type=='function'){switch(obj.constructor){case Array:return'array';case RegExp:return'regexp';case Class:return'class';}
if(typeof obj.length=='number'){if(obj.item)return'collection';if(obj.callee)return'arguments';}}
return type;};function $merge(){var mix={};for(var i=0;i<arguments.length;i++){for(var property in arguments[i]){var ap=arguments[i][property];var mp=mix[property];if(mp&&$type(ap)=='object'&&$type(mp)=='object')mix[property]=$merge(mp,ap);else mix[property]=ap;}}
return mix;};var $extend=function(){var args=arguments;if(!args[1])args=[this,args[0]];for(var property in args[1])args[0][property]=args[1][property];return args[0];};var $native=function(){for(var i=0,l=arguments.length;i<l;i++){arguments[i].extend=function(props){for(var prop in props){if(!this.prototype[prop])this.prototype[prop]=props[prop];if(!this[prop])this[prop]=$native.generic(prop);}};}};$native.generic=function(prop){return function(bind){return this.prototype[prop].apply(bind,Array.prototype.slice.call(arguments,1));};};$native(Function,Array,String,Number);function $chk(obj){return!!(obj||obj===0);};function $pick(obj,picked){return $defined(obj)?obj:picked;};function $random(min,max){return Math.floor(Math.random()*(max-min+1)+min);};function $time(){return new Date().getTime();};function $clear(timer){clearTimeout(timer);clearInterval(timer);return null;};var Abstract=function(obj){obj=obj||{};obj.extend=$extend;return obj;};var Window=new Abstract(window);var Document=new Abstract(document);document.head=document.getElementsByTagName('head')[0];window.xpath=!!(document.evaluate);if(window.ActiveXObject)window.ie=window[window.XMLHttpRequest?'ie7':'ie6']=true;else if(document.childNodes&&!document.all&&!navigator.taintEnabled)window.webkit=window[window.xpath?'webkit420':'webkit419']=true;else if(document.getBoxObjectFor!=null||window.mozInnerScreenX!=null)window.gecko=true;window.khtml=window.webkit;Object.extend=$extend;if(typeof HTMLElement=='undefined'){var HTMLElement=function(){};if(window.webkit)document.createElement("iframe");HTMLElement.prototype=(window.webkit)?window["[[DOMElement.prototype]]"]:{};}
HTMLElement.prototype.htmlElement=function(){};if(window.ie6)try{document.execCommand("BackgroundImageCache",false,true);}catch(e){};var Class=function(properties){var klass=function(){return(arguments[0]!==null&&this.initialize&&$type(this.initialize)=='function')?this.initialize.apply(this,arguments):this;};$extend(klass,this);klass.prototype=properties;klass.constructor=Class;return klass;};Class.empty=function(){};Class.prototype={extend:function(properties){var proto=new this(null);for(var property in properties){var pp=proto[property];proto[property]=Class.Merge(pp,properties[property]);}
return new Class(proto);},implement:function(){for(var i=0,l=arguments.length;i<l;i++)$extend(this.prototype,arguments[i]);}};Class.Merge=function(previous,current){if(previous&&previous!=current){var type=$type(current);if(type!=$type(previous))return current;switch(type){case'function':var merged=function(){this.parent=arguments.callee.parent;return current.apply(this,arguments);};merged.parent=previous;return merged;case'object':return $merge(previous,current);}}
return current;};var Chain=new Class({chain:function(fn){this.chains=this.chains||[];this.chains.push(fn);return this;},callChain:function(){if(this.chains&&this.chains.length)this.chains.shift().delay(10,this);},clearChain:function(){this.chains=[];}});var Events=new Class({addEvent:function(type,fn){if(fn!=Class.empty){this.$events=this.$events||{};this.$events[type]=this.$events[type]||[];this.$events[type].include(fn);}
return this;},fireEvent:function(type,args,delay){if(this.$events&&this.$events[type]){this.$events[type].each(function(fn){fn.create({'bind':this,'delay':delay,'arguments':args})();},this);}
return this;},removeEvent:function(type,fn){if(this.$events&&this.$events[type])this.$events[type].remove(fn);return this;}});var Options=new Class({setOptions:function(){this.options=$merge.apply(null,[this.options].extend(arguments));if(this.addEvent){for(var option in this.options){if($type(this.options[option]=='function')&&(/^on[A-Z]/).test(option))this.addEvent(option,this.options[option]);}}
return this;}});Array.extend({forEach:function(fn,bind){for(var i=0,j=this.length;i<j;i++)fn.call(bind,this[i],i,this);},filter:function(fn,bind){var results=[];for(var i=0,j=this.length;i<j;i++){if(fn.call(bind,this[i],i,this))results.push(this[i]);}
return results;},map:function(fn,bind){var results=[];for(var i=0,j=this.length;i<j;i++)results[i]=fn.call(bind,this[i],i,this);return results;},every:function(fn,bind){for(var i=0,j=this.length;i<j;i++){if(!fn.call(bind,this[i],i,this))return false;}
return true;},some:function(fn,bind){for(var i=0,j=this.length;i<j;i++){if(fn.call(bind,this[i],i,this))return true;}
return false;},indexOf:function(item,from){var len=this.length;for(var i=(from<0)?Math.max(0,len+from):from||0;i<len;i++){if(this[i]===item)return i;}
return-1;},copy:function(start,length){start=start||0;if(start<0)start=this.length+start;length=length||(this.length-start);var newArray=[];for(var i=0;i<length;i++)newArray[i]=this[start++];return newArray;},remove:function(item){var i=0;var len=this.length;while(i<len){if(this[i]===item){this.splice(i,1);len--;}else{i++;}}
return this;},contains:function(item,from){return this.indexOf(item,from)!=-1;},associate:function(keys){var obj={},length=Math.min(this.length,keys.length);for(var i=0;i<length;i++)obj[keys[i]]=this[i];return obj;},extend:function(array){for(var i=0,j=array.length;i<j;i++)this.push(array[i]);return this;},merge:function(array){for(var i=0,l=array.length;i<l;i++)this.include(array[i]);return this;},include:function(item){if(!this.contains(item))this.push(item);return this;},getRandom:function(){return this[$random(0,this.length-1)]||null;},getLast:function(){return this[this.length-1]||null;}});Array.prototype.each=Array.prototype.forEach;Array.each=Array.forEach;function $A(array){return Array.copy(array);};function $each(iterable,fn,bind){if(iterable&&typeof iterable.length=='number'&&$type(iterable)!='object'){Array.forEach(iterable,fn,bind);}else{for(var name in iterable)fn.call(bind||iterable,iterable[name],name);}};Array.prototype.test=Array.prototype.contains;String.extend({test:function(regex,params){return(($type(regex)=='string')?new RegExp(regex,params):regex).test(this);},toInt:function(){return parseInt(this,10);},toFloat:function(){return parseFloat(this);},camelCase:function(){return this.replace(/-\D/g,function(match){return match.charAt(1).toUpperCase();});},hyphenate:function(){return this.replace(/\w[A-Z]/g,function(match){return(match.charAt(0)+'-'+match.charAt(1).toLowerCase());});},capitalize:function(){return this.replace(/\b[a-z]/g,function(match){return match.toUpperCase();});},trim:function(){return this.replace(/^\s+|\s+$/g,'');},clean:function(){return this.replace(/\s{2,}/g,' ').trim();},rgbToHex:function(array){var rgb=this.match(/\d{1,3}/g);return(rgb)?rgb.rgbToHex(array):false;},hexToRgb:function(array){var hex=this.match(/^#?(\w{1,2})(\w{1,2})(\w{1,2})$/);return(hex)?hex.slice(1).hexToRgb(array):false;},contains:function(string,s){return(s)?(s+this+s).indexOf(s+string+s)>-1:this.indexOf(string)>-1;},escapeRegExp:function(){return this.replace(/([.*+?^${}()|[\]\/\\])/g,'\\$1');}});Array.extend({rgbToHex:function(array){if(this.length<3)return false;if(this.length==4&&this[3]==0&&!array)return'transparent';var hex=[];for(var i=0;i<3;i++){var bit=(this[i]-0).toString(16);hex.push((bit.length==1)?'0'+bit:bit);}
return array?hex:'#'+hex.join('');},hexToRgb:function(array){if(this.length!=3)return false;var rgb=[];for(var i=0;i<3;i++){rgb.push(parseInt((this[i].length==1)?this[i]+this[i]:this[i],16));}
return array?rgb:'rgb('+rgb.join(',')+')';}});Function.extend({create:function(options){var fn=this;options=$merge({'bind':fn,'event':false,'arguments':null,'delay':false,'periodical':false,'attempt':false},options);if($chk(options.arguments)&&$type(options.arguments)!='array')options.arguments=[options.arguments];return function(event){var args;if(options.event){event=event||window.event;args=[(options.event===true)?event:new options.event(event)];if(options.arguments)args.extend(options.arguments);}
else args=options.arguments||arguments;var returns=function(){return fn.apply($pick(options.bind,fn),args);};if(options.delay)return setTimeout(returns,options.delay);if(options.periodical)return setInterval(returns,options.periodical);if(options.attempt)try{return returns();}catch(err){return false;};return returns();};},pass:function(args,bind){return this.create({'arguments':args,'bind':bind});},attempt:function(args,bind){return this.create({'arguments':args,'bind':bind,'attempt':true})();},bind:function(bind,args){return this.create({'bind':bind,'arguments':args});},bindAsEventListener:function(bind,args){return this.create({'bind':bind,'event':true,'arguments':args});},delay:function(delay,bind,args){return this.create({'delay':delay,'bind':bind,'arguments':args})();},periodical:function(interval,bind,args){return this.create({'periodical':interval,'bind':bind,'arguments':args})();}});Number.extend({toInt:function(){return parseInt(this);},toFloat:function(){return parseFloat(this);},limit:function(min,max){return Math.min(max,Math.max(min,this));},round:function(precision){precision=Math.pow(10,precision||0);return Math.round(this*precision)/precision;},times:function(fn){for(var i=0;i<this;i++)fn(i);}});var Element=new Class({initialize:function(el,props){if($type(el)=='string'){if(window.ie&&props&&(props.name||props.type)){var name=(props.name)?' name="'+props.name+'"':'';var type=(props.type)?' type="'+props.type+'"':'';delete props.name;delete props.type;el='<'+el+name+type+'>';}
el=document.createElement(el);}
el=$(el);return(!props||!el)?el:el.set(props);}});var Elements=new Class({initialize:function(elements){return(elements)?$extend(elements,this):this;}});Elements.extend=function(props){for(var prop in props){this.prototype[prop]=props[prop];this[prop]=$native.generic(prop);}};function $(el){if(!el)return null;if(el.htmlElement)return Garbage.collect(el);if([window,document].contains(el))return el;var type=$type(el);if(type=='string'){el=document.getElementById(el);type=(el)?'element':false;}
if(type!='element')return null;if(el.htmlElement)return Garbage.collect(el);if(['object','embed'].contains(el.tagName.toLowerCase()))return el;$extend(el,Element.prototype);el.htmlElement=function(){};return Garbage.collect(el);};document.getElementsBySelector=document.getElementsByTagName;function $$(){var elements=[];for(var i=0,j=arguments.length;i<j;i++){var selector=arguments[i];switch($type(selector)){case'element':elements.push(selector);case'boolean':break;case false:break;case'string':selector=document.getElementsBySelector(selector,true);default:elements.extend(selector);}}
return $$.unique(elements);};$$.unique=function(array){var elements=[];for(var i=0,l=array.length;i<l;i++){if(array[i].$included)continue;var element=$(array[i]);if(element&&!element.$included){element.$included=true;elements.push(element);}}
for(var n=0,d=elements.length;n<d;n++)elements[n].$included=null;return new Elements(elements);};Elements.Multi=function(property){return function(){var args=arguments;var items=[];var elements=true;for(var i=0,j=this.length,returns;i<j;i++){returns=this[i][property].apply(this[i],args);if($type(returns)!='element')elements=false;items.push(returns);};return(elements)?$$.unique(items):items;};};Element.extend=function(properties){for(var property in properties){HTMLElement.prototype[property]=properties[property];Element.prototype[property]=properties[property];Element[property]=$native.generic(property);var elementsProperty=(Array.prototype[property])?property+'Elements':property;Elements.prototype[elementsProperty]=Elements.Multi(property);}};Element.extend({set:function(props){for(var prop in props){var val=props[prop];switch(prop){case'styles':this.setStyles(val);break;case'events':if(this.addEvents)this.addEvents(val);break;case'properties':this.setProperties(val);break;default:this.setProperty(prop,val);}}
return this;},inject:function(el,where){el=$(el);switch(where){case'before':el.parentNode.insertBefore(this,el);break;case'after':var next=el.getNext();if(!next)el.parentNode.appendChild(this);else el.parentNode.insertBefore(this,next);break;case'top':var first=el.firstChild;if(first){el.insertBefore(this,first);break;}
default:el.appendChild(this);}
return this;},injectBefore:function(el){return this.inject(el,'before');},injectAfter:function(el){return this.inject(el,'after');},injectInside:function(el){return this.inject(el,'bottom');},injectTop:function(el){return this.inject(el,'top');},adopt:function(){var elements=[];$each(arguments,function(argument){elements=elements.concat(argument);});$$(elements).inject(this);return this;},remove:function(){return this.parentNode.removeChild(this);},clone:function(contents){var el=$(this.cloneNode(contents!==false));if(!el.$events)return el;el.$events={};for(var type in this.$events)el.$events[type]={'keys':$A(this.$events[type].keys),'values':$A(this.$events[type].values)};return el.removeEvents();},replaceWith:function(el){el=$(el);this.parentNode.replaceChild(el,this);return el;},appendText:function(text){this.appendChild(document.createTextNode(text));return this;},hasClass:function(className){return this.className.contains(className,' ');},addClass:function(className){if(!this.hasClass(className))this.className=(this.className+' '+className).clean();return this;},removeClass:function(className){this.className=this.className.replace(new RegExp('(^|\\s)'+className+'(?:\\s|$)'),'$1').clean();return this;},toggleClass:function(className){return this.hasClass(className)?this.removeClass(className):this.addClass(className);},setStyle:function(property,value){switch(property){case'opacity':return this.setOpacity(parseFloat(value));case'float':property=(window.ie)?'styleFloat':'cssFloat';}
property=property.camelCase();switch($type(value)){case'number':if(!['zIndex','zoom'].contains(property))value+='px';break;case'array':value='rgb('+value.join(',')+')';}
this.style[property]=value;return this;},setStyles:function(source){switch($type(source)){case'object':Element.setMany(this,'setStyle',source);break;case'string':this.style.cssText=source;}
return this;},setOpacity:function(opacity){if(opacity==0){if(this.style.visibility!="hidden")this.style.visibility="hidden";}else{if(this.style.visibility!="visible")this.style.visibility="visible";}
if(!this.currentStyle||!this.currentStyle.hasLayout)this.style.zoom=1;if(window.ie)this.style.filter=(opacity==1)?'':"alpha(opacity="+opacity*100+")";this.style.opacity=this.$tmp.opacity=opacity;return this;},getStyle:function(property){property=property.camelCase();var result=this.style[property];if(!$chk(result)){if(property=='opacity')return this.$tmp.opacity;result=[];for(var style in Element.Styles){if(property==style){Element.Styles[style].each(function(s){var style=this.getStyle(s);result.push(parseInt(style)?style:'0px');},this);if(property=='border'){var every=result.every(function(bit){return(bit==result[0]);});return(every)?result[0]:false;}
return result.join(' ');}}
if(property.contains('border')){if(Element.Styles.border.contains(property)){return['Width','Style','Color'].map(function(p){return this.getStyle(property+p);},this).join(' ');}else if(Element.borderShort.contains(property)){return['Top','Right','Bottom','Left'].map(function(p){return this.getStyle('border'+p+property.replace('border',''));},this).join(' ');}}
if(document.defaultView)result=document.defaultView.getComputedStyle(this,null).getPropertyValue(property.hyphenate());else if(this.currentStyle)result=this.currentStyle[property];}
if(window.ie)result=Element.fixStyle(property,result,this);if(result&&property.test(/color/i)&&result.contains('rgb')){return result.split('rgb').splice(1,4).map(function(color){return color.rgbToHex();}).join(' ');}
return result;},getStyles:function(){return Element.getMany(this,'getStyle',arguments);},walk:function(brother,start){brother+='Sibling';var el=(start)?this[start]:this[brother];while(el&&$type(el)!='element')el=el[brother];return $(el);},getPrevious:function(){return this.walk('previous');},getNext:function(){return this.walk('next');},getFirst:function(){return this.walk('next','firstChild');},getLast:function(){return this.walk('previous','lastChild');},getParent:function(){return $(this.parentNode);},getChildren:function(){return $$(this.childNodes);},hasChild:function(el){return!!$A(this.getElementsByTagName('*')).contains(el);},getProperty:function(property){var index=Element.Properties[property];if(index)return this[index];var flag=Element.PropertiesIFlag[property]||0;if(!window.ie||flag)return this.getAttribute(property,flag);var node=this.attributes[property];return(node)?node.nodeValue:null;},removeProperty:function(property){var index=Element.Properties[property];if(index)this[index]='';else this.removeAttribute(property);return this;},getProperties:function(){return Element.getMany(this,'getProperty',arguments);},setProperty:function(property,value){var index=Element.Properties[property];if(index)this[index]=value;else this.setAttribute(property,value);return this;},setProperties:function(source){return Element.setMany(this,'setProperty',source);},setHTML:function(){this.innerHTML=$A(arguments).join('');return this;},setText:function(text){var tag=this.getTag();if(['style','script'].contains(tag)){if(window.ie){if(tag=='style')this.styleSheet.cssText=text;else if(tag=='script')this.setProperty('text',text);return this;}else{this.removeChild(this.firstChild);return this.appendText(text);}}
this[$defined(this.innerText)?'innerText':'textContent']=text;return this;},getText:function(){var tag=this.getTag();if(['style','script'].contains(tag)){if(window.ie){if(tag=='style')return this.styleSheet.cssText;else if(tag=='script')return this.getProperty('text');}else{return this.innerHTML;}}
return($pick(this.innerText,this.textContent));},getTag:function(){return this.tagName.toLowerCase();},empty:function(){Garbage.trash(this.getElementsByTagName('*'));return this.setHTML('');}});Element.fixStyle=function(property,result,element){if($chk(parseInt(result)))return result;if(['height','width'].contains(property)){var values=(property=='width')?['left','right']:['top','bottom'];var size=0;values.each(function(value){size+=element.getStyle('border-'+value+'-width').toInt()+element.getStyle('padding-'+value).toInt();});return element['offset'+property.capitalize()]-size+'px';}else if(property.test(/border(.+)Width|margin|padding/)){return'0px';}
return result;};Element.Styles={'border':[],'padding':[],'margin':[]};['Top','Right','Bottom','Left'].each(function(direction){for(var style in Element.Styles)Element.Styles[style].push(style+direction);});Element.borderShort=['borderWidth','borderStyle','borderColor'];Element.getMany=function(el,method,keys){var result={};$each(keys,function(key){result[key]=el[method](key);});return result;};Element.setMany=function(el,method,pairs){for(var key in pairs)el[method](key,pairs[key]);return el;};Element.Properties=new Abstract({'class':'className','for':'htmlFor','colspan':'colSpan','rowspan':'rowSpan','accesskey':'accessKey','tabindex':'tabIndex','maxlength':'maxLength','readonly':'readOnly','frameborder':'frameBorder','value':'value','disabled':'disabled','checked':'checked','multiple':'multiple','selected':'selected'});Element.PropertiesIFlag={'href':2,'src':2};Element.Methods={Listeners:{addListener:function(type,fn){if(this.addEventListener)this.addEventListener(type,fn,false);else this.attachEvent('on'+type,fn);return this;},removeListener:function(type,fn){if(this.removeEventListener)this.removeEventListener(type,fn,false);else this.detachEvent('on'+type,fn);return this;}}};window.extend(Element.Methods.Listeners);document.extend(Element.Methods.Listeners);Element.extend(Element.Methods.Listeners);var Garbage={elements:[],collect:function(el){if(!el.$tmp){Garbage.elements.push(el);el.$tmp={'opacity':1};}
return el;},trash:function(elements){for(var i=0,j=elements.length,el;i<j;i++){if(!(el=elements[i])||!el.$tmp)continue;if(el.$events)el.fireEvent('trash').removeEvents();for(var p in el.$tmp)el.$tmp[p]=null;for(var d in Element.prototype)el[d]=null;Garbage.elements[Garbage.elements.indexOf(el)]=null;el.htmlElement=el.$tmp=el=null;}
Garbage.elements.remove(null);},empty:function(){Garbage.collect(window);Garbage.collect(document);Garbage.trash(Garbage.elements);}};window.addListener('beforeunload',function(){window.addListener('unload',Garbage.empty);if(window.ie)window.addListener('unload',CollectGarbage);});var Event=new Class({initialize:function(event){if(event&&event.$extended)return event;this.$extended=true;event=event||window.event;this.event=event;this.type=event.type;this.target=event.target||event.srcElement;if(this.target.nodeType==3)this.target=this.target.parentNode;this.shift=event.shiftKey;this.control=event.ctrlKey;this.alt=event.altKey;this.meta=event.metaKey;if(['DOMMouseScroll','mousewheel'].contains(this.type)){this.wheel=(event.wheelDelta)?event.wheelDelta/120:-(event.detail||0)/3;}else if(this.type.contains('key')){this.code=event.which||event.keyCode;for(var name in Event.keys){if(Event.keys[name]==this.code){this.key=name;break;}}
if(this.type=='keydown'){var fKey=this.code-111;if(fKey>0&&fKey<13)this.key='f'+fKey;}
this.key=this.key||String.fromCharCode(this.code).toLowerCase();}else if(this.type.test(/(click|mouse|menu)/)){this.page={'x':event.pageX||event.clientX+document.documentElement.scrollLeft,'y':event.pageY||event.clientY+document.documentElement.scrollTop};this.client={'x':event.pageX?event.pageX-window.pageXOffset:event.clientX,'y':event.pageY?event.pageY-window.pageYOffset:event.clientY};this.rightClick=(event.which==3)||(event.button==2);switch(this.type){case'mouseover':this.relatedTarget=event.relatedTarget||event.fromElement;break;case'mouseout':this.relatedTarget=event.relatedTarget||event.toElement;}
this.fixRelatedTarget();}
return this;},stop:function(){return this.stopPropagation().preventDefault();},stopPropagation:function(){if(this.event.stopPropagation)this.event.stopPropagation();else this.event.cancelBubble=true;return this;},preventDefault:function(){if(this.event.preventDefault)this.event.preventDefault();else this.event.returnValue=false;return this;}});Event.fix={relatedTarget:function(){if(this.relatedTarget&&this.relatedTarget.nodeType==3)this.relatedTarget=this.relatedTarget.parentNode;},relatedTargetGecko:function(){try{Event.fix.relatedTarget.call(this);}catch(e){this.relatedTarget=this.target;}}};Event.prototype.fixRelatedTarget=(window.gecko)?Event.fix.relatedTargetGecko:Event.fix.relatedTarget;Event.keys=new Abstract({'enter':13,'up':38,'down':40,'left':37,'right':39,'esc':27,'space':32,'backspace':8,'tab':9,'delete':46});Element.Methods.Events={addEvent:function(type,fn){this.$events=this.$events||{};this.$events[type]=this.$events[type]||{'keys':[],'values':[]};if(this.$events[type].keys.contains(fn))return this;this.$events[type].keys.push(fn);var realType=type;var custom=Element.Events[type];if(custom){if(custom.add)custom.add.call(this,fn);if(custom.map)fn=custom.map;if(custom.type)realType=custom.type;}
if(!this.addEventListener)fn=fn.create({'bind':this,'event':true});this.$events[type].values.push(fn);return(Element.NativeEvents.contains(realType))?this.addListener(realType,fn):this;},removeEvent:function(type,fn){if(!this.$events||!this.$events[type])return this;var pos=this.$events[type].keys.indexOf(fn);if(pos==-1)return this;var key=this.$events[type].keys.splice(pos,1)[0];var value=this.$events[type].values.splice(pos,1)[0];var custom=Element.Events[type];if(custom){if(custom.remove)custom.remove.call(this,fn);if(custom.type)type=custom.type;}
return(Element.NativeEvents.contains(type))?this.removeListener(type,value):this;},addEvents:function(source){return Element.setMany(this,'addEvent',source);},removeEvents:function(type){if(!this.$events)return this;if(!type){for(var evType in this.$events)this.removeEvents(evType);this.$events=null;}else if(this.$events[type]){this.$events[type].keys.each(function(fn){this.removeEvent(type,fn);},this);this.$events[type]=null;}
return this;},fireEvent:function(type,args,delay){if(this.$events&&this.$events[type]){this.$events[type].keys.each(function(fn){fn.create({'bind':this,'delay':delay,'arguments':args})();},this);}
return this;},cloneEvents:function(from,type){if(!from.$events)return this;if(!type){for(var evType in from.$events)this.cloneEvents(from,evType);}else if(from.$events[type]){from.$events[type].keys.each(function(fn){this.addEvent(type,fn);},this);}
return this;}};window.extend(Element.Methods.Events);document.extend(Element.Methods.Events);Element.extend(Element.Methods.Events);Element.Events=new Abstract({'mouseenter':{type:'mouseover',map:function(event){event=new Event(event);if(event.relatedTarget!=this&&!this.hasChild(event.relatedTarget))this.fireEvent('mouseenter',event);}},'mouseleave':{type:'mouseout',map:function(event){event=new Event(event);if(event.relatedTarget!=this&&!this.hasChild(event.relatedTarget))this.fireEvent('mouseleave',event);}},'mousewheel':{type:(window.gecko)?'DOMMouseScroll':'mousewheel'}});Element.NativeEvents=['click','dblclick','mouseup','mousedown','mousewheel','DOMMouseScroll','mouseover','mouseout','mousemove','keydown','keypress','keyup','load','unload','beforeunload','resize','move','focus','blur','change','submit','reset','select','error','abort','contextmenu','scroll'];Function.extend({bindWithEvent:function(bind,args){return this.create({'bind':bind,'arguments':args,'event':Event});}});Elements.extend({filterByTag:function(tag){return new Elements(this.filter(function(el){return(Element.getTag(el)==tag);}));},filterByClass:function(className,nocash){var elements=this.filter(function(el){return(el.className&&el.className.contains(className,' '));});return(nocash)?elements:new Elements(elements);},filterById:function(id,nocash){var elements=this.filter(function(el){return(el.id==id);});return(nocash)?elements:new Elements(elements);},filterByAttribute:function(name,operator,value,nocash){var elements=this.filter(function(el){var current=Element.getProperty(el,name);if(!current)return false;if(!operator)return true;switch(operator){case'=':return(current==value);case'*=':return(current.contains(value));case'^=':return(current.substr(0,value.length)==value);case'$=':return(current.substr(current.length-value.length)==value);case'!=':return(current!=value);case'~=':return current.contains(value,' ');}
return false;});return(nocash)?elements:new Elements(elements);}});function $E(selector,filter){return($(filter)||document).getElement(selector);};function $ES(selector,filter){return($(filter)||document).getElementsBySelector(selector);};$$.shared={'regexp':/^(\w*|\*)(?:#([\w-]+)|\.([\w-]+))?(?:\[(\w+)(?:([!*^$]?=)["']?([^"'\]]*)["']?)?])?$/,'xpath':{getParam:function(items,context,param,i){var temp=[context.namespaceURI?'xhtml:':'',param[1]];if(param[2])temp.push('[@id="',param[2],'"]');if(param[3])temp.push('[contains(concat(" ", @class, " "), " ',param[3],' ")]');if(param[4]){if(param[5]&&param[6]){switch(param[5]){case'*=':temp.push('[contains(@',param[4],', "',param[6],'")]');break;case'^=':temp.push('[starts-with(@',param[4],', "',param[6],'")]');break;case'$=':temp.push('[substring(@',param[4],', string-length(@',param[4],') - ',param[6].length,' + 1) = "',param[6],'"]');break;case'=':temp.push('[@',param[4],'="',param[6],'"]');break;case'!=':temp.push('[@',param[4],'!="',param[6],'"]');}}else{temp.push('[@',param[4],']');}}
items.push(temp.join(''));return items;},getItems:function(items,context,nocash){var elements=[];var xpath=document.evaluate('.//'+items.join('//'),context,$$.shared.resolver,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);for(var i=0,j=xpath.snapshotLength;i<j;i++)elements.push(xpath.snapshotItem(i));return(nocash)?elements:new Elements(elements.map($));}},'normal':{getParam:function(items,context,param,i){if(i==0){if(param[2]){var el=context.getElementById(param[2]);if(!el||((param[1]!='*')&&(Element.getTag(el)!=param[1])))return false;items=[el];}else{items=$A(context.getElementsByTagName(param[1]));}}else{items=$$.shared.getElementsByTagName(items,param[1]);if(param[2])items=Elements.filterById(items,param[2],true);}
if(param[3])items=Elements.filterByClass(items,param[3],true);if(param[4])items=Elements.filterByAttribute(items,param[4],param[5],param[6],true);return items;},getItems:function(items,context,nocash){return(nocash)?items:$$.unique(items);}},resolver:function(prefix){return(prefix=='xhtml')?'http://www.w3.org/1999/xhtml':false;},getElementsByTagName:function(context,tagName){var found=[];for(var i=0,j=context.length;i<j;i++)found.extend(context[i].getElementsByTagName(tagName));return found;}};$$.shared.method=(window.xpath)?'xpath':'normal';Element.Methods.Dom={getElements:function(selector,nocash){var items=[];selector=selector.trim().split(' ');for(var i=0,j=selector.length;i<j;i++){var sel=selector[i];var param=sel.match($$.shared.regexp);if(!param)break;param[1]=param[1]||'*';var temp=$$.shared[$$.shared.method].getParam(items,this,param,i);if(!temp)break;items=temp;}
return $$.shared[$$.shared.method].getItems(items,this,nocash);},getElement:function(selector){return $(this.getElements(selector,true)[0]||false);},getElementsBySelector:function(selector,nocash){var elements=[];selector=selector.split(',');for(var i=0,j=selector.length;i<j;i++)elements=elements.concat(this.getElements(selector[i],true));return(nocash)?elements:$$.unique(elements);}};Element.extend({getElementById:function(id){var el=document.getElementById(id);if(!el)return false;for(var parent=el.parentNode;parent!=this;parent=parent.parentNode){if(!parent)return false;}
return el;},getElementsByClassName:function(className){return this.getElements('.'+className);}});document.extend(Element.Methods.Dom);Element.extend(Element.Methods.Dom);Element.extend({getValue:function(){switch(this.getTag()){case'select':var values=[];$each(this.options,function(option){if(option.selected)values.push($pick(option.value,option.text));});return(this.multiple)?values:values[0];case'input':if(!(this.checked&&['checkbox','radio'].contains(this.type))&&!['hidden','text','password'].contains(this.type))break;case'textarea':return this.value;}
return false;},getFormElements:function(){return $$(this.getElementsByTagName('input'),this.getElementsByTagName('select'),this.getElementsByTagName('textarea'));},toQueryString:function(){var queryString=[];this.getFormElements().each(function(el){var name=el.name;var value=el.getValue();if(value===false||!name||el.disabled)return;var qs=function(val){queryString.push(name+'='+encodeURIComponent(val));};if($type(value)=='array')value.each(qs);else qs(value);});return queryString.join('&');}});Element.extend({scrollTo:function(x,y){this.scrollLeft=x;this.scrollTop=y;},getSize:function(){return{'scroll':{'x':this.scrollLeft,'y':this.scrollTop},'size':{'x':this.offsetWidth,'y':this.offsetHeight},'scrollSize':{'x':this.scrollWidth,'y':this.scrollHeight}};},getPosition:function(overflown){overflown=overflown||[];var el=this,left=0,top=0;do{left+=el.offsetLeft||0;top+=el.offsetTop||0;el=el.offsetParent;}while(el);overflown.each(function(element){left-=element.scrollLeft||0;top-=element.scrollTop||0;});return{'x':left,'y':top};},getTop:function(overflown){return this.getPosition(overflown).y;},getLeft:function(overflown){return this.getPosition(overflown).x;},getCoordinates:function(overflown){var position=this.getPosition(overflown);var obj={'width':this.offsetWidth,'height':this.offsetHeight,'left':position.x,'top':position.y};obj.right=obj.left+obj.width;obj.bottom=obj.top+obj.height;return obj;}});Element.Events.domready={add:function(fn){if(window.loaded){fn.call(this);return;}
var domReady=function(){if(window.loaded)return;window.loaded=true;window.timer=$clear(window.timer);this.fireEvent('domready');}.bind(this);if(document.readyState&&window.webkit){window.timer=function(){if(['loaded','complete'].contains(document.readyState))domReady();}.periodical(50);}else if(document.readyState&&window.ie){if(!$('ie_ready')){var src=(window.location.protocol=='https:')?'://0':'javascript:void(0)';document.write('<script id="ie_ready" defer src="'+src+'"><\/script>');$('ie_ready').onreadystatechange=function(){if(this.readyState=='complete')domReady();};}}else{window.addListener("load",domReady);document.addListener("DOMContentLoaded",domReady);}}};window.onDomReady=function(fn){return this.addEvent('domready',fn);};window.extend({getWidth:function(){if(this.webkit419)return this.innerWidth;if(this.opera)return document.body.clientWidth;return document.documentElement.clientWidth;},getHeight:function(){if(this.webkit419)return this.innerHeight;if(this.opera)return document.body.clientHeight;return document.documentElement.clientHeight;},getScrollWidth:function(){if(this.ie)return Math.max(document.documentElement.offsetWidth,document.documentElement.scrollWidth);if(this.webkit)return document.body.scrollWidth;return document.documentElement.scrollWidth;},getScrollHeight:function(){if(this.ie)return Math.max(document.documentElement.offsetHeight,document.documentElement.scrollHeight);if(this.webkit)return document.body.scrollHeight;return document.documentElement.scrollHeight;},getScrollLeft:function(){return this.pageXOffset||document.documentElement.scrollLeft;},getScrollTop:function(){return this.pageYOffset||document.documentElement.scrollTop;},getSize:function(){return{'size':{'x':this.getWidth(),'y':this.getHeight()},'scrollSize':{'x':this.getScrollWidth(),'y':this.getScrollHeight()},'scroll':{'x':this.getScrollLeft(),'y':this.getScrollTop()}};},getPosition:function(){return{'x':0,'y':0};}});var Fx={};Fx.Base=new Class({options:{onStart:Class.empty,onComplete:Class.empty,onCancel:Class.empty,transition:function(p){return-(Math.cos(Math.PI*p)-1)/2;},duration:500,unit:'px',wait:true,fps:50},initialize:function(options){this.element=this.element||null;this.setOptions(options);if(this.options.initialize)this.options.initialize.call(this);},step:function(){var time=$time();if(time<this.time+this.options.duration){this.delta=this.options.transition((time-this.time)/this.options.duration);this.setNow();this.increase();}else{this.stop(true);this.set(this.to);this.fireEvent('onComplete',this.element,10);this.callChain();}},set:function(to){this.now=to;this.increase();return this;},setNow:function(){this.now=this.compute(this.from,this.to);},compute:function(from,to){return(to-from)*this.delta+from;},start:function(from,to){if(!this.options.wait)this.stop();else if(this.timer)return this;this.from=from;this.to=to;this.change=this.to-this.from;this.time=$time();this.timer=this.step.periodical(Math.round(1000/this.options.fps),this);this.fireEvent('onStart',this.element);return this;},stop:function(end){if(!this.timer)return this;this.timer=$clear(this.timer);if(!end)this.fireEvent('onCancel',this.element);return this;},custom:function(from,to){return this.start(from,to);},clearTimer:function(end){return this.stop(end);}});Fx.Base.implement(new Chain,new Events,new Options);Fx.CSS={select:function(property,to){if(property.test(/color/i))return this.Color;var type=$type(to);if((type=='array')||(type=='string'&&to.contains(' ')))return this.Multi;return this.Single;},parse:function(el,property,fromTo){if(!fromTo.push)fromTo=[fromTo];var from=fromTo[0],to=fromTo[1];if(!$chk(to)){to=from;from=el.getStyle(property);}
var css=this.select(property,to);return{'from':css.parse(from),'to':css.parse(to),'css':css};}};Fx.CSS.Single={parse:function(value){return parseFloat(value);},getNow:function(from,to,fx){return fx.compute(from,to);},getValue:function(value,unit,property){if(unit=='px'&&property!='opacity')value=Math.round(value);return value+unit;}};Fx.CSS.Multi={parse:function(value){return value.push?value:value.split(' ').map(function(v){return parseFloat(v);});},getNow:function(from,to,fx){var now=[];for(var i=0;i<from.length;i++)now[i]=fx.compute(from[i],to[i]);return now;},getValue:function(value,unit,property){if(unit=='px'&&property!='opacity')value=value.map(Math.round);return value.join(unit+' ')+unit;}};Fx.CSS.Color={parse:function(value){return value.push?value:value.hexToRgb(true);},getNow:function(from,to,fx){var now=[];for(var i=0;i<from.length;i++)now[i]=Math.round(fx.compute(from[i],to[i]));return now;},getValue:function(value){return'rgb('+value.join(',')+')';}};Fx.Style=Fx.Base.extend({initialize:function(el,property,options){this.element=$(el);this.property=property;this.parent(options);},hide:function(){return this.set(0);},setNow:function(){this.now=this.css.getNow(this.from,this.to,this);},set:function(to){this.css=Fx.CSS.select(this.property,to);return this.parent(this.css.parse(to));},start:function(from,to){if(this.timer&&this.options.wait)return this;var parsed=Fx.CSS.parse(this.element,this.property,[from,to]);this.css=parsed.css;return this.parent(parsed.from,parsed.to);},increase:function(){this.element.setStyle(this.property,this.css.getValue(this.now,this.options.unit,this.property));}});Element.extend({effect:function(property,options){return new Fx.Style(this,property,options);}});Fx.Styles=Fx.Base.extend({initialize:function(el,options){this.element=$(el);this.parent(options);},setNow:function(){for(var p in this.from)this.now[p]=this.css[p].getNow(this.from[p],this.to[p],this);},set:function(to){var parsed={};this.css={};for(var p in to){this.css[p]=Fx.CSS.select(p,to[p]);parsed[p]=this.css[p].parse(to[p]);}
return this.parent(parsed);},start:function(obj){if(this.timer&&this.options.wait)return this;this.now={};this.css={};var from={},to={};for(var p in obj){var parsed=Fx.CSS.parse(this.element,p,obj[p]);from[p]=parsed.from;to[p]=parsed.to;this.css[p]=parsed.css;}
return this.parent(from,to);},increase:function(){for(var p in this.now)this.element.setStyle(p,this.css[p].getValue(this.now[p],this.options.unit,p));}});Element.extend({effects:function(options){return new Fx.Styles(this,options);}});Fx.Elements=Fx.Base.extend({initialize:function(elements,options){this.elements=$$(elements);this.parent(options);},setNow:function(){for(var i in this.from){var iFrom=this.from[i],iTo=this.to[i],iCss=this.css[i],iNow=this.now[i]={};for(var p in iFrom)iNow[p]=iCss[p].getNow(iFrom[p],iTo[p],this);}},set:function(to){var parsed={};this.css={};for(var i in to){var iTo=to[i],iCss=this.css[i]={},iParsed=parsed[i]={};for(var p in iTo){iCss[p]=Fx.CSS.select(p,iTo[p]);iParsed[p]=iCss[p].parse(iTo[p]);}}
return this.parent(parsed);},start:function(obj){if(this.timer&&this.options.wait)return this;this.now={};this.css={};var from={},to={};for(var i in obj){var iProps=obj[i],iFrom=from[i]={},iTo=to[i]={},iCss=this.css[i]={};for(var p in iProps){var parsed=Fx.CSS.parse(this.elements[i],p,iProps[p]);iFrom[p]=parsed.from;iTo[p]=parsed.to;iCss[p]=parsed.css;}}
return this.parent(from,to);},increase:function(){for(var i in this.now){var iNow=this.now[i],iCss=this.css[i];for(var p in iNow)this.elements[i].setStyle(p,iCss[p].getValue(iNow[p],this.options.unit,p));}}});Fx.Scroll=Fx.Base.extend({options:{overflown:[],offset:{'x':0,'y':0},wheelStops:true},initialize:function(element,options){this.now=[];this.element=$(element);this.bound={'stop':this.stop.bind(this,false)};this.parent(options);if(this.options.wheelStops){this.addEvent('onStart',function(){document.addEvent('mousewheel',this.bound.stop);}.bind(this));this.addEvent('onComplete',function(){document.removeEvent('mousewheel',this.bound.stop);}.bind(this));}},setNow:function(){for(var i=0;i<2;i++)this.now[i]=this.compute(this.from[i],this.to[i]);},scrollTo:function(x,y){if(this.timer&&this.options.wait)return this;var el=this.element.getSize();var values={'x':x,'y':y};for(var z in el.size){var max=el.scrollSize[z]-el.size[z];if($chk(values[z]))values[z]=($type(values[z])=='number')?values[z].limit(0,max):max;else values[z]=el.scroll[z];values[z]+=this.options.offset[z];}
return this.start([el.scroll.x,el.scroll.y],[values.x,values.y]);},toTop:function(){return this.scrollTo(false,0);},toBottom:function(){return this.scrollTo(false,'full');},toLeft:function(){return this.scrollTo(0,false);},toRight:function(){return this.scrollTo('full',false);},toElement:function(el){var parent=this.element.getPosition(this.options.overflown);var target=$(el).getPosition(this.options.overflown);return this.scrollTo(target.x-parent.x,target.y-parent.y);},increase:function(){this.element.scrollTo(this.now[0],this.now[1]);}});Fx.Slide=Fx.Base.extend({options:{mode:'vertical'},initialize:function(el,options){this.element=$(el);this.wrapper=new Element('div',{'styles':$extend(this.element.getStyles('margin'),{'overflow':'hidden'})}).injectAfter(this.element).adopt(this.element);this.element.setStyle('margin',0);this.setOptions(options);this.now=[];this.parent(this.options);this.open=true;this.addEvent('onComplete',function(){this.open=(this.now[0]===0);});if(window.webkit419)this.addEvent('onComplete',function(){if(this.open)this.element.remove().inject(this.wrapper);});},setNow:function(){for(var i=0;i<2;i++)this.now[i]=this.compute(this.from[i],this.to[i]);},vertical:function(){this.margin='margin-top';this.layout='height';this.offset=this.element.offsetHeight;},horizontal:function(){this.margin='margin-left';this.layout='width';this.offset=this.element.offsetWidth;},slideIn:function(mode){this[mode||this.options.mode]();return this.start([this.element.getStyle(this.margin).toInt(),this.wrapper.getStyle(this.layout).toInt()],[0,this.offset]);},slideOut:function(mode){this[mode||this.options.mode]();return this.start([this.element.getStyle(this.margin).toInt(),this.wrapper.getStyle(this.layout).toInt()],[-this.offset,0]);},hide:function(mode){this[mode||this.options.mode]();this.open=false;return this.set([-this.offset,0]);},show:function(mode){this[mode||this.options.mode]();this.open=true;return this.set([0,this.offset]);},toggle:function(mode){if(this.wrapper.offsetHeight==0||this.wrapper.offsetWidth==0)return this.slideIn(mode);return this.slideOut(mode);},increase:function(){this.element.setStyle(this.margin,this.now[0]+this.options.unit);this.wrapper.setStyle(this.layout,this.now[1]+this.options.unit);}});Fx.Transition=function(transition,params){params=params||[];if($type(params)!='array')params=[params];return $extend(transition,{easeIn:function(pos){return transition(pos,params);},easeOut:function(pos){return 1-transition(1-pos,params);},easeInOut:function(pos){return(pos<=0.5)?transition(2*pos,params)/2:(2-transition(2*(1-pos),params))/2;}});};Fx.Transitions=new Abstract({linear:function(p){return p;}});Fx.Transitions.extend=function(transitions){for(var transition in transitions){Fx.Transitions[transition]=new Fx.Transition(transitions[transition]);Fx.Transitions.compat(transition);}};Fx.Transitions.compat=function(transition){['In','Out','InOut'].each(function(easeType){Fx.Transitions[transition.toLowerCase()+easeType]=Fx.Transitions[transition]['ease'+easeType];});};Fx.Transitions.extend({Pow:function(p,x){return Math.pow(p,x[0]||6);},Expo:function(p){return Math.pow(2,8*(p-1));},Circ:function(p){return 1-Math.sin(Math.acos(p));},Sine:function(p){return 1-Math.sin((1-p)*Math.PI/2);},Back:function(p,x){x=x[0]||1.618;return Math.pow(p,2)*((x+1)*p-x);},Bounce:function(p){var value;for(var a=0,b=1;1;a+=b,b/=2){if(p>=(7-4*a)/11){value=-Math.pow((11-6*a-11*p)/4,2)+b*b;break;}}
return value;},Elastic:function(p,x){return Math.pow(2,10*--p)*Math.cos(20*p*Math.PI*(x[0]||1)/3);}});['Quad','Cubic','Quart','Quint'].each(function(transition,i){Fx.Transitions[transition]=new Fx.Transition(function(p){return Math.pow(p,[i+2]);});Fx.Transitions.compat(transition);});var Drag={};Drag.Base=new Class({options:{handle:false,unit:'px',onStart:Class.empty,onBeforeStart:Class.empty,onComplete:Class.empty,onSnap:Class.empty,onDrag:Class.empty,limit:false,modifiers:{x:'left',y:'top'},grid:false,snap:6},initialize:function(el,options){this.setOptions(options);this.element=$(el);this.handle=$(this.options.handle)||this.element;this.mouse={'now':{},'pos':{}};this.value={'start':{},'now':{}};this.bound={'start':this.start.bindWithEvent(this),'check':this.check.bindWithEvent(this),'drag':this.drag.bindWithEvent(this),'stop':this.stop.bind(this)};this.attach();if(this.options.initialize)this.options.initialize.call(this);},attach:function(){this.handle.addEvent('mousedown',this.bound.start);return this;},detach:function(){this.handle.removeEvent('mousedown',this.bound.start);return this;},start:function(event){this.fireEvent('onBeforeStart',this.element);this.mouse.start=event.page;var limit=this.options.limit;this.limit={'x':[],'y':[]};for(var z in this.options.modifiers){if(!this.options.modifiers[z])continue;this.value.now[z]=this.element.getStyle(this.options.modifiers[z]).toInt();this.mouse.pos[z]=event.page[z]-this.value.now[z];if(limit&&limit[z]){for(var i=0;i<2;i++){if($chk(limit[z][i]))this.limit[z][i]=($type(limit[z][i])=='function')?limit[z][i]():limit[z][i];}}}
if($type(this.options.grid)=='number')this.options.grid={'x':this.options.grid,'y':this.options.grid};document.addListener('mousemove',this.bound.check);document.addListener('mouseup',this.bound.stop);this.fireEvent('onStart',this.element);event.stop();},check:function(event){var distance=Math.round(Math.sqrt(Math.pow(event.page.x-this.mouse.start.x,2)+Math.pow(event.page.y-this.mouse.start.y,2)));if(distance>this.options.snap){document.removeListener('mousemove',this.bound.check);document.addListener('mousemove',this.bound.drag);this.drag(event);this.fireEvent('onSnap',this.element);}
event.stop();},drag:function(event){this.out=false;this.mouse.now=event.page;for(var z in this.options.modifiers){if(!this.options.modifiers[z])continue;this.value.now[z]=this.mouse.now[z]-this.mouse.pos[z];if(this.limit[z]){if($chk(this.limit[z][1])&&(this.value.now[z]>this.limit[z][1])){this.value.now[z]=this.limit[z][1];this.out=true;}else if($chk(this.limit[z][0])&&(this.value.now[z]<this.limit[z][0])){this.value.now[z]=this.limit[z][0];this.out=true;}}
if(this.options.grid[z])this.value.now[z]-=(this.value.now[z]%this.options.grid[z]);this.element.setStyle(this.options.modifiers[z],this.value.now[z]+this.options.unit);}
this.fireEvent('onDrag',this.element);event.stop();},stop:function(){document.removeListener('mousemove',this.bound.check);document.removeListener('mousemove',this.bound.drag);document.removeListener('mouseup',this.bound.stop);this.fireEvent('onComplete',this.element);}});Drag.Base.implement(new Events,new Options);Element.extend({makeResizable:function(options){return new Drag.Base(this,$merge({modifiers:{x:'width',y:'height'}},options));}});Drag.Move=Drag.Base.extend({options:{droppables:[],container:false,overflown:[]},initialize:function(el,options){this.setOptions(options);this.element=$(el);this.droppables=$$(this.options.droppables);this.container=$(this.options.container);this.position={'element':this.element.getStyle('position'),'container':false};if(this.container)this.position.container=this.container.getStyle('position');if(!['relative','absolute','fixed'].contains(this.position.element))this.position.element='absolute';var top=this.element.getStyle('top').toInt();var left=this.element.getStyle('left').toInt();if(this.position.element=='absolute'&&!['relative','absolute','fixed'].contains(this.position.container)){top=$chk(top)?top:this.element.getTop(this.options.overflown);left=$chk(left)?left:this.element.getLeft(this.options.overflown);}else{top=$chk(top)?top:0;left=$chk(left)?left:0;}
this.element.setStyles({'top':top,'left':left,'position':this.position.element});this.parent(this.element);},start:function(event){this.overed=null;if(this.container){var cont=this.container.getCoordinates();var el=this.element.getCoordinates();if(this.position.element=='absolute'&&!['relative','absolute','fixed'].contains(this.position.container)){this.options.limit={'x':[cont.left,cont.right-el.width],'y':[cont.top,cont.bottom-el.height]};}else{this.options.limit={'y':[0,cont.height-el.height],'x':[0,cont.width-el.width]};}}
this.parent(event);},drag:function(event){this.parent(event);var overed=this.out?false:this.droppables.filter(this.checkAgainst,this).getLast();if(this.overed!=overed){if(this.overed)this.overed.fireEvent('leave',[this.element,this]);this.overed=overed?overed.fireEvent('over',[this.element,this]):null;}
return this;},checkAgainst:function(el){el=el.getCoordinates(this.options.overflown);var now=this.mouse.now;return(now.x>el.left&&now.x<el.right&&now.y<el.bottom&&now.y>el.top);},stop:function(){if(this.overed&&!this.out)this.overed.fireEvent('drop',[this.element,this]);else this.element.fireEvent('emptydrop',this);this.parent();return this;}});Element.extend({makeDraggable:function(options){return new Drag.Move(this,options);}});var XHR=new Class({options:{method:'post',async:true,onRequest:Class.empty,onSuccess:Class.empty,onFailure:Class.empty,urlEncoded:true,encoding:'utf-8',autoCancel:false,headers:{}},setTransport:function(){this.transport=(window.XMLHttpRequest)?new XMLHttpRequest():(window.ie?new ActiveXObject('Microsoft.XMLHTTP'):false);return this;},initialize:function(options){this.setTransport().setOptions(options);this.options.isSuccess=this.options.isSuccess||this.isSuccess;this.headers={};if(this.options.urlEncoded&&this.options.method=='post'){var encoding=(this.options.encoding)?'; charset='+this.options.encoding:'';this.setHeader('Content-type','application/x-www-form-urlencoded'+encoding);}
if(this.options.initialize)this.options.initialize.call(this);},onStateChange:function(){if(this.transport.readyState!=4||!this.running)return;this.running=false;var status=0;try{status=this.transport.status;}catch(e){};if(this.options.isSuccess.call(this,status))this.onSuccess();else this.onFailure();this.transport.onreadystatechange=Class.empty;},isSuccess:function(status){return((status>=200)&&(status<300));},onSuccess:function(){this.response={'text':this.transport.responseText,'xml':this.transport.responseXML};this.fireEvent('onSuccess',[this.response.text,this.response.xml]);this.callChain();},onFailure:function(){this.fireEvent('onFailure',this.transport);},setHeader:function(name,value){this.headers[name]=value;return this;},send:function(url,data){if(this.options.autoCancel)this.cancel();else if(this.running)return this;this.running=true;if(data&&this.options.method=='get'){url=url+(url.contains('?')?'&':'?')+data;data=null;}
this.transport.open(this.options.method.toUpperCase(),url,this.options.async);this.transport.onreadystatechange=this.onStateChange.bind(this);if((this.options.method=='post')&&this.transport.overrideMimeType)this.setHeader('Connection','close');$extend(this.headers,this.options.headers);for(var type in this.headers)try{this.transport.setRequestHeader(type,this.headers[type]);}catch(e){};this.fireEvent('onRequest');this.transport.send($pick(data,null));return this;},cancel:function(){if(!this.running)return this;this.running=false;this.transport.abort();this.transport.onreadystatechange=Class.empty;this.setTransport();this.fireEvent('onCancel');return this;}});XHR.implement(new Chain,new Events,new Options);var Ajax=XHR.extend({options:{data:null,update:null,onComplete:Class.empty,evalScripts:false,evalResponse:false},initialize:function(url,options){this.addEvent('onSuccess',this.onComplete);this.setOptions(options);this.options.data=this.options.data||this.options.postBody;if(!['post','get'].contains(this.options.method)){this._method='_method='+this.options.method;this.options.method='post';}
this.parent();this.setHeader('X-Requested-With','XMLHttpRequest');this.setHeader('Accept','text/javascript, text/html, application/xml, text/xml, */*');this.url=url;},onComplete:function(){if(this.options.update)$(this.options.update).empty().setHTML(this.response.text);if(this.options.evalScripts||this.options.evalResponse)this.evalScripts();this.fireEvent('onComplete',[this.response.text,this.response.xml],20);},request:function(data){data=data||this.options.data;switch($type(data)){case'element':data=$(data).toQueryString();break;case'object':data=Object.toQueryString(data);}
if(this._method)data=(data)?[this._method,data].join('&'):this._method;return this.send(this.url,data);},evalScripts:function(){var script,scripts;if(this.options.evalResponse||(/(ecma|java)script/).test(this.getHeader('Content-type')))scripts=this.response.text;else{scripts=[];var regexp=/<script[^>]*>([\s\S]*?)<\/script>/gi;while((script=regexp.exec(this.response.text)))scripts.push(script[1]);scripts=scripts.join('\n');}
if(scripts)(window.execScript)?window.execScript(scripts):window.setTimeout(scripts,0);},getHeader:function(name){try{return this.transport.getResponseHeader(name);}catch(e){};return null;}});Object.toQueryString=function(source){var queryString=[];for(var property in source)queryString.push(encodeURIComponent(property)+'='+encodeURIComponent(source[property]));return queryString.join('&');};Element.extend({send:function(options){return new Ajax(this.getProperty('action'),$merge({data:this.toQueryString()},options,{method:'post'})).request();}});var Cookie=new Abstract({options:{domain:false,path:false,duration:false,secure:false},set:function(key,value,options){options=$merge(this.options,options);value=encodeURIComponent(value);if(options.domain)value+='; domain='+options.domain;if(options.path)value+='; path='+options.path;if(options.duration){var date=new Date();date.setTime(date.getTime()+options.duration*24*60*60*1000);value+='; expires='+date.toGMTString();}
if(options.secure)value+='; secure';document.cookie=key+'='+value;return $extend(options,{'key':key,'value':value});},get:function(key){var value=document.cookie.match('(?:^|;)\\s*'+key.escapeRegExp()+'=([^;]*)');return value?decodeURIComponent(value[1]):false;},remove:function(cookie,options){if($type(cookie)=='object')this.set(cookie.key,'',$merge(cookie,{duration:-1}));else this.set(cookie,'',$merge(options,{duration:-1}));}});var Json={toString:function(obj){switch($type(obj)){case'string':return'"'+obj.replace(/(["\\])/g,'\\$1')+'"';case'array':return'['+obj.map(Json.toString).join(',')+']';case'object':var string=[];for(var property in obj)string.push(Json.toString(property)+':'+Json.toString(obj[property]));return'{'+string.join(',')+'}';case'number':if(isFinite(obj))break;case false:return'null';}
return String(obj);},evaluate:function(str,secure){return(($type(str)!='string')||(secure&&!str.test(/^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/)))?null:eval('('+str+')');}};Json.Remote=XHR.extend({initialize:function(url,options){this.url=url;this.addEvent('onSuccess',this.onComplete);this.parent(options);this.setHeader('X-Request','JSON');},send:function(obj){return this.parent(this.url,'json='+Json.toString(obj));},onComplete:function(){this.fireEvent('onComplete',[Json.evaluate(this.response.text,this.options.secure)]);}});var Asset=new Abstract({javascript:function(source,properties){properties=$merge({'onload':Class.empty},properties);var script=new Element('script',{'src':source}).addEvents({'load':properties.onload,'readystatechange':function(){if(this.readyState=='complete')this.fireEvent('load');}});delete properties.onload;return script.setProperties(properties).inject(document.head);},css:function(source,properties){return new Element('link',$merge({'rel':'stylesheet','media':'screen','type':'text/css','href':source},properties)).inject(document.head);},image:function(source,properties){properties=$merge({'onload':Class.empty,'onabort':Class.empty,'onerror':Class.empty},properties);var image=new Image();image.src=source;var element=new Element('img',{'src':source});['load','abort','error'].each(function(type){var event=properties['on'+type];delete properties['on'+type];element.addEvent(type,function(){this.removeEvent(type,arguments.callee);event.call(this);});});if(image.width&&image.height)element.fireEvent('load',element,1);return element.setProperties(properties);},images:function(sources,options){options=$merge({onComplete:Class.empty,onProgress:Class.empty},options);if(!sources.push)sources=[sources];var images=[];var counter=0;sources.each(function(source){var img=new Asset.image(source,{'onload':function(){options.onProgress.call(this,counter);counter++;if(counter==sources.length)options.onComplete();}});images.push(img);});return new Elements(images);}});var Hash=new Class({length:0,initialize:function(object){this.obj=object||{};this.setLength();},get:function(key){return(this.hasKey(key))?this.obj[key]:null;},hasKey:function(key){return(key in this.obj);},set:function(key,value){if(!this.hasKey(key))this.length++;this.obj[key]=value;return this;},setLength:function(){this.length=0;for(var p in this.obj)this.length++;return this;},remove:function(key){if(this.hasKey(key)){delete this.obj[key];this.length--;}
return this;},each:function(fn,bind){$each(this.obj,fn,bind);},extend:function(obj){$extend(this.obj,obj);return this.setLength();},merge:function(){this.obj=$merge.apply(null,[this.obj].extend(arguments));return this.setLength();},empty:function(){this.obj={};this.length=0;return this;},keys:function(){var keys=[];for(var property in this.obj)keys.push(property);return keys;},values:function(){var values=[];for(var property in this.obj)values.push(this.obj[property]);return values;}});function $H(obj){return new Hash(obj);};Hash.Cookie=Hash.extend({initialize:function(name,options){this.name=name;this.options=$extend({'autoSave':true},options||{});this.load();},save:function(){if(this.length==0){Cookie.remove(this.name,this.options);return true;}
var str=Json.toString(this.obj);if(str.length>4096)return false;Cookie.set(this.name,str,this.options);return true;},load:function(){this.obj=Json.evaluate(Cookie.get(this.name),true)||{};this.setLength();}});Hash.Cookie.Methods={};['extend','set','merge','empty','remove'].each(function(method){Hash.Cookie.Methods[method]=function(){Hash.prototype[method].apply(this,arguments);if(this.options.autoSave)this.save();return this;};});Hash.Cookie.implement(Hash.Cookie.Methods);var Color=new Class({initialize:function(color,type){type=type||(color.push?'rgb':'hex');var rgb,hsb;switch(type){case'rgb':rgb=color;hsb=rgb.rgbToHsb();break;case'hsb':rgb=color.hsbToRgb();hsb=color;break;default:rgb=color.hexToRgb(true);hsb=rgb.rgbToHsb();}
rgb.hsb=hsb;rgb.hex=rgb.rgbToHex();return $extend(rgb,Color.prototype);},mix:function(){var colors=$A(arguments);var alpha=($type(colors[colors.length-1])=='number')?colors.pop():50;var rgb=this.copy();colors.each(function(color){color=new Color(color);for(var i=0;i<3;i++)rgb[i]=Math.round((rgb[i]/100*(100-alpha))+(color[i]/100*alpha));});return new Color(rgb,'rgb');},invert:function(){return new Color(this.map(function(value){return 255-value;}));},setHue:function(value){return new Color([value,this.hsb[1],this.hsb[2]],'hsb');},setSaturation:function(percent){return new Color([this.hsb[0],percent,this.hsb[2]],'hsb');},setBrightness:function(percent){return new Color([this.hsb[0],this.hsb[1],percent],'hsb');}});function $RGB(r,g,b){return new Color([r,g,b],'rgb');};function $HSB(h,s,b){return new Color([h,s,b],'hsb');};Array.extend({rgbToHsb:function(){var red=this[0],green=this[1],blue=this[2];var hue,saturation,brightness;var max=Math.max(red,green,blue),min=Math.min(red,green,blue);var delta=max-min;brightness=max/255;saturation=(max!=0)?delta/max:0;if(saturation==0){hue=0;}else{var rr=(max-red)/delta;var gr=(max-green)/delta;var br=(max-blue)/delta;if(red==max)hue=br-gr;else if(green==max)hue=2+rr-br;else hue=4+gr-rr;hue/=6;if(hue<0)hue++;}
return[Math.round(hue*360),Math.round(saturation*100),Math.round(brightness*100)];},hsbToRgb:function(){var br=Math.round(this[2]/100*255);if(this[1]==0){return[br,br,br];}else{var hue=this[0]%360;var f=hue%60;var p=Math.round((this[2]*(100-this[1]))/10000*255);var q=Math.round((this[2]*(6000-this[1]*f))/600000*255);var t=Math.round((this[2]*(6000-this[1]*(60-f)))/600000*255);switch(Math.floor(hue/60)){case 0:return[br,t,p];case 1:return[q,br,p];case 2:return[p,br,t];case 3:return[p,q,br];case 4:return[t,p,br];case 5:return[br,p,q];}}
return false;}});var Scroller=new Class({options:{area:20,velocity:1,onChange:function(x,y){this.element.scrollTo(x,y);}},initialize:function(element,options){this.setOptions(options);this.element=$(element);this.mousemover=([window,document].contains(element))?$(document.body):this.element;},start:function(){this.coord=this.getCoords.bindWithEvent(this);this.mousemover.addListener('mousemove',this.coord);},stop:function(){this.mousemover.removeListener('mousemove',this.coord);this.timer=$clear(this.timer);},getCoords:function(event){this.page=(this.element==window)?event.client:event.page;if(!this.timer)this.timer=this.scroll.periodical(50,this);},scroll:function(){var el=this.element.getSize();var pos=this.element.getPosition();var change={'x':0,'y':0};for(var z in this.page){if(this.page[z]<(this.options.area+pos[z])&&el.scroll[z]!=0)
change[z]=(this.page[z]-this.options.area-pos[z])*this.options.velocity;else if(this.page[z]+this.options.area>(el.size[z]+pos[z])&&el.scroll[z]+el.size[z]!=el.scrollSize[z])
change[z]=(this.page[z]-el.size[z]+this.options.area-pos[z])*this.options.velocity;}
if(change.y||change.x)this.fireEvent('onChange',[el.scroll.x+change.x,el.scroll.y+change.y]);}});Scroller.implement(new Events,new Options);var Slider=new Class({options:{onChange:Class.empty,onComplete:Class.empty,onTick:function(pos){this.knob.setStyle(this.p,pos);},mode:'horizontal',steps:100,offset:0},initialize:function(el,knob,options){this.element=$(el);this.knob=$(knob);this.setOptions(options);this.previousChange=-1;this.previousEnd=-1;this.step=-1;this.element.addEvent('mousedown',this.clickedElement.bindWithEvent(this));var mod,offset;switch(this.options.mode){case'horizontal':this.z='x';this.p='left';mod={'x':'left','y':false};offset='offsetWidth';break;case'vertical':this.z='y';this.p='top';mod={'x':false,'y':'top'};offset='offsetHeight';}
this.max=this.element[offset]-this.knob[offset]+(this.options.offset*2);this.half=this.knob[offset]/2;this.getPos=this.element['get'+this.p.capitalize()].bind(this.element);this.knob.setStyle('position','relative').setStyle(this.p,-this.options.offset);var lim={};lim[this.z]=[-this.options.offset,this.max-this.options.offset];this.drag=new Drag.Base(this.knob,{limit:lim,modifiers:mod,snap:0,onStart:function(){this.draggedKnob();}.bind(this),onDrag:function(){this.draggedKnob();}.bind(this),onComplete:function(){this.draggedKnob();this.end();}.bind(this)});if(this.options.initialize)this.options.initialize.call(this);},set:function(step){this.step=step.limit(0,this.options.steps);this.checkStep();this.end();this.fireEvent('onTick',this.toPosition(this.step));return this;},clickedElement:function(event){var position=event.page[this.z]-this.getPos()-this.half;position=position.limit(-this.options.offset,this.max-this.options.offset);this.step=this.toStep(position);this.checkStep();this.end();this.fireEvent('onTick',position);},draggedKnob:function(){this.step=this.toStep(this.drag.value.now[this.z]);this.checkStep();},checkStep:function(){if(this.previousChange!=this.step){this.previousChange=this.step;this.fireEvent('onChange',this.step);}},end:function(){if(this.previousEnd!==this.step){this.previousEnd=this.step;this.fireEvent('onComplete',this.step+'');}},toStep:function(position){return Math.round((position+this.options.offset)/this.max*this.options.steps);},toPosition:function(step){return this.max*step/this.options.steps;}});Slider.implement(new Events);Slider.implement(new Options);var SmoothScroll=Fx.Scroll.extend({initialize:function(options){this.parent(window,options);this.links=(this.options.links)?$$(this.options.links):$$(document.links);var location=window.location.href.match(/^[^#]*/)[0]+'#';this.links.each(function(link){if(link.href.indexOf(location)!=0)return;var anchor=link.href.substr(location.length);if(anchor&&$(anchor))this.useLink(link,anchor);},this);if(!window.webkit419)this.addEvent('onComplete',function(){window.location.hash=this.anchor;});},useLink:function(link,anchor){link.addEvent('click',function(event){this.anchor=anchor;this.toElement(anchor);event.stop();}.bindWithEvent(this));}});var Sortables=new Class({options:{handles:false,onStart:Class.empty,onComplete:Class.empty,ghost:true,snap:3,onDragStart:function(element,ghost){ghost.setStyle('opacity',0.7);element.setStyle('opacity',0.7);},onDragComplete:function(element,ghost){element.setStyle('opacity',1);ghost.remove();this.trash.remove();}},initialize:function(list,options){this.setOptions(options);this.list=$(list);this.elements=this.list.getChildren();this.handles=(this.options.handles)?$$(this.options.handles):this.elements;this.bound={'start':[],'moveGhost':this.moveGhost.bindWithEvent(this)};for(var i=0,l=this.handles.length;i<l;i++){this.bound.start[i]=this.start.bindWithEvent(this,this.elements[i]);}
this.attach();if(this.options.initialize)this.options.initialize.call(this);this.bound.move=this.move.bindWithEvent(this);this.bound.end=this.end.bind(this);},attach:function(){this.handles.each(function(handle,i){handle.addEvent('mousedown',this.bound.start[i]);},this);},detach:function(){this.handles.each(function(handle,i){handle.removeEvent('mousedown',this.bound.start[i]);},this);},start:function(event,el){this.active=el;this.coordinates=this.list.getCoordinates();if(this.options.ghost){var position=el.getPosition();this.offset=event.page.y-position.y;this.trash=new Element('div').inject(document.body);this.ghost=el.clone().inject(this.trash).setStyles({'position':'absolute','left':position.x,'top':event.page.y-this.offset});document.addListener('mousemove',this.bound.moveGhost);this.fireEvent('onDragStart',[el,this.ghost]);}
document.addListener('mousemove',this.bound.move);document.addListener('mouseup',this.bound.end);this.fireEvent('onStart',el);event.stop();},moveGhost:function(event){var value=event.page.y-this.offset;value=value.limit(this.coordinates.top,this.coordinates.bottom-this.ghost.offsetHeight);this.ghost.setStyle('top',value);event.stop();},move:function(event){var now=event.page.y;this.previous=this.previous||now;var up=((this.previous-now)>0);var prev=this.active.getPrevious();var next=this.active.getNext();if(prev&&up&&now<prev.getCoordinates().bottom)this.active.injectBefore(prev);if(next&&!up&&now>next.getCoordinates().top)this.active.injectAfter(next);this.previous=now;},serialize:function(converter){return this.list.getChildren().map(converter||function(el){return this.elements.indexOf(el);},this);},end:function(){this.previous=null;document.removeListener('mousemove',this.bound.move);document.removeListener('mouseup',this.bound.end);if(this.options.ghost){document.removeListener('mousemove',this.bound.moveGhost);this.fireEvent('onDragComplete',[this.active,this.ghost]);}
this.fireEvent('onComplete',this.active);}});Sortables.implement(new Events,new Options);var Tips=new Class({options:{onShow:function(tip){tip.setStyle('visibility','visible');},onHide:function(tip){tip.setStyle('visibility','hidden');},maxTitleChars:30,showDelay:100,hideDelay:100,className:'tool',offsets:{'x':16,'y':16},fixed:false},initialize:function(elements,options){this.setOptions(options);this.toolTip=new Element('div',{'class':this.options.className+'-tip','styles':{'position':'absolute','top':'0','left':'0','visibility':'hidden'}}).inject(document.body);this.wrapper=new Element('div').inject(this.toolTip);$$(elements).each(this.build,this);if(this.options.initialize)this.options.initialize.call(this);},build:function(el){el.$tmp.myTitle=(el.href&&el.getTag()=='a')?el.href.replace('http://',''):(el.rel||false);if(el.title){var dual=el.title.split('::');if(dual.length>1){el.$tmp.myTitle=dual[0].trim();el.$tmp.myText=dual[1].trim();}else{el.$tmp.myText=el.title;}
el.removeAttribute('title');}else{el.$tmp.myText=false;}
if(el.$tmp.myTitle&&el.$tmp.myTitle.length>this.options.maxTitleChars)el.$tmp.myTitle=el.$tmp.myTitle.substr(0,this.options.maxTitleChars-1)+"&hellip;";el.addEvent('mouseenter',function(event){this.start(el);if(!this.options.fixed)this.locate(event);else this.position(el);}.bind(this));if(!this.options.fixed)el.addEvent('mousemove',this.locate.bindWithEvent(this));var end=this.end.bind(this);el.addEvent('mouseleave',end);el.addEvent('trash',end);},start:function(el){this.wrapper.empty();if(el.$tmp.myTitle){this.title=new Element('span').inject(new Element('div',{'class':this.options.className+'-title'}).inject(this.wrapper)).setHTML(el.$tmp.myTitle);}
if(el.$tmp.myText){this.text=new Element('span').inject(new Element('div',{'class':this.options.className+'-text'}).inject(this.wrapper)).setHTML(el.$tmp.myText);}
$clear(this.timer);this.timer=this.show.delay(this.options.showDelay,this);},end:function(event){$clear(this.timer);this.timer=this.hide.delay(this.options.hideDelay,this);},position:function(element){var pos=element.getPosition();this.toolTip.setStyles({'left':pos.x+this.options.offsets.x,'top':pos.y+this.options.offsets.y});},locate:function(event){var win={'x':window.getWidth(),'y':window.getHeight()};var scroll={'x':window.getScrollLeft(),'y':window.getScrollTop()};var tip={'x':this.toolTip.offsetWidth,'y':this.toolTip.offsetHeight};var prop={'x':'left','y':'top'};for(var z in prop){var pos=event.page[z]+this.options.offsets[z];if((pos+tip[z]-scroll[z])>win[z])pos=event.page[z]-this.options.offsets[z]-tip[z];this.toolTip.setStyle(prop[z],pos);};},show:function(){if(this.options.timeout)this.timer=this.hide.delay(this.options.timeout,this);this.fireEvent('onShow',[this.toolTip]);},hide:function(){this.fireEvent('onHide',[this.toolTip]);}});Tips.implement(new Events,new Options);var Group=new Class({initialize:function(){this.instances=$A(arguments);this.events={};this.checker={};},addEvent:function(type,fn){this.checker[type]=this.checker[type]||{};this.events[type]=this.events[type]||[];if(this.events[type].contains(fn))return false;else this.events[type].push(fn);this.instances.each(function(instance,i){instance.addEvent(type,this.check.bind(this,[type,instance,i]));},this);return this;},check:function(type,instance,i){this.checker[type][i]=true;var every=this.instances.every(function(current,j){return this.checker[type][j]||false;},this);if(!every)return;this.checker[type]={};this.events[type].each(function(event){event.call(this,this.instances,instance);},this);}});var Accordion=Fx.Elements.extend({options:{onActive:Class.empty,onBackground:Class.empty,display:0,show:false,height:true,width:false,opacity:true,fixedHeight:false,fixedWidth:false,wait:false,alwaysHide:false},initialize:function(){var options,togglers,elements,container;$each(arguments,function(argument,i){switch($type(argument)){case'object':options=argument;break;case'element':container=$(argument);break;default:var temp=$$(argument);if(!togglers)togglers=temp;else elements=temp;}});this.togglers=togglers||[];this.elements=elements||[];this.container=$(container);this.setOptions(options);this.previous=-1;if(this.options.alwaysHide)this.options.wait=true;if($chk(this.options.show)){this.options.display=false;this.previous=this.options.show;}
if(this.options.start){this.options.display=false;this.options.show=false;}
this.effects={};if(this.options.opacity)this.effects.opacity='fullOpacity';if(this.options.width)this.effects.width=this.options.fixedWidth?'fullWidth':'offsetWidth';if(this.options.height)this.effects.height=this.options.fixedHeight?'fullHeight':'scrollHeight';for(var i=0,l=this.togglers.length;i<l;i++)this.addSection(this.togglers[i],this.elements[i]);this.elements.each(function(el,i){if(this.options.show===i){this.fireEvent('onActive',[this.togglers[i],el]);}else{for(var fx in this.effects)el.setStyle(fx,0);}},this);this.parent(this.elements);if($chk(this.options.display))this.display(this.options.display);},addSection:function(toggler,element,pos){toggler=$(toggler);element=$(element);var test=this.togglers.contains(toggler);var len=this.togglers.length;this.togglers.include(toggler);this.elements.include(element);if(len&&(!test||pos)){pos=$pick(pos,len-1);toggler.injectBefore(this.togglers[pos]);element.injectAfter(toggler);}else if(this.container&&!test){toggler.inject(this.container);element.inject(this.container);}
var idx=this.togglers.indexOf(toggler);toggler.addEvent('click',this.display.bind(this,idx));if(this.options.height)element.setStyles({'padding-top':0,'border-top':'none','padding-bottom':0,'border-bottom':'none'});if(this.options.width)element.setStyles({'padding-left':0,'border-left':'none','padding-right':0,'border-right':'none'});element.fullOpacity=1;if(this.options.fixedWidth)element.fullWidth=this.options.fixedWidth;if(this.options.fixedHeight)element.fullHeight=this.options.fixedHeight;element.setStyle('overflow','hidden');if(!test){for(var fx in this.effects)element.setStyle(fx,0);}
return this;},display:function(index){index=($type(index)=='element')?this.elements.indexOf(index):index;if((this.timer&&this.options.wait)||(index===this.previous&&!this.options.alwaysHide))return this;this.previous=index;var obj={};this.elements.each(function(el,i){obj[i]={};var hide=(i!=index)||(this.options.alwaysHide&&(el.offsetHeight>0));this.fireEvent(hide?'onBackground':'onActive',[this.togglers[i],el]);for(var fx in this.effects)obj[i][fx]=hide?0:el[this.effects[fx]];},this);return this.start(obj);},showThisHideOpen:function(index){return this.display(index);}});Fx.Accordion=Accordion;

/* cufon-yui.js */

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("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.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}})());

/* Gothic821CnEU_400.font.js */

Cufon.registerFont({"w":180,"face":{"font-family":"Gothic821CnEU","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-51 -347 360 106.758","underline-thickness":"40.68","underline-position":"2.88","unicode-range":"U+0020-U+F6C2"},"glyphs":{" ":{"w":80},"\uf001":{"d":"123,-263v24,3,44,-8,40,23v3,25,-7,23,-29,23v-25,0,-24,-2,-25,-27v0,-16,1,-18,14,-19xm109,-173v-7,-31,9,-33,39,-33v16,0,16,9,15,24r0,165v3,25,-21,17,-44,17v-9,0,-11,-4,-10,-16r0,-157xm73,-263v27,-5,18,19,20,40v1,20,-31,-1,-23,28v12,0,24,-3,23,11v-1,19,7,44,-20,39r0,130v2,24,-20,16,-41,16v-12,0,-11,-4,-11,-18r0,-127v-21,4,-14,-22,-14,-39v0,-10,5,-13,14,-12v-2,-45,1,-73,52,-68","w":177},"\uf002":{"d":"109,-247v-1,-23,22,-14,43,-16v7,0,11,4,11,12r0,234v5,26,-19,17,-43,17v-11,0,-11,-5,-11,-18r0,-229xm73,-263v27,-5,18,19,20,40v1,20,-31,-1,-23,28v12,0,24,-3,23,11v-1,19,7,44,-20,39r0,130v2,24,-20,16,-41,16v-12,0,-11,-4,-11,-18r0,-127v-21,4,-14,-22,-14,-39v0,-10,5,-13,14,-12v-2,-45,1,-73,52,-68","w":177},"!":{"d":"55,-80v-15,0,-35,6,-31,-13r-10,-158v0,-17,31,-11,48,-11v13,0,16,6,15,18r-10,151v-2,11,-1,13,-12,13xm74,-51v-2,19,10,52,-13,51v-17,-1,-46,8,-44,-13v2,-19,-10,-52,13,-51v17,1,46,-8,44,13","w":90},"\"":{"d":"105,-154r-34,0r0,-99r34,0r0,99xm48,-154r-34,0r0,-99r34,0r0,99","w":119},"#":{"d":"269,-184r-13,35r-49,0r-15,42r51,0r-13,36r-51,0r-26,73r-39,0r26,-73r-42,0r-27,73r-38,0r25,-73r-50,0r13,-36r50,0r15,-42r-53,0r13,-35r53,0r26,-73r38,0r-25,73r42,0r26,-73r39,0r-26,73r50,0xm168,-149r-43,0r-16,42r44,0","w":276},"$":{"d":"78,-187v14,41,71,51,69,110v-2,44,-16,66,-54,74v-2,10,5,29,-6,30v-8,-1,-22,4,-24,-4r0,-24v-27,-2,-53,3,-52,-24v0,-20,-7,-51,16,-50v10,7,51,23,53,-2v-4,-18,-24,-31,-38,-41v-47,-36,-40,-132,21,-139v2,-9,-5,-25,5,-26v9,1,24,-4,25,5r0,19v22,0,44,-4,41,22v-2,17,6,45,-13,43v-14,-2,-42,-10,-43,7","w":160},"%":{"d":"170,-261v6,-11,34,-2,26,13r-129,246v-7,14,-27,3,-30,-7xm182,-138v46,-2,46,38,46,85v0,42,-10,59,-48,59v-41,0,-44,-28,-44,-79v0,-46,7,-63,46,-65xm54,-265v46,0,47,31,46,86v-1,39,-10,57,-47,57v-43,0,-46,-28,-45,-79v1,-44,7,-64,46,-64xm62,-165r0,-57v0,-6,-2,-9,-8,-9v-6,0,-8,3,-8,9r0,57v0,6,2,10,8,10v6,0,8,-4,8,-10xm190,-37r0,-57v0,-6,-2,-9,-8,-9v-6,0,-8,3,-8,9r0,57v0,6,2,10,8,10v6,0,8,-4,8,-10","w":236},"&":{"d":"128,-103v8,-20,-7,-37,38,-37v10,0,15,3,15,11v-1,28,-13,60,-25,78v7,14,17,25,21,41v-1,19,-30,5,-47,10v-4,0,-9,-5,-12,-14v-44,42,-118,1,-112,-63v3,-39,18,-56,42,-77v-36,-46,-12,-110,45,-108v70,3,69,83,18,123xm108,-206v0,-11,-5,-17,-15,-17v-26,0,-17,30,-3,49v12,-14,18,-25,18,-32xm70,-108v-29,20,-5,77,28,54","w":188},"'":{"d":"48,-154r-34,0r0,-99r34,0r0,99","w":61},"(":{"d":"12,-116v-1,-72,19,-142,75,-148v19,2,14,48,6,63v-20,18,-20,23,-20,77v0,52,0,76,20,93v11,9,3,33,5,50v0,8,-3,13,-11,13v-60,-13,-74,-72,-75,-148","w":103},")":{"d":"15,-263v62,0,73,71,75,147v1,72,-19,148,-75,148v-21,0,-9,-34,-11,-52v-1,-11,8,-13,13,-18v18,-25,21,-152,-7,-163v-11,-9,-4,-33,-6,-50v0,-8,4,-12,11,-12","w":103},"*":{"d":"75,-205v1,-21,-17,-60,14,-58v33,2,17,27,13,57v17,-9,49,-39,54,0v-6,18,-14,12,-42,23v14,9,34,12,41,27v-12,29,-22,28,-54,-3v-2,14,22,56,-11,56v-29,0,-12,-36,-14,-56v-11,7,-25,20,-37,23v-12,-2,-26,-38,0,-36r28,-9v-17,-9,-37,-8,-44,-25v0,-8,10,-24,19,-23"},"+":{"d":"255,-90r-87,0r0,90r-36,0r0,-90r-87,0r0,-35r87,0r0,-90r36,0r0,90r87,0r0,35","w":299},",":{"d":"32,0v-31,7,-20,-28,-21,-53v-1,-17,30,-9,46,-11v28,16,12,106,-33,97v-10,-1,-6,-4,-2,-13","w":79},"-":{"d":"90,-81r-80,0r0,-47r80,0r0,47","w":100,"k":{"\u015a":-5,"\u00d8":-5,"\u00d3":-5,"\u0106":-5,"Y":24,"X":11,"W":5,"V":11,"T":18,"S":-5,"O":-5,"J":-11,"G":-5,"C":-5}},".":{"d":"69,-51v-2,20,10,53,-14,51v-17,-1,-46,8,-44,-13v2,-19,-10,-52,13,-51v18,1,47,-8,45,13","w":79},"\/":{"d":"75,-274v4,-15,39,-5,30,9r-84,291v-4,15,-18,7,-28,4v-5,-1,-6,-7,-4,-13","w":100},"0":{"d":"81,-264v76,-2,68,72,70,163v1,65,-16,105,-73,105v-70,0,-68,-61,-68,-149v0,-73,7,-118,71,-119xm92,-77r0,-106v0,-17,-4,-25,-13,-25v-9,0,-13,8,-13,24r0,110v0,13,5,19,14,19v8,0,12,-7,12,-22","w":160},"1":{"d":"121,-22v5,32,-27,20,-50,22v-23,-31,-2,-123,-9,-188v-9,8,-15,34,-31,21v-6,-8,-26,-15,-16,-27r56,-67v19,3,50,-11,50,15r0,224","w":160},"2":{"d":"81,-264v44,-1,65,33,65,79v0,40,-19,81,-56,125v21,3,58,-12,54,18v-2,19,8,42,-16,42r-103,0v-18,-3,-16,-49,-3,-60v33,-28,70,-85,67,-119v5,-29,-25,-41,-25,-7v0,14,4,31,-11,30v-23,-1,-42,6,-39,-25v4,-54,15,-82,67,-83","w":160},"3":{"d":"54,-168v14,4,29,-6,29,-20v0,-10,-8,-20,-19,-19v-15,-2,-21,27,-34,9v-7,-10,-19,-15,-21,-29v-3,-17,49,-37,67,-37v63,0,88,87,39,117v60,28,30,159,-44,150v-17,-2,-77,-13,-65,-42v10,-11,13,-32,29,-36v6,-2,21,17,29,15v14,0,21,-9,21,-25v0,-25,-11,-30,-34,-28v-19,1,-8,-28,-12,-43v0,-8,5,-12,15,-12","w":160},"4":{"d":"17,-56v-19,1,-11,-35,-8,-51r68,-148v8,-10,30,-5,46,-6v6,0,9,4,9,12r0,138v26,-7,20,21,20,43v0,12,-9,13,-20,12v-4,21,12,60,-17,56v-17,-3,-42,9,-42,-14r0,-42r-56,0xm76,-111r0,-64r-27,64r27,0","w":160},"5":{"d":"119,-261v27,-5,19,23,20,44v-4,17,-40,6,-59,9v-6,0,-8,4,-8,15v-1,10,6,11,16,10v40,0,60,29,60,87v0,56,-28,100,-79,100v-20,0,-79,-19,-62,-45v8,-12,12,-36,28,-36v11,0,15,18,28,18v16,0,23,-13,23,-38v0,-38,-32,-40,-49,-24v-12,-1,-20,-9,-16,-25r0,-93v1,-42,64,-15,98,-22","w":160},"6":{"d":"75,-167v51,-22,75,9,75,84v0,58,-23,87,-69,87v-47,0,-71,-36,-71,-109v0,-106,33,-159,99,-159v34,0,33,18,33,49v0,19,-18,10,-30,9v-22,-3,-41,17,-37,39xm69,-84v-1,21,1,32,13,34v13,2,14,-17,13,-32v-1,-25,3,-37,-14,-40v-15,3,-11,17,-12,38","w":160},"7":{"d":"128,-261v23,-5,14,17,17,34v-15,52,-47,142,-46,214v-1,24,-34,10,-54,13v-11,1,-15,-4,-14,-16v0,-28,18,-91,54,-190v-31,-5,-79,17,-68,-27v1,-23,-3,-28,17,-28r94,0","w":160},"8":{"d":"86,-263v66,0,84,86,38,123v55,36,32,153,-46,143v-74,6,-97,-111,-38,-142v-48,-39,-28,-124,46,-124xm84,-173v14,-9,20,-43,-3,-44v-24,2,-17,37,3,44xm80,-55v26,0,17,-53,1,-59v-19,8,-26,57,-1,59","w":160},"9":{"d":"86,-90v-51,15,-76,-8,-76,-86v0,-58,23,-87,69,-87v47,0,71,38,71,114v0,102,-33,154,-99,154v-35,0,-33,-18,-33,-49v0,-19,17,-9,30,-9v23,0,35,-12,38,-37xm78,-137v15,-2,13,-13,13,-34v0,-23,1,-35,-15,-37v-13,-1,-12,19,-12,34v1,23,-2,35,14,37","w":160},":":{"d":"74,-167v-2,19,10,52,-13,51v-17,-1,-46,8,-44,-13v2,-19,-9,-51,13,-51v17,0,46,-8,44,13xm74,-51v-2,19,10,52,-13,51v-17,-1,-46,8,-44,-13v2,-19,-10,-52,13,-51v17,1,46,-8,44,13","w":90},";":{"d":"74,-167v-2,19,10,52,-13,51v-17,-1,-46,8,-44,-13v2,-19,-9,-51,13,-51v17,0,46,-8,44,13xm37,0v-31,8,-18,-27,-20,-53v-1,-17,29,-9,45,-11v28,16,12,106,-33,97v-16,-4,8,-24,8,-33","w":90},"<":{"d":"253,-5r-207,-85r0,-35r207,-85r0,39r-157,64r157,64r0,38","w":299},"=":{"d":"255,-128r-210,0r0,-35r210,0r0,35xm255,-52r-210,0r0,-35r210,0r0,35","w":299},">":{"d":"253,-90r-207,85r0,-38r158,-64r-158,-64r0,-39r207,85r0,35","w":299},"?":{"d":"39,-184v0,-17,-10,-18,-21,-14v-8,0,-12,-13,-12,-38v0,-19,12,-28,37,-28v38,0,58,18,58,54v0,38,-34,71,-25,118v4,18,-21,10,-36,12v-23,-7,-7,-87,-1,-104xm84,-51v-2,20,10,53,-14,51v-17,-1,-46,8,-44,-13v2,-19,-10,-52,13,-51v18,1,47,-7,45,13","w":116},"@":{"d":"196,-260v84,0,148,51,149,126v1,58,-41,113,-102,115v-25,0,-38,-10,-38,-29v-26,47,-117,37,-109,-31v-8,-68,81,-135,126,-76r10,-17r31,0r-27,112v0,8,6,12,17,12v37,0,60,-49,59,-87v0,-60,-53,-96,-117,-96v-81,0,-147,58,-147,139v0,119,157,151,240,85r14,21v-100,83,-286,32,-286,-105v0,-100,81,-169,180,-169xm183,-152v-29,0,-49,40,-49,74v0,37,34,40,54,22v16,-15,19,-43,26,-67v-3,-19,-13,-29,-31,-29","w":360},"A":{"d":"111,0v-23,0,-3,-49,-30,-45v-39,-6,-3,48,-37,45v-30,-2,-61,7,-42,-36r40,-216v10,-14,51,-8,69,-3v22,71,31,152,48,241v4,20,-29,14,-48,14xm65,-110v7,14,34,9,26,-10r-11,-75r-3,0","w":157,"k":{"\u201e":-5,"\u201a":-5,"\u201d":15,"\u201c":22,"\u2019":15,"\u2018":22,"\u0104":-5,"Y":18,"T":17,"A":-5,";":-5,":":-5,".":-5,",":-5}},"B":{"d":"127,-143v22,10,26,31,27,65v3,74,-48,83,-121,78v-33,6,-21,-33,-21,-68r-1,-178v3,-23,53,-13,82,-13v39,0,58,20,58,62v0,30,-8,48,-24,54xm96,-188v5,-20,-23,-28,-28,-13v2,12,-6,36,7,36v14,0,21,-8,21,-23xm99,-82v0,-18,-7,-28,-20,-28v-19,-1,-12,26,-12,42v0,10,4,15,12,15v13,0,20,-10,20,-29","w":164,"k":{"Y":5,"W":5,"V":5,"-":-5}},"C":{"d":"71,-129v0,47,-5,68,39,68v15,0,11,27,11,43v0,15,-8,19,-25,19v-80,-1,-88,-46,-88,-135v0,-87,11,-121,91,-125v28,-1,19,24,21,48v0,12,-5,15,-16,16v-36,2,-33,23,-33,66","w":127,"k":{"\u015a":-5,"S":-5,"-":-7}},"D":{"d":"30,-259v104,0,135,31,131,145v-4,111,-38,115,-133,115v-29,0,-17,-39,-17,-67r-1,-177v0,-11,7,-16,20,-16xm80,-54v27,-1,19,-40,19,-74v0,-45,5,-65,-21,-72v-16,-1,-10,23,-11,39r0,90v0,11,5,17,13,17","w":171,"k":{"Y":5,"V":5,"-":-5}},"E":{"d":"82,-61v26,-1,54,-7,48,27v8,58,-52,27,-104,34v-28,4,-14,-37,-14,-58r0,-184v3,-34,61,-11,96,-17v23,-4,18,19,19,40v2,26,-24,18,-47,18v-9,0,-12,8,-11,19v-8,43,69,-14,56,51v2,30,-21,24,-44,23v-17,-2,-11,19,-11,33v0,12,1,15,12,14","w":135},"F":{"d":"26,-259v48,6,108,-25,98,35v2,28,-14,20,-42,22v-15,0,-14,3,-14,20v0,28,20,17,44,17v14,0,7,24,10,39v7,40,-54,-2,-53,38r1,75v0,23,-30,9,-51,14v-14,1,-7,-21,-8,-32r-1,-211v1,-11,4,-18,16,-17","w":127,"k":{"\u201e":27,"\u201a":27,"\u201d":-5,"\u201c":-5,"\u2019":-5,"\u2018":-5,"\u0104":5,"\u00c5":5,"y":-5,"r":-5,"i":-5,"T":-5,"A":5,".":45,"-":-5,",":45}},"G":{"d":"111,-166v26,-1,45,-3,45,25r0,114v-1,31,-22,31,-52,31v-64,0,-98,-55,-98,-126v0,-74,34,-136,103,-137v29,0,42,2,44,26v4,37,-9,42,-37,34v-32,0,-49,22,-49,67v0,49,10,73,28,73v13,0,11,-25,11,-40v-3,-11,-22,-10,-20,-29v3,-29,-1,-37,25,-38","w":166,"k":{"\u0104":-5,"\u00c5":-5,"Y":8,"A":-5}},"H":{"d":"97,-182v1,-43,-19,-86,39,-77v32,5,17,47,17,86r0,153v1,24,-21,21,-42,20v-30,-2,-14,-58,-13,-87v0,-8,-4,-13,-11,-13v-31,1,-14,51,-18,79v5,30,-33,21,-53,19v-11,-52,-1,-161,-4,-236v-1,-24,11,-19,32,-21v46,-4,21,50,24,84v0,12,5,17,14,17v10,0,15,-8,15,-24","w":164},"I":{"d":"32,-259v26,1,38,-6,38,27r0,211v2,24,-15,21,-36,21v-23,0,-22,-1,-23,-24r1,-219v-1,-16,3,-16,20,-16","w":81},"J":{"d":"44,-259v27,0,51,-6,43,32r0,159v-1,47,-3,67,-43,71v-44,4,-38,-15,-39,-48v0,-10,10,-12,18,-13v11,-2,5,-46,5,-71r0,-113v0,-14,2,-17,16,-17","w":100},"K":{"d":"32,-259v19,1,35,-5,35,19r-1,70r5,0r22,-83v6,-11,31,-6,46,-6v21,0,14,8,8,24r-33,85v1,14,37,113,43,143v-4,13,-44,7,-59,4v-12,-29,-18,-72,-27,-105r-4,0r0,88v7,29,-39,22,-53,15v-6,-60,0,-164,-3,-239v0,-14,6,-15,21,-15","w":156,"k":{"\u00ab":11,"\u2039":11,"\u201e":-5,"\u201a":-5,"\u015b":5,"\u00f8":5,"\u00f3":5,"\u0119":5,"s":5,"o":5,"e":5,"Y":8,"W":5,"U":8,"T":5,"-":11}},"L":{"d":"84,-59v27,-7,32,11,30,40v-3,34,-56,12,-89,20v-26,-5,-14,-63,-14,-94r0,-142v-6,-33,21,-21,47,-25v21,2,10,42,10,68v0,20,-13,135,16,133","w":123,"k":{"\u00ab":11,"\u2039":11,"\u201d":32,"\u201c":27,"\u2019":32,"\u2018":27,"\u015b":5,"\u00f8":5,"\u00f3":5,"\u0119":5,"\u015a":11,"\u00d8":11,"\u00d3":11,"s":5,"o":5,"e":5,"Y":32,"W":20,"V":27,"U":11,"T":24,"S":11,"O":11,"-":11}},"M":{"d":"142,-259v24,3,61,-12,54,23r0,215v2,30,-21,19,-43,21v-9,0,-13,-7,-13,-19r-2,-119r-5,0v-10,47,-19,71,-27,71v-18,-13,-19,-34,-33,-71r-4,0r-1,126v2,20,-25,12,-42,12v-9,0,-14,-7,-14,-21r0,-225v1,-22,47,-14,66,-9v12,25,16,65,25,95r4,0r21,-86v2,-9,7,-13,14,-13","w":208},"N":{"d":"129,-259v22,0,45,-5,39,22r0,207v8,39,-32,32,-59,27v-15,-33,-25,-81,-37,-119r-7,0r0,100v3,25,-15,22,-36,22v-18,-1,-18,-3,-18,-24r0,-209v-5,-33,24,-25,50,-26v7,0,12,3,14,9v4,16,15,53,33,113r7,0r1,-101v0,-14,0,-21,13,-21"},"O":{"d":"96,-264v63,0,76,44,76,113v0,112,-1,155,-86,155v-68,0,-76,-49,-77,-131v-1,-84,10,-137,87,-137xm89,-58v35,0,19,-75,19,-117v0,-18,-5,-28,-17,-28v-31,7,-18,74,-18,110v0,21,2,35,16,35","w":181,"k":{"\u201c":-5,"\u2018":-5,"Y":8,"X":5,".":9,"-":-5,",":9}},"P":{"d":"16,-240v0,-33,51,-16,76,-21v49,0,74,32,74,95v0,56,-24,104,-77,99v-45,-4,16,76,-43,66v-50,11,-29,-50,-29,-106xm85,-124v18,0,22,-15,21,-39v0,-26,0,-43,-21,-44v-19,-2,-16,26,-17,44v-1,22,1,39,17,39","w":178,"k":{"\u00bb":5,"\u00ab":11,"\u203a":5,"\u2039":11,"\u201e":43,"\u201a":43,"\u201d":-5,"\u201c":-5,"\u2019":-5,"\u2018":-5,"\u015b":5,"\u00f8":5,"\u00f3":5,"\u0107":12,"\u0105":12,"\u0104":13,"\u00c5":13,"s":5,"o":5,"c":12,"a":12,"Y":7,"A":13,".":62,"-":13,",":62}},"Q":{"d":"165,-59v13,4,27,15,21,47v-4,23,-31,8,-45,0v-15,11,-33,16,-56,16v-71,0,-75,-52,-75,-149v1,-76,15,-117,85,-119v87,-3,77,96,75,184v0,8,-4,17,-5,21xm72,-90v-2,24,3,35,24,31v-11,-9,-15,-23,-1,-26v5,0,9,2,14,7r0,-97v0,-18,-6,-28,-18,-28v-35,0,-15,76,-19,113","w":186},"R":{"d":"166,-171v0,42,-3,67,-27,80r35,82v-6,17,-69,18,-69,-10r-27,-72r-7,0r0,76v1,23,-25,15,-44,15v-14,0,-13,-7,-14,-23r0,-214v-1,-40,46,-23,88,-23v54,0,64,31,65,89xm88,-131v13,0,20,-11,20,-24v-1,-34,2,-48,-22,-51v-20,-3,-17,27,-15,45v1,22,-1,29,17,30","w":185,"k":{"\u00bb":5,"\u00ab":5,"\u203a":5,"\u2039":5,"\u015b":8,"\u00f8":8,"\u00f3":8,"\u0119":5,"\u0107":8,"\u0105":8,"u":5,"s":8,"o":8,"e":5,"c":8,"a":8,"Y":5,"-":5}},"S":{"d":"130,-211v2,42,-52,-9,-55,28v13,38,67,56,67,109v0,52,-26,78,-77,78v-29,0,-53,3,-53,-25v1,-20,-6,-49,16,-47v11,5,51,20,50,-7v-1,-20,-24,-32,-36,-43v-50,-46,-39,-142,51,-142v42,0,35,11,37,49","w":155},"T":{"d":"18,-258v47,8,118,-21,115,21v-1,27,3,40,-24,38v-11,0,-13,4,-13,14r2,170v2,22,-26,14,-44,16v-20,2,-17,-15,-16,-34r1,-159v-2,-13,-16,-4,-31,-10v-6,-2,-16,-61,10,-56","w":141,"k":{"\u00bb":17,"\u00ab":22,"\u203a":17,"\u2039":22,"\u201e":19,"\u201a":19,"\u015b":26,"\u00f8":26,"\u00f3":26,"\u0119":26,"\u0107":23,"\u0105":23,"\u0106":5,"\u0104":17,"\u00c5":17,"y":5,"u":11,"s":26,"r":9,"o":26,"e":26,"c":23,"a":23,"T":-7,"C":5,"A":17,";":22,":":22,".":24,"-":18,",":24}},"U":{"d":"107,-239v-3,-27,24,-19,46,-20v9,0,13,7,13,19v-7,103,35,244,-84,244v-106,0,-62,-141,-72,-238v-3,-32,18,-24,43,-25v15,0,15,5,16,20r0,158v0,17,6,24,19,24v13,0,19,-6,19,-19r0,-163","w":177},"V":{"d":"162,-253r-39,234v-4,34,-37,12,-68,19v-17,-10,-11,-14,-18,-53r-37,-198v2,-15,35,-7,52,-9v7,0,11,2,12,6v4,11,8,72,15,182r5,0v6,-64,5,-132,18,-183v9,-9,53,-8,60,2","w":161,"k":{"\u00bb":5,"\u00ab":11,"\u203a":5,"\u2039":11,"\u201e":17,"\u201a":17,"\u201d":-5,"\u2019":-5,"\u015b":7,"\u00f8":7,"\u00f3":7,"\u0119":5,"\u0107":9,"\u0105":9,"y":-5,"s":7,"o":7,"i":-5,"e":5,"c":9,"a":9,";":5,":":5,".":17,"-":11,",":17}},"W":{"d":"191,-259v27,0,56,-8,40,29r-43,225v-5,10,-24,1,-35,6v-16,-2,-15,-10,-20,-30r-13,-71r-4,0v-6,31,-7,69,-18,96v-9,6,-44,7,-52,-2r-44,-247v5,-9,50,-11,59,0v8,42,11,98,17,144r4,0r16,-61r-14,-79v1,-19,28,-7,46,-11v13,0,13,8,14,21r10,130r4,0r16,-135v0,-10,5,-15,17,-15","w":235,"k":{"\u201e":17,"\u201a":17,"\u201d":-5,"\u201c":-5,"\u2019":-5,"\u2018":-5,"\u015b":8,"\u00f8":8,"\u00f3":8,"\u0119":8,"\u0107":8,"\u0105":8,"y":-5,"s":8,"o":8,"i":-5,"e":8,"c":8,"a":8,";":5,":":5,".":19,"-":5,",":19}},"X":{"d":"95,-248v3,-22,31,-5,52,-11v14,3,9,9,4,24r-36,100r46,130v0,4,-4,5,-13,5v-20,0,-46,10,-52,-12r-16,-62r-3,0r-14,63v-4,19,-33,7,-54,11v-14,2,-10,-8,-7,-19r41,-116r-38,-116v1,-15,29,-8,48,-8v8,0,12,4,14,12r13,58r4,0","w":161,"k":{"\u201c":5,"\u2018":5,"\u0119":5,"\u015a":5,"\u00d8":5,"\u00d3":5,"\u0106":5,"e":5,"S":5,"O":5,"C":5,"-":11}},"Y":{"d":"101,-256v20,-8,72,-9,54,20v-20,69,-45,129,-45,224v0,18,-31,10,-51,12v-25,-10,-2,-77,-14,-115r-44,-134v1,-17,30,-7,50,-10v9,-1,14,4,15,14r12,83r3,0v7,-30,6,-71,20,-94","w":156,"k":{"\u00bb":27,"\u00ab":27,"\u203a":27,"\u2039":27,"\u201e":27,"\u201a":27,"\u201d":-5,"\u2019":-5,"\u015b":13,"\u00f8":13,"\u00f3":13,"\u0119":17,"\u0107":19,"\u0105":19,"\u015a":8,"\u00d8":8,"\u00d3":8,"\u0106":5,"\u0104":18,"\u00c5":18,"u":5,"s":13,"o":13,"i":-5,"e":17,"c":19,"a":19,"S":8,"O":8,"C":5,"A":18,";":12,":":12,".":27,"-":24,",":27}},"Z":{"d":"125,-258v20,-3,16,31,9,49r-59,147v16,2,37,1,54,1v17,0,6,28,9,44v-6,37,-72,7,-121,18v-15,0,-9,-29,-10,-44v10,-51,46,-107,61,-154v-13,-13,-71,15,-58,-37v-1,-16,2,-24,20,-24r95,0","w":146,"k":{"\u00ab":5,"\u2039":5,"-":11}},"[":{"d":"91,-245v-1,16,6,41,-14,37v-5,0,-7,4,-7,13r0,162v-2,16,23,6,21,20v-3,16,10,42,-12,42r-55,0v-11,0,-10,-3,-10,-15r0,-252v-5,-35,39,-21,65,-21v8,0,12,4,12,14","w":103},"\\":{"d":"109,17v5,15,-11,16,-23,18v-4,0,-7,-3,-9,-9r-86,-296v3,-9,28,-17,32,-4","w":100},"]":{"d":"24,-259v24,4,64,-14,64,19r0,254v4,30,-43,9,-64,15v-22,1,-9,-26,-12,-42v-2,-14,20,-4,20,-20r0,-162v3,-22,-22,-5,-20,-24v1,-16,-5,-42,12,-40","w":103},"^":{"d":"287,-158r-42,0r-65,-65r-66,65r-41,0r85,-99r44,0","w":360},"_":{"d":"180,85r-180,0r0,-36r180,0r0,36"},"`":{"d":"116,-225v0,9,-29,6,-37,2v-11,-11,-25,-21,-35,-33v10,-6,43,-5,55,1"},"a":{"d":"8,-70v-3,-49,29,-91,73,-71v11,-9,2,-27,-17,-25v-14,-1,-39,19,-41,-5v-4,-40,22,-39,53,-39v44,0,59,12,60,53r0,145v3,21,-25,9,-41,12v-11,-1,-9,-2,-10,-13v-29,39,-86,-3,-77,-57xm72,-44v19,1,13,-25,13,-42v0,-12,-4,-18,-12,-18v-17,-2,-14,25,-14,42v0,12,4,18,13,18","w":148},"b":{"d":"66,-201v53,-30,75,28,75,96v0,74,-26,135,-77,92v2,20,-18,11,-35,13v-21,3,-16,-20,-15,-36r0,-208v-5,-25,16,-15,37,-17v28,-3,10,38,15,60xm77,-53v24,0,10,-52,13,-77v2,-16,0,-23,-13,-24v-23,4,-13,53,-13,80v0,14,4,21,13,21","w":152},"c":{"d":"79,-62v24,-3,14,31,14,50v0,9,-5,14,-16,14v-60,-2,-68,-34,-68,-102v0,-74,5,-106,68,-110v24,-1,18,39,12,56v-23,4,-27,15,-26,49v1,27,-2,40,16,43","w":102},"d":{"d":"101,-261v20,2,43,-8,38,17r0,230v2,19,-21,13,-37,14v-11,0,-13,-2,-14,-13v-9,10,-19,15,-31,15v-44,0,-43,-49,-46,-107v-3,-69,20,-126,75,-96v4,-21,-13,-63,15,-60xm63,-131v2,26,-10,74,12,78v23,-3,13,-51,13,-75v0,-17,1,-27,-13,-27v-12,0,-13,8,-12,24","w":152},"e":{"d":"75,-210v49,0,65,30,63,99v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-3,33,45,30,61,17v18,-1,13,24,13,41v0,23,-25,23,-49,23v-63,0,-79,-40,-79,-108v0,-63,13,-105,68,-105xm68,-125v11,0,23,3,20,-11v3,-31,-28,-36,-28,-6v1,11,0,17,8,17","w":146},"f":{"d":"59,-263v17,2,37,-6,34,14v-2,16,6,42,-15,36v-8,0,-7,10,-7,18v11,1,24,-3,22,11v-2,19,8,45,-19,39r0,130v2,24,-19,16,-40,16v-12,0,-11,-4,-11,-18r0,-127v-22,4,-14,-23,-14,-40v0,-10,5,-12,14,-11v-2,-36,-2,-70,36,-68","w":100,"k":{"\u201d":-8,"\u201c":-11,"\u2019":-8,"\u2018":-11,"y":-5,"w":-5,"t":5,".":5,",":5}},"g":{"d":"84,-44v-44,33,-74,-18,-74,-76v0,-74,32,-111,74,-77v-2,-20,24,-8,45,-11v7,0,6,11,6,19r0,156v4,49,-32,62,-71,63v-38,1,-41,-1,-43,-33v-2,-33,22,-11,39,-11v19,0,26,-10,24,-30xm74,-83v19,0,12,-34,12,-54v0,-13,-6,-19,-13,-19v-12,0,-14,15,-14,35v0,22,1,38,15,38","w":148},"h":{"d":"105,-210v69,2,37,115,44,181v3,27,-7,30,-31,29v-20,0,-23,-1,-23,-20r0,-94v10,-40,-29,-56,-28,-12r2,110v3,23,-24,16,-43,16v-11,0,-14,-4,-13,-19r-1,-220v-2,-27,20,-21,43,-22v10,0,15,4,12,11v2,18,-3,44,3,58v9,-12,21,-18,35,-18","w":163},"i":{"d":"27,-263v25,0,47,-8,42,23v2,24,-8,23,-30,23v-25,-1,-27,-1,-27,-26v0,-14,1,-20,15,-20xm31,-205v15,0,38,-7,38,10r0,178v3,26,-22,17,-47,17v-9,0,-9,-5,-10,-16r0,-173v0,-14,4,-16,19,-16","w":82},"j":{"d":"34,-263v24,0,46,-7,42,23v2,24,-10,23,-32,23v-25,0,-25,-2,-25,-27v0,-15,1,-19,15,-19xm38,-206v15,3,37,-7,37,11r0,173v0,37,-10,50,-46,52v-35,2,-27,-19,-28,-50v0,-20,18,0,18,-28r-1,-141v1,-14,5,-17,20,-17","w":88},"k":{"d":"94,-199v10,-12,56,-12,54,5v0,9,-11,38,-32,86r36,101v-3,13,-31,7,-45,7v-7,0,-13,-6,-16,-18r-18,-64r-6,0r0,65v5,26,-18,17,-42,17v-10,0,-10,-5,-10,-18r-1,-228v-1,-23,21,-15,42,-17v13,-1,11,12,11,24r0,103r5,0v10,-20,16,-41,22,-63","w":157},"l":{"d":"14,-230v-8,-33,14,-35,43,-33v7,0,11,4,11,12r0,234v4,26,-20,15,-44,17v-11,-1,-10,-5,-10,-20r0,-210","w":82},"m":{"d":"187,-210v68,3,36,115,43,181v3,27,-7,30,-31,29v-19,-1,-22,-1,-22,-20r0,-94v-1,-23,2,-36,-13,-39v-10,0,-15,9,-15,25r0,99v3,27,-7,30,-31,29v-20,0,-23,-1,-23,-20r0,-94v10,-40,-29,-56,-28,-12r2,110v3,23,-24,16,-43,16v-11,0,-14,-4,-13,-19r-1,-167v-2,-28,20,-19,43,-21v14,-1,11,6,15,15v19,-27,61,-22,77,5v12,-15,25,-23,40,-23","w":244},"n":{"d":"105,-210v69,2,37,115,44,181v3,27,-7,30,-31,29v-20,0,-23,-1,-23,-20r0,-94v10,-40,-29,-56,-28,-12r2,110v3,23,-24,16,-43,16v-11,0,-14,-4,-13,-19r-1,-167v-2,-28,20,-19,43,-21v14,-1,11,6,15,15v9,-12,21,-18,35,-18","w":162},"o":{"d":"76,-210v53,0,63,34,63,96v1,86,-5,117,-66,117v-57,0,-62,-41,-63,-107v-1,-76,10,-106,66,-106xm87,-131v5,-27,-25,-33,-25,-6r0,68v0,11,4,16,12,16v25,0,8,-53,13,-78","w":149},"p":{"d":"95,-208v45,4,43,49,46,106v3,69,-22,125,-75,94v-2,18,7,43,-15,40v-19,-2,-42,7,-37,-17r-1,-209v-3,-19,22,-13,38,-13v10,0,13,2,13,13v10,-10,20,-14,31,-14xm77,-53v23,-3,9,-50,13,-74v6,-30,-29,-40,-26,-7v2,27,-11,78,13,81","w":151},"q":{"d":"101,-207v21,0,38,-5,38,25r-1,197v4,25,-18,15,-37,17v-23,4,-14,-22,-16,-40v-51,32,-75,-27,-75,-94v0,-72,25,-133,78,-92v0,-11,3,-12,13,-13xm75,-53v25,-4,13,-54,13,-81v0,-14,-4,-20,-13,-20v-24,0,-13,51,-13,77v0,16,1,23,13,24","w":150,"k":{"\u00ff":-5}},"r":{"d":"34,-207v21,0,34,-4,29,21r3,1v5,-17,11,-26,19,-26v18,0,10,49,10,70v-11,7,-27,5,-27,27r1,96v4,27,-23,18,-43,18v-12,0,-14,-5,-13,-19r-1,-166v1,-20,3,-22,22,-22","w":103,"k":{"\u00ab":5,"\u2039":5,"\u201e":11,"\u201a":11,"\u201d":-5,"\u201c":-8,"\u2019":-5,"\u2018":-8,"\u017c":-5,"\u017a":-5,"z":-5,"y":-5,"x":-5,"w":-5,"v":-5,"f":-5,".":27,"-":5,",":27}},"s":{"d":"65,-146v13,27,49,49,47,85v-2,40,-24,64,-64,65v-44,1,-37,-13,-40,-46v-4,-37,66,11,41,-39v-20,-15,-41,-41,-41,-69v0,-35,24,-60,58,-60v37,0,38,7,38,39v0,30,-39,-1,-39,25","w":119},"t":{"d":"76,-196v23,-4,19,16,19,36v-1,15,-2,15,-19,16r0,78v1,16,23,0,18,22v1,25,5,51,-30,44v-43,1,-40,-7,-43,-51v-2,-30,4,-67,-2,-93v-16,0,-17,-4,-17,-21v0,-22,-1,-31,19,-31v-1,-33,-8,-62,43,-52v21,0,9,34,12,52","w":102},"u":{"d":"110,-207v19,0,38,-6,38,19r0,167v3,29,-20,20,-43,22v-14,1,-10,-8,-15,-16v-32,37,-78,16,-78,-52r0,-111v-3,-28,7,-30,31,-29v17,2,22,1,22,20r0,95v-8,40,30,54,29,11r-2,-110v0,-14,4,-16,18,-16","w":162},"v":{"d":"139,-197r-38,193v-15,5,-70,15,-68,-14r-33,-181v4,-12,64,-18,56,11r12,125r3,0v7,-46,6,-100,18,-141v10,-3,49,-10,50,7","w":140,"k":{".":19,",":19}},"w":{"d":"89,-207v20,2,41,-7,37,20r6,110r7,0r13,-124v5,-9,46,-11,50,2r-33,197v-17,1,-62,13,-59,-15r-6,-55r-5,0r-10,63v-2,17,-41,8,-56,6v-9,-19,-21,-134,-29,-194v-1,-13,36,-12,49,-5r16,125r6,0r9,-46r-8,-72v0,-7,5,-12,13,-12","w":204,"k":{"\u201e":11,"\u201a":11,"\u201c":-5,"\u2018":-5,".":13,",":13}},"x":{"d":"142,-24v5,12,5,25,-11,24v-20,-2,-40,5,-44,-16r-10,-50r-4,0v-10,23,2,66,-32,66v-19,0,-46,7,-34,-22r38,-89v-12,-30,-30,-55,-39,-88v3,-12,50,-12,59,-2r10,51r4,0v8,-19,-1,-57,24,-57v22,0,50,-8,37,24r-29,71","w":150},"y":{"d":"84,-197v0,-16,24,-10,39,-10v14,0,16,8,13,21r-36,169v-8,32,-18,49,-54,50v-43,1,-38,-13,-38,-46v0,-29,32,6,25,-25r-32,-158v0,-17,28,-11,44,-11v10,0,9,4,10,15r12,129r7,0","w":138,"k":{"\u201e":11,"\u201a":11,"\u201c":-5,"\u2018":-5,".":20,",":20}},"z":{"d":"68,-61v18,11,53,-12,43,40v7,28,-26,19,-41,20v-26,-4,-73,19,-66,-25v8,-49,29,-81,44,-126v-14,-11,-50,12,-42,-38v5,-33,56,-10,93,-17v17,4,7,49,0,60","w":114},"{":{"d":"80,-93v78,4,-8,142,75,129r0,37v-56,-1,-81,-2,-81,-60v0,-46,8,-95,-46,-88r0,-37v49,9,49,-40,46,-88v-3,-56,27,-61,81,-60r0,37v-79,-17,1,127,-75,130"},"|":{"d":"108,85r-36,0r0,-360r36,0r0,360"},"}":{"d":"106,-200v-2,46,-5,98,47,88r0,37v-53,-7,-50,40,-47,88v3,57,-28,60,-81,60r0,-37v80,17,0,-125,75,-129v-42,-4,-36,-49,-36,-95v0,-31,-11,-36,-39,-35r0,-37v55,-1,84,5,81,60"},"~":{"d":"31,-112v56,-48,106,-2,172,-2v19,0,41,-9,66,-27r0,39v-54,46,-108,1,-170,1v-19,0,-42,10,-68,28r0,-39","w":299},"\u00a0":{"w":80},"\u00c0":{"d":"89,-312v2,12,14,28,7,38v-11,-1,-28,2,-35,-2r-28,-38v12,-4,44,-4,56,2xm111,0v-23,0,-3,-49,-30,-45v-39,-6,-3,48,-37,45v-30,-2,-61,7,-42,-36r40,-216v10,-14,51,-8,69,-3v22,71,31,152,48,241v4,20,-29,14,-48,14xm65,-110v7,14,34,9,26,-10r-11,-75r-3,0","w":157},"\u00c1":{"d":"118,-316v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0xm111,0v-23,0,-3,-49,-30,-45v-39,-6,-3,48,-37,45v-30,-2,-61,7,-42,-36r40,-216v10,-14,51,-8,69,-3v22,71,31,152,48,241v4,20,-29,14,-48,14xm65,-110v7,14,34,9,26,-10r-11,-75r-3,0","w":157},"\u00c2":{"d":"125,-279v1,1,1,6,-2,5v-19,1,-37,1,-42,-13v-11,-3,-9,16,-24,13v-8,-2,-29,5,-26,-5v14,-18,34,-47,70,-30xm111,0v-23,0,-3,-49,-30,-45v-39,-6,-3,48,-37,45v-30,-2,-61,7,-42,-36r40,-216v10,-14,51,-8,69,-3v22,71,31,152,48,241v4,20,-29,14,-48,14xm65,-110v7,14,34,9,26,-10r-11,-75r-3,0","w":157},"\u00c3":{"d":"98,-300v12,-1,10,-16,29,-11v13,14,-10,39,-29,36v-9,2,-33,-12,-39,-12v-12,1,-11,17,-30,12v-10,-16,11,-38,30,-36v8,-2,32,12,39,11xm111,0v-23,0,-3,-49,-30,-45v-39,-6,-3,48,-37,45v-30,-2,-61,7,-42,-36r40,-216v10,-14,51,-8,69,-3v22,71,31,152,48,241v4,20,-29,14,-48,14xm65,-110v7,14,34,9,26,-10r-11,-75r-3,0","w":157},"\u00c4":{"d":"128,-304v-1,12,5,30,-9,29v-11,-1,-32,5,-31,-7v1,-12,-6,-30,10,-29v11,1,31,-5,30,7xm69,-304v0,12,5,30,-10,29v-11,-1,-31,5,-30,-7v1,-12,-6,-30,9,-29v11,1,31,-5,31,7xm111,0v-23,0,-3,-49,-30,-45v-39,-6,-3,48,-37,45v-30,-2,-61,7,-42,-36r40,-216v10,-14,51,-8,69,-3v22,71,31,152,48,241v4,20,-29,14,-48,14xm65,-110v7,14,34,9,26,-10r-11,-75r-3,0","w":157},"\u0100":{"d":"124,-301v-1,10,5,23,-9,23r-75,0v-13,1,-6,-13,-8,-23v0,-3,3,-5,9,-5r75,0v6,0,8,1,8,5xm111,0v-23,0,-3,-49,-30,-45v-39,-6,-3,48,-37,45v-30,-2,-61,7,-42,-36r40,-216v10,-14,51,-8,69,-3v22,71,31,152,48,241v4,20,-29,14,-48,14xm65,-110v7,14,34,9,26,-10r-11,-75r-3,0","w":157},"\u0102":{"d":"80,-296v13,-1,16,-23,40,-16v11,22,-16,40,-41,40v-24,0,-45,-11,-44,-33v0,-12,14,-5,23,-7v7,3,9,17,22,16xm111,0v-23,0,-3,-49,-30,-45v-39,-6,-3,48,-37,45v-30,-2,-61,7,-42,-36r40,-216v10,-14,51,-8,69,-3v22,71,31,152,48,241v4,20,-29,14,-48,14xm65,-110v7,14,34,9,26,-10r-11,-75r-3,0","w":157},"\u00c5":{"d":"78,-347v20,0,37,18,37,38v0,20,-16,38,-37,38v-21,0,-38,-17,-38,-38v0,-21,17,-38,38,-38xm111,0v-23,0,-3,-49,-30,-45v-39,-6,-3,48,-37,45v-30,-2,-61,7,-42,-36r40,-216v10,-14,51,-8,69,-3v22,71,31,152,48,241v4,20,-29,14,-48,14xm78,-295v7,0,14,-7,14,-14v0,-7,-7,-14,-14,-14v-8,0,-15,6,-15,14v0,8,7,14,15,14xm65,-110v7,14,34,9,26,-10r-11,-75r-3,0","w":157,"k":{"\u201e":-5,"\u201a":-5,"\u201d":15,"\u201c":22,"\u2019":15,"\u2018":22,"Y":18,"T":17,";":-5,":":-5,".":-5,",":-5}},"\u0104":{"d":"108,-1v-17,-4,-2,-47,-27,-44v-39,-6,-3,48,-37,45v-30,-2,-61,7,-42,-36r40,-216v10,-14,51,-8,69,-3v22,71,29,152,48,241v6,12,-29,15,-11,22v1,0,1,-1,1,-1v10,9,5,29,-21,25v-22,1,-29,-17,-20,-33xm65,-110v7,14,34,9,26,-10r-11,-75r-3,0","w":157,"k":{"Y":18,"T":17,"A":-5,";":-5,":":-5,".":-5,",":-5}},"\u00c6":{"d":"197,-222v4,39,-48,9,-68,24r5,33v20,3,56,-8,61,9v-1,24,8,53,-24,48r-28,0r8,45v21,4,52,-9,50,19v-1,23,7,44,-22,44r-68,0v-8,0,-13,-4,-13,-13v2,-39,-2,-44,-31,-40v-13,15,10,63,-37,52v-14,0,-33,5,-30,-12r48,-241v35,-10,89,1,131,-4v24,-3,17,18,18,36xm80,-100v12,0,13,-10,12,-23r-8,-75r-4,0r-13,84v0,10,5,14,13,14","w":209},"\u0106":{"d":"117,-316v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0xm71,-129v0,47,-5,68,39,68v15,0,11,27,11,43v0,15,-8,19,-25,19v-80,-1,-88,-46,-88,-135v0,-87,11,-121,91,-125v28,-1,19,24,21,48v0,12,-5,15,-16,16v-36,2,-33,23,-33,66","w":127,"k":{"\u201e":-5,"\u201a":-5,"S":-5,"-":-7}},"\u0108":{"d":"130,-282v-5,11,-43,5,-44,-8v-11,-3,-11,14,-24,13v-8,-2,-29,4,-26,-5v13,-19,33,-47,69,-30xm71,-129v0,47,-5,68,39,68v15,0,11,27,11,43v0,15,-8,19,-25,19v-80,-1,-88,-46,-88,-135v0,-87,11,-121,91,-125v28,-1,19,24,21,48v0,12,-5,15,-16,16v-36,2,-33,23,-33,66","w":127},"\u010c":{"d":"104,-316v9,1,30,-4,26,6v-13,19,-33,47,-69,30r-26,-32v12,-12,43,0,48,11v9,-3,8,-16,21,-15xm71,-129v0,47,-5,68,39,68v15,0,11,27,11,43v0,15,-8,19,-25,19v-80,-1,-88,-46,-88,-135v0,-87,11,-121,91,-125v28,-1,19,24,21,48v0,12,-5,15,-16,16v-36,2,-33,23,-33,66","w":127},"\u010a":{"d":"102,-308v-2,13,6,30,-11,28v-12,-1,-33,5,-34,-7v2,-13,-6,-30,11,-28v12,1,33,-5,34,7xm71,-129v0,47,-5,68,39,68v15,0,11,27,11,43v0,15,-8,19,-25,19v-80,-1,-88,-46,-88,-135v0,-87,11,-121,91,-125v28,-1,19,24,21,48v0,12,-5,15,-16,16v-36,2,-33,23,-33,66","w":127},"\u00c7":{"d":"91,12v21,-1,39,7,39,25v0,18,-18,28,-53,28v-27,1,-41,0,-44,-17v2,-20,51,14,58,-10v4,-14,-28,-1,-25,-17r0,-22v-50,-15,-58,-56,-58,-133v0,-87,11,-121,91,-125v28,-1,19,24,21,48v0,12,-5,15,-16,16v-36,2,-33,23,-33,66v0,47,-5,68,39,68v15,0,9,27,11,43v1,19,-15,20,-35,19v0,6,1,9,5,11","w":127},"\u010e":{"d":"85,-314v9,-3,37,-6,35,3v-13,19,-33,47,-69,30r-26,-32v14,-10,42,0,48,11v6,-2,8,-8,12,-12xm30,-259v104,0,135,31,131,145v-4,111,-38,115,-133,115v-29,0,-17,-39,-17,-67r-1,-177v0,-11,7,-16,20,-16xm80,-54v27,-1,19,-40,19,-74v0,-45,5,-65,-21,-72v-16,-1,-10,23,-11,39r0,90v0,11,5,17,13,17","w":171},"\u0110":{"d":"36,-259v103,0,131,29,131,144v0,97,-35,124,-132,116v-35,-3,-10,-64,-17,-104v-24,5,-16,-19,-17,-37v-1,-5,9,-6,17,-6r-1,-97v0,-11,6,-16,19,-16xm86,-54v27,-1,19,-40,19,-74v0,-45,5,-65,-21,-72v-19,1,-8,34,-10,54v24,-5,16,19,17,37v1,6,-9,6,-17,6v1,18,-6,49,12,49","w":176},"\u00d0":{"d":"36,-259v103,0,131,29,131,144v0,97,-35,124,-132,116v-35,-3,-10,-64,-17,-104v-24,5,-16,-19,-17,-37v-1,-5,9,-6,17,-6r-1,-97v0,-11,6,-16,19,-16xm86,-54v27,-1,19,-40,19,-74v0,-45,5,-65,-21,-72v-19,1,-8,34,-10,54v24,-5,16,19,17,37v1,6,-9,6,-17,6v1,18,-6,49,12,49","w":176,"k":{"Y":5,"V":5,"-":-5}},"\u00c8":{"d":"81,-312v2,12,14,28,7,38v-11,-1,-28,2,-35,-2v-9,-13,-20,-24,-27,-38v12,-4,44,-5,55,2xm82,-61v26,-1,54,-7,48,27v8,58,-52,27,-104,34v-28,4,-14,-37,-14,-58r0,-184v3,-34,61,-11,96,-17v23,-4,18,19,19,40v2,26,-24,18,-47,18v-9,0,-12,8,-11,19v-8,43,69,-14,56,51v2,30,-21,24,-44,23v-17,-2,-11,19,-11,33v0,12,1,15,12,14","w":135},"\u00c9":{"d":"111,-316v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0xm82,-61v26,-1,54,-7,48,27v8,58,-52,27,-104,34v-28,4,-14,-37,-14,-58r0,-184v3,-34,61,-11,96,-17v23,-4,18,19,19,40v2,26,-24,18,-47,18v-9,0,-12,8,-11,19v-8,43,69,-14,56,51v2,30,-21,24,-44,23v-17,-2,-11,19,-11,33v0,12,1,15,12,14","w":135},"\u00ca":{"d":"114,-279v1,1,1,6,-2,5v-19,1,-37,1,-42,-13v-11,-3,-9,16,-24,13v-8,-2,-29,5,-26,-5v13,-19,34,-47,70,-30xm82,-61v26,-1,54,-7,48,27v8,58,-52,27,-104,34v-28,4,-14,-37,-14,-58r0,-184v3,-34,61,-11,96,-17v23,-4,18,19,19,40v2,26,-24,18,-47,18v-9,0,-12,8,-11,19v-8,43,69,-14,56,51v2,30,-21,24,-44,23v-17,-2,-11,19,-11,33v0,12,1,15,12,14","w":135},"\u011a":{"d":"92,-316v9,1,30,-4,26,6v-12,19,-33,47,-68,30r-27,-32v10,-11,43,-3,46,10v11,3,10,-15,23,-14xm82,-61v26,-1,54,-7,48,27v8,58,-52,27,-104,34v-28,4,-14,-37,-14,-58r0,-184v3,-34,61,-11,96,-17v23,-4,18,19,19,40v2,26,-24,18,-47,18v-9,0,-12,8,-11,19v-8,43,69,-14,56,51v2,30,-21,24,-44,23v-17,-2,-11,19,-11,33v0,12,1,15,12,14","w":135},"\u00cb":{"d":"108,-311v16,1,13,38,0,36v-11,-2,-32,5,-31,-7v1,-12,-6,-30,9,-29r22,0xm58,-304v0,12,5,30,-10,29v-11,-1,-31,5,-30,-7v1,-12,-6,-30,9,-29v11,1,31,-5,31,7xm82,-61v26,-1,54,-7,48,27v8,58,-52,27,-104,34v-28,4,-14,-37,-14,-58r0,-184v3,-34,61,-11,96,-17v23,-4,18,19,19,40v2,26,-24,18,-47,18v-9,0,-12,8,-11,19v-8,43,69,-14,56,51v2,30,-21,24,-44,23v-17,-2,-11,19,-11,33v0,12,1,15,12,14","w":135},"\u0112":{"d":"108,-306v16,1,13,32,-1,29r-74,0v-13,1,-8,-13,-9,-23v0,-4,4,-6,10,-6r74,0xm82,-61v26,-1,54,-7,48,27v8,58,-52,27,-104,34v-28,4,-14,-37,-14,-58r0,-184v3,-34,61,-11,96,-17v23,-4,18,19,19,40v2,26,-24,18,-47,18v-9,0,-12,8,-11,19v-8,43,69,-14,56,51v2,30,-21,24,-44,23v-17,-2,-11,19,-11,33v0,12,1,15,12,14","w":135},"\u0114":{"d":"73,-296v13,0,15,-23,39,-16v13,20,-14,39,-40,39v-24,0,-45,-11,-45,-32v0,-12,14,-5,23,-7v7,4,9,18,23,16xm82,-61v26,-1,54,-7,48,27v8,58,-52,27,-104,34v-28,4,-14,-37,-14,-58r0,-184v3,-34,61,-11,96,-17v23,-4,18,19,19,40v2,26,-24,18,-47,18v-9,0,-12,8,-11,19v-8,43,69,-14,56,51v2,30,-21,24,-44,23v-17,-2,-11,19,-11,33v0,12,1,15,12,14","w":135},"\u0116":{"d":"93,-308v-2,12,6,29,-10,28v-12,-2,-33,5,-34,-7v2,-12,-6,-29,10,-28v12,2,33,-5,34,7xm82,-61v26,-1,54,-7,48,27v8,58,-52,27,-104,34v-28,4,-14,-37,-14,-58r0,-184v3,-34,61,-11,96,-17v23,-4,18,19,19,40v2,26,-24,18,-47,18v-9,0,-12,8,-11,19v-8,43,69,-14,56,51v2,30,-21,24,-44,23v-17,-2,-11,19,-11,33v0,12,1,15,12,14","w":135},"\u0118":{"d":"82,-61v26,-1,52,-8,48,27v-3,25,1,32,-19,34v-2,0,-3,1,-3,4v2,8,15,-2,12,16v-3,18,-54,17,-50,-8v0,-4,2,-9,4,-13v-23,-3,-65,11,-65,-14v0,-71,0,-154,3,-227v1,-34,61,-11,96,-17v23,-4,18,19,19,40v2,26,-24,18,-47,18v-9,0,-12,8,-11,19v-8,43,69,-14,56,51v2,30,-21,24,-44,23v-17,-2,-11,19,-11,33v0,12,1,15,12,14","w":135},"\u011c":{"d":"144,-282v2,10,-16,5,-26,6v-13,2,-14,-18,-23,-13v-7,12,-23,15,-43,13v-6,-12,17,-24,23,-36v8,-7,35,-6,45,0xm111,-166v26,-1,45,-3,45,25r0,114v-1,31,-22,31,-52,31v-64,0,-98,-55,-98,-126v0,-74,34,-136,103,-137v29,0,42,2,44,26v4,37,-9,42,-37,34v-32,0,-49,22,-49,67v0,49,10,73,28,73v13,0,11,-25,11,-40v-3,-11,-22,-10,-20,-29v3,-29,-1,-37,25,-38","w":166},"\u011e":{"d":"98,-297v13,-1,16,-23,40,-16v12,22,-15,40,-41,40v-24,0,-45,-11,-44,-33v0,-12,14,-5,23,-7v7,3,8,17,22,16xm111,-166v26,-1,45,-3,45,25r0,114v-1,31,-22,31,-52,31v-64,0,-98,-55,-98,-126v0,-74,34,-136,103,-137v29,0,42,2,44,26v4,37,-9,42,-37,34v-32,0,-49,22,-49,67v0,49,10,73,28,73v13,0,11,-25,11,-40v-3,-11,-22,-10,-20,-29v3,-29,-1,-37,25,-38","w":166},"\u0120":{"d":"122,-310v-2,12,7,30,-10,29v-12,-2,-34,5,-34,-7v0,-13,-6,-30,11,-29v11,2,32,-5,33,7xm111,-166v26,-1,45,-3,45,25r0,114v-1,31,-22,31,-52,31v-64,0,-98,-55,-98,-126v0,-74,34,-136,103,-137v29,0,42,2,44,26v4,37,-9,42,-37,34v-32,0,-49,22,-49,67v0,49,10,73,28,73v13,0,11,-25,11,-40v-3,-11,-22,-10,-20,-29v3,-29,-1,-37,25,-38","w":166},"\u0122":{"d":"111,-166v26,-1,45,-3,45,25r0,114v-1,31,-22,31,-52,31v-64,0,-98,-55,-98,-126v0,-74,34,-136,103,-137v29,0,42,2,44,26v4,37,-9,42,-37,34v-32,0,-49,22,-49,67v0,49,10,73,28,73v13,0,11,-25,11,-40v-3,-11,-22,-10,-20,-29v3,-29,-1,-37,25,-38xm91,72v-31,8,-18,-27,-20,-53v-1,-17,29,-9,45,-11v28,16,13,107,-33,98v-16,-4,7,-25,8,-34","w":166},"\u0124":{"d":"129,-281v2,8,-16,4,-26,5v-13,2,-14,-18,-23,-13v-5,10,-35,21,-46,8v15,-17,33,-48,70,-30xm97,-182v1,-43,-19,-86,39,-77v32,5,17,47,17,86r0,153v1,24,-21,21,-42,20v-30,-2,-14,-58,-13,-87v0,-8,-4,-13,-11,-13v-31,1,-14,51,-18,79v5,30,-33,21,-53,19v-11,-52,-1,-161,-4,-236v-1,-24,11,-19,32,-21v46,-4,21,50,24,84v0,12,5,17,14,17v10,0,15,-8,15,-24","w":164},"\u0126":{"d":"96,-221v0,0,-5,-38,24,-38v15,0,34,-2,33,13v-1,16,-1,17,-1,25v13,-3,12,7,12,19v0,6,-7,3,-12,4r1,178v1,24,-21,21,-42,20v-30,-2,-14,-58,-13,-87v0,-8,-4,-13,-11,-13v-31,1,-14,51,-18,79v5,30,-33,21,-53,19v-11,-43,-2,-129,-5,-196v-12,3,-10,-8,-10,-19v0,-5,6,-4,11,-4v-1,-27,-3,-44,32,-38v29,-4,28,15,26,38v9,1,17,0,26,0xm82,-158v15,0,16,-23,14,-40r-27,0v0,18,-5,40,13,40","w":164},"\u00cc":{"d":"40,-316v18,1,19,32,18,42v-11,-1,-28,2,-35,-2r-28,-38v10,-5,31,0,45,-2xm32,-259v26,1,38,-6,38,27r0,211v2,24,-15,21,-36,21v-23,0,-22,-1,-23,-24r1,-219v-1,-16,3,-16,20,-16","w":81},"\u00cd":{"d":"85,-316v5,-1,4,3,2,5v-12,19,-28,50,-64,34v8,-13,2,-39,21,-39r41,0xm32,-259v26,1,38,-6,38,27r0,211v2,24,-15,21,-36,21v-23,0,-22,-1,-23,-24r1,-219v-1,-16,3,-16,20,-16","w":81},"\u012c":{"d":"43,-299v14,1,14,-24,39,-17v14,21,-14,40,-40,40v-24,0,-45,-12,-45,-33v0,-12,14,-6,24,-7v7,4,8,19,22,17xm32,-259v26,1,38,-6,38,27r0,211v2,24,-15,21,-36,21v-23,0,-22,-1,-23,-24r1,-219v-1,-16,3,-16,20,-16","w":81},"\u00ce":{"d":"87,-279v1,1,1,6,-2,5v-21,2,-36,-2,-44,-14v-9,2,-9,16,-22,14v-8,-2,-28,4,-26,-5v14,-18,34,-47,70,-30xm32,-259v26,1,38,-6,38,27r0,211v2,24,-15,21,-36,21v-23,0,-22,-1,-23,-24r1,-219v-1,-16,3,-16,20,-16","w":81},"\u0128":{"d":"65,-299v12,-1,10,-16,28,-11v16,14,-10,39,-28,36v-7,1,-33,-12,-40,-11v-11,1,-12,16,-30,11v-10,-16,11,-38,30,-36v7,-1,33,12,40,11xm32,-259v26,1,38,-6,38,27r0,211v2,24,-15,21,-36,21v-23,0,-22,-1,-23,-24r1,-219v-1,-16,3,-16,20,-16","w":81},"\u00cf":{"d":"90,-304v-1,12,5,30,-9,29v-11,-1,-31,5,-31,-7v0,-12,-6,-30,10,-29v11,1,31,-5,30,7xm22,-311v16,1,13,38,0,36v-11,-1,-31,5,-31,-7v0,-12,-6,-30,9,-29r22,0xm32,-259v26,1,38,-6,38,27r0,211v2,24,-15,21,-36,21v-23,0,-22,-1,-23,-24r1,-219v-1,-16,3,-16,20,-16","w":81},"\u012a":{"d":"86,-300v-1,10,5,23,-9,23r-74,0v-13,1,-8,-13,-9,-23v17,-12,58,-2,84,-5v6,0,8,1,8,5xm32,-259v26,1,38,-6,38,27r0,211v2,24,-15,21,-36,21v-23,0,-22,-1,-23,-24r1,-219v-1,-16,3,-16,20,-16","w":81},"\u0130":{"d":"63,-308v-2,12,6,29,-10,28v-12,-2,-34,5,-34,-7v0,-13,-6,-30,11,-28v11,2,32,-5,33,7xm32,-259v26,1,38,-6,38,27r0,211v2,24,-15,21,-36,21v-23,0,-22,-1,-23,-24r1,-219v-1,-16,3,-16,20,-16","w":81},"\u012e":{"d":"32,-259v26,1,38,-6,38,27r0,211v0,12,-4,19,-12,20v-3,0,-4,2,-4,5v3,8,16,-2,13,16v-3,18,-54,17,-50,-8v0,-4,1,-9,3,-13v-9,-4,-9,-8,-9,-23r1,-219v-1,-16,3,-16,20,-16","w":81},"\u0134":{"d":"55,-291v-3,13,-38,20,-45,8v14,-18,34,-47,70,-30v8,11,19,19,25,32v-13,10,-41,0,-47,-11v-1,0,-2,0,-3,1xm44,-259v27,0,51,-6,43,32r0,159v-1,47,-3,67,-43,71v-44,4,-38,-15,-39,-48v0,-10,10,-12,18,-13v11,-2,5,-46,5,-71r0,-113v0,-14,2,-17,16,-17","w":100},"\u0136":{"d":"32,-259v19,1,35,-5,35,19r-1,70r5,0r22,-83v6,-11,31,-6,46,-6v21,0,14,8,8,24r-33,85v1,14,37,113,43,143v-4,13,-44,7,-59,4v-12,-29,-18,-72,-27,-105r-4,0r0,88v7,29,-39,22,-53,15v-6,-60,0,-164,-3,-239v0,-14,6,-15,21,-15xm71,72v-30,7,-18,-29,-20,-53v-1,-17,29,-9,45,-11v28,16,13,108,-33,98v-16,-4,7,-25,8,-34","w":156},"\u0139":{"d":"87,-316v4,-1,5,3,3,5v-13,18,-28,51,-65,35v8,-13,2,-40,21,-40r41,0xm84,-59v27,-7,32,11,30,40v-3,34,-56,12,-89,20v-26,-5,-14,-63,-14,-94r0,-142v-6,-33,21,-21,47,-25v21,2,10,42,10,68v0,20,-13,135,16,133","w":123},"\u013d":{"d":"84,-59v27,-7,32,11,30,40v-3,34,-56,12,-89,20v-26,-5,-14,-63,-14,-94r0,-142v-6,-33,21,-21,47,-25v21,2,10,42,10,68v0,20,-13,135,16,133xm89,-228v-24,4,-16,-23,-16,-41v0,-12,43,-15,45,2v3,26,-3,44,-15,61v-3,6,-22,7,-25,0","w":123},"\u013b":{"d":"84,-59v27,-7,32,11,30,40v-3,34,-56,12,-89,20v-26,-5,-14,-63,-14,-94r0,-142v-6,-33,21,-21,47,-25v21,2,10,42,10,68v0,20,-13,135,16,133xm54,72v-31,7,-21,-28,-21,-53v0,-17,30,-9,46,-11v28,16,13,107,-33,98v-16,-4,7,-25,8,-34","w":123},"\u0141":{"d":"92,-59v17,-3,34,-2,30,20v3,28,-3,43,-35,39v-34,-5,-68,17,-68,-32r0,-65v-3,2,-11,11,-13,2v1,-19,-6,-45,13,-48r0,-93v-5,-32,22,-20,47,-24v22,3,6,50,11,81v6,-2,18,-17,23,-6v-2,14,6,35,-4,41r-19,11v3,26,-9,72,15,74","w":128,"k":{"o":5,"e":5,"Y":32,"W":20,"V":27,"U":11,"T":24,"O":11,"-":11}},"\u013f":{"d":"101,-158v16,0,28,12,28,28v0,16,-12,28,-28,28v-15,0,-28,-12,-28,-28v0,-16,13,-28,28,-28xm84,-59v27,-7,32,11,30,40v-3,34,-56,12,-89,20v-26,-5,-14,-63,-14,-94r0,-142v-6,-33,21,-21,47,-25v21,2,10,42,10,68v0,20,-13,135,16,133","w":134},"\u0143":{"d":"130,-316v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0xm129,-259v22,0,45,-5,39,22r0,207v8,39,-32,32,-59,27v-15,-33,-25,-81,-37,-119r-7,0r0,100v3,25,-15,22,-36,22v-18,-1,-18,-3,-18,-24r0,-209v-5,-33,24,-25,50,-26v7,0,12,3,14,9v4,16,15,53,33,113r7,0r1,-101v0,-14,0,-21,13,-21"},"\u0147":{"d":"111,-316v9,1,30,-4,26,6v-12,19,-33,47,-69,30r-26,-32v12,-12,43,0,48,11v9,-3,8,-16,21,-15xm129,-259v22,0,45,-5,39,22r0,207v8,39,-32,32,-59,27v-15,-33,-25,-81,-37,-119r-7,0r0,100v3,25,-15,22,-36,22v-18,-1,-18,-3,-18,-24r0,-209v-5,-33,24,-25,50,-26v7,0,12,3,14,9v4,16,15,53,33,113r7,0r1,-101v0,-14,0,-21,13,-21"},"\u00d1":{"d":"110,-300v12,-1,10,-16,28,-11v15,12,-9,39,-28,36v-9,2,-34,-12,-40,-12v-11,2,-11,17,-30,12v-10,-16,11,-38,30,-36v8,-2,33,12,40,11xm129,-259v22,0,45,-5,39,22r0,207v8,39,-32,32,-59,27v-15,-33,-25,-81,-37,-119r-7,0r0,100v3,25,-15,22,-36,22v-18,-1,-18,-3,-18,-24r0,-209v-5,-33,24,-25,50,-26v7,0,12,3,14,9v4,16,15,53,33,113r7,0r1,-101v0,-14,0,-21,13,-21"},"\u0145":{"d":"129,-259v22,0,45,-5,39,22r0,207v8,39,-32,32,-59,27v-15,-33,-25,-81,-37,-119r-7,0r0,100v3,25,-15,22,-36,22v-18,-1,-18,-3,-18,-24r0,-209v-5,-33,24,-25,50,-26v7,0,12,3,14,9v4,16,15,53,33,113r7,0r1,-101v0,-14,0,-21,13,-21xm77,72v-31,7,-20,-28,-21,-53v-1,-17,30,-9,46,-11v28,16,13,106,-33,98v-11,-2,-7,-6,-2,-14"},"\u00d2":{"d":"114,-279v1,9,-29,6,-38,3v-9,-13,-20,-24,-27,-38v12,-4,44,-5,55,2xm96,-264v63,0,76,44,76,113v0,112,-1,155,-86,155v-68,0,-76,-49,-77,-131v-1,-84,10,-137,87,-137xm89,-58v35,0,19,-75,19,-117v0,-18,-5,-28,-17,-28v-31,7,-18,74,-18,110v0,21,2,35,16,35","w":181},"\u00d3":{"d":"133,-316v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0xm96,-264v63,0,76,44,76,113v0,112,-1,155,-86,155v-68,0,-76,-49,-77,-131v-1,-84,10,-137,87,-137xm89,-58v35,0,19,-75,19,-117v0,-18,-5,-28,-17,-28v-31,7,-18,74,-18,110v0,21,2,35,16,35","w":181,"k":{"Y":8,"X":5,".":9,"-":-5,",":9}},"\u00d4":{"d":"138,-279v-8,14,-42,2,-47,-9v-9,2,-9,16,-22,14v-8,-2,-28,4,-26,-5v14,-18,34,-47,70,-30xm96,-264v63,0,76,44,76,113v0,112,-1,155,-86,155v-68,0,-76,-49,-77,-131v-1,-84,10,-137,87,-137xm89,-58v35,0,19,-75,19,-117v0,-18,-5,-28,-17,-28v-31,7,-18,74,-18,110v0,21,2,35,16,35","w":181},"\u00d5":{"d":"111,-300v12,-1,10,-16,28,-11v15,12,-9,39,-28,36v-9,2,-34,-12,-40,-12v-11,2,-11,17,-30,12v-10,-16,11,-38,30,-36v8,-1,33,12,40,11xm96,-264v63,0,76,44,76,113v0,112,-1,155,-86,155v-68,0,-76,-49,-77,-131v-1,-84,10,-137,87,-137xm89,-58v35,0,19,-75,19,-117v0,-18,-5,-28,-17,-28v-31,7,-18,74,-18,110v0,21,2,35,16,35","w":181},"\u00d6":{"d":"140,-304v-1,12,5,30,-9,29v-11,-1,-31,5,-31,-7v0,-12,-6,-30,10,-29v11,1,31,-5,30,7xm72,-311v16,1,13,38,0,36v-11,-1,-31,5,-31,-7v0,-12,-6,-30,9,-29r22,0xm96,-264v63,0,76,44,76,113v0,112,-1,155,-86,155v-68,0,-76,-49,-77,-131v-1,-84,10,-137,87,-137xm89,-58v35,0,19,-75,19,-117v0,-18,-5,-28,-17,-28v-31,7,-18,74,-18,110v0,21,2,35,16,35","w":181},"\u014c":{"d":"142,-300v-1,11,4,22,-10,22r-74,0v-14,1,-6,-14,-8,-23v0,-3,3,-5,9,-5r74,0v6,0,9,2,9,6xm96,-264v63,0,76,44,76,113v0,112,-1,155,-86,155v-68,0,-76,-49,-77,-131v-1,-84,10,-137,87,-137xm89,-58v35,0,19,-75,19,-117v0,-18,-5,-28,-17,-28v-31,7,-18,74,-18,110v0,21,2,35,16,35","w":181},"\u014e":{"d":"96,-295v14,1,14,-24,39,-17v13,21,-14,40,-40,40v-24,0,-45,-12,-45,-33v0,-12,14,-5,23,-7v7,4,9,19,23,17xm96,-264v63,0,76,44,76,113v0,112,-1,155,-86,155v-68,0,-76,-49,-77,-131v-1,-84,10,-137,87,-137xm89,-58v35,0,19,-75,19,-117v0,-18,-5,-28,-17,-28v-31,7,-18,74,-18,110v0,21,2,35,16,35","w":181},"\u0150":{"d":"127,-312v9,-7,40,-7,46,0v-12,14,-33,51,-61,31xm82,-279v-9,4,-33,8,-32,-3v8,-11,8,-30,23,-34v11,2,40,-5,36,6xm96,-264v63,0,76,44,76,113v0,112,-1,155,-86,155v-68,0,-76,-49,-77,-131v-1,-84,10,-137,87,-137xm89,-58v35,0,19,-75,19,-117v0,-18,-5,-28,-17,-28v-31,7,-18,74,-18,110v0,21,2,35,16,35","w":181},"\u00d8":{"d":"8,-135v0,-99,35,-145,122,-123v6,-8,7,-28,17,-27v5,4,18,3,18,12r-12,30v17,16,21,58,21,101v0,106,-7,147,-88,147v-15,0,-27,-2,-35,-6v-7,9,-7,32,-20,31v-6,-4,-17,-2,-17,-13r16,-35v-22,-30,-22,-55,-22,-117xm89,-60v34,0,19,-71,19,-114v0,-18,-5,-27,-17,-27v-32,6,-18,71,-18,107v0,20,1,34,16,34","w":181,"k":{"\u201c":-5,"\u2018":-5,"Y":8,"X":5,".":9,"-":-5,",":9}},"\u0152":{"d":"212,-243v13,74,-67,15,-58,60v-4,46,73,-20,58,59v5,38,-68,-15,-55,48v-3,34,63,-10,62,33v-1,23,5,43,-24,43r-76,0v-60,12,-109,-3,-109,-79r0,-97v-11,-107,90,-83,187,-84v12,0,13,5,15,17xm71,-84v-7,31,25,40,25,8r0,-102v0,-19,-4,-29,-13,-29v-12,1,-11,11,-12,27r0,96","w":226},"\u0154":{"d":"120,-317v5,-1,5,5,2,6v-13,18,-28,49,-64,34v8,-13,2,-40,21,-40r41,0xm166,-171v0,42,-3,67,-27,80r35,82v-6,17,-69,18,-69,-10r-27,-72r-7,0r0,76v1,23,-25,15,-44,15v-14,0,-13,-7,-14,-23r0,-214v-1,-40,46,-23,88,-23v54,0,64,31,65,89xm88,-131v13,0,20,-11,20,-24v-1,-34,2,-48,-22,-51v-20,-3,-17,27,-15,45v1,22,-1,29,17,30","w":185},"\u0158":{"d":"104,-317v9,1,30,-4,26,6v-13,19,-32,44,-69,30r-26,-32v12,-12,43,0,48,11v9,-3,8,-16,21,-15xm166,-171v0,42,-3,67,-27,80r35,82v-6,17,-69,18,-69,-10r-27,-72r-7,0r0,76v1,23,-25,15,-44,15v-14,0,-13,-7,-14,-23r0,-214v-1,-40,46,-23,88,-23v54,0,64,31,65,89xm88,-131v13,0,20,-11,20,-24v-1,-34,2,-48,-22,-51v-20,-3,-17,27,-15,45v1,22,-1,29,17,30","w":185},"\u0156":{"d":"166,-171v0,42,-3,67,-27,80r35,82v-6,17,-69,18,-69,-10r-27,-72r-7,0r0,76v1,23,-25,15,-44,15v-14,0,-13,-7,-14,-23r0,-214v-1,-40,46,-23,88,-23v54,0,64,31,65,89xm81,72v-31,7,-21,-28,-21,-53v0,-17,30,-9,46,-11v28,16,13,107,-33,98v-16,-4,7,-25,8,-34xm88,-131v13,0,20,-11,20,-24v-1,-34,2,-48,-22,-51v-20,-3,-17,27,-15,45v1,22,-1,29,17,30","w":185},"\u015a":{"d":"117,-316v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0xm130,-211v2,42,-52,-9,-55,28v13,38,67,56,67,109v0,52,-26,78,-77,78v-29,0,-53,3,-53,-25v1,-20,-6,-49,16,-47v11,5,51,20,50,-7v-1,-20,-24,-32,-36,-43v-50,-46,-39,-142,51,-142v42,0,35,11,37,49","w":155},"\u015c":{"d":"92,-280v-11,-27,-41,21,-60,-2v14,-18,34,-47,70,-30v8,11,19,19,25,32v-5,6,-27,4,-35,0xm130,-211v2,42,-52,-9,-55,28v13,39,67,55,67,109v0,52,-26,78,-77,78v-29,0,-53,3,-53,-25v1,-20,-6,-49,16,-47v11,5,51,20,50,-7v-1,-20,-24,-32,-36,-43v-50,-46,-39,-142,51,-142v42,0,35,11,37,49","w":155},"\u0160":{"d":"78,-298v5,-12,39,-25,47,-9v-13,19,-32,44,-69,30v-6,-12,-29,-22,-23,-36v22,-3,36,3,45,15xm130,-211v2,42,-52,-9,-55,28v13,38,67,56,67,109v0,52,-26,78,-77,78v-29,0,-53,3,-53,-25v1,-20,-6,-49,16,-47v11,5,51,20,50,-7v-1,-20,-24,-32,-36,-43v-50,-46,-39,-142,51,-142v42,0,35,11,37,49","w":155},"\u015e":{"d":"130,-211v2,42,-52,-9,-55,28v13,39,67,55,67,109v0,51,-26,74,-72,79v0,9,13,7,21,8v13,1,22,12,23,24v0,18,-18,28,-53,28v-27,1,-41,0,-44,-17v3,-20,50,14,59,-10v-3,-16,-36,3,-26,-34v-22,-4,-39,-1,-38,-25v1,-20,-6,-49,16,-47v11,5,51,20,50,-7v-1,-20,-24,-32,-36,-43v-50,-46,-39,-142,51,-142v42,0,35,11,37,49","w":155},"\u0218":{"d":"130,-211v2,42,-52,-9,-55,28v13,39,67,55,67,109v0,52,-26,78,-77,78v-29,0,-53,3,-53,-25v1,-20,-6,-49,16,-47v11,5,51,20,50,-7v-1,-20,-24,-32,-36,-43v-50,-46,-39,-142,51,-142v42,0,35,11,37,49xm62,72v-30,7,-18,-29,-20,-53v-1,-17,29,-9,45,-11v28,16,13,108,-33,98v-16,-4,7,-25,8,-34","w":155},"\u0164":{"d":"89,-316v9,1,30,-4,26,6v-12,19,-33,47,-69,30r-26,-32v12,-12,43,0,48,11v9,-3,8,-16,21,-15xm18,-258v47,8,118,-21,115,21v-1,27,3,40,-24,38v-11,0,-13,4,-13,14r2,170v2,22,-26,14,-44,16v-20,2,-17,-15,-16,-34r1,-159v-2,-13,-16,-4,-31,-10v-6,-2,-16,-61,10,-56","w":141},"\u0162":{"d":"18,-258v47,8,118,-21,115,21v-1,27,3,40,-24,38v-11,0,-13,4,-13,14r2,170v2,22,-26,14,-44,16v-20,2,-17,-15,-16,-34r1,-159v-2,-13,-16,-4,-31,-10v-6,-2,-16,-61,10,-56xm59,72v-31,8,-18,-27,-20,-53v-1,-17,29,-9,45,-11v28,16,13,107,-33,98v-16,-4,7,-25,8,-34","w":141},"\u021a":{"d":"18,-258v47,8,118,-21,115,21v-1,27,3,40,-24,38v-11,0,-13,4,-13,14r2,170v2,22,-26,14,-44,16v-20,2,-17,-15,-16,-34r1,-159v-2,-13,-16,-4,-31,-10v-6,-2,-16,-61,10,-56xm59,72v-31,8,-18,-27,-20,-53v-1,-17,29,-9,45,-11v28,16,13,107,-33,98v-16,-4,7,-25,8,-34","w":141},"\uf6c1":{"d":"18,-258v47,8,118,-21,115,21v-1,27,3,40,-24,38v-11,0,-13,4,-13,14r2,170v0,14,-8,16,-21,15v-3,13,10,13,21,13v13,1,22,12,23,24v0,18,-18,28,-53,28v-27,1,-41,0,-44,-17v3,-20,50,14,59,-10v2,-15,-30,-1,-26,-17r0,-20v-21,2,-19,-13,-19,-34r1,-159v-2,-13,-16,-4,-31,-10v-6,-2,-16,-61,10,-56","w":141},"\u0166":{"d":"18,-258v47,8,118,-21,115,21v-1,27,3,38,-24,38v-27,0,-7,47,-13,70v7,0,18,-1,18,6v-1,14,4,27,-17,23r1,85v2,22,-26,14,-44,16v-20,2,-17,-15,-16,-34r0,-67v-17,3,-17,-9,-16,-24v0,-5,9,-5,16,-5v-4,-20,5,-39,-2,-69v-6,0,-16,-1,-28,-4v-6,-2,-16,-61,10,-56","w":141},"\u00de":{"d":"85,-231v57,-7,82,35,81,94v0,55,-24,103,-78,99v-32,-2,3,48,-42,37v-50,11,-29,-50,-29,-106r-1,-133v-3,-26,23,-20,49,-21v21,-7,11,28,20,30xm85,-94v18,-1,22,-15,21,-40v0,-26,0,-43,-21,-44v-11,0,-16,8,-16,22v0,42,-10,57,16,62","w":178},"\u00d9":{"d":"110,-279v0,9,-29,5,-38,3v-9,-13,-20,-24,-27,-38v12,-4,44,-5,55,2xm107,-239v-3,-27,24,-19,46,-20v9,0,13,7,13,19v-7,103,35,244,-84,244v-106,0,-62,-141,-72,-238v-3,-32,18,-24,43,-25v15,0,15,5,16,20r0,158v0,17,6,24,19,24v13,0,19,-6,19,-19r0,-163","w":177},"\u00da":{"d":"130,-316v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0xm107,-239v-3,-27,24,-19,46,-20v9,0,13,7,13,19v-7,103,35,244,-84,244v-106,0,-62,-141,-72,-238v-3,-32,18,-24,43,-25v15,0,15,5,16,20r0,158v0,17,6,24,19,24v13,0,19,-6,19,-19r0,-163","w":177},"\u00db":{"d":"135,-279v1,1,1,6,-2,5v-21,2,-36,-1,-44,-14v-9,2,-9,16,-22,14v-8,-2,-28,4,-26,-5v14,-18,34,-47,70,-30xm107,-239v-3,-27,24,-19,46,-20v9,0,13,7,13,19v-7,103,35,244,-84,244v-106,0,-62,-141,-72,-238v-3,-32,18,-24,43,-25v15,0,15,5,16,20r0,158v0,17,6,24,19,24v13,0,19,-6,19,-19r0,-163","w":177},"\u0168":{"d":"108,-299v13,0,10,-16,28,-11v16,14,-10,39,-28,36v-7,1,-33,-12,-40,-11v-9,1,-20,21,-33,7v-1,-42,49,-32,73,-21xm107,-239v-3,-27,24,-19,46,-20v9,0,13,7,13,19v-7,103,35,244,-84,244v-106,0,-62,-141,-72,-238v-3,-32,18,-24,43,-25v15,0,15,5,16,20r0,158v0,17,6,24,19,24v13,0,19,-6,19,-19r0,-163","w":177},"\u00dc":{"d":"138,-304v-1,12,5,30,-9,29v-11,-1,-31,5,-31,-7v0,-12,-6,-30,10,-29v11,1,31,-5,30,7xm79,-304v0,12,5,30,-10,29v-11,-1,-30,4,-30,-7v0,-12,-6,-30,9,-29v11,1,31,-5,31,7xm107,-239v-3,-27,24,-19,46,-20v9,0,13,7,13,19v-7,103,35,244,-84,244v-106,0,-62,-141,-72,-238v-3,-32,18,-24,43,-25v15,0,15,5,16,20r0,158v0,17,6,24,19,24v13,0,19,-6,19,-19r0,-163","w":177},"\u016a":{"d":"126,-306v14,1,12,31,-1,28r-75,0v-14,1,-6,-14,-8,-23v0,-3,3,-5,9,-5r75,0xm107,-239v-3,-27,24,-19,46,-20v9,0,13,7,13,19v-7,103,35,244,-84,244v-106,0,-62,-141,-72,-238v-3,-32,18,-24,43,-25v15,0,15,5,16,20r0,158v0,17,6,24,19,24v13,0,19,-6,19,-19r0,-163","w":177},"\u016c":{"d":"89,-296v13,0,16,-23,40,-16v11,22,-15,39,-41,39v-23,0,-45,-11,-44,-32v0,-12,14,-5,23,-7v7,3,9,16,22,16xm107,-239v-3,-27,24,-19,46,-20v9,0,13,7,13,19v-7,103,35,244,-84,244v-106,0,-62,-141,-72,-238v-3,-32,18,-24,43,-25v15,0,15,5,16,20r0,158v0,17,6,24,19,24v13,0,19,-6,19,-19r0,-163","w":177},"\u016e":{"d":"88,-330v20,0,38,17,38,38v0,19,-18,37,-38,37v-21,0,-38,-16,-38,-37v0,-21,17,-38,38,-38xm107,-239v-3,-27,24,-19,46,-20v9,0,13,7,13,19v-7,103,35,244,-84,244v-106,0,-62,-141,-72,-238v-3,-32,18,-24,43,-25v15,0,15,5,16,20r0,158v0,17,6,24,19,24v13,0,19,-6,19,-19r0,-163xm88,-278v7,1,14,-7,14,-14v0,-7,-7,-15,-14,-14v-8,0,-15,7,-15,14v0,7,7,14,15,14","w":177},"\u0170":{"d":"132,-279v-9,4,-33,8,-32,-3v8,-11,8,-30,23,-34v11,2,41,-5,36,6xm69,-279v-8,4,-32,8,-31,-3v8,-11,8,-30,23,-34v11,2,37,-6,36,6xm107,-239v-3,-27,24,-19,46,-20v9,0,13,7,13,19v-7,103,35,244,-84,244v-106,0,-62,-141,-72,-238v-3,-32,18,-24,43,-25v15,0,15,5,16,20r0,158v0,17,6,24,19,24v13,0,19,-6,19,-19r0,-163","w":177},"\u0172":{"d":"107,-239v-3,-27,24,-19,46,-20v9,0,13,7,13,19v-6,78,19,195,-27,230v-6,5,-15,17,-3,18v1,0,2,-1,2,-1v10,9,5,25,-21,25v-19,0,-27,-11,-23,-28v-119,15,-75,-134,-84,-238v-3,-32,18,-24,43,-25v15,0,15,5,16,20r0,158v0,17,6,24,19,24v13,0,19,-6,19,-19r0,-163","w":177},"\u0174":{"d":"163,-280v1,2,1,5,-2,5v-19,1,-35,1,-42,-13v-11,-3,-11,14,-24,13v-8,-2,-29,4,-26,-5v13,-19,34,-47,70,-30xm191,-259v27,0,56,-8,40,29r-43,225v-5,10,-24,1,-35,6v-16,-2,-15,-10,-20,-30r-13,-71r-4,0v-6,31,-7,69,-18,96v-9,6,-44,7,-52,-2r-44,-247v5,-9,50,-11,59,0v8,42,11,98,17,144r4,0r16,-61r-14,-79v1,-19,28,-7,46,-11v13,0,13,8,14,21r10,130r4,0r16,-135v0,-10,5,-15,17,-15","w":235},"\u00dd":{"d":"120,-313v5,0,5,4,2,6v-15,14,-40,48,-71,28v10,-11,9,-34,28,-34r41,0xm101,-256v20,-8,72,-9,54,20v-20,69,-45,129,-45,224v0,18,-31,10,-51,12v-25,-10,-2,-77,-14,-115r-44,-134v1,-17,30,-7,50,-10v9,-1,14,4,15,14r12,83r3,0v7,-30,6,-71,20,-94","w":156},"\u0176":{"d":"92,-278v-11,-27,-41,21,-60,-2v14,-18,34,-47,70,-30v8,11,19,19,25,32v-5,6,-27,4,-35,0xm101,-256v20,-8,72,-9,54,20v-20,69,-45,129,-45,224v0,18,-31,10,-51,12v-25,-10,-2,-77,-14,-115r-44,-134v1,-17,30,-7,50,-10v9,-1,14,4,15,14r12,83r3,0v7,-30,6,-71,20,-94","w":156},"\u0178":{"d":"128,-304v0,12,5,30,-10,29v-11,-1,-31,5,-30,-7v1,-12,-6,-30,9,-29v11,1,31,-5,31,7xm68,-304v-1,12,5,30,-9,29v-11,-1,-31,5,-31,-7v0,-12,-6,-30,10,-29v11,1,31,-5,30,7xm101,-256v20,-8,72,-9,54,20v-20,69,-45,129,-45,224v0,18,-31,10,-51,12v-25,-10,-2,-77,-14,-115r-44,-134v1,-17,30,-7,50,-10v9,-1,14,4,15,14r12,83r3,0v7,-30,6,-71,20,-94","w":156},"\u0179":{"d":"120,-316v5,-1,4,3,2,5v-12,18,-28,50,-64,34v8,-13,2,-39,21,-39r41,0xm125,-258v20,-3,16,31,9,49r-59,147v16,2,37,1,54,1v17,0,6,28,9,44v-6,37,-72,7,-121,18v-15,0,-9,-29,-10,-44v10,-51,46,-107,61,-154v-13,-13,-71,15,-58,-37v-1,-16,2,-24,20,-24r95,0","w":146},"\u017d":{"d":"94,-313v9,1,30,-4,26,6v-13,19,-32,44,-69,30r-26,-32v12,-12,43,-1,48,11v8,-4,9,-15,21,-15xm125,-258v20,-3,16,31,9,49r-59,147v16,2,37,1,54,1v17,0,6,28,9,44v-6,37,-72,7,-121,18v-15,0,-9,-29,-10,-44v10,-51,46,-107,61,-154v-13,-13,-71,15,-58,-37v-1,-16,2,-24,20,-24r95,0","w":146},"\u017b":{"d":"60,-317v25,0,47,-8,42,23v2,24,-8,23,-30,23v-25,-1,-27,-1,-27,-26v0,-14,1,-20,15,-20xm125,-258v20,-3,16,31,9,49r-59,147v16,2,37,1,54,1v17,0,6,28,9,44v-6,37,-72,7,-121,18v-15,0,-9,-29,-10,-44v10,-51,46,-107,61,-154v-13,-13,-71,15,-58,-37v-1,-16,2,-24,20,-24r95,0","w":146,"k":{"-":11}},"\u00e0":{"d":"104,-225v1,9,-29,6,-38,3v-9,-13,-20,-24,-27,-38v12,-4,44,-5,55,2xm8,-70v-3,-49,29,-91,73,-71v11,-9,2,-27,-17,-25v-14,-1,-39,19,-41,-5v-4,-40,22,-39,53,-39v44,0,59,12,60,53r0,145v3,21,-25,9,-41,12v-11,-1,-9,-2,-10,-13v-29,39,-86,-3,-77,-57xm72,-44v19,1,13,-25,13,-42v0,-12,-4,-18,-12,-18v-17,-2,-14,25,-14,42v0,12,4,18,13,18","w":148},"\u00e1":{"d":"120,-262v5,-1,3,3,2,5v-10,17,-33,53,-64,32v7,-12,1,-37,20,-37r42,0xm8,-70v-3,-49,29,-91,73,-71v11,-9,2,-27,-17,-25v-14,-1,-39,19,-41,-5v-4,-40,22,-39,53,-39v44,0,59,12,60,53r0,145v3,21,-25,9,-41,12v-11,-1,-9,-2,-10,-13v-29,39,-86,-3,-77,-57xm72,-44v19,1,13,-25,13,-42v0,-12,-4,-18,-12,-18v-17,-2,-14,25,-14,42v0,12,4,18,13,18","w":148},"\u00e2":{"d":"121,-225v1,1,1,6,-2,5v-21,2,-35,-2,-44,-14v-9,9,-30,21,-49,11v14,-19,33,-49,71,-32xm8,-70v-3,-49,29,-91,73,-71v11,-9,2,-27,-17,-25v-14,-1,-39,19,-41,-5v-4,-40,22,-39,53,-39v44,0,59,12,60,53r0,145v3,21,-25,9,-41,12v-11,-1,-9,-2,-10,-13v-29,39,-86,-3,-77,-57xm72,-44v19,1,13,-25,13,-42v0,-12,-4,-18,-12,-18v-17,-2,-14,25,-14,42v0,12,4,18,13,18","w":148},"\u00e3":{"d":"94,-246v12,-1,11,-16,29,-11v13,14,-9,39,-29,35v-9,2,-33,-11,-39,-11v-12,1,-11,17,-30,12v-10,-16,10,-39,30,-36v9,-2,33,11,39,11xm8,-70v-3,-49,29,-91,73,-71v11,-9,2,-27,-17,-25v-14,-1,-39,19,-41,-5v-4,-40,22,-39,53,-39v44,0,59,12,60,53r0,145v3,21,-25,9,-41,12v-11,-1,-9,-2,-10,-13v-29,39,-86,-3,-77,-57xm72,-44v19,1,13,-25,13,-42v0,-12,-4,-18,-12,-18v-17,-2,-14,25,-14,42v0,12,4,18,13,18","w":148},"\u00e4":{"d":"124,-250v-1,11,6,29,-9,28v-11,-1,-31,5,-31,-7v0,-12,-6,-29,10,-28v11,1,31,-5,30,7xm65,-250v0,12,6,29,-10,28v-11,-1,-31,5,-30,-7v1,-11,-6,-29,9,-28v11,1,31,-5,31,7xm8,-70v-3,-49,29,-91,73,-71v11,-9,2,-27,-17,-25v-14,-1,-39,19,-41,-5v-4,-40,22,-39,53,-39v44,0,59,12,60,53r0,145v3,21,-25,9,-41,12v-11,-1,-9,-2,-10,-13v-29,39,-86,-3,-77,-57xm72,-44v19,1,13,-25,13,-42v0,-12,-4,-18,-12,-18v-17,-2,-14,25,-14,42v0,12,4,18,13,18","w":148},"\u0101":{"d":"116,-254v16,0,13,31,0,28r-75,0v-14,1,-6,-14,-8,-23v0,-3,3,-5,9,-5r74,0xm8,-70v-3,-49,29,-91,73,-71v11,-9,2,-27,-17,-25v-14,-1,-39,19,-41,-5v-4,-40,22,-39,53,-39v44,0,59,12,60,53r0,145v3,21,-25,9,-41,12v-11,-1,-9,-2,-10,-13v-29,39,-86,-3,-77,-57xm72,-44v19,1,13,-25,13,-42v0,-12,-4,-18,-12,-18v-17,-2,-14,25,-14,42v0,12,4,18,13,18","w":148},"\u0103":{"d":"81,-242v14,0,15,-24,40,-17v14,22,-15,40,-41,40v-24,0,-45,-11,-44,-33v0,-12,14,-5,23,-7v7,4,9,19,22,17xm8,-70v-3,-49,29,-91,73,-71v11,-9,2,-27,-17,-25v-14,-1,-39,19,-41,-5v-4,-40,22,-39,53,-39v44,0,59,12,60,53r0,145v3,21,-25,9,-41,12v-11,-1,-9,-2,-10,-13v-29,39,-86,-3,-77,-57xm72,-44v19,1,13,-25,13,-42v0,-12,-4,-18,-12,-18v-17,-2,-14,25,-14,42v0,12,4,18,13,18","w":148},"\u00e5":{"d":"77,-295v20,0,37,16,37,37v0,22,-17,38,-37,38v-21,0,-38,-17,-38,-38v0,-20,17,-37,38,-37xm8,-70v-3,-49,29,-91,73,-71v11,-9,2,-27,-17,-25v-14,-1,-39,19,-41,-5v-4,-40,22,-39,53,-39v44,0,59,12,60,53r0,145v3,21,-25,9,-41,12v-11,-1,-9,-2,-10,-13v-29,39,-86,-3,-77,-57xm77,-243v7,0,14,-7,14,-14v1,-8,-6,-15,-14,-15v-8,0,-15,6,-15,14v0,8,8,15,15,15xm72,-44v19,1,13,-25,13,-42v0,-12,-4,-18,-12,-18v-17,-2,-14,25,-14,42v0,12,4,18,13,18","w":148},"\u0105":{"d":"8,-70v-3,-49,29,-91,73,-71v11,-9,2,-27,-17,-25v-14,-1,-39,19,-41,-5v-4,-40,22,-39,53,-39v44,0,59,12,60,53r0,145v6,15,-21,10,-9,20v7,-3,9,1,9,12v-12,26,-65,8,-47,-20v-2,-1,-4,-5,-4,-13v-29,39,-86,-3,-77,-57xm72,-44v19,1,13,-25,13,-42v0,-12,-4,-18,-12,-18v-17,-2,-14,25,-14,42v0,12,4,18,13,18","w":148},"\u00e6":{"d":"8,-70v0,-49,29,-91,73,-71v11,-9,2,-27,-17,-25v-14,-1,-38,19,-41,-5v-7,-54,63,-43,94,-29v58,-27,103,9,95,89v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-3,33,45,30,62,17v18,-1,12,25,12,41v0,15,-12,22,-38,22v-16,0,-26,-5,-32,-16v-9,3,-1,18,-21,14v-16,-3,-35,7,-31,-14r-3,0v-5,12,-15,17,-29,17v-32,-1,-47,-35,-47,-73xm143,-125v11,0,22,3,19,-11v3,-30,-28,-37,-27,-6v0,12,-1,17,8,17xm72,-44v19,1,13,-25,13,-42v0,-12,-4,-18,-12,-18v-17,-2,-14,25,-14,42v0,12,4,18,13,18","w":222},"\u0107":{"d":"105,-262v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0xm79,-62v24,-3,14,31,14,50v0,9,-5,14,-16,14v-60,-2,-68,-34,-68,-102v0,-74,5,-106,68,-110v24,-1,18,39,12,56v-23,4,-27,15,-26,49v1,27,-2,40,16,43","w":102},"\u0109":{"d":"110,-228v-5,11,-43,5,-44,-8v-11,-5,-11,15,-24,13v-9,-1,-26,5,-27,-5v14,-18,34,-47,70,-30xm79,-62v24,-3,14,31,14,50v0,9,-5,14,-16,14v-60,-2,-68,-34,-68,-102v0,-74,5,-106,68,-110v24,-1,18,39,12,56v-23,4,-27,15,-26,49v1,27,-2,40,16,43","w":102},"\u010d":{"d":"62,-248v6,-11,38,-23,47,-9v-13,19,-33,47,-69,30v-8,-11,-20,-19,-26,-32v11,-9,41,-3,45,10v1,1,2,1,3,1xm79,-62v24,-3,14,31,14,50v0,9,-5,14,-16,14v-60,-2,-68,-34,-68,-102v0,-74,5,-106,68,-110v24,-1,18,39,12,56v-23,4,-27,15,-26,49v1,27,-2,40,16,43","w":102},"\u010b":{"d":"82,-255v-2,12,6,29,-10,28v-12,-2,-33,5,-34,-7v2,-12,-6,-29,10,-28v12,2,33,-5,34,7xm79,-62v24,-3,14,31,14,50v0,9,-5,14,-16,14v-60,-2,-68,-34,-68,-102v0,-74,5,-106,68,-110v24,-1,18,39,12,56v-23,4,-27,15,-26,49v1,27,-2,40,16,43","w":102},"\u00e7":{"d":"71,12v21,-1,39,6,39,25v0,18,-17,28,-52,28v-27,1,-41,0,-44,-17v2,-21,50,14,58,-10v2,-14,-27,-1,-26,-17r1,-24v-34,-14,-38,-41,-38,-97v0,-74,5,-106,68,-110v24,-1,18,39,12,56v-23,4,-27,15,-26,49v1,28,-3,42,20,43v19,1,7,33,10,50v2,13,-14,16,-26,13v0,5,0,9,4,11","w":102},"\u010f":{"d":"101,-261v20,2,43,-8,38,17r0,230v2,19,-21,13,-37,14v-11,0,-13,-2,-14,-13v-9,10,-19,15,-31,15v-44,0,-43,-49,-46,-107v-3,-69,20,-126,75,-96v4,-21,-13,-63,15,-60xm63,-131v2,26,-10,74,12,78v23,-3,13,-51,13,-75v0,-17,1,-27,-13,-27v-12,0,-13,8,-12,24xm160,-228v-24,5,-16,-22,-16,-41v0,-14,23,-6,35,-8v24,12,3,94,-30,71","w":152},"\u0111":{"d":"86,-243v-5,-27,24,-16,45,-18v7,-1,9,9,8,18v6,1,15,-3,15,4v1,12,3,24,-15,20r0,205v3,20,-20,12,-37,14v-11,0,-13,-2,-14,-13v-52,43,-77,-19,-77,-91v0,-82,26,-120,75,-91r0,-24v-7,-1,-21,4,-20,-5v1,-7,-3,-19,5,-19r15,0xm63,-131v0,26,-10,73,12,78v23,-4,13,-53,13,-78v0,-12,-4,-19,-13,-19v-8,0,-12,7,-12,19","w":154},"\u00f0":{"d":"47,-221v-13,5,-12,-9,-15,-17v1,-5,16,-6,22,-8v-2,-5,-6,-11,-10,-14v2,-12,52,-13,56,4v16,-14,44,12,20,20r-8,2v20,34,30,76,30,127v0,81,-10,110,-69,110v-59,0,-66,-40,-66,-109v-1,-72,13,-100,70,-99v-3,-8,-6,-14,-10,-20xm74,-53v21,-5,8,-54,11,-78v3,-27,-21,-32,-21,-6r0,68v0,11,4,16,10,16","w":149},"\u00e8":{"d":"93,-225v0,9,-29,5,-38,3v-9,-13,-20,-24,-27,-38v12,-4,44,-5,55,2xm75,-210v49,0,65,30,63,99v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-3,33,45,30,61,17v18,-1,13,24,13,41v0,23,-25,23,-49,23v-63,0,-79,-40,-79,-108v0,-63,13,-105,68,-105xm68,-125v11,0,23,3,20,-11v3,-31,-28,-36,-28,-6v1,11,0,17,8,17","w":146,"k":{"-":11}},"\u00e9":{"d":"115,-262v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0xm75,-210v49,0,65,30,63,99v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-3,33,45,30,61,17v18,-1,13,24,13,41v0,23,-25,23,-49,23v-63,0,-79,-40,-79,-108v0,-63,13,-105,68,-105xm68,-125v11,0,23,3,20,-11v3,-31,-28,-36,-28,-6v1,11,0,17,8,17","w":146},"\u00ea":{"d":"120,-225v1,1,1,6,-2,5v-19,1,-35,1,-42,-13v-11,-3,-11,14,-24,13v-8,-2,-29,5,-26,-5v13,-19,34,-47,70,-30xm75,-210v49,0,65,30,63,99v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-3,33,45,30,61,17v18,-1,13,24,13,41v0,23,-25,23,-49,23v-63,0,-79,-40,-79,-108v0,-63,13,-105,68,-105xm68,-125v11,0,23,3,20,-11v3,-31,-28,-36,-28,-6v1,11,0,17,8,17","w":146},"\u011b":{"d":"74,-248v6,-11,38,-23,47,-9v-13,19,-33,47,-69,30v-8,-11,-20,-19,-26,-32v11,-9,41,-3,45,10v1,1,2,1,3,1xm75,-210v49,0,65,30,63,99v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-3,33,45,30,61,17v18,-1,13,24,13,41v0,23,-25,23,-49,23v-63,0,-79,-40,-79,-108v0,-63,13,-105,68,-105xm68,-125v11,0,23,3,20,-11v3,-31,-28,-36,-28,-6v1,11,0,17,8,17","w":146},"\u00eb":{"d":"123,-250v0,11,6,29,-9,28v-11,-2,-32,5,-31,-7v1,-12,-6,-29,10,-28v11,1,30,-4,30,7xm64,-250v0,12,6,29,-10,28v-11,-1,-31,5,-30,-7v1,-11,-6,-29,9,-28v11,1,31,-5,31,7xm75,-210v49,0,65,30,63,99v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-3,33,45,30,61,17v18,-1,13,24,13,41v0,23,-25,23,-49,23v-63,0,-79,-40,-79,-108v0,-63,13,-105,68,-105xm68,-125v11,0,23,3,20,-11v3,-31,-28,-36,-28,-6v1,11,0,17,8,17","w":146},"\u0113":{"d":"113,-254v16,0,13,31,0,28r-75,0v-14,1,-6,-14,-8,-23v0,-3,3,-5,9,-5r74,0xm75,-210v49,0,65,30,63,99v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-3,33,45,30,61,17v18,-1,13,24,13,41v0,23,-25,23,-49,23v-63,0,-79,-40,-79,-108v0,-63,13,-105,68,-105xm68,-125v11,0,23,3,20,-11v3,-31,-28,-36,-28,-6v1,11,0,17,8,17","w":146},"\u0115":{"d":"76,-242v14,0,15,-24,40,-17v11,23,-15,40,-41,40v-24,0,-45,-11,-44,-33v0,-12,14,-5,23,-7v7,4,9,19,22,17xm75,-210v49,0,65,30,63,99v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-3,33,45,30,61,17v18,-1,13,24,13,41v0,23,-25,23,-49,23v-63,0,-79,-40,-79,-108v0,-63,13,-105,68,-105xm68,-125v11,0,23,3,20,-11v3,-31,-28,-36,-28,-6v1,11,0,17,8,17","w":146},"\u0117":{"d":"98,-255v-2,12,6,29,-10,28v-12,-2,-33,5,-34,-7v2,-12,-6,-29,10,-28v12,2,33,-5,34,7xm75,-210v49,0,65,30,63,99v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-3,33,45,30,61,17v18,-1,13,24,13,41v0,23,-25,23,-49,23v-63,0,-79,-40,-79,-108v0,-63,13,-105,68,-105xm68,-125v11,0,23,3,20,-11v3,-31,-28,-36,-28,-6v1,11,0,17,8,17","w":146},"\u0119":{"d":"75,-210v49,0,65,30,63,99v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-3,33,45,30,61,17v18,-1,11,25,13,41v2,15,-26,22,-8,28v1,0,1,-1,1,-1v10,9,5,25,-21,25v-20,0,-28,-13,-22,-29v-61,-2,-78,-40,-78,-108v0,-63,13,-105,68,-105xm68,-125v11,0,23,3,20,-11v3,-31,-28,-36,-28,-6v1,11,0,17,8,17","w":146},"\u011d":{"d":"130,-228v-8,14,-43,2,-47,-10v-6,10,-34,25,-48,10v14,-18,34,-47,70,-30xm84,-44v-44,33,-74,-18,-74,-76v0,-74,32,-111,74,-77v-2,-20,24,-8,45,-11v7,0,6,11,6,19r0,156v4,49,-32,62,-71,63v-38,1,-41,-1,-43,-33v-2,-33,22,-11,39,-11v19,0,26,-10,24,-30xm74,-83v19,0,12,-34,12,-54v0,-13,-6,-19,-13,-19v-12,0,-14,15,-14,35v0,22,1,38,15,38","w":148},"\u011f":{"d":"83,-242v14,0,15,-24,40,-17v11,23,-15,40,-41,40v-24,0,-45,-11,-44,-33v0,-12,14,-5,23,-7v7,4,9,19,22,17xm84,-44v-44,33,-74,-18,-74,-76v0,-74,32,-111,74,-77v-2,-20,24,-8,45,-11v7,0,6,11,6,19r0,156v4,49,-32,62,-71,63v-38,1,-41,-1,-43,-33v-2,-33,22,-11,39,-11v19,0,26,-10,24,-30xm74,-83v19,0,12,-34,12,-54v0,-13,-6,-19,-13,-19v-12,0,-14,15,-14,35v0,22,1,38,15,38","w":148},"\u0121":{"d":"102,-255v-2,12,6,29,-10,28v-12,-2,-33,5,-34,-7v2,-12,-6,-29,10,-28v12,2,33,-5,34,7xm84,-44v-44,33,-74,-18,-74,-76v0,-74,32,-111,74,-77v-2,-20,24,-8,45,-11v7,0,6,11,6,19r0,156v4,49,-32,62,-71,63v-38,1,-41,-1,-43,-33v-2,-33,22,-11,39,-11v19,0,26,-10,24,-30xm74,-83v19,0,12,-34,12,-54v0,-13,-6,-19,-13,-19v-12,0,-14,15,-14,35v0,22,1,38,15,38","w":148},"\u0123":{"d":"86,-280v31,-7,19,28,21,53v1,17,-29,9,-45,11v-30,-15,-13,-105,32,-97v10,2,6,4,2,13xm84,-44v-44,33,-74,-18,-74,-76v0,-74,32,-111,74,-77v-2,-20,24,-8,45,-11v7,0,6,11,6,19r0,156v4,49,-32,62,-71,63v-38,1,-41,-1,-43,-33v-2,-33,22,-11,39,-11v19,0,26,-10,24,-30xm74,-83v19,0,12,-34,12,-54v0,-13,-6,-19,-13,-19v-12,0,-14,15,-14,35v0,22,1,38,15,38","w":148},"\u0125":{"d":"120,-281v2,8,-16,4,-26,5v-13,2,-14,-18,-23,-13v-5,10,-35,21,-46,8v15,-17,33,-48,70,-30xm105,-210v69,2,37,115,44,181v3,27,-7,30,-31,29v-20,0,-23,-1,-23,-20r0,-94v10,-40,-29,-56,-28,-12r2,110v3,23,-24,16,-43,16v-11,0,-14,-4,-13,-19r-1,-220v-2,-27,20,-21,43,-22v10,0,15,4,12,11v2,18,-3,44,3,58v9,-12,21,-18,35,-18","w":163},"\u0127":{"d":"105,-210v69,2,37,115,44,181v3,27,-7,30,-31,29v-20,0,-23,-1,-23,-20r0,-94v10,-40,-29,-56,-28,-12r2,110v3,23,-24,16,-43,16v-11,0,-14,-4,-13,-19r0,-198v-13,3,-15,-5,-13,-19v0,-5,7,-4,12,-4v-3,-26,20,-20,43,-21v15,0,12,8,12,21v7,1,21,-3,22,4v-1,6,3,19,-4,19r-17,0v1,8,-3,21,2,25v9,-12,21,-18,35,-18","w":163},"\u0131":{"d":"31,-205v15,0,38,-7,38,10r0,178v3,26,-22,17,-47,17v-9,0,-9,-5,-10,-16r0,-173v0,-14,4,-16,19,-16","w":82},"\u00ec":{"d":"62,-225v0,9,-29,5,-38,3v-9,-13,-20,-24,-27,-38v12,-4,44,-5,55,2xm31,-205v15,0,38,-7,38,10r0,178v3,26,-22,17,-47,17v-9,0,-9,-5,-10,-16r0,-173v0,-14,4,-16,19,-16","w":82},"\u00ed":{"d":"85,-262v5,-1,4,3,2,5v-12,19,-28,50,-64,34v8,-13,2,-39,21,-39r41,0xm31,-205v15,0,38,-7,38,10r0,178v3,26,-22,17,-47,17v-9,0,-9,-5,-10,-16r0,-173v0,-14,4,-16,19,-16","w":82},"\u012d":{"d":"42,-242v14,0,15,-24,40,-17v14,22,-15,40,-41,40v-24,0,-44,-12,-44,-33v0,-12,14,-5,23,-7v7,4,9,19,22,17xm31,-205v15,0,38,-7,38,10r0,178v3,26,-22,17,-47,17v-9,0,-9,-5,-10,-16r0,-173v0,-14,4,-16,19,-16","w":82},"\u00ee":{"d":"88,-225v1,1,1,6,-2,5v-19,1,-35,1,-42,-13v-11,-3,-11,14,-24,13v-8,-2,-29,5,-26,-5v13,-19,34,-47,70,-30xm31,-205v15,0,38,-7,38,10r0,178v3,26,-22,17,-47,17v-9,0,-9,-5,-10,-16r0,-173v0,-14,4,-16,19,-16","w":82},"\u0129":{"d":"63,-248v11,-1,10,-16,28,-11v16,14,-10,39,-28,36v-7,1,-33,-12,-40,-11v-9,2,-20,22,-33,8v-1,-42,48,-33,73,-22xm31,-205v15,0,38,-7,38,10r0,178v3,26,-22,17,-47,17v-9,0,-9,-5,-10,-16r0,-173v0,-14,4,-16,19,-16","w":82},"\u00ef":{"d":"91,-250v0,11,6,29,-9,28v-11,-2,-32,5,-31,-7v1,-11,-6,-29,9,-28v11,1,31,-5,31,7xm32,-250v0,12,6,29,-10,28v-11,-1,-31,5,-30,-7v1,-11,-6,-29,9,-28v11,1,31,-5,31,7xm31,-205v15,0,38,-7,38,10r0,178v3,26,-22,17,-47,17v-9,0,-9,-5,-10,-16r0,-173v0,-14,4,-16,19,-16","w":82},"\u012b":{"d":"80,-254v14,1,12,31,-1,28r-75,0v-14,1,-6,-14,-8,-23v0,-3,3,-5,9,-5r75,0xm31,-205v15,0,38,-7,38,10r0,178v3,26,-22,17,-47,17v-9,0,-9,-5,-10,-16r0,-173v0,-14,4,-16,19,-16","w":82},"\u012f":{"d":"27,-263v25,0,47,-8,42,23v2,24,-8,23,-30,23v-25,-1,-27,-1,-27,-26v0,-14,1,-20,15,-20xm31,-205v15,0,38,-7,38,10r0,178v5,18,-21,15,-10,25v7,-3,9,1,9,12v-12,26,-65,8,-47,-20v-9,-1,-8,-6,-9,-16r0,-173v0,-14,4,-16,19,-16","w":82},"\u0135":{"d":"96,-228v1,2,1,5,-2,5v-22,3,-36,-2,-45,-15v-5,11,-35,24,-48,10v15,-17,34,-47,71,-30xm38,-206v15,3,37,-7,37,11r0,173v0,37,-10,50,-46,52v-35,2,-27,-19,-28,-50v0,-20,18,0,18,-28r-1,-141v1,-14,5,-17,20,-17","w":88},"\u0137":{"d":"94,-199v10,-12,56,-12,54,5v0,9,-11,38,-32,86r36,101v-3,13,-31,7,-45,7v-7,0,-13,-6,-16,-18r-18,-64r-6,0r0,65v5,26,-18,17,-42,17v-10,0,-10,-5,-10,-18r-1,-228v-1,-23,21,-15,42,-17v13,-1,11,12,11,24r0,103r5,0v10,-20,16,-41,22,-63xm73,72v-31,7,-21,-28,-21,-53v0,-17,30,-9,46,-11v28,16,13,106,-33,98v-11,-2,-7,-6,-2,-14","w":157},"\u013a":{"d":"85,-316v5,-1,5,4,2,5v-11,17,-33,54,-64,33v8,-13,1,-37,21,-38r41,0xm14,-230v-8,-33,14,-35,43,-33v7,0,11,4,11,12r0,234v4,26,-20,15,-44,17v-11,-1,-10,-5,-10,-20r0,-210","w":82},"\u013e":{"d":"14,-230v-8,-33,14,-35,43,-33v7,0,11,4,11,12r0,234v4,26,-20,15,-44,17v-11,-1,-10,-5,-10,-20r0,-210xm93,-228v-24,5,-16,-22,-16,-41v0,-14,23,-6,35,-8v25,13,3,94,-31,71","w":82},"\u013c":{"d":"14,-230v-8,-33,14,-35,43,-33v7,0,11,4,11,12r0,234v4,26,-20,15,-44,17v-11,-1,-10,-5,-10,-20r0,-210xm32,72v-30,7,-18,-29,-20,-53v-1,-17,29,-9,45,-11v28,16,13,108,-33,98v-16,-4,7,-25,8,-34","w":82},"\u0142":{"d":"19,-180v5,-42,-21,-93,40,-83v19,3,8,31,11,50v5,-1,12,-12,16,-5v0,21,6,46,-16,49r0,152v3,24,-19,17,-41,17v-11,0,-10,-5,-10,-20r0,-117v-6,1,-16,16,-17,5v-2,-21,-4,-44,17,-48","w":90},"\u0140":{"d":"100,-158v16,0,28,12,28,28v0,16,-12,28,-28,28v-15,0,-28,-12,-28,-28v0,-16,13,-28,28,-28xm14,-230v-8,-33,14,-35,43,-33v7,0,11,4,11,12r0,234v4,26,-20,15,-44,17v-11,-1,-10,-5,-10,-20r0,-210","w":132},"\u0144":{"d":"117,-262v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0xm105,-210v69,2,37,115,44,181v3,27,-7,30,-31,29v-20,0,-23,-1,-23,-20r0,-94v10,-40,-29,-56,-28,-12r2,110v3,23,-24,16,-43,16v-11,0,-14,-4,-13,-19r-1,-167v-2,-28,20,-19,43,-21v14,-1,11,6,15,15v9,-12,21,-18,35,-18","w":162},"\u0148":{"d":"90,-260v9,-3,37,-6,35,3v-12,19,-33,47,-68,30r-27,-32v13,-10,42,-1,48,11v6,-2,8,-8,12,-12xm105,-210v69,2,37,115,44,181v3,27,-7,30,-31,29v-20,0,-23,-1,-23,-20r0,-94v10,-40,-29,-56,-28,-12r2,110v3,23,-24,16,-43,16v-11,0,-14,-4,-13,-19r-1,-167v-2,-28,20,-19,43,-21v14,-1,11,6,15,15v9,-12,21,-18,35,-18","w":162},"\u00f1":{"d":"101,-246v11,-2,11,-16,29,-11v13,14,-9,39,-29,35v-9,2,-33,-11,-39,-11v-10,1,-19,23,-34,8v-3,-41,50,-33,73,-21xm105,-210v69,2,37,115,44,181v3,27,-7,30,-31,29v-20,0,-23,-1,-23,-20r0,-94v10,-40,-29,-56,-28,-12r2,110v3,23,-24,16,-43,16v-11,0,-14,-4,-13,-19r-1,-167v-2,-28,20,-19,43,-21v14,-1,11,6,15,15v9,-12,21,-18,35,-18","w":162},"\u0146":{"d":"105,-210v69,2,37,115,44,181v3,27,-7,30,-31,29v-20,0,-23,-1,-23,-20r0,-94v10,-40,-29,-56,-28,-12r2,110v3,23,-24,16,-43,16v-11,0,-14,-4,-13,-19r-1,-167v-2,-28,20,-19,43,-21v14,-1,11,6,15,15v9,-12,21,-18,35,-18xm73,72v-31,8,-18,-27,-20,-53v-1,-17,29,-9,45,-11v28,16,13,107,-33,98v-16,-4,7,-25,8,-34","w":162},"\u00f2":{"d":"94,-225v1,9,-28,5,-37,3r-28,-38v12,-4,44,-5,55,2xm76,-210v53,0,63,34,63,96v1,86,-5,117,-66,117v-57,0,-62,-41,-63,-107v-1,-76,10,-106,66,-106xm87,-131v5,-27,-25,-33,-25,-6r0,68v0,11,4,16,12,16v25,0,8,-53,13,-78","w":149},"\u00f3":{"d":"117,-262v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0xm76,-210v53,0,63,34,63,96v1,86,-5,117,-66,117v-57,0,-62,-41,-63,-107v-1,-76,10,-106,66,-106xm87,-131v5,-27,-25,-33,-25,-6r0,68v0,11,4,16,12,16v25,0,8,-53,13,-78","w":149},"\u00f4":{"d":"121,-225v1,1,1,6,-2,5v-21,2,-35,-2,-44,-14v-9,9,-30,21,-49,11v14,-19,33,-49,71,-32xm76,-210v53,0,63,34,63,96v1,86,-5,117,-66,117v-57,0,-62,-41,-63,-107v-1,-76,10,-106,66,-106xm87,-131v5,-27,-25,-33,-25,-6r0,68v0,11,4,16,12,16v25,0,8,-53,13,-78","w":149},"\u00f5":{"d":"94,-246v12,-1,11,-16,29,-11v13,14,-9,39,-29,35v-9,2,-33,-11,-39,-11v-12,1,-11,17,-30,12v-10,-16,10,-39,30,-36v9,-2,33,11,39,11xm76,-210v53,0,63,34,63,96v1,86,-5,117,-66,117v-57,0,-62,-41,-63,-107v-1,-76,10,-106,66,-106xm87,-131v5,-27,-25,-33,-25,-6r0,68v0,11,4,16,12,16v25,0,8,-53,13,-78","w":149},"\u00f6":{"d":"124,-250v-1,11,6,29,-9,28v-11,-1,-31,5,-31,-7v0,-12,-6,-29,10,-28v11,1,31,-5,30,7xm65,-250v0,12,6,29,-10,28v-11,-1,-31,5,-30,-7v1,-11,-6,-29,9,-28v11,1,31,-5,31,7xm76,-210v53,0,63,34,63,96v1,86,-5,117,-66,117v-57,0,-62,-41,-63,-107v-1,-76,10,-106,66,-106xm87,-131v5,-27,-25,-33,-25,-6r0,68v0,11,4,16,12,16v25,0,8,-53,13,-78","w":149},"\u014d":{"d":"123,-248v-1,11,4,22,-10,22r-74,0v-14,1,-6,-14,-8,-23v0,-3,3,-5,9,-5r74,0v6,0,9,2,9,6xm76,-210v53,0,63,34,63,96v1,86,-5,117,-66,117v-57,0,-62,-41,-63,-107v-1,-76,10,-106,66,-106xm87,-131v5,-27,-25,-33,-25,-6r0,68v0,11,4,16,12,16v25,0,8,-53,13,-78","w":149},"\u014f":{"d":"77,-242v14,0,15,-24,40,-17v14,22,-15,40,-41,40v-24,0,-45,-11,-44,-33v0,-12,14,-5,23,-7v7,4,9,19,22,17xm76,-210v53,0,63,34,63,96v1,86,-5,117,-66,117v-57,0,-62,-41,-63,-107v-1,-76,10,-106,66,-106xm87,-131v5,-27,-25,-33,-25,-6r0,68v0,11,4,16,12,16v25,0,8,-53,13,-78","w":149},"\u0151":{"d":"151,-262v5,-1,5,3,2,5v-12,13,-32,49,-59,29v8,-11,8,-30,23,-34r34,0xm89,-262v4,-1,4,3,2,5v-12,13,-32,49,-59,29v9,-11,6,-34,23,-34r34,0xm76,-210v53,0,63,34,63,96v1,86,-5,117,-66,117v-57,0,-62,-41,-63,-107v-1,-76,10,-106,66,-106xm87,-131v5,-27,-25,-33,-25,-6r0,68v0,11,4,16,12,16v25,0,8,-53,13,-78","w":149},"\u00f8":{"d":"125,-212v8,-8,25,4,17,17r-11,18v5,15,8,36,8,63v1,84,-5,118,-63,118v-18,0,-33,-5,-43,-14v-5,6,-5,17,-15,19v-24,-4,-9,-27,1,-40v-6,-13,-9,-37,-9,-73v-1,-77,9,-106,65,-106v18,0,31,4,41,13xm87,-131v5,-27,-25,-33,-25,-6r0,68v0,11,4,16,12,16v25,0,8,-53,13,-78","w":149},"\u0153":{"d":"114,-200v58,-26,110,6,100,89v8,44,-39,25,-71,29v-4,0,-6,1,-6,4v-4,33,45,30,61,17v18,-1,12,25,13,41v-5,33,-71,26,-95,11v-11,8,-25,12,-43,12v-57,-2,-58,-41,-63,-107v-7,-93,40,-122,104,-96xm144,-125v12,0,22,2,20,-11v3,-30,-29,-37,-28,-6v1,11,0,16,8,17xm87,-131v5,-27,-25,-33,-25,-6r0,68v0,11,4,16,12,16v25,0,8,-53,13,-78","w":222},"\u0155":{"d":"94,-262v5,-1,4,3,2,5v-10,17,-33,53,-64,32v7,-12,1,-36,21,-37r41,0xm34,-207v21,0,34,-4,29,21r3,1v5,-17,11,-26,19,-26v18,0,10,49,10,70v-11,7,-27,5,-27,27r1,96v4,27,-23,18,-43,18v-12,0,-14,-5,-13,-19r-1,-166v1,-20,3,-22,22,-22","w":103},"\u0157":{"d":"34,-207v21,0,34,-4,29,21r3,1v5,-17,11,-26,19,-26v18,0,10,49,10,70v-11,7,-27,5,-27,27r1,96v4,27,-23,18,-43,18v-12,0,-14,-5,-13,-19r-1,-166v1,-20,3,-22,22,-22xm33,72v-31,7,-21,-28,-21,-53v0,-17,30,-9,46,-11v28,16,13,106,-33,98v-11,-2,-7,-6,-2,-14","w":103},"\u0159":{"d":"53,-248v6,-11,38,-23,47,-9v-13,19,-33,47,-69,30v-8,-11,-20,-19,-26,-32v11,-9,41,-3,45,10v1,1,2,1,3,1xm34,-207v21,0,34,-4,29,21r3,1v5,-17,11,-26,19,-26v18,0,10,49,10,70v-11,7,-27,5,-27,27r1,96v4,27,-23,18,-43,18v-12,0,-14,-5,-13,-19r-1,-166v1,-20,3,-22,22,-22","w":103},"\u015b":{"d":"102,-262v5,-1,4,3,2,5v-12,18,-28,50,-64,34v8,-13,2,-39,21,-39r41,0xm65,-146v13,27,49,49,47,85v-2,40,-24,64,-64,65v-44,1,-37,-13,-40,-46v-4,-37,66,11,41,-39v-20,-15,-41,-41,-41,-69v0,-35,24,-60,58,-60v37,0,38,7,38,39v0,30,-39,-1,-39,25","w":119},"\u015d":{"d":"112,-228v-5,11,-43,5,-44,-8v-10,-5,-10,15,-24,13v-8,-1,-29,4,-26,-5v13,-19,33,-47,69,-30xm65,-146v13,27,49,49,47,85v-2,40,-24,64,-64,65v-44,1,-37,-13,-40,-46v-4,-37,66,11,41,-39v-20,-15,-41,-41,-41,-69v0,-35,24,-60,58,-60v37,0,38,7,38,39v0,30,-39,-1,-39,25","w":119},"\u0161":{"d":"72,-256v8,-5,37,-6,35,2v-13,19,-33,47,-69,30r-26,-32v14,-10,42,0,48,11v6,-1,8,-8,12,-11xm65,-146v13,27,49,49,47,85v-2,40,-24,64,-64,65v-44,1,-37,-13,-40,-46v-4,-37,66,11,41,-39v-20,-15,-41,-41,-41,-69v0,-35,24,-60,58,-60v37,0,38,7,38,39v0,30,-39,-1,-39,25","w":119},"\u015f":{"d":"65,-146v13,27,47,49,47,85v0,41,-26,58,-57,66v0,9,13,7,21,8v13,1,22,12,23,24v0,18,-18,28,-53,28v-27,1,-41,0,-44,-17v2,-20,51,14,58,-10v4,-14,-28,-1,-25,-17r0,-18v-33,0,-24,-19,-27,-45v-5,-37,66,11,41,-39v-20,-15,-41,-41,-41,-69v0,-35,24,-60,58,-60v37,0,38,7,38,39v0,30,-39,-1,-39,25","w":119},"\u0219":{"d":"65,-146v13,27,49,49,47,85v-2,40,-24,64,-64,65v-44,1,-37,-13,-40,-46v-4,-37,66,11,41,-39v-20,-15,-41,-41,-41,-69v0,-35,24,-60,58,-60v37,0,38,7,38,39v0,30,-39,-1,-39,25xm48,72v-31,7,-21,-28,-21,-53v0,-17,30,-9,46,-11v28,16,13,106,-33,98v-11,-2,-7,-6,-2,-14","w":119},"\u00df":{"d":"79,-53v-1,-17,19,-8,17,-23v1,-8,-22,-66,-20,-78v-3,-15,27,-58,1,-58v-7,0,-10,5,-10,15r0,183v1,22,-29,12,-47,14v-6,0,-9,-6,-9,-17r0,-176v-1,-51,24,-70,71,-71v36,-1,65,21,64,55v5,22,-22,40,-11,57v29,44,40,146,-27,153v-36,4,-27,-25,-29,-54","w":164,"k":{"\u201d":5,"\u2019":5,"-":-5}},"\u0165":{"d":"76,-196v23,-4,19,16,19,36v-1,15,-2,15,-19,16r0,78v1,16,23,0,18,22v1,25,5,51,-30,44v-43,1,-40,-7,-43,-51v-2,-30,4,-67,-2,-93v-16,0,-17,-4,-17,-21v0,-22,-1,-31,19,-31v-1,-33,-8,-62,43,-52v21,0,9,34,12,52xm98,-228v-24,5,-16,-22,-16,-41v0,-14,23,-6,35,-8v24,12,3,94,-30,71","w":102},"\u0163":{"d":"76,-196v23,-4,19,16,19,36v-1,15,-2,15,-19,16r0,78v1,16,23,0,18,22v1,25,5,51,-30,44v-43,1,-40,-7,-43,-51v-2,-30,4,-67,-2,-93v-16,0,-17,-4,-17,-21v0,-22,-1,-31,19,-31v-1,-33,-8,-62,43,-52v21,0,9,34,12,52xm48,72v-31,7,-21,-28,-21,-53v0,-17,30,-9,46,-11v28,16,13,106,-33,98v-11,-2,-7,-6,-2,-14","w":102},"\u021b":{"d":"76,-196v23,-4,19,16,19,36v-1,15,-2,15,-19,16r0,78v1,16,23,0,18,22v1,25,5,51,-30,44v-43,1,-40,-7,-43,-51v-2,-30,4,-67,-2,-93v-16,0,-17,-4,-17,-21v0,-22,-1,-31,19,-31v-1,-33,-8,-62,43,-52v21,0,9,34,12,52xm48,72v-31,7,-21,-28,-21,-53v0,-17,30,-9,46,-11v28,16,13,106,-33,98v-11,-2,-7,-6,-2,-14","w":102},"\uf6c2":{"d":"71,12v21,-1,39,7,39,25v0,18,-18,28,-53,28v-27,1,-41,0,-44,-17v3,-20,50,14,59,-10v2,-15,-30,-1,-26,-17r0,-21v-47,-3,-13,-101,-27,-144v-16,0,-17,-4,-17,-21v0,-22,-1,-31,19,-31v-1,-33,-8,-62,43,-52v21,0,9,34,12,52v23,-4,19,16,19,36v-1,15,-2,15,-19,16r0,78v1,16,21,0,18,22v-3,23,8,51,-27,44v-2,4,-1,11,4,12","w":102},"\u0167":{"d":"76,-196v23,-4,19,16,19,36v-1,15,-2,15,-19,16r0,31v17,-3,15,10,14,24v1,4,-8,5,-14,5v1,10,-4,27,7,26v20,-3,9,27,11,43v2,17,-14,15,-30,15v-56,0,-40,-36,-43,-84v-16,3,-12,-11,-12,-24v-1,-4,6,-5,12,-5v-2,-9,3,-25,-2,-31v-16,0,-17,-4,-17,-21v0,-22,-1,-31,19,-31v-1,-33,-8,-62,43,-52v21,0,9,34,12,52","w":102},"\u00fe":{"d":"95,-208v45,4,43,49,46,106v3,69,-22,125,-75,94v-2,18,7,43,-15,40v-19,-2,-42,7,-37,-17r-1,-265v-3,-19,22,-13,38,-13v26,0,8,46,13,69v10,-10,20,-14,31,-14xm77,-53v23,-3,9,-50,13,-74v6,-30,-29,-40,-26,-7v2,27,-11,78,13,81","w":151},"\u00f9":{"d":"101,-225v0,9,-29,5,-38,3v-9,-13,-20,-24,-27,-38v12,-4,44,-5,55,2xm110,-207v19,0,38,-6,38,19r0,167v3,29,-20,20,-43,22v-14,1,-10,-8,-15,-16v-32,37,-78,16,-78,-52r0,-111v-3,-28,7,-30,31,-29v17,2,22,1,22,20r0,95v-8,40,30,54,29,11r-2,-110v0,-14,4,-16,18,-16","w":162},"\u00fa":{"d":"120,-262v5,-1,3,3,2,5v-10,17,-33,53,-64,32v7,-12,1,-37,20,-37r42,0xm110,-207v19,0,38,-6,38,19r0,167v3,29,-20,20,-43,22v-14,1,-10,-8,-15,-16v-32,37,-78,16,-78,-52r0,-111v-3,-28,7,-30,31,-29v17,2,22,1,22,20r0,95v-8,40,30,54,29,11r-2,-110v0,-14,4,-16,18,-16","w":162},"\u00fb":{"d":"128,-225v1,1,1,6,-2,5v-19,1,-35,1,-42,-13v-11,-3,-11,14,-24,13v-8,-2,-29,5,-26,-5v13,-19,34,-47,70,-30xm110,-207v19,0,38,-6,38,19r0,167v3,29,-20,20,-43,22v-14,1,-10,-8,-15,-16v-32,37,-78,16,-78,-52r0,-111v-3,-28,7,-30,31,-29v17,2,22,1,22,20r0,95v-8,40,30,54,29,11r-2,-110v0,-14,4,-16,18,-16","w":162},"\u0169":{"d":"100,-248v11,-1,10,-16,28,-11v16,14,-10,39,-28,36v-7,1,-33,-12,-40,-11v-11,2,-11,17,-30,12v-10,-16,10,-39,30,-37v7,-1,33,12,40,11xm110,-207v19,0,38,-6,38,19r0,167v3,29,-20,20,-43,22v-14,1,-10,-8,-15,-16v-32,37,-78,16,-78,-52r0,-111v-3,-28,7,-30,31,-29v17,2,22,1,22,20r0,95v-8,40,30,54,29,11r-2,-110v0,-14,4,-16,18,-16","w":162},"\u00fc":{"d":"131,-250v0,11,6,29,-9,28v-11,-2,-32,5,-31,-7v1,-11,-6,-29,9,-28v11,1,31,-5,31,7xm72,-250v0,12,6,29,-10,28v-11,-1,-31,5,-30,-7v1,-11,-6,-29,9,-28v11,1,31,-5,31,7xm110,-207v19,0,38,-6,38,19r0,167v3,29,-20,20,-43,22v-14,1,-10,-8,-15,-16v-32,37,-78,16,-78,-52r0,-111v-3,-28,7,-30,31,-29v17,2,22,1,22,20r0,95v-8,40,30,54,29,11r-2,-110v0,-14,4,-16,18,-16","w":162},"\u016b":{"d":"126,-248v-1,11,4,22,-10,22r-74,0v-14,2,-8,-13,-9,-23v17,-12,58,-2,84,-5v6,0,9,2,9,6xm110,-207v19,0,38,-6,38,19r0,167v3,29,-20,20,-43,22v-14,1,-10,-8,-15,-16v-32,37,-78,16,-78,-52r0,-111v-3,-28,7,-30,31,-29v17,2,22,1,22,20r0,95v-8,40,30,54,29,11r-2,-110v0,-14,4,-16,18,-16","w":162},"\u016d":{"d":"80,-242v14,0,15,-24,40,-17v11,23,-15,40,-41,40v-24,0,-45,-11,-44,-33v0,-12,14,-5,23,-7v7,4,9,19,22,17xm110,-207v19,0,38,-6,38,19r0,167v3,29,-20,20,-43,22v-14,1,-10,-8,-15,-16v-32,37,-78,16,-78,-52r0,-111v-3,-28,7,-30,31,-29v17,2,22,1,22,20r0,95v-8,40,30,54,29,11r-2,-110v0,-14,4,-16,18,-16","w":162},"\u016f":{"d":"77,-277v21,0,38,17,38,37v0,21,-17,38,-38,38v-21,0,-37,-17,-37,-38v0,-21,16,-37,37,-37xm110,-207v19,0,38,-6,38,19r0,167v3,29,-20,20,-43,22v-14,1,-10,-8,-15,-16v-32,37,-78,16,-78,-52r0,-111v-3,-28,7,-30,31,-29v17,2,22,1,22,20r0,95v-8,40,30,54,29,11r-2,-110v0,-14,4,-16,18,-16xm63,-240v-1,19,28,18,29,1v1,-8,-7,-15,-15,-15v-7,0,-15,7,-14,14","w":162},"\u0171":{"d":"153,-262v5,-1,5,3,2,5v-12,13,-32,49,-59,29v8,-11,8,-30,23,-34r34,0xm91,-262v4,-1,4,3,2,5v-12,13,-33,49,-60,29v11,-9,6,-34,24,-34r34,0xm110,-207v19,0,38,-6,38,19r0,167v3,29,-20,20,-43,22v-14,1,-10,-8,-15,-16v-32,37,-78,16,-78,-52r0,-111v-3,-28,7,-30,31,-29v17,2,22,1,22,20r0,95v-8,40,30,54,29,11r-2,-110v0,-14,4,-16,18,-16","w":162},"\u0173":{"d":"110,-207v19,0,38,-6,38,19r0,167v4,20,-9,17,-17,25v2,8,15,-3,12,16v-12,26,-65,8,-47,-20v-5,0,-2,-13,-6,-15v-32,37,-78,16,-78,-52r0,-111v-3,-28,7,-30,31,-29v17,2,22,1,22,20r0,95v-8,40,30,54,29,11r-2,-110v0,-14,4,-16,18,-16","w":162},"\u0175":{"d":"151,-228v-5,11,-43,5,-44,-8v-10,-4,-11,14,-24,13v-8,-1,-29,4,-26,-5v13,-19,33,-47,69,-30xm89,-207v20,2,41,-7,37,20r6,110r7,0r13,-124v5,-9,46,-11,50,2r-33,197v-17,1,-62,13,-59,-15r-6,-55r-5,0r-10,63v-2,17,-41,8,-56,6v-9,-19,-21,-134,-29,-194v-1,-13,36,-12,49,-5r16,125r6,0r9,-46r-8,-72v0,-7,5,-12,13,-12","w":204},"\u00fd":{"d":"111,-259v5,0,5,4,2,5v-15,14,-40,49,-71,29v10,-11,9,-34,28,-34r41,0xm84,-197v0,-16,24,-10,39,-10v14,0,16,8,13,21r-36,169v-8,32,-18,49,-54,50v-43,1,-38,-13,-38,-46v0,-29,32,6,25,-25r-32,-158v0,-17,28,-11,44,-11v10,0,9,4,10,15r12,129r7,0","w":138},"\u0177":{"d":"115,-228v1,2,1,5,-2,5v-22,3,-36,-2,-45,-15v-5,11,-35,24,-48,10v15,-17,34,-47,71,-30xm84,-197v0,-16,24,-10,39,-10v14,0,16,8,13,21r-36,169v-8,32,-18,49,-54,50v-43,1,-38,-13,-38,-46v0,-29,32,6,25,-25r-32,-158v0,-17,28,-11,44,-11v10,0,9,4,10,15r12,129r7,0","w":138},"\u00ff":{"d":"119,-250v0,12,6,29,-10,28v-11,-1,-31,5,-30,-7v1,-11,-6,-29,9,-28v11,1,31,-5,31,7xm59,-250v-1,11,6,29,-9,28v-11,-1,-31,5,-31,-7v0,-12,-6,-29,10,-28v11,1,31,-5,30,7xm84,-197v0,-16,24,-10,39,-10v14,0,16,8,13,21r-36,169v-8,32,-18,49,-54,50v-43,1,-38,-13,-38,-46v0,-29,32,6,25,-25r-32,-158v0,-17,28,-11,44,-11v10,0,9,4,10,15r12,129r7,0","w":138,"k":{"\u00ab":11,"\u2039":11,"\u201d":32,"\u201c":27,"\u2019":32,"\u2018":27,"\u015b":5,"\u00f8":5,"\u015a":11,"\u00d8":11,"o":5,"e":5,"Y":32,"W":20,"V":27,"U":11,"T":24,"O":11,"-":11}},"\u017a":{"d":"102,-262v5,-1,4,3,2,5v-12,18,-28,50,-64,34v8,-13,2,-39,21,-39r41,0xm68,-61v18,11,53,-12,43,40v7,28,-26,19,-41,20v-26,-4,-73,19,-66,-25v8,-49,29,-81,44,-126v-14,-11,-50,12,-42,-38v5,-33,56,-10,93,-17v17,4,7,49,0,60","w":114},"\u017e":{"d":"78,-259v8,1,29,-4,26,5v-12,19,-33,47,-68,30r-27,-32v12,-9,42,-2,46,10v11,3,10,-15,23,-13xm68,-61v18,11,53,-12,43,40v7,28,-26,19,-41,20v-26,-4,-73,19,-66,-25v8,-49,29,-81,44,-126v-14,-11,-50,12,-42,-38v5,-33,56,-10,93,-17v17,4,7,49,0,60","w":114},"\u017c":{"d":"45,-263v25,0,47,-8,42,23v2,24,-8,23,-30,23v-25,-1,-27,-1,-27,-26v0,-14,1,-20,15,-20xm68,-61v18,11,53,-12,43,40v7,28,-26,19,-41,20v-26,-4,-73,19,-66,-25v8,-49,29,-81,44,-126v-14,-11,-50,12,-42,-38v5,-33,56,-10,93,-17v17,4,7,49,0,60","w":114},"\u0132":{"d":"106,-242v-4,-27,36,-17,56,-14v9,44,3,126,3,188v0,47,-3,67,-43,71v-43,4,-38,-15,-39,-48v0,-10,10,-12,18,-13v11,-3,6,-46,6,-71xm32,-259v26,1,38,-6,38,27r0,211v2,24,-15,21,-36,21v-23,0,-22,-1,-23,-24r1,-219v-1,-16,3,-16,20,-16"},"\u0133":{"d":"115,-263v24,0,46,-7,42,23v2,24,-10,23,-32,23v-25,0,-24,-3,-25,-27v0,-15,1,-19,15,-19xm27,-263v25,0,47,-8,42,23v2,24,-8,23,-30,23v-25,-1,-27,-1,-27,-26v0,-14,1,-20,15,-20xm119,-206v15,3,37,-7,37,11r0,173v0,37,-10,50,-46,52v-35,2,-27,-19,-28,-50v0,-20,18,0,18,-28r-1,-141v1,-14,5,-17,20,-17xm31,-205v15,0,38,-7,38,10r0,178v3,26,-22,17,-47,17v-9,0,-9,-5,-10,-16r0,-173v0,-14,4,-16,19,-16","w":171},"\u00b4":{"d":"116,-262v5,-1,5,2,3,5v-12,18,-29,50,-65,34v8,-13,2,-39,21,-39r41,0","w":149},"\u02c6":{"d":"137,-228v-5,11,-43,5,-44,-8v-11,-5,-11,15,-24,13v-9,-1,-26,5,-27,-5v14,-18,34,-47,70,-30"},"\u02c7":{"d":"102,-260v9,-3,37,-6,35,3v-13,19,-33,47,-69,30v-8,-11,-20,-19,-26,-32v11,-9,41,-3,45,10v8,3,10,-8,15,-11"},"\u02dc":{"d":"110,-248v11,-1,10,-16,28,-11v16,14,-10,39,-28,36v-7,1,-33,-12,-40,-11v-11,2,-11,17,-30,12v-10,-16,10,-39,30,-37v7,-1,33,12,40,11"},"\u00a8":{"d":"140,-250v0,12,6,29,-10,28v-11,-1,-31,5,-30,-7v1,-11,-6,-29,9,-28v11,1,31,-5,31,7xm80,-250v-1,11,6,29,-9,28v-11,-1,-31,5,-31,-7v0,-12,-6,-29,10,-28v11,1,31,-5,30,7"},"\u00af":{"d":"128,-254v14,1,12,31,-1,28r-74,0v-14,2,-8,-13,-9,-23v17,-12,58,-2,84,-5"},"\u02c9":{"d":"128,-254v14,1,12,31,-1,28r-74,0v-14,2,-8,-13,-9,-23v17,-12,58,-2,84,-5"},"\u02d8":{"d":"91,-242v14,0,15,-24,40,-17v11,23,-15,40,-41,40v-24,0,-45,-11,-44,-33v0,-12,14,-5,23,-7v7,4,9,19,22,17"},"\u02da":{"d":"90,-295v21,0,38,17,38,37v0,21,-17,38,-38,38v-21,0,-38,-17,-38,-38v0,-21,17,-37,38,-37xm90,-243v7,0,14,-7,14,-14v1,-8,-6,-15,-14,-15v-7,0,-15,7,-14,14v0,8,7,15,14,15"},"\u02dd":{"d":"160,-262v5,-1,5,3,2,5v-12,13,-32,49,-59,29v8,-11,8,-30,23,-34r34,0xm98,-262v4,-1,4,3,2,5v-12,13,-32,49,-59,29v9,-11,6,-34,23,-34r34,0"},"\u02d9":{"d":"112,-255v-2,12,6,29,-10,28v-12,-2,-33,5,-34,-7v2,-12,-6,-29,10,-28v12,2,33,-5,34,7"},"\u00b8":{"d":"71,12v21,-1,39,6,39,25v0,18,-17,28,-52,28v-27,1,-41,0,-44,-17v2,-21,50,14,58,-10v2,-14,-26,-1,-26,-17r0,-27v7,4,21,0,21,11v0,3,1,6,4,7","w":102},"\u02db":{"d":"70,7v10,9,5,29,-21,25v-30,1,-32,-31,-12,-44r31,12v-7,-1,-8,7,-2,8","w":116},"\u2026":{"d":"329,-51v-2,19,10,52,-13,51v-18,-1,-47,7,-45,-13v2,-20,-10,-53,14,-51v17,1,46,-8,44,13xm209,-51v-2,20,10,53,-14,51v-17,-1,-46,8,-44,-13v2,-20,-10,-53,14,-51v17,1,46,-8,44,13xm89,-51v-2,19,10,52,-13,51v-18,-1,-47,7,-45,-13v2,-20,-10,-53,14,-51v17,1,46,-8,44,13","w":360},"\u00ad":{"d":"90,-81r-80,0r0,-47r80,0r0,47","w":100,"k":{"\u015a":-5,"\u00d8":-5,"\u00d3":-5,"\u0106":-5,"Y":24,"X":11,"W":5,"V":11,"T":18,"S":-5,"O":-5,"J":-11,"G":-5,"C":-5}},"\u00a1":{"d":"74,-247v-2,19,9,52,-13,52v-17,0,-46,7,-44,-13v2,-19,-9,-52,13,-52v17,0,46,-8,44,13xm36,-180v16,1,35,-6,31,14r10,158v0,17,-32,9,-49,11v-13,1,-15,-6,-14,-18r10,-151v0,-12,2,-12,12,-14","w":90},"\u00bf":{"d":"72,-195v-17,0,-46,8,-44,-13v2,-20,-9,-52,14,-52v17,0,46,-8,44,13v-2,20,9,52,-14,52xm73,-74v-2,15,10,17,21,13v8,0,12,13,12,38v0,23,-15,27,-40,27v-34,0,-55,-18,-55,-53v0,-38,33,-70,25,-118v-3,-17,20,-12,36,-13v23,8,3,85,1,106","w":116},"\u2018":{"d":"48,-226v31,-7,21,30,21,53v0,17,-30,9,-46,11v-28,-17,-12,-107,33,-98v18,4,-8,24,-8,34","w":79,"k":{"\u0106":17,"\u00c5":17,"J":11,"A":17}},"\u2019":{"d":"32,-193v-31,7,-20,-28,-21,-53v-1,-17,30,-9,46,-11v28,16,12,106,-33,97v-4,0,-7,-1,-7,-4","w":79},"\u201c":{"d":"121,-226v31,-8,18,28,20,53v1,17,-29,9,-45,11v-28,-17,-12,-107,33,-98v18,4,-8,24,-8,34xm48,-226v31,-7,21,30,21,53v0,17,-30,9,-46,11v-28,-17,-12,-107,33,-98v18,4,-8,24,-8,34","w":152,"k":{"\u0106":17,"\u00c5":17,"J":11,"A":17}},"\u201d":{"d":"104,-193v-30,7,-20,-29,-20,-53v0,-17,29,-9,45,-11v28,16,13,107,-33,97v-4,0,-6,-1,-6,-4v1,-7,11,-23,14,-29xm32,-193v-31,7,-20,-28,-21,-53v-1,-17,30,-9,46,-11v28,16,12,106,-33,97v-4,0,-7,-1,-7,-4","w":152},"\u201a":{"d":"32,0v-31,7,-20,-28,-21,-53v-1,-17,30,-9,46,-11v28,16,12,106,-33,97v-10,-1,-6,-4,-2,-13","w":79,"k":{"\u0106":-5,"\u00c5":-5,"y":5,"w":5,"Y":32,"W":17,"V":22,"T":22,"J":-5,"A":-5}},"\u201e":{"d":"104,0v-30,7,-20,-29,-20,-53v0,-17,29,-9,45,-11v28,16,13,107,-33,97v-16,-4,8,-24,8,-33xm32,0v-31,7,-20,-28,-21,-53v-1,-17,30,-9,46,-11v28,16,12,106,-33,97v-10,-1,-6,-4,-2,-13","w":152,"k":{"\u0106":-5,"\u00c5":-5,"y":5,"w":5,"Y":32,"W":17,"V":22,"T":22,"J":-5,"A":-5}},"\u2039":{"d":"72,-27v0,4,-6,4,-8,1v-16,-19,-39,-32,-51,-55v1,-17,-4,-41,3,-53v18,-16,32,-36,52,-50v6,12,4,43,0,57v-6,9,-20,14,-19,26v7,9,20,16,23,29r0,45","w":86,"k":{"Y":27,"V":5,"T":17}},"\u203a":{"d":"70,-134v6,16,5,47,0,61r-52,49v-8,-10,-7,-45,1,-58v5,-8,23,-15,17,-26v-6,-10,-19,-14,-21,-28v2,-15,-4,-38,3,-48v20,14,34,34,52,50","w":86,"k":{"Y":27,"V":11,"T":22,"J":-11}},"\u00ab":{"d":"122,-101v20,10,29,49,19,77v-20,-14,-34,-33,-52,-49v-6,-14,-5,-45,0,-61v18,-16,32,-36,52,-50v6,12,4,43,0,57v-6,9,-20,14,-19,26xm72,-27v0,4,-6,4,-8,1v-16,-19,-39,-32,-51,-55v1,-17,-4,-41,3,-53v18,-16,32,-36,52,-50v6,12,4,43,0,57v-6,9,-20,14,-19,26v7,9,20,16,23,29r0,45","w":158,"k":{"Y":27,"V":5,"T":17}},"\u00bb":{"d":"141,-134v6,16,5,47,0,61v-18,16,-32,35,-52,49v-6,-12,-6,-44,1,-58v5,-8,23,-15,17,-26v-6,-10,-19,-14,-21,-28v2,-15,-4,-38,3,-48v20,14,34,34,52,50xm70,-134v6,16,5,47,0,61r-52,49v-8,-10,-7,-45,1,-58v5,-8,23,-15,17,-26v-6,-10,-19,-14,-21,-28v2,-15,-4,-38,3,-48v20,14,34,34,52,50","w":158,"k":{"Y":27,"V":11,"T":22,"J":-11}},"\u2013":{"d":"180,-83r-180,0r0,-41r180,0r0,41"},"\u2014":{"d":"360,-83r-360,0r0,-41r360,0r0,41","w":360},"\u2022":{"d":"106,-186v28,0,52,24,52,52v0,28,-24,52,-52,52v-28,0,-52,-24,-52,-52v0,-28,24,-52,52,-52","w":212},"\u00b7":{"d":"40,-158v16,0,28,12,28,28v0,16,-12,28,-28,28v-15,0,-28,-12,-28,-28v0,-16,13,-28,28,-28","w":79},"\u2219":{"d":"40,-158v16,0,28,12,28,28v0,16,-12,28,-28,28v-15,0,-28,-12,-28,-28v0,-16,13,-28,28,-28","w":79},"\u2020":{"d":"118,-189v15,2,43,-7,41,10v-1,15,7,46,-7,46r-34,0r0,152v3,22,-27,10,-44,13v-13,-1,-12,-1,-12,-13r0,-152v-16,-3,-46,10,-41,-14v3,-16,-9,-42,11,-42r30,0v3,-34,-16,-82,40,-70v30,0,11,46,16,70"},"\u2021":{"d":"118,-87v15,3,43,-8,41,10v-2,15,7,45,-7,45r-34,0v-5,21,12,64,-13,64v-17,0,-43,10,-43,-13r0,-51v-16,-3,-46,10,-41,-14v3,-15,-9,-41,11,-41r30,0r0,-54v-16,-3,-46,10,-41,-14v3,-15,-9,-42,11,-42r30,0v4,-22,-11,-62,15,-62v17,1,41,-5,41,13r0,49v15,2,43,-7,41,11v-2,15,7,45,-7,45r-34,0r0,54"},"\u00a7":{"d":"145,-215v-4,34,-50,-26,-57,12v15,36,74,38,74,87v0,21,-11,38,-33,49v41,31,10,104,-49,98v-23,-2,-41,0,-44,-13v3,-16,-9,-43,12,-41v8,4,41,16,41,-4v-17,-32,-71,-34,-71,-84v0,-26,10,-43,30,-52v-41,-42,-8,-107,56,-100v40,-4,45,13,41,48xm69,-117v1,16,36,34,39,8v1,-17,-37,-34,-39,-8"},"\u00b6":{"d":"7,-199v1,-37,29,-62,69,-61r97,0r0,20r-20,0r0,240r-27,0r0,-240r-28,0r0,240r-26,0r0,-138v-37,-1,-65,-24,-65,-61"},"\u00a6":{"d":"108,-118r-36,0r0,-134r36,0r0,134xm108,62r-36,0r0,-134r36,0r0,134"},"\u00a9":{"d":"150,-260v71,0,131,60,131,131v0,71,-62,131,-131,131v-68,0,-131,-62,-131,-131v0,-70,60,-131,131,-131xm150,-20v57,0,109,-50,109,-109v0,-59,-50,-109,-109,-109v-61,0,-109,51,-109,109v0,59,50,109,109,109xm150,-184v-25,0,-34,25,-34,55v0,58,58,72,65,24r34,0v-1,33,-29,54,-65,54v-45,0,-70,-32,-70,-77v0,-65,66,-101,115,-66v12,8,17,21,18,36r-33,0v-2,-17,-12,-26,-30,-26","w":299},"\u00ae":{"d":"150,-260v71,-2,131,59,131,131v0,71,-61,131,-131,131v-69,0,-134,-61,-131,-131v3,-73,54,-130,131,-131xm150,-20v56,0,109,-48,109,-107v0,-61,-48,-111,-109,-111v-59,0,-109,52,-109,109v0,59,52,109,109,109xm215,-59r-39,0r-28,-59r-17,0r0,59r-35,0r0,-145v51,-1,119,-5,119,42v0,20,-11,33,-32,38xm178,-160v2,-19,-23,-24,-47,-22r0,42v23,1,49,0,47,-20","w":299},"\u2122":{"d":"254,-161r-24,0r0,-72r-27,72r-10,0r-28,-72r0,72r-24,0r0,-96r35,0r22,58r22,-58r34,0r0,96xm122,-237r-30,0r0,76r-26,0r0,-76r-30,0r0,-20r86,0r0,20","w":299},"\u00a4":{"d":"37,-149r-24,-24r20,-21r25,24v24,-16,59,-16,83,0r24,-24r21,21r-25,24v17,25,17,58,0,83r25,24r-21,20r-24,-24v-24,17,-59,18,-83,0r-25,24r-20,-20r24,-24v-16,-25,-16,-58,0,-83xm99,-153v-24,0,-45,20,-45,45v0,24,22,46,45,46v24,0,46,-23,46,-46v0,-24,-21,-45,-46,-45","w":200},"\u20ac":{"d":"90,-120v21,1,52,-7,41,23v-4,11,-28,4,-40,6v4,38,17,34,52,34v15,0,11,26,11,42v0,13,-12,19,-35,19v-65,1,-80,-34,-86,-95v-9,-1,-27,3,-26,-6v1,-15,1,-27,24,-23r0,-20v-8,-1,-25,3,-24,-6v1,-15,1,-28,25,-23v7,-65,24,-94,91,-95v32,-1,31,16,30,42v6,21,-30,12,-43,17v-10,3,-16,15,-18,36v22,1,60,-9,46,23v-4,12,-33,3,-48,6r0,20","w":160},"\u00a2":{"d":"82,-105v-1,36,3,43,32,43v18,0,9,33,11,50v1,11,-8,14,-20,13v-2,9,5,27,-6,26v-8,-1,-23,4,-23,-4r0,-23v-39,-7,-49,-45,-49,-100v0,-60,8,-98,49,-107v2,-9,-4,-25,4,-28v9,1,25,-4,25,6r0,21v28,-5,18,21,20,42v2,27,-42,4,-42,32v0,2,-1,12,-1,29","w":160},"\u00a3":{"d":"81,-60v24,5,72,-15,69,18v-2,19,8,42,-16,42r-115,0v-11,-2,-4,-23,-6,-34v9,-17,24,-35,18,-69v-7,-1,-20,3,-22,-3v2,-15,-8,-38,17,-32v-25,-57,-8,-127,55,-127v53,1,64,33,67,88v2,27,-18,18,-40,20v-26,3,2,-53,-23,-51v-17,6,-12,48,-2,70v15,3,42,-7,46,6v-2,9,4,27,-4,29r-38,0v2,20,1,28,-6,43","w":160},"\u0192":{"d":"137,-213v-31,-4,-31,19,-29,50v12,2,35,-6,38,5v-2,10,4,28,-4,31r-34,0r0,88v-4,60,-14,72,-81,72v-26,0,-10,-25,-14,-42v1,-10,2,-10,13,-10v22,0,24,-5,24,-29r0,-79v-12,-2,-34,6,-36,-6v2,-10,-5,-30,5,-30r31,0v-5,-72,10,-110,87,-101v16,2,6,28,9,43v0,5,-3,7,-9,8","w":160},"\u00a5":{"d":"98,0v-22,0,-55,11,-47,-24v-1,-26,3,-62,-3,-83v-12,-1,-34,4,-36,-6v2,-12,-7,-32,10,-30r16,0r-36,-108v1,-18,32,-10,52,-10v8,0,12,5,13,13r12,97r4,0r16,-105v7,-8,31,-2,44,-5v19,0,18,9,13,23r-32,95v8,1,24,-3,24,5v0,12,7,32,-9,31r-25,0v-10,27,-3,62,-3,95v0,8,-4,12,-13,12","w":160},"\u00aa":{"d":"57,-261v72,-9,37,83,45,138v2,14,-18,7,-30,9v-10,1,-5,-5,-10,-10v-3,8,-10,12,-20,12v-50,-2,-46,-105,2,-105v0,0,20,10,20,-1v0,-31,-53,16,-46,-29v3,-17,22,-12,39,-14xm54,-145v11,2,9,-18,9,-30v0,-9,-2,-13,-8,-13v-13,-1,-11,17,-11,30v0,8,4,13,10,13","w":111},"\u00ba":{"d":"57,-261v41,0,46,23,47,67v1,60,-5,82,-49,82v-41,0,-47,-27,-47,-76v-1,-54,9,-73,49,-73xm66,-164v0,-20,10,-57,-11,-58v-17,4,-9,40,-9,59v0,8,3,12,9,12v7,0,11,-4,11,-13","w":111},"\u00b9":{"d":"80,-117v3,19,-18,11,-33,13v-16,-17,0,-76,-7,-113v-6,17,-24,16,-32,1v11,-17,27,-29,39,-45v12,2,34,-6,33,9r0,135","w":106},"\u00b2":{"d":"54,-262v27,0,42,18,42,47v0,24,-12,49,-37,75v14,2,38,-7,36,11v-1,11,5,25,-10,25r-68,0v-20,-7,-3,-44,10,-46v21,-22,31,-43,31,-62v0,-19,-18,-22,-16,-4v2,18,-8,18,-25,18v-9,0,-8,-6,-8,-15v0,-34,11,-49,45,-49","w":106},"\u00b3":{"d":"6,-240v12,-30,87,-31,87,18v0,13,-6,23,-17,30v40,17,18,96,-29,90v-12,-1,-50,-9,-43,-25v7,-7,9,-18,19,-22v9,6,32,18,33,-6v2,-29,-37,-1,-30,-43v2,-13,32,-1,29,-19v-4,-25,-28,3,-35,-5v-5,-6,-12,-10,-14,-18","w":106},"\u2044":{"d":"82,-261v7,-13,33,-1,26,13r-129,246v-7,14,-27,3,-30,-7","w":60},"\u2215":{"d":"82,-261v7,-13,33,-1,26,13r-129,246v-7,14,-27,3,-30,-7","w":60},"\u00bc":{"d":"234,0v-11,-1,-27,5,-27,-8r0,-23v-22,1,-57,4,-40,-29r43,-83v6,-3,33,-9,34,4r0,77v15,-4,14,10,13,24v0,7,-6,8,-13,7v-3,12,8,35,-10,31xm183,-261v7,-13,34,0,27,13r-130,246v-7,15,-27,3,-30,-7xm76,-127v4,20,-17,11,-31,13v-15,-15,-1,-68,-6,-106v-6,15,-25,16,-32,1v11,-15,26,-28,38,-42v12,2,31,-6,31,9r0,125xm209,-62r0,-36r-17,36r17,0","w":262},"\u00bd":{"d":"212,-148v61,0,47,79,6,114v13,2,36,-6,34,10v-1,11,5,24,-10,24r-65,0v-19,-7,0,-40,10,-43v20,-21,30,-39,30,-57v0,-17,-17,-23,-15,-4v2,18,-9,18,-25,17v-6,0,-7,-7,-7,-15v0,-32,12,-46,42,-46xm183,-261v7,-13,34,0,27,13r-130,246v-7,15,-27,3,-30,-7xm76,-127v4,20,-17,11,-31,13v-15,-15,-1,-68,-6,-106v-6,15,-25,16,-32,1v11,-15,26,-28,38,-42v12,2,31,-6,31,9r0,125","w":262},"\u00be":{"d":"234,0v-10,-2,-29,6,-26,-8r0,-23v-22,0,-59,5,-41,-29r43,-83v6,-4,35,-9,35,4r0,77v14,-4,12,10,12,24v0,7,-5,8,-12,7v-2,13,7,35,-11,31xm184,-261v6,-10,35,-2,26,13r-129,246v-7,14,-28,4,-30,-7xm6,-242v10,-28,83,-29,83,17v0,13,-6,22,-17,28v37,16,19,84,-27,84v-10,0,-48,-8,-41,-23v6,-7,7,-18,18,-20v8,5,32,16,32,-6v0,-28,-37,0,-30,-40v2,-11,31,-2,28,-18v-4,-23,-26,4,-33,-5v-4,-6,-11,-9,-13,-17xm210,-62r0,-36r-17,36r17,0","w":262},"\u2030":{"d":"290,-138v46,-2,47,38,46,85v-1,41,-10,59,-48,59v-42,0,-46,-30,-45,-79v0,-46,8,-63,47,-65xm170,-261v6,-11,34,-2,26,13r-129,246v-7,14,-27,3,-30,-7xm182,-138v46,-2,46,38,46,85v0,42,-10,59,-48,59v-41,0,-44,-28,-44,-79v0,-46,7,-63,46,-65xm54,-265v46,0,47,31,46,86v-1,39,-10,57,-47,57v-43,0,-46,-28,-45,-79v1,-44,7,-64,46,-64xm298,-37r0,-57v0,-6,-3,-9,-9,-9v-6,0,-8,3,-8,9r0,57v0,6,2,10,8,10v6,0,9,-4,9,-10xm62,-165r0,-57v0,-6,-2,-9,-8,-9v-6,0,-8,3,-8,9r0,57v0,6,2,10,8,10v6,0,8,-4,8,-10xm190,-37r0,-57v0,-6,-2,-9,-8,-9v-6,0,-8,3,-8,9r0,57v0,6,2,10,8,10v6,0,8,-4,8,-10","w":344},"\u2212":{"d":"255,-90r-210,0r0,-35r210,0r0,35","w":299},"\u00b1":{"d":"255,-123r-87,0r0,57r-36,0r0,-57r-87,0r0,-35r87,0r0,-57r36,0r0,57r87,0r0,35xm255,0r-210,0r0,-35r210,0r0,35","w":299},"\u00d7":{"d":"256,-28r-25,24r-79,-79r-79,79r-24,-24r79,-79r-79,-80r24,-24r79,79r79,-79r25,24r-79,80","w":299},"\u00f7":{"d":"150,-203v14,0,27,13,27,27v0,14,-13,26,-27,26v-14,0,-27,-12,-27,-26v0,-14,13,-27,27,-27xm255,-90r-210,0r0,-35r210,0r0,35xm150,-65v14,0,27,13,27,27v0,14,-13,26,-27,26v-15,1,-27,-12,-27,-26v0,-14,13,-27,27,-27","w":299},"\u00ac":{"d":"255,-64r-35,0r0,-53r-175,0r0,-35r210,0r0,88","w":299},"\u00b5":{"d":"208,-192r-34,192r-47,0r3,-21v-15,35,-55,35,-75,6r-16,92r-50,0r47,-269r51,0v-6,37,-17,87,-19,124v-2,37,44,42,58,16v16,-32,22,-97,31,-140r51,0","w":219},"\u03bc":{"d":"208,-192r-34,192r-47,0r3,-21v-15,35,-55,35,-75,6r-16,92r-50,0r47,-269r51,0v-6,37,-17,87,-19,124v-2,37,44,42,58,16v16,-32,22,-97,31,-140r51,0","w":219},"\u00b0":{"d":"59,-257v30,0,54,24,54,53v0,29,-25,54,-54,54v-29,0,-54,-24,-53,-54v0,-29,23,-53,53,-53xm59,-173v17,0,31,-15,31,-31v0,-16,-15,-31,-31,-31v-16,0,-31,16,-31,31v0,17,14,31,31,31","w":118}}});

/* riverside.js */

Cufon.replace('#ja-cssmenu li a',{fontFamily:'Gothic821CnEU',fontSize:'21px',hover:'true',hoverables:{a:true}});

/* core.js */

function switchFontSize(ckname,val){var bd=document.getElementsByTagName('body');if(!bd||!bd.length)return;bd=bd[0];var oldclass='fs'+CurrentFontSize;switch(val){case'inc':if(CurrentFontSize+1<7){CurrentFontSize++;}
break;case'dec':if(CurrentFontSize-1>0){CurrentFontSize--;}
break;case'reset':default:CurrentFontSize=DefaultFontSize;}
var newclass='fs'+CurrentFontSize;bd.className=bd.className.replace(new RegExp('fs.?','g'),'');bd.className=trim(bd.className);bd.className+=(bd.className?' ':'')+newclass;createCookie(ckname,CurrentFontSize,365);}
function switchTool(ckname,val){createCookie(ckname,val,365);window.location.reload();}
function cpanel_reset(){var matches=document.cookie.match('(?:^|;)\\s*'+tmpl_name.escapeRegExp()+'_([^=]*)=([^;]*)','g');if(!matches)return;for(i=0;i<matches.length;i++){var ck=matches[i].match('(?:^|;)\\s*'+tmpl_name.escapeRegExp()+'_([^=]*)=([^;]*)');if(ck){createCookie(tmpl_name+'_'+ck[1],'',-1);}}
if(window.location.href.indexOf('?')>-1)window.location.href=window.location.href.substr(0,window.location.href.indexOf('?'));else window.location.reload();}
function cpanel_apply(){var elems=document.getElementById('ja-cpanel-main').getElementsByTagName('*');var usersetting={};for(i=0;i<elems.length;i++){var el=elems[i];if(el.name&&(match=el.name.match(/^user_(.*)$/))){var name=match[1];var value='';if(el.tagName.toLowerCase()=='input'&&(el.type.toLowerCase()=='radio'||el.type.toLowerCase()=='checkbox')){if(el.checked)value=el.value;}else{value=el.value;}
if(usersetting[name]){if(value)usersetting[name]=value+','+usersetting[name];}else{usersetting[name]=value;}}}
for(var k in usersetting){name=tmpl_name+'_'+k;value=usersetting[k];createCookie(name,value,365);}
if(window.location.href.indexOf('?')>-1)window.location.href=window.location.href.substr(0,window.location.href.indexOf('?'));else window.location.reload();}
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 expires="";document.cookie=name+"="+value+expires+"; path=/";}
function trim(str,chars){return ltrim(rtrim(str,chars),chars);}
function ltrim(str,chars){chars=chars||"\\s";return str.replace(new RegExp("^["+chars+"]+","g"),"");}
function rtrim(str,chars){chars=chars||"\\s";return str.replace(new RegExp("["+chars+"]+$","g"),"");}
function getScreenWidth(){var x=0;if(self.innerHeight){x=self.innerWidth;}else if(document.documentElement&&document.documentElement.clientHeight){x=document.documentElement.clientWidth;}else if(document.body){x=document.body.clientWidth;}
return x;}
function equalHeight(els){els=$$_(els);if(!els||els.length<2)return;var maxh=0;var els_=[];els.each(function(el,i){if(!el)return;els_[i]=el;var ch=els_[i].getCoordinates().height;maxh=(maxh<ch)?ch:maxh;},this);els_.each(function(el,i){if(!el)return;if(maxh-el.getStyle('padding-top').toInt()-el.getStyle('padding-bottom').toInt()>0)el.setStyle('min-height',maxh-el.getStyle('padding-top').toInt()-el.getStyle('padding-bottom').toInt());},this);}
function getDeepestWrapper(el){while(el.getChildren().length==1)
{el=el.getChildren()[0];}
return el;}
function fixHeight(els,group1,group2){els=$$_(els);group1=$$_(group1);group2=$$_(group2);if(!els||!group1)return;var height=0;group1.each(function(el){if(!el)return;height+=el.getCoordinates().height;});if(group2){group2.each(function(el){if(!el)return;height-=el.getCoordinates().height;});}
els.each(function(el,i){if(!el)return;if(height-el.getStyle('padding-top').toInt()-el.getStyle('padding-bottom').toInt()>0)el.setStyle('min-height',height-el.getStyle('padding-top').toInt()-el.getStyle('padding-bottom').toInt());});}
function addFirstLastItem(el){el=$(el);if(!el||!el.getChildren()||!el.getChildren().length)return;el.getChildren()[0].addClass('first-item');el.getChildren()[el.getChildren().length-1].addClass('last-item');}
function $$_(els){if($type(els)=='string')return $$(els);var els_=[];els.each(function(el){el=$(el);if(el)els_.push(el);});return els_;}

/* css.js */

window.addEvent('domready',function(){var sfEls=$$('#ja-cssmenu li');sfEls.each(function(li){if((a=li.getElement('a'))&&li.hasChild(a))li.a=a;else li.a=null;});sfEls.each(function(li){li.addEvent('mouseenter',function(e){clearTimeout(this.timer);if(this.hasClass("havechild"))this.addClass('havechildsfhover').removeClass('havechild');else if(this.hasClass("havesubchild"))this.addClass('havesubchildsfhover').removeClass('havesubchild');this.addClass('sfhover');if(this.a)this.a.addClass('sfhover');});li.addEvent('mouseleave',function(e){this.timer=setTimeout(sfHoverOut.bind(this,e),100);});});});function sfHoverOut(){clearTimeout(this.timer);if(this.hasClass("havechildsfhover"))this.addClass('havechild').removeClass('havechildsfhover');else if(this.hasClass("havesubchildsfhover"))this.addClass('havesubchild').removeClass('havesubchildsfhover');this.removeClass('sfhover');if(this.a)this.a.removeClass('sfhover');}

/* jquery-1.4.4.min.js */

(function(E,B){function ka(a,b,d){if(d===B&&a.nodeType===1){d=a.getAttribute("data-"+b);if(typeof d==="string"){try{d=d==="true"?true:d==="false"?false:d==="null"?null:!c.isNaN(d)?parseFloat(d):Ja.test(d)?c.parseJSON(d):d}catch(e){}c.data(a,b,d)}else d=B}return d}function U(){return false}function ca(){return true}function la(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function Ka(a){var b,d,e,f,h,l,k,o,x,r,A,C=[];f=[];h=c.data(this,this.nodeType?"events":"__events__");if(typeof h==="function")h=h.events;if(!(a.liveFired===this||!h||!h.live||a.button&&a.type==="click")){if(a.namespace)A=RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)");a.liveFired=this;var J=h.live.slice(0);for(k=0;k<J.length;k++){h=J[k];h.origType.replace(X,"")===a.type?f.push(h.selector):J.splice(k--,1)}f=c(a.target).closest(f,a.currentTarget);o=0;for(x=f.length;o<x;o++){r=f[o];for(k=0;k<J.length;k++){h=J[k];if(r.selector===h.selector&&(!A||A.test(h.namespace))){l=r.elem;e=null;if(h.preType==="mouseenter"||h.preType==="mouseleave"){a.type=h.preType;e=c(a.relatedTarget).closest(h.selector)[0]}if(!e||e!==l)C.push({elem:l,handleObj:h,level:r.level})}}}o=0;for(x=C.length;o<x;o++){f=C[o];if(d&&f.level>d)break;a.currentTarget=f.elem;a.data=f.handleObj.data;a.handleObj=f.handleObj;A=f.handleObj.origHandler.apply(f.elem,arguments);if(A===false||a.isPropagationStopped()){d=f.level;if(A===false)b=false;if(a.isImmediatePropagationStopped())break}}return b}}function Y(a,b){return(a&&a!=="*"?a+".":"")+b.replace(La,"`").replace(Ma,"&")}function ma(a,b,d){if(c.isFunction(b))return c.grep(a,function(f,h){return!!b.call(f,h,f)===d});else if(b.nodeType)return c.grep(a,function(f){return f===b===d});else if(typeof b==="string"){var e=c.grep(a,function(f){return f.nodeType===1});if(Na.test(b))return c.filter(b,e,!d);else b=c.filter(b,e)}return c.grep(a,function(f){return c.inArray(f,b)>=0===d})}function na(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var e=c.data(a[d++]),f=c.data(this,e);if(e=e&&e.events){delete f.handle;f.events={};for(var h in e)for(var l in e[h])c.event.add(this,h,e[h][l],e[h][l].data)}}})}function Oa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function oa(a,b,d){var e=b==="width"?a.offsetWidth:a.offsetHeight;if(d==="border")return e;c.each(b==="width"?Pa:Qa,function(){d||(e-=parseFloat(c.css(a,"padding"+this))||0);if(d==="margin")e+=parseFloat(c.css(a,"margin"+this))||0;else e-=parseFloat(c.css(a,"border"+this+"Width"))||0});return e}function da(a,b,d,e){if(c.isArray(b)&&b.length)c.each(b,function(f,h){d||Ra.test(a)?e(a,h):da(a+"["+(typeof h==="object"||c.isArray(h)?f:"")+"]",h,d,e)});else if(!d&&b!=null&&typeof b==="object")c.isEmptyObject(b)?e(a,""):c.each(b,function(f,h){da(a+"["+f+"]",h,d,e)});else e(a,b)}function S(a,b){var d={};c.each(pa.concat.apply([],pa.slice(0,b)),function(){d[this]=a});return d}function qa(a){if(!ea[a]){var b=c("<"+
a+">").appendTo("body"),d=b.css("display");b.remove();if(d==="none"||d==="")d="block";ea[a]=d}return ea[a]}function fa(a){return c.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var t=E.document,c=function(){function a(){if(!b.isReady){try{t.documentElement.doScroll("left")}catch(j){setTimeout(a,1);return}b.ready()}}var b=function(j,s){return new b.fn.init(j,s)},d=E.jQuery,e=E.$,f,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,l=/\S/,k=/^\s+/,o=/\s+$/,x=/\W/,r=/\d/,A=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,C=/^[\],:{}\s]*$/,J=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,w=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,I=/(?:^|:|,)(?:\s*\[)+/g,L=/(webkit)[ \/]([\w.]+)/,g=/(opera)(?:.*version)?[ \/]([\w.]+)/,i=/(msie) ([\w.]+)/,n=/(mozilla)(?:.*? rv:([\w.]+))?/,m=navigator.userAgent,p=false,q=[],u,y=Object.prototype.toString,F=Object.prototype.hasOwnProperty,M=Array.prototype.push,N=Array.prototype.slice,O=String.prototype.trim,D=Array.prototype.indexOf,R={};b.fn=b.prototype={init:function(j,s){var v,z,H;if(!j)return this;if(j.nodeType){this.context=this[0]=j;this.length=1;return this}if(j==="body"&&!s&&t.body){this.context=t;this[0]=t.body;this.selector="body";this.length=1;return this}if(typeof j==="string")if((v=h.exec(j))&&(v[1]||!s))if(v[1]){H=s?s.ownerDocument||s:t;if(z=A.exec(j))if(b.isPlainObject(s)){j=[t.createElement(z[1])];b.fn.attr.call(j,s,true)}else j=[H.createElement(z[1])];else{z=b.buildFragment([v[1]],[H]);j=(z.cacheable?z.fragment.cloneNode(true):z.fragment).childNodes}return b.merge(this,j)}else{if((z=t.getElementById(v[2]))&&z.parentNode){if(z.id!==v[2])return f.find(j);this.length=1;this[0]=z}this.context=t;this.selector=j;return this}else if(!s&&!x.test(j)){this.selector=j;this.context=t;j=t.getElementsByTagName(j);return b.merge(this,j)}else return!s||s.jquery?(s||f).find(j):b(s).find(j);else if(b.isFunction(j))return f.ready(j);if(j.selector!==B){this.selector=j.selector;this.context=j.context}return b.makeArray(j,this)},selector:"",jquery:"1.4.4",length:0,size:function(){return this.length},toArray:function(){return N.call(this,0)},get:function(j){return j==null?this.toArray():j<0?this.slice(j)[0]:this[j]},pushStack:function(j,s,v){var z=b();b.isArray(j)?M.apply(z,j):b.merge(z,j);z.prevObject=this;z.context=this.context;if(s==="find")z.selector=this.selector+(this.selector?" ":"")+v;else if(s)z.selector=this.selector+"."+s+"("+v+")";return z},each:function(j,s){return b.each(this,j,s)},ready:function(j){b.bindReady();if(b.isReady)j.call(t,b);else q&&q.push(j);return this},eq:function(j){return j===-1?this.slice(j):this.slice(j,+j+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(N.apply(this,arguments),"slice",N.call(arguments).join(","))},map:function(j){return this.pushStack(b.map(this,function(s,v){return j.call(s,v,s)}))},end:function(){return this.prevObject||b(null)},push:M,sort:[].sort,splice:[].splice};b.fn.init.prototype=b.fn;b.extend=b.fn.extend=function(){var j,s,v,z,H,G=arguments[0]||{},K=1,Q=arguments.length,ga=false;if(typeof G==="boolean"){ga=G;G=arguments[1]||{};K=2}if(typeof G!=="object"&&!b.isFunction(G))G={};if(Q===K){G=this;--K}for(;K<Q;K++)if((j=arguments[K])!=null)for(s in j){v=G[s];z=j[s];if(G!==z)if(ga&&z&&(b.isPlainObject(z)||(H=b.isArray(z)))){if(H){H=false;v=v&&b.isArray(v)?v:[]}else v=v&&b.isPlainObject(v)?v:{};G[s]=b.extend(ga,v,z)}else if(z!==B)G[s]=z}return G};b.extend({noConflict:function(j){E.$=e;if(j)E.jQuery=d;return b},isReady:false,readyWait:1,ready:function(j){j===true&&b.readyWait--;if(!b.readyWait||j!==true&&!b.isReady){if(!t.body)return setTimeout(b.ready,1);b.isReady=true;if(!(j!==true&&--b.readyWait>0))if(q){var s=0,v=q;for(q=null;j=v[s++];)j.call(t,b);b.fn.trigger&&b(t).trigger("ready").unbind("ready")}}},bindReady:function(){if(!p){p=true;if(t.readyState==="complete")return setTimeout(b.ready,1);if(t.addEventListener){t.addEventListener("DOMContentLoaded",u,false);E.addEventListener("load",b.ready,false)}else if(t.attachEvent){t.attachEvent("onreadystatechange",u);E.attachEvent("onload",b.ready);var j=false;try{j=E.frameElement==null}catch(s){}t.documentElement.doScroll&&j&&a()}}},isFunction:function(j){return b.type(j)==="function"},isArray:Array.isArray||function(j){return b.type(j)==="array"},isWindow:function(j){return j&&typeof j==="object"&&"setInterval"in j},isNaN:function(j){return j==null||!r.test(j)||isNaN(j)},type:function(j){return j==null?String(j):R[y.call(j)]||"object"},isPlainObject:function(j){if(!j||b.type(j)!=="object"||j.nodeType||b.isWindow(j))return false;if(j.constructor&&!F.call(j,"constructor")&&!F.call(j.constructor.prototype,"isPrototypeOf"))return false;for(var s in j);return s===B||F.call(j,s)},isEmptyObject:function(j){for(var s in j)return false;return true},error:function(j){throw j;},parseJSON:function(j){if(typeof j!=="string"||!j)return null;j=b.trim(j);if(C.test(j.replace(J,"@").replace(w,"]").replace(I,"")))return E.JSON&&E.JSON.parse?E.JSON.parse(j):(new Function("return "+j))();else b.error("Invalid JSON: "+j)},noop:function(){},globalEval:function(j){if(j&&l.test(j)){var s=t.getElementsByTagName("head")[0]||t.documentElement,v=t.createElement("script");v.type="text/javascript";if(b.support.scriptEval)v.appendChild(t.createTextNode(j));else v.text=j;s.insertBefore(v,s.firstChild);s.removeChild(v)}},nodeName:function(j,s){return j.nodeName&&j.nodeName.toUpperCase()===s.toUpperCase()},each:function(j,s,v){var z,H=0,G=j.length,K=G===B||b.isFunction(j);if(v)if(K)for(z in j){if(s.apply(j[z],v)===false)break}else for(;H<G;){if(s.apply(j[H++],v)===false)break}else if(K)for(z in j){if(s.call(j[z],z,j[z])===false)break}else for(v=j[0];H<G&&s.call(v,H,v)!==false;v=j[++H]);return j},trim:O?function(j){return j==null?"":O.call(j)}:function(j){return j==null?"":j.toString().replace(k,"").replace(o,"")},makeArray:function(j,s){var v=s||[];if(j!=null){var z=b.type(j);j.length==null||z==="string"||z==="function"||z==="regexp"||b.isWindow(j)?M.call(v,j):b.merge(v,j)}return v},inArray:function(j,s){if(s.indexOf)return s.indexOf(j);for(var v=0,z=s.length;v<z;v++)if(s[v]===j)return v;return-1},merge:function(j,s){var v=j.length,z=0;if(typeof s.length==="number")for(var H=s.length;z<H;z++)j[v++]=s[z];else for(;s[z]!==B;)j[v++]=s[z++];j.length=v;return j},grep:function(j,s,v){var z=[],H;v=!!v;for(var G=0,K=j.length;G<K;G++){H=!!s(j[G],G);v!==H&&z.push(j[G])}return z},map:function(j,s,v){for(var z=[],H,G=0,K=j.length;G<K;G++){H=s(j[G],G,v);if(H!=null)z[z.length]=H}return z.concat.apply([],z)},guid:1,proxy:function(j,s,v){if(arguments.length===2)if(typeof s==="string"){v=j;j=v[s];s=B}else if(s&&!b.isFunction(s)){v=s;s=B}if(!s&&j)s=function(){return j.apply(v||this,arguments)};if(j)s.guid=j.guid=j.guid||s.guid||b.guid++;return s},access:function(j,s,v,z,H,G){var K=j.length;if(typeof s==="object"){for(var Q in s)b.access(j,Q,s[Q],z,H,v);return j}if(v!==B){z=!G&&z&&b.isFunction(v);for(Q=0;Q<K;Q++)H(j[Q],s,z?v.call(j[Q],Q,H(j[Q],s)):v,G);return j}return K?H(j[0],s):B},now:function(){return(new Date).getTime()},uaMatch:function(j){j=j.toLowerCase();j=L.exec(j)||g.exec(j)||i.exec(j)||j.indexOf("compatible")<0&&n.exec(j)||[];return{browser:j[1]||"",version:j[2]||"0"}},browser:{}});b.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(j,s){R["[object "+s+"]"]=s.toLowerCase()});m=b.uaMatch(m);if(m.browser){b.browser[m.browser]=true;b.browser.version=m.version}if(b.browser.webkit)b.browser.safari=true;if(D)b.inArray=function(j,s){return D.call(s,j)};if(!/\s/.test("\u00a0")){k=/^[\s\xA0]+/;o=/[\s\xA0]+$/}f=b(t);if(t.addEventListener)u=function(){t.removeEventListener("DOMContentLoaded",u,false);b.ready()};else if(t.attachEvent)u=function(){if(t.readyState==="complete"){t.detachEvent("onreadystatechange",u);b.ready()}};return E.jQuery=E.$=b}();(function(){c.support={};var a=t.documentElement,b=t.createElement("script"),d=t.createElement("div"),e="script"+c.now();d.style.display="none";d.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var f=d.getElementsByTagName("*"),h=d.getElementsByTagName("a")[0],l=t.createElement("select"),k=l.appendChild(t.createElement("option"));if(!(!f||!f.length||!h)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(h.getAttribute("style")),hrefNormalized:h.getAttribute("href")==="/a",opacity:/^0.55$/.test(h.style.opacity),cssFloat:!!h.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:k.selected,deleteExpando:true,optDisabled:false,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableHiddenOffsets:true};l.disabled=true;c.support.optDisabled=!k.disabled;b.type="text/javascript";try{b.appendChild(t.createTextNode("window."+e+"=1;"))}catch(o){}a.insertBefore(b,a.firstChild);if(E[e]){c.support.scriptEval=true;delete E[e]}try{delete b.test}catch(x){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function r(){c.support.noCloneEvent=false;d.detachEvent("onclick",r)});d.cloneNode(true).fireEvent("onclick")}d=t.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=t.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var r=t.createElement("div");r.style.width=r.style.paddingLeft="1px";t.body.appendChild(r);c.boxModel=c.support.boxModel=r.offsetWidth===2;if("zoom"in r.style){r.style.display="inline";r.style.zoom=1;c.support.inlineBlockNeedsLayout=r.offsetWidth===2;r.style.display="";r.innerHTML="<div style='width:4px;'></div>";c.support.shrinkWrapBlocks=r.offsetWidth!==2}r.innerHTML="<table><tr><td style='padding:0;display:none'></td><td>t</td></tr></table>";var A=r.getElementsByTagName("td");c.support.reliableHiddenOffsets=A[0].offsetHeight===0;A[0].style.display="";A[1].style.display="none";c.support.reliableHiddenOffsets=c.support.reliableHiddenOffsets&&A[0].offsetHeight===0;r.innerHTML="";t.body.removeChild(r).style.display="none"});a=function(r){var A=t.createElement("div");r="on"+r;var C=r in A;if(!C){A.setAttribute(r,"return;");C=typeof A[r]==="function"}return C};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=f=h=null}})();var ra={},Ja=/^(?:\{.*\}|\[.*\])$/;c.extend({cache:{},uuid:0,expando:"jQuery"+c.now(),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},data:function(a,b,d){if(c.acceptData(a)){a=a==E?ra:a;var e=a.nodeType,f=e?a[c.expando]:null,h=c.cache;if(!(e&&!f&&typeof b==="string"&&d===B)){if(e)f||(a[c.expando]=f=++c.uuid);else h=a;if(typeof b==="object")if(e)h[f]=c.extend(h[f],b);else c.extend(h,b);else if(e&&!h[f])h[f]={};a=e?h[f]:h;if(d!==B)a[b]=d;return typeof b==="string"?a[b]:a}}},removeData:function(a,b){if(c.acceptData(a)){a=a==E?ra:a;var d=a.nodeType,e=d?a[c.expando]:a,f=c.cache,h=d?f[e]:e;if(b){if(h){delete h[b];d&&c.isEmptyObject(h)&&c.removeData(a)}}else if(d&&c.support.deleteExpando)delete a[c.expando];else if(a.removeAttribute)a.removeAttribute(c.expando);else if(d)delete f[e];else for(var l in a)delete a[l]}},acceptData:function(a){if(a.nodeName){var b=c.noData[a.nodeName.toLowerCase()];if(b)return!(b===true||a.getAttribute("classid")!==b)}return true}});c.fn.extend({data:function(a,b){var d=null;if(typeof a==="undefined"){if(this.length){var e=this[0].attributes,f;d=c.data(this[0]);for(var h=0,l=e.length;h<l;h++){f=e[h].name;if(f.indexOf("data-")===0){f=f.substr(5);ka(this[0],f,d[f])}}}return d}else if(typeof a==="object")return this.each(function(){c.data(this,a)});var k=a.split(".");k[1]=k[1]?"."+k[1]:"";if(b===B){d=this.triggerHandler("getData"+k[1]+"!",[k[0]]);if(d===B&&this.length){d=c.data(this[0],a);d=ka(this[0],a,d)}return d===B&&k[1]?this.data(k[0]):d}else return this.each(function(){var o=c(this),x=[k[0],b];o.triggerHandler("setData"+k[1]+"!",x);c.data(this,a,b);o.triggerHandler("changeData"+k[1]+"!",x)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var e=c.data(a,b);if(!d)return e||[];if(!e||c.isArray(d))e=c.data(a,b,c.makeArray(d));else e.push(d);return e}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),e=d.shift();if(e==="inprogress")e=d.shift();if(e){b==="fx"&&d.unshift("inprogress");e.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===B)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var sa=/[\n\t]/g,ha=/\s+/,Sa=/\r/g,Ta=/^(?:href|src|style)$/,Ua=/^(?:button|input)$/i,Va=/^(?:button|input|object|select|textarea)$/i,Wa=/^a(?:rea)?$/i,ta=/^(?:radio|checkbox)$/i;c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};c.fn.extend({attr:function(a,b){return c.access(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(x){var r=c(this);r.addClass(a.call(this,x,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ha),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType===1)if(f.className){for(var h=" "+f.className+" ",l=f.className,k=0,o=b.length;k<o;k++)if(h.indexOf(" "+b[k]+" ")<0)l+=" "+b[k];f.className=c.trim(l)}else f.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(o){var x=c(this);x.removeClass(a.call(this,o,x.attr("class")))});if(a&&typeof a==="string"||a===B)for(var b=(a||"").split(ha),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType===1&&f.className)if(a){for(var h=(" "+f.className+" ").replace(sa," "),l=0,k=b.length;l<k;l++)h=h.replace(" "+b[l]+" "," ");f.className=c.trim(h)}else f.className=""}return this},toggleClass:function(a,b){var d=typeof a,e=typeof b==="boolean";if(c.isFunction(a))return this.each(function(f){var h=c(this);h.toggleClass(a.call(this,f,h.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var f,h=0,l=c(this),k=b,o=a.split(ha);f=o[h++];){k=e?k:!l.hasClass(f);l[k?"addClass":"removeClass"](f)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className=this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(sa," ").indexOf(a)>-1)return true;return false},val:function(a){if(!arguments.length){var b=this[0];if(b){if(c.nodeName(b,"option")){var d=b.attributes.value;return!d||d.specified?b.value:b.text}if(c.nodeName(b,"select")){var e=b.selectedIndex;d=[];var f=b.options;b=b.type==="select-one";if(e<0)return null;var h=b?e:0;for(e=b?e+1:f.length;h<e;h++){var l=f[h];if(l.selected&&(c.support.optDisabled?!l.disabled:l.getAttribute("disabled")===null)&&(!l.parentNode.disabled||!c.nodeName(l.parentNode,"optgroup"))){a=c(l).val();if(b)return a;d.push(a)}}return d}if(ta.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Sa,"")}return B}var k=c.isFunction(a);return this.each(function(o){var x=c(this),r=a;if(this.nodeType===1){if(k)r=a.call(this,o,x.val());if(r==null)r="";else if(typeof r==="number")r+="";else if(c.isArray(r))r=c.map(r,function(C){return C==null?"":C+""});if(c.isArray(r)&&ta.test(this.type))this.checked=c.inArray(x.val(),r)>=0;else if(c.nodeName(this,"select")){var A=c.makeArray(r);c("option",this).each(function(){this.selected=c.inArray(c(this).val(),A)>=0});if(!A.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,e){if(!a||a.nodeType===3||a.nodeType===8)return B;if(e&&b in c.attrFn)return c(a)[b](d);e=a.nodeType!==1||!c.isXMLDoc(a);var f=d!==B;b=e&&c.props[b]||b;var h=Ta.test(b);if((b in a||a[b]!==B)&&e&&!h){if(f){b==="type"&&Ua.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");if(d===null)a.nodeType===1&&a.removeAttribute(b);else a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:Va.test(a.nodeName)||Wa.test(a.nodeName)&&a.href?0:B;return a[b]}if(!c.support.style&&e&&b==="style"){if(f)a.style.cssText=""+d;return a.style.cssText}f&&a.setAttribute(b,""+d);if(!a.attributes[b]&&a.hasAttribute&&!a.hasAttribute(b))return B;a=!c.support.hrefNormalized&&e&&h?a.getAttribute(b,2):a.getAttribute(b);return a===null?B:a}});var X=/\.(.*)$/,ia=/^(?:textarea|input|select)$/i,La=/\./g,Ma=/ /g,Xa=/[^\w\s.|`]/g,Ya=function(a){return a.replace(Xa,"\\$&")},ua={focusin:0,focusout:0};c.event={add:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(c.isWindow(a)&&a!==E&&!a.frameElement)a=E;if(d===false)d=U;else if(!d)return;var f,h;if(d.handler){f=d;d=f.handler}if(!d.guid)d.guid=c.guid++;if(h=c.data(a)){var l=a.nodeType?"events":"__events__",k=h[l],o=h.handle;if(typeof k==="function"){o=k.handle;k=k.events}else if(!k){a.nodeType||(h[l]=h=function(){});h.events=k={}}if(!o)h.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):B};o.elem=a;b=b.split(" ");for(var x=0,r;l=b[x++];){h=f?c.extend({},f):{handler:d,data:e};if(l.indexOf(".")>-1){r=l.split(".");l=r.shift();h.namespace=r.slice(0).sort().join(".")}else{r=[];h.namespace=""}h.type=l;if(!h.guid)h.guid=d.guid;var A=k[l],C=c.event.special[l]||{};if(!A){A=k[l]=[];if(!C.setup||C.setup.call(a,e,r,o)===false)if(a.addEventListener)a.addEventListener(l,o,false);else a.attachEvent&&a.attachEvent("on"+l,o)}if(C.add){C.add.call(a,h);if(!h.handler.guid)h.handler.guid=d.guid}A.push(h);c.event.global[l]=true}a=null}}},global:{},remove:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(d===false)d=U;var f,h,l=0,k,o,x,r,A,C,J=a.nodeType?"events":"__events__",w=c.data(a),I=w&&w[J];if(w&&I){if(typeof I==="function"){w=I;I=I.events}if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(f in I)c.event.remove(a,f+b)}else{for(b=b.split(" ");f=b[l++];){r=f;k=f.indexOf(".")<0;o=[];if(!k){o=f.split(".");f=o.shift();x=RegExp("(^|\\.)"+
c.map(o.slice(0).sort(),Ya).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(A=I[f])if(d){r=c.event.special[f]||{};for(h=e||0;h<A.length;h++){C=A[h];if(d.guid===C.guid){if(k||x.test(C.namespace)){e==null&&A.splice(h--,1);r.remove&&r.remove.call(a,C)}if(e!=null)break}}if(A.length===0||e!=null&&A.length===1){if(!r.teardown||r.teardown.call(a,o)===false)c.removeEvent(a,f,w.handle);delete I[f]}}else for(h=0;h<A.length;h++){C=A[h];if(k||x.test(C.namespace)){c.event.remove(a,r,C.handler,h);A.splice(h--,1)}}}if(c.isEmptyObject(I)){if(b=w.handle)b.elem=null;delete w.events;delete w.handle;if(typeof w==="function")c.removeData(a,J);else c.isEmptyObject(w)&&c.removeData(a)}}}}},trigger:function(a,b,d,e){var f=a.type||a;if(!e){a=typeof a==="object"?a[c.expando]?a:c.extend(c.Event(f),a):c.Event(f);if(f.indexOf("!")>=0){a.type=f=f.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[f]&&c.each(c.cache,function(){this.events&&this.events[f]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return B;a.result=B;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(e=d.nodeType?c.data(d,"handle"):(c.data(d,"__events__")||{}).handle)&&e.apply(d,b);e=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+f]&&d["on"+f].apply(d,b)===false){a.result=false;a.preventDefault()}}catch(h){}if(!a.isPropagationStopped()&&e)c.event.trigger(a,b,e,true);else if(!a.isDefaultPrevented()){var l;e=a.target;var k=f.replace(X,""),o=c.nodeName(e,"a")&&k==="click",x=c.event.special[k]||{};if((!x._default||x._default.call(d,a)===false)&&!o&&!(e&&e.nodeName&&c.noData[e.nodeName.toLowerCase()])){try{if(e[k]){if(l=e["on"+k])e["on"+k]=null;c.event.triggered=true;e[k]()}}catch(r){}if(l)e["on"+k]=l;c.event.triggered=false}}},handle:function(a){var b,d,e,f;d=[];var h=c.makeArray(arguments);a=h[0]=c.event.fix(a||E.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;if(!b){e=a.type.split(".");a.type=e.shift();d=e.slice(0).sort();e=RegExp("(^|\\.)"+
d.join("\\.(?:.*\\.)?")+"(\\.|$)")}a.namespace=a.namespace||d.join(".");f=c.data(this,this.nodeType?"events":"__events__");if(typeof f==="function")f=f.events;d=(f||{})[a.type];if(f&&d){d=d.slice(0);f=0;for(var l=d.length;f<l;f++){var k=d[f];if(b||e.test(k.namespace)){a.handler=k.handler;a.data=k.data;a.handleObj=k;k=k.handler.apply(this,h);if(k!==B){a.result=k;if(k===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[c.expando])return a;var b=a;a=c.Event(b);for(var d=this.props.length,e;d;){e=this.props[--d];a[e]=b[e]}if(!a.target)a.target=a.srcElement||t;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=t.documentElement;d=t.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop||d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(a.which==null&&(a.charCode!=null||a.keyCode!=null))a.which=a.charCode!=null?a.charCode:a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==B)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,Y(a.origType,a.selector),c.extend({},a,{handler:Ka,guid:a.handler.guid}))},remove:function(a){c.event.remove(this,Y(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,d){if(c.isWindow(this))this.onbeforeunload=d},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};c.removeEvent=t.removeEventListener?function(a,b,d){a.removeEventListener&&a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent&&a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=a;this.type=a.type}else this.type=a;this.timeStamp=c.now();this[c.expando]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=ca;var a=this.originalEvent;if(a)if(a.preventDefault)a.preventDefault();else a.returnValue=false},stopPropagation:function(){this.isPropagationStopped=ca;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=ca;this.stopPropagation()},isDefaultPrevented:U,isPropagationStopped:U,isImmediatePropagationStopped:U};var va=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},wa=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?wa:va,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?wa:va)}}});if(!c.support.submitBubbles)c.event.special.submit={setup:function(){if(this.nodeName.toLowerCase()!=="form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length){a.liveFired=B;return la("submit",this,arguments)}});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13){a.liveFired=B;return la("submit",this,arguments)}})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};if(!c.support.changeBubbles){var V,xa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(e){return e.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},Z=function(a,b){var d=a.target,e,f;if(!(!ia.test(d.nodeName)||d.readOnly)){e=c.data(d,"_change_data");f=xa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",f);if(!(e===B||f===e))if(e!=null||f){a.type="change";a.liveFired=B;return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:Z,beforedeactivate:Z,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return Z.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return Z.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,"_change_data",xa(a))}},setup:function(){if(this.type==="file")return false;for(var a in V)c.event.add(this,a+".specialChange",V[a]);return ia.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return ia.test(this.nodeName)}};V=c.event.special.change.filters;V.focus=V.beforeactivate}t.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(e){e=c.event.fix(e);e.type=b;return c.event.trigger(e,null,e.target)}c.event.special[b]={setup:function(){ua[b]++===0&&t.addEventListener(a,d,true)},teardown:function(){--ua[b]===0&&t.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,e,f){if(typeof d==="object"){for(var h in d)this[b](h,e,d[h],f);return this}if(c.isFunction(e)||e===false){f=e;e=B}var l=b==="one"?c.proxy(f,function(o){c(this).unbind(o,l);return f.apply(this,arguments)}):f;if(d==="unload"&&b!=="one")this.one(d,e,f);else{h=0;for(var k=this.length;h<k;h++)c.event.add(this[h],d,l,e)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&!a.preventDefault)for(var d in a)this.unbind(d,a[d]);else{d=0;for(var e=this.length;d<e;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,e){return this.live(b,d,e,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){var d=c.Event(a);d.preventDefault();d.stopPropagation();c.event.trigger(d,b,this[0]);return d.result}},toggle:function(a){for(var b=arguments,d=1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(e){var f=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,f+1);e.preventDefault();return b[f].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var ya={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,e,f,h){var l,k=0,o,x,r=h||this.selector;h=h?this:c(this.context);if(typeof d==="object"&&!d.preventDefault){for(l in d)h[b](l,e,d[l],r);return this}if(c.isFunction(e)){f=e;e=B}for(d=(d||"").split(" ");(l=d[k++])!=null;){o=X.exec(l);x="";if(o){x=o[0];l=l.replace(X,"")}if(l==="hover")d.push("mouseenter"+x,"mouseleave"+x);else{o=l;if(l==="focus"||l==="blur"){d.push(ya[l]+x);l+=x}else l=(ya[l]||l)+x;if(b==="live"){x=0;for(var A=h.length;x<A;x++)c.event.add(h[x],"live."+Y(l,r),{data:e,selector:r,handler:f,origType:l,origHandler:f,preType:o})}else h.unbind("live."+Y(l,r),f)}}return this}});c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){c.fn[b]=function(d,e){if(e==null){e=d;d=null}return arguments.length>0?this.bind(b,d,e):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});E.attachEvent&&!E.addEventListener&&c(E).bind("unload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});(function(){function a(g,i,n,m,p,q){p=0;for(var u=m.length;p<u;p++){var y=m[p];if(y){var F=false;for(y=y[g];y;){if(y.sizcache===n){F=m[y.sizset];break}if(y.nodeType===1&&!q){y.sizcache=n;y.sizset=p}if(y.nodeName.toLowerCase()===i){F=y;break}y=y[g]}m[p]=F}}}function b(g,i,n,m,p,q){p=0;for(var u=m.length;p<u;p++){var y=m[p];if(y){var F=false;for(y=y[g];y;){if(y.sizcache===n){F=m[y.sizset];break}if(y.nodeType===1){if(!q){y.sizcache=n;y.sizset=p}if(typeof i!=="string"){if(y===i){F=true;break}}else if(k.filter(i,[y]).length>0){F=y;break}}y=y[g]}m[p]=F}}}var d=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,h=false,l=true;[0,0].sort(function(){l=false;return 0});var k=function(g,i,n,m){n=n||[];var p=i=i||t;if(i.nodeType!==1&&i.nodeType!==9)return[];if(!g||typeof g!=="string")return n;var q,u,y,F,M,N=true,O=k.isXML(i),D=[],R=g;do{d.exec("");if(q=d.exec(R)){R=q[3];D.push(q[1]);if(q[2]){F=q[3];break}}}while(q);if(D.length>1&&x.exec(g))if(D.length===2&&o.relative[D[0]])u=L(D[0]+D[1],i);else for(u=o.relative[D[0]]?[i]:k(D.shift(),i);D.length;){g=D.shift();if(o.relative[g])g+=D.shift();u=L(g,u)}else{if(!m&&D.length>1&&i.nodeType===9&&!O&&o.match.ID.test(D[0])&&!o.match.ID.test(D[D.length-1])){q=k.find(D.shift(),i,O);i=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]}if(i){q=m?{expr:D.pop(),set:C(m)}:k.find(D.pop(),D.length===1&&(D[0]==="~"||D[0]==="+")&&i.parentNode?i.parentNode:i,O);u=q.expr?k.filter(q.expr,q.set):q.set;if(D.length>0)y=C(u);else N=false;for(;D.length;){q=M=D.pop();if(o.relative[M])q=D.pop();else M="";if(q==null)q=i;o.relative[M](y,q,O)}}else y=[]}y||(y=u);y||k.error(M||g);if(f.call(y)==="[object Array]")if(N)if(i&&i.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&k.contains(i,y[g])))n.push(u[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&n.push(u[g]);else n.push.apply(n,y);else C(y,n);if(F){k(F,p,n,m);k.uniqueSort(n)}return n};k.uniqueSort=function(g){if(w){h=l;g.sort(w);if(h)for(var i=1;i<g.length;i++)g[i]===g[i-1]&&g.splice(i--,1)}return g};k.matches=function(g,i){return k(g,null,null,i)};k.matchesSelector=function(g,i){return k(i,null,null,[g]).length>0};k.find=function(g,i,n){var m;if(!g)return[];for(var p=0,q=o.order.length;p<q;p++){var u,y=o.order[p];if(u=o.leftMatch[y].exec(g)){var F=u[1];u.splice(1,1);if(F.substr(F.length-1)!=="\\"){u[1]=(u[1]||"").replace(/\\/g,"");m=o.find[y](u,i,n);if(m!=null){g=g.replace(o.match[y],"");break}}}}m||(m=i.getElementsByTagName("*"));return{set:m,expr:g}};k.filter=function(g,i,n,m){for(var p,q,u=g,y=[],F=i,M=i&&i[0]&&k.isXML(i[0]);g&&i.length;){for(var N in o.filter)if((p=o.leftMatch[N].exec(g))!=null&&p[2]){var O,D,R=o.filter[N];D=p[1];q=false;p.splice(1,1);if(D.substr(D.length-1)!=="\\"){if(F===y)y=[];if(o.preFilter[N])if(p=o.preFilter[N](p,F,n,y,m,M)){if(p===true)continue}else q=O=true;if(p)for(var j=0;(D=F[j])!=null;j++)if(D){O=R(D,p,j,F);var s=m^!!O;if(n&&O!=null)if(s)q=true;else F[j]=false;else if(s){y.push(D);q=true}}if(O!==B){n||(F=y);g=g.replace(o.match[N],"");if(!q)return[];break}}}if(g===u)if(q==null)k.error(g);else break;u=g}return F};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var o=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+\-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},relative:{"+":function(g,i){var n=typeof i==="string",m=n&&!/\W/.test(i);n=n&&!m;if(m)i=i.toLowerCase();m=0;for(var p=g.length,q;m<p;m++)if(q=g[m]){for(;(q=q.previousSibling)&&q.nodeType!==1;);g[m]=n||q&&q.nodeName.toLowerCase()===i?q||false:q===i}n&&k.filter(i,g,true)},">":function(g,i){var n,m=typeof i==="string",p=0,q=g.length;if(m&&!/\W/.test(i))for(i=i.toLowerCase();p<q;p++){if(n=g[p]){n=n.parentNode;g[p]=n.nodeName.toLowerCase()===i?n:false}}else{for(;p<q;p++)if(n=g[p])g[p]=m?n.parentNode:n.parentNode===i;m&&k.filter(i,g,true)}},"":function(g,i,n){var m,p=e++,q=b;if(typeof i==="string"&&!/\W/.test(i)){m=i=i.toLowerCase();q=a}q("parentNode",i,p,g,m,n)},"~":function(g,i,n){var m,p=e++,q=b;if(typeof i==="string"&&!/\W/.test(i)){m=i=i.toLowerCase();q=a}q("previousSibling",i,p,g,m,n)}},find:{ID:function(g,i,n){if(typeof i.getElementById!=="undefined"&&!n)return(g=i.getElementById(g[1]))&&g.parentNode?[g]:[]},NAME:function(g,i){if(typeof i.getElementsByName!=="undefined"){for(var n=[],m=i.getElementsByName(g[1]),p=0,q=m.length;p<q;p++)m[p].getAttribute("name")===g[1]&&n.push(m[p]);return n.length===0?null:n}},TAG:function(g,i){return i.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,i,n,m,p,q){g=" "+g[1].replace(/\\/g,"")+" ";if(q)return g;q=0;for(var u;(u=i[q])!=null;q++)if(u)if(p^(u.className&&(" "+u.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))n||m.push(u);else if(n)i[q]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},CHILD:function(g){if(g[1]==="nth"){var i=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=i[1]+(i[2]||1)-0;g[3]=i[3]-0}g[0]=e++;return g},ATTR:function(g,i,n,m,p,q){i=g[1].replace(/\\/g,"");if(!q&&o.attrMap[i])g[1]=o.attrMap[i];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,i,n,m,p){if(g[1]==="not")if((d.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,i);else{g=k.filter(g[3],i,n,true^p);n||m.push.apply(m,g);return false}else if(o.match.POS.test(g[0])||o.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,i,n){return!!k(n[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},setFilters:{first:function(g,i){return i===0},last:function(g,i,n,m){return i===m.length-1},even:function(g,i){return i%2===0},odd:function(g,i){return i%2===1},lt:function(g,i,n){return i<n[3]-0},gt:function(g,i,n){return i>n[3]-0},nth:function(g,i,n){return n[3]-
0===i},eq:function(g,i,n){return n[3]-0===i}},filter:{PSEUDO:function(g,i,n,m){var p=i[1],q=o.filters[p];if(q)return q(g,n,i,m);else if(p==="contains")return(g.textContent||g.innerText||k.getText([g])||"").indexOf(i[3])>=0;else if(p==="not"){i=i[3];n=0;for(m=i.length;n<m;n++)if(i[n]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+p)},CHILD:function(g,i){var n=i[1],m=g;switch(n){case"only":case"first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(n==="first")return true;m=g;case"last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case"nth":n=i[2];var p=i[3];if(n===1&&p===0)return true;var q=i[0],u=g.parentNode;if(u&&(u.sizcache!==q||!g.nodeIndex)){var y=0;for(m=u.firstChild;m;m=m.nextSibling)if(m.nodeType===1)m.nodeIndex=++y;u.sizcache=q}m=g.nodeIndex-p;return n===0?m===0:m%n===0&&m/n>=0}},ID:function(g,i){return g.nodeType===1&&g.getAttribute("id")===i},TAG:function(g,i){return i==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===i},CLASS:function(g,i){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(i)>-1},ATTR:function(g,i){var n=i[1];n=o.attrHandle[n]?o.attrHandle[n](g):g[n]!=null?g[n]:g.getAttribute(n);var m=n+"",p=i[2],q=i[4];return n==null?p==="!=":p==="="?m===q:p==="*="?m.indexOf(q)>=0:p==="~="?(" "+m+" ").indexOf(q)>=0:!q?m&&n!==false:p==="!="?m!==q:p==="^="?m.indexOf(q)===0:p==="$="?m.substr(m.length-q.length)===q:p==="|="?m===q||m.substr(0,q.length+1)===q+"-":false},POS:function(g,i,n,m){var p=o.setFilters[i[2]];if(p)return p(g,n,i,m)}}},x=o.match.POS,r=function(g,i){return"\\"+(i-0+1)},A;for(A in o.match){o.match[A]=RegExp(o.match[A].source+/(?![^\[]*\])(?![^\(]*\))/.source);o.leftMatch[A]=RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[A].source.replace(/\\(\d+)/g,r))}var C=function(g,i){g=Array.prototype.slice.call(g,0);if(i){i.push.apply(i,g);return i}return g};try{Array.prototype.slice.call(t.documentElement.childNodes,0)}catch(J){C=function(g,i){var n=0,m=i||[];if(f.call(g)==="[object Array]")Array.prototype.push.apply(m,g);else if(typeof g.length==="number")for(var p=g.length;n<p;n++)m.push(g[n]);else for(;g[n];n++)m.push(g[n]);return m}}var w,I;if(t.documentElement.compareDocumentPosition)w=function(g,i){if(g===i){h=true;return 0}if(!g.compareDocumentPosition||!i.compareDocumentPosition)return g.compareDocumentPosition?-1:1;return g.compareDocumentPosition(i)&4?-1:1};else{w=function(g,i){var n,m,p=[],q=[];n=g.parentNode;m=i.parentNode;var u=n;if(g===i){h=true;return 0}else if(n===m)return I(g,i);else if(n){if(!m)return 1}else return-1;for(;u;){p.unshift(u);u=u.parentNode}for(u=m;u;){q.unshift(u);u=u.parentNode}n=p.length;m=q.length;for(u=0;u<n&&u<m;u++)if(p[u]!==q[u])return I(p[u],q[u]);return u===n?I(g,q[u],-1):I(p[u],i,1)};I=function(g,i,n){if(g===i)return n;for(g=g.nextSibling;g;){if(g===i)return-1;g=g.nextSibling}return 1}}k.getText=function(g){for(var i="",n,m=0;g[m];m++){n=g[m];if(n.nodeType===3||n.nodeType===4)i+=n.nodeValue;else if(n.nodeType!==8)i+=k.getText(n.childNodes)}return i};(function(){var g=t.createElement("div"),i="script"+(new Date).getTime(),n=t.documentElement;g.innerHTML="<a name='"+i+"'/>";n.insertBefore(g,n.firstChild);if(t.getElementById(i)){o.find.ID=function(m,p,q){if(typeof p.getElementById!=="undefined"&&!q)return(p=p.getElementById(m[1]))?p.id===m[1]||typeof p.getAttributeNode!=="undefined"&&p.getAttributeNode("id").nodeValue===m[1]?[p]:B:[]};o.filter.ID=function(m,p){var q=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&q&&q.nodeValue===p}}n.removeChild(g);n=g=null})();(function(){var g=t.createElement("div");g.appendChild(t.createComment(""));if(g.getElementsByTagName("*").length>0)o.find.TAG=function(i,n){var m=n.getElementsByTagName(i[1]);if(i[1]==="*"){for(var p=[],q=0;m[q];q++)m[q].nodeType===1&&p.push(m[q]);m=p}return m};g.innerHTML="<a href='#'></a>";if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")o.attrHandle.href=function(i){return i.getAttribute("href",2)};g=null})();t.querySelectorAll&&function(){var g=k,i=t.createElement("div");i.innerHTML="<p class='TEST'></p>";if(!(i.querySelectorAll&&i.querySelectorAll(".TEST").length===0)){k=function(m,p,q,u){p=p||t;m=m.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!u&&!k.isXML(p))if(p.nodeType===9)try{return C(p.querySelectorAll(m),q)}catch(y){}else if(p.nodeType===1&&p.nodeName.toLowerCase()!=="object"){var F=p.getAttribute("id"),M=F||"__sizzle__";F||p.setAttribute("id",M);try{return C(p.querySelectorAll("#"+M+" "+m),q)}catch(N){}finally{F||p.removeAttribute("id")}}return g(m,p,q,u)};for(var n in g)k[n]=g[n];i=null}}();(function(){var g=t.documentElement,i=g.matchesSelector||g.mozMatchesSelector||g.webkitMatchesSelector||g.msMatchesSelector,n=false;try{i.call(t.documentElement,"[test!='']:sizzle")}catch(m){n=true}if(i)k.matchesSelector=function(p,q){q=q.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(p))try{if(n||!o.match.PSEUDO.test(q)&&!/!=/.test(q))return i.call(p,q)}catch(u){}return k(q,null,null,[p]).length>0}})();(function(){var g=t.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){o.order.splice(1,0,"CLASS");o.find.CLASS=function(i,n,m){if(typeof n.getElementsByClassName!=="undefined"&&!m)return n.getElementsByClassName(i[1])};g=null}}})();k.contains=t.documentElement.contains?function(g,i){return g!==i&&(g.contains?g.contains(i):true)}:t.documentElement.compareDocumentPosition?function(g,i){return!!(g.compareDocumentPosition(i)&16)}:function(){return false};k.isXML=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false};var L=function(g,i){for(var n,m=[],p="",q=i.nodeType?[i]:i;n=o.match.PSEUDO.exec(g);){p+=n[0];g=g.replace(o.match.PSEUDO,"")}g=o.relative[g]?g+"*":g;n=0;for(var u=q.length;n<u;n++)k(g,q[n],m);return k.filter(p,m)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=k.getText;c.isXMLDoc=k.isXML;c.contains=k.contains})();var Za=/Until$/,$a=/^(?:parents|prevUntil|prevAll)/,ab=/,/,Na=/^.[^:#\[\.,]*$/,bb=Array.prototype.slice,cb=c.expr.match.POS;c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,e=0,f=this.length;e<f;e++){d=b.length;c.find(a,this[e],b);if(e>0)for(var h=d;h<b.length;h++)for(var l=0;l<d;l++)if(b[l]===b[h]){b.splice(h--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,e=b.length;d<e;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(ma(this,a,false),"not",a)},filter:function(a){return this.pushStack(ma(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){var d=[],e,f,h=this[0];if(c.isArray(a)){var l,k={},o=1;if(h&&a.length){e=0;for(f=a.length;e<f;e++){l=a[e];k[l]||(k[l]=c.expr.match.POS.test(l)?c(l,b||this.context):l)}for(;h&&h.ownerDocument&&h!==b;){for(l in k){e=k[l];if(e.jquery?e.index(h)>-1:c(h).is(e))d.push({selector:l,elem:h,level:o})}h=h.parentNode;o++}}return d}l=cb.test(a)?c(a,b||this.context):null;e=0;for(f=this.length;e<f;e++)for(h=this[e];h;)if(l?l.index(h)>-1:c.find.matchesSelector(h,a)){d.push(h);break}else{h=h.parentNode;if(!h||!h.ownerDocument||h===b)break}d=d.length>1?c.unique(d):d;return this.pushStack(d,"closest",a)},index:function(a){if(!a||typeof a==="string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var d=typeof a==="string"?c(a,b||this.context):c.makeArray(a),e=c.merge(this.get(),d);return this.pushStack(!d[0]||!d[0].parentNode||d[0].parentNode.nodeType===11||!e[0]||!e[0].parentNode||e[0].parentNode.nodeType===11?e:c.unique(e))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,e){var f=c.map(this,b,d);Za.test(a)||(e=d);if(e&&typeof e==="string")f=c.filter(e,f);f=this.length>1?c.unique(f):f;if((this.length>1||ab.test(e))&&$a.test(a))f=f.reverse();return this.pushStack(f,a,bb.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return b.length===1?c.find.matchesSelector(b[0],a)?[b[0]]:[]:c.find.matches(a,b)},dir:function(a,b,d){var e=[];for(a=a[b];a&&a.nodeType!==9&&(d===B||a.nodeType!==1||!c(a).is(d));){a.nodeType===1&&e.push(a);a=a[b]}return e},nth:function(a,b,d){b=b||1;for(var e=0;a;a=a[d])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var za=/ jQuery\d+="(?:\d+|null)"/g,$=/^\s+/,Aa=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Ba=/<([\w:]+)/,db=/<tbody/i,eb=/<|&#?\w+;/,Ca=/<(?:script|object|embed|option|style)/i,Da=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/\=([^="'>\s]+\/)>/g,P={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};P.optgroup=P.option;P.tbody=P.tfoot=P.colgroup=P.caption=P.thead;P.th=P.td;if(!c.support.htmlSerialize)P._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==B)return this.empty().append((this[0]&&this[0].ownerDocument||t).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,e;(e=this[d])!=null;d++)if(!a||c.filter(a,[e]).length){if(!b&&e.nodeType===1){c.cleanData(e.getElementsByTagName("*"));c.cleanData([e])}e.parentNode&&e.parentNode.removeChild(e)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,e=this.ownerDocument;if(!d){d=e.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(za,"").replace(fb,'="$1">').replace($,"")],e)[0]}else return this.cloneNode(true)});if(a===true){na(this,b);na(this.find("*"),b.find("*"))}return b},html:function(a){if(a===B)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(za,""):null;else if(typeof a==="string"&&!Ca.test(a)&&(c.support.leadingWhitespace||!$.test(a))&&!P[(Ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Aa,"<$1></$2>");try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(e){this.empty().append(a)}}else c.isFunction(a)?this.each(function(f){var h=c(this);h.html(a.call(this,f,h.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),e=d.html();d.replaceWith(a.call(this,b,e))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){var e,f,h,l=a[0],k=[];if(!c.support.checkClone&&arguments.length===3&&typeof l==="string"&&Da.test(l))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(l))return this.each(function(x){var r=c(this);a[0]=l.call(this,x,b?r.html():B);r.domManip(a,b,d)});if(this[0]){e=l&&l.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:c.buildFragment(a,this,k);h=e.fragment;if(f=h.childNodes.length===1?h=h.firstChild:h.firstChild){b=b&&c.nodeName(f,"tr");f=0;for(var o=this.length;f<o;f++)d.call(b?c.nodeName(this[f],"table")?this[f].getElementsByTagName("tbody")[0]||this[f].appendChild(this[f].ownerDocument.createElement("tbody")):this[f]:this[f],f>0||e.cacheable||this.length>1?h.cloneNode(true):h)}k.length&&c.each(k,Oa)}return this}});c.buildFragment=function(a,b,d){var e,f,h;b=b&&b[0]?b[0].ownerDocument||b[0]:t;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===t&&!Ca.test(a[0])&&(c.support.checkClone||!Da.test(a[0]))){f=true;if(h=c.fragments[a[0]])if(h!==1)e=h}if(!e){e=b.createDocumentFragment();c.clean(a,b,e,d)}if(f)c.fragments[a[0]]=h?e:1;return{fragment:e,cacheable:f}};c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var e=[];d=c(d);var f=this.length===1&&this[0].parentNode;if(f&&f.nodeType===11&&f.childNodes.length===1&&d.length===1){d[b](this[0]);return this}else{f=0;for(var h=d.length;f<h;f++){var l=(f>0?this.clone(true):this).get();c(d[f])[b](l);e=e.concat(l)}return this.pushStack(e,a,d.selector)}}});c.extend({clean:function(a,b,d,e){b=b||t;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||t;for(var f=[],h=0,l;(l=a[h])!=null;h++){if(typeof l==="number")l+="";if(l){if(typeof l==="string"&&!eb.test(l))l=b.createTextNode(l);else if(typeof l==="string"){l=l.replace(Aa,"<$1></$2>");var k=(Ba.exec(l)||["",""])[1].toLowerCase(),o=P[k]||P._default,x=o[0],r=b.createElement("div");for(r.innerHTML=o[1]+l+o[2];x--;)r=r.lastChild;if(!c.support.tbody){x=db.test(l);k=k==="table"&&!x?r.firstChild&&r.firstChild.childNodes:o[1]==="<table>"&&!x?r.childNodes:[];for(o=k.length-
1;o>=0;--o)c.nodeName(k[o],"tbody")&&!k[o].childNodes.length&&k[o].parentNode.removeChild(k[o])}!c.support.leadingWhitespace&&$.test(l)&&r.insertBefore(b.createTextNode($.exec(l)[0]),r.firstChild);l=r.childNodes}if(l.nodeType)f.push(l);else f=c.merge(f,l)}}if(d)for(h=0;f[h];h++)if(e&&c.nodeName(f[h],"script")&&(!f[h].type||f[h].type.toLowerCase()==="text/javascript"))e.push(f[h].parentNode?f[h].parentNode.removeChild(f[h]):f[h]);else{f[h].nodeType===1&&f.splice.apply(f,[h+1,0].concat(c.makeArray(f[h].getElementsByTagName("script"))));d.appendChild(f[h])}return f},cleanData:function(a){for(var b,d,e=c.cache,f=c.event.special,h=c.support.deleteExpando,l=0,k;(k=a[l])!=null;l++)if(!(k.nodeName&&c.noData[k.nodeName.toLowerCase()]))if(d=k[c.expando]){if((b=e[d])&&b.events)for(var o in b.events)f[o]?c.event.remove(k,o):c.removeEvent(k,o,b.handle);if(h)delete k[c.expando];else k.removeAttribute&&k.removeAttribute(c.expando);delete e[d]}}});var Ea=/alpha\([^)]*\)/i,gb=/opacity=([^)]*)/,hb=/-([a-z])/ig,ib=/([A-Z])/g,Fa=/^-?\d+(?:px)?$/i,jb=/^-?\d/,kb={position:"absolute",visibility:"hidden",display:"block"},Pa=["Left","Right"],Qa=["Top","Bottom"],W,Ga,aa,lb=function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){if(arguments.length===2&&b===B)return this;return c.access(this,a,b,true,function(d,e,f){return f!==B?c.style(d,e,f):c.css(d,e)})};c.extend({cssHooks:{opacity:{get:function(a,b){if(b){var d=W(a,"opacity","opacity");return d===""?"1":d}else return a.style.opacity}}},cssNumber:{zIndex:true,fontWeight:true,opacity:true,zoom:true,lineHeight:true},cssProps:{"float":c.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,d,e){if(!(!a||a.nodeType===3||a.nodeType===8||!a.style)){var f,h=c.camelCase(b),l=a.style,k=c.cssHooks[h];b=c.cssProps[h]||h;if(d!==B){if(!(typeof d==="number"&&isNaN(d)||d==null)){if(typeof d==="number"&&!c.cssNumber[h])d+="px";if(!k||!("set"in k)||(d=k.set(a,d))!==B)try{l[b]=d}catch(o){}}}else{if(k&&"get"in k&&(f=k.get(a,false,e))!==B)return f;return l[b]}}},css:function(a,b,d){var e,f=c.camelCase(b),h=c.cssHooks[f];b=c.cssProps[f]||f;if(h&&"get"in h&&(e=h.get(a,true,d))!==B)return e;else if(W)return W(a,b,f)},swap:function(a,b,d){var e={},f;for(f in b){e[f]=a.style[f];a.style[f]=b[f]}d.call(a);for(f in b)a.style[f]=e[f]},camelCase:function(a){return a.replace(hb,lb)}});c.curCSS=c.css;c.each(["height","width"],function(a,b){c.cssHooks[b]={get:function(d,e,f){var h;if(e){if(d.offsetWidth!==0)h=oa(d,b,f);else c.swap(d,kb,function(){h=oa(d,b,f)});if(h<=0){h=W(d,b,b);if(h==="0px"&&aa)h=aa(d,b,b);if(h!=null)return h===""||h==="auto"?"0px":h}if(h<0||h==null){h=d.style[b];return h===""||h==="auto"?"0px":h}return typeof h==="string"?h:h+"px"}},set:function(d,e){if(Fa.test(e)){e=parseFloat(e);if(e>=0)return e+"px"}else return e}}});if(!c.support.opacity)c.cssHooks.opacity={get:function(a,b){return gb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var d=a.style;d.zoom=1;var e=c.isNaN(b)?"":"alpha(opacity="+b*100+")",f=d.filter||"";d.filter=Ea.test(f)?f.replace(Ea,e):d.filter+" "+e}};if(t.defaultView&&t.defaultView.getComputedStyle)Ga=function(a,b,d){var e;d=d.replace(ib,"-$1").toLowerCase();if(!(b=a.ownerDocument.defaultView))return B;if(b=b.getComputedStyle(a,null)){e=b.getPropertyValue(d);if(e===""&&!c.contains(a.ownerDocument.documentElement,a))e=c.style(a,d)}return e};if(t.documentElement.currentStyle)aa=function(a,b){var d,e,f=a.currentStyle&&a.currentStyle[b],h=a.style;if(!Fa.test(f)&&jb.test(f)){d=h.left;e=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;h.left=b==="fontSize"?"1em":f||0;f=h.pixelLeft+"px";h.left=d;a.runtimeStyle.left=e}return f===""?"auto":f};W=Ga||aa;if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=a.offsetHeight;return a.offsetWidth===0&&b===0||!c.support.reliableHiddenOffsets&&(a.style.display||c.css(a,"display"))==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var mb=c.now(),nb=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,ob=/^(?:select|textarea)/i,pb=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,qb=/^(?:GET|HEAD)$/,Ra=/\[\]$/,T=/\=\?(&|$)/,ja=/\?/,rb=/([?&])_=[^&]*/,sb=/^(\w+:)?\/\/([^\/?#]+)/,tb=/%20/g,ub=/#.*$/,Ha=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!=="string"&&Ha)return Ha.apply(this,arguments);else if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var f=a.slice(e,a.length);a=a.slice(0,e)}e="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);e="POST"}var h=this;c.ajax({url:a,type:e,dataType:"html",data:b,complete:function(l,k){if(k==="success"||k==="notmodified")h.html(f?c("<div>").append(l.responseText.replace(nb,"")).find(f):l.responseText);d&&h.each(d,[l.responseText,k,l])}});return this},serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ob.test(this.nodeName)||pb.test(this.type))}).map(function(a,b){var d=c(this).val();return d==null?null:c.isArray(d)?c.map(d,function(e){return{name:b.name,value:e}}):{name:b.name,value:d}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:e})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:e})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return new E.XMLHttpRequest},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},ajax:function(a){var b=c.extend(true,{},c.ajaxSettings,a),d,e,f,h=b.type.toUpperCase(),l=qb.test(h);b.url=b.url.replace(ub,"");b.context=a&&a.context!=null?a.context:b;if(b.data&&b.processData&&typeof b.data!=="string")b.data=c.param(b.data,b.traditional);if(b.dataType==="jsonp"){if(h==="GET")T.test(b.url)||(b.url+=(ja.test(b.url)?"&":"?")+(b.jsonp||"callback")+"=?");else if(!b.data||!T.test(b.data))b.data=(b.data?b.data+"&":"")+(b.jsonp||"callback")+"=?";b.dataType="json"}if(b.dataType==="json"&&(b.data&&T.test(b.data)||T.test(b.url))){d=b.jsonpCallback||"jsonp"+mb++;if(b.data)b.data=(b.data+"").replace(T,"="+d+"$1");b.url=b.url.replace(T,"="+d+"$1");b.dataType="script";var k=E[d];E[d]=function(m){if(c.isFunction(k))k(m);else{E[d]=B;try{delete E[d]}catch(p){}}f=m;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);r&&r.removeChild(A)}}if(b.dataType==="script"&&b.cache===null)b.cache=false;if(b.cache===false&&l){var o=c.now(),x=b.url.replace(rb,"$1_="+o);b.url=x+(x===b.url?(ja.test(b.url)?"&":"?")+"_="+o:"")}if(b.data&&l)b.url+=(ja.test(b.url)?"&":"?")+b.data;b.global&&c.active++===0&&c.event.trigger("ajaxStart");o=(o=sb.exec(b.url))&&(o[1]&&o[1].toLowerCase()!==location.protocol||o[2].toLowerCase()!==location.host);if(b.dataType==="script"&&h==="GET"&&o){var r=t.getElementsByTagName("head")[0]||t.documentElement,A=t.createElement("script");if(b.scriptCharset)A.charset=b.scriptCharset;A.src=b.url;if(!d){var C=false;A.onload=A.onreadystatechange=function(){if(!C&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){C=true;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);A.onload=A.onreadystatechange=null;r&&A.parentNode&&r.removeChild(A)}}}r.insertBefore(A,r.firstChild);return B}var J=false,w=b.xhr();if(w){b.username?w.open(h,b.url,b.async,b.username,b.password):w.open(h,b.url,b.async);try{if(b.data!=null&&!l||a&&a.contentType)w.setRequestHeader("Content-Type",b.contentType);if(b.ifModified){c.lastModified[b.url]&&w.setRequestHeader("If-Modified-Since",c.lastModified[b.url]);c.etag[b.url]&&w.setRequestHeader("If-None-Match",c.etag[b.url])}o||w.setRequestHeader("X-Requested-With","XMLHttpRequest");w.setRequestHeader("Accept",b.dataType&&b.accepts[b.dataType]?b.accepts[b.dataType]+", */*; q=0.01":b.accepts._default)}catch(I){}if(b.beforeSend&&b.beforeSend.call(b.context,w,b)===false){b.global&&c.active--===1&&c.event.trigger("ajaxStop");w.abort();return false}b.global&&c.triggerGlobal(b,"ajaxSend",[w,b]);var L=w.onreadystatechange=function(m){if(!w||w.readyState===0||m==="abort"){J||c.handleComplete(b,w,e,f);J=true;if(w)w.onreadystatechange=c.noop}else if(!J&&w&&(w.readyState===4||m==="timeout")){J=true;w.onreadystatechange=c.noop;e=m==="timeout"?"timeout":!c.httpSuccess(w)?"error":b.ifModified&&c.httpNotModified(w,b.url)?"notmodified":"success";var p;if(e==="success")try{f=c.httpData(w,b.dataType,b)}catch(q){e="parsererror";p=q}if(e==="success"||e==="notmodified")d||c.handleSuccess(b,w,e,f);else c.handleError(b,w,e,p);d||c.handleComplete(b,w,e,f);m==="timeout"&&w.abort();if(b.async)w=null}};try{var g=w.abort;w.abort=function(){w&&Function.prototype.call.call(g,w);L("abort")}}catch(i){}b.async&&b.timeout>0&&setTimeout(function(){w&&!J&&L("timeout")},b.timeout);try{w.send(l||b.data==null?null:b.data)}catch(n){c.handleError(b,w,null,n);c.handleComplete(b,w,e,f)}b.async||L();return w}},param:function(a,b){var d=[],e=function(h,l){l=c.isFunction(l)?l():l;d[d.length]=encodeURIComponent(h)+"="+encodeURIComponent(l)};if(b===B)b=c.ajaxSettings.traditional;if(c.isArray(a)||a.jquery)c.each(a,function(){e(this.name,this.value)});else for(var f in a)da(f,a[f],b,e);return d.join("&").replace(tb,"+")}});c.extend({active:0,lastModified:{},etag:{},handleError:function(a,b,d,e){a.error&&a.error.call(a.context,b,d,e);a.global&&c.triggerGlobal(a,"ajaxError",[b,a,e])},handleSuccess:function(a,b,d,e){a.success&&a.success.call(a.context,e,d,b);a.global&&c.triggerGlobal(a,"ajaxSuccess",[b,a])},handleComplete:function(a,b,d){a.complete&&a.complete.call(a.context,b,d);a.global&&c.triggerGlobal(a,"ajaxComplete",[b,a]);a.global&&c.active--===1&&c.event.trigger("ajaxStop")},triggerGlobal:function(a,b,d){(a.context&&a.context.url==null?c(a.context):c.event).trigger(b,d)},httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===1223}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),e=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(e)c.etag[b]=e;return a.status===304},httpData:function(a,b,d){var e=a.getResponseHeader("content-type")||"",f=b==="xml"||!b&&e.indexOf("xml")>=0;a=f?a.responseXML:a.responseText;f&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b==="json"||!b&&e.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&e.indexOf("javascript")>=0)c.globalEval(a);return a}});if(E.ActiveXObject)c.ajaxSettings.xhr=function(){if(E.location.protocol!=="file:")try{return new E.XMLHttpRequest}catch(a){}try{return new E.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}};c.support.ajax=!!c.ajaxSettings.xhr();var ea={},vb=/^(?:toggle|show|hide)$/,wb=/^([+\-]=)?([\d+.\-]+)(.*)$/,ba,pa=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b,d){if(a||a===0)return this.animate(S("show",3),a,b,d);else{d=0;for(var e=this.length;d<e;d++){a=this[d];b=a.style.display;if(!c.data(a,"olddisplay")&&b==="none")b=a.style.display="";b===""&&c.css(a,"display")==="none"&&c.data(a,"olddisplay",qa(a.nodeName))}for(d=0;d<e;d++){a=this[d];b=a.style.display;if(b===""||b==="none")a.style.display=c.data(a,"olddisplay")||""}return this}},hide:function(a,b,d){if(a||a===0)return this.animate(S("hide",3),a,b,d);else{a=0;for(b=this.length;a<b;a++){d=c.css(this[a],"display");d!=="none"&&c.data(this[a],"olddisplay",d)}for(a=0;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b,d){var e=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||e?this.each(function(){var f=e?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(S("toggle",3),a,b,d);return this},fadeTo:function(a,b,d,e){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d,e)},animate:function(a,b,d,e){var f=c.speed(b,d,e);if(c.isEmptyObject(a))return this.each(f.complete);return this[f.queue===false?"each":"queue"](function(){var h=c.extend({},f),l,k=this.nodeType===1,o=k&&c(this).is(":hidden"),x=this;for(l in a){var r=c.camelCase(l);if(l!==r){a[r]=a[l];delete a[l];l=r}if(a[l]==="hide"&&o||a[l]==="show"&&!o)return h.complete.call(this);if(k&&(l==="height"||l==="width")){h.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(c.css(this,"display")==="inline"&&c.css(this,"float")==="none")if(c.support.inlineBlockNeedsLayout)if(qa(this.nodeName)==="inline")this.style.display="inline-block";else{this.style.display="inline";this.style.zoom=1}else this.style.display="inline-block"}if(c.isArray(a[l])){(h.specialEasing=h.specialEasing||{})[l]=a[l][1];a[l]=a[l][0]}}if(h.overflow!=null)this.style.overflow="hidden";h.curAnim=c.extend({},a);c.each(a,function(A,C){var J=new c.fx(x,h,A);if(vb.test(C))J[C==="toggle"?o?"show":"hide":C](a);else{var w=wb.exec(C),I=J.cur()||0;if(w){var L=parseFloat(w[2]),g=w[3]||"px";if(g!=="px"){c.style(x,A,(L||1)+g);I=(L||1)/J.cur()*I;c.style(x,A,I+g)}if(w[1])L=(w[1]==="-="?-1:1)*L+I;J.custom(I,L,g)}else J.custom(I,C,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);this.each(function(){for(var e=d.length-1;e>=0;e--)if(d[e].elem===this){b&&d[e](true);d.splice(e,1)}});b||this.dequeue();return this}});c.each({slideDown:S("show",1),slideUp:S("hide",1),slideToggle:S("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){c.fn[a]=function(d,e,f){return this.animate(b,d,e,f)}});c.extend({speed:function(a,b,d){var e=a&&typeof a==="object"?c.extend({},a):{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};e.duration=c.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in c.fx.speeds?c.fx.speeds[e.duration]:c.fx.speeds._default;e.old=e.complete;e.complete=function(){e.queue!==false&&c(this).dequeue();c.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,d,e){return d+e*a},swing:function(a,b,d,e){return(-Math.cos(a*Math.PI)/2+0.5)*e+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||c.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a=parseFloat(c.css(this.elem,this.prop));return a&&a>-1E4?a:0},custom:function(a,b,d){function e(l){return f.step(l)}
var f=this,h=c.fx;this.startTime=c.now();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;this.pos=this.state=0;e.elem=this.elem;if(e()&&c.timers.push(e)&&!ba)ba=setInterval(h.tick,h.interval)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=c.now(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var e in this.options.curAnim)if(this.options.curAnim[e]!==true)d=false;if(d){if(this.options.overflow!=null&&!c.support.shrinkWrapBlocks){var f=this.elem,h=this.options;c.each(["","X","Y"],function(k,o){f.style["overflow"+o]=h.overflow[k]})}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var l in this.options.curAnim)c.style(this.elem,l,this.options.orig[l]);this.options.complete.call(this.elem)}return false}else{a=b-this.startTime;this.state=a/this.options.duration;b=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||b](this.state,a,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||c.fx.stop()},interval:13,stop:function(){clearInterval(ba);ba=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===b.elem}).length};var xb=/^t(?:able|d|h)$/i,Ia=/^(?:body|html)$/i;c.fn.offset="getBoundingClientRect"in t.documentElement?function(a){var b=this[0],d;if(a)return this.each(function(l){c.offset.setOffset(this,a,l)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);try{d=b.getBoundingClientRect()}catch(e){}var f=b.ownerDocument,h=f.documentElement;if(!d||!c.contains(h,b))return d||{top:0,left:0};b=f.body;f=fa(f);return{top:d.top+(f.pageYOffset||c.support.boxModel&&h.scrollTop||b.scrollTop)-(h.clientTop||b.clientTop||0),left:d.left+(f.pageXOffset||c.support.boxModel&&h.scrollLeft||b.scrollLeft)-(h.clientLeft||b.clientLeft||0)}}:function(a){var b=this[0];if(a)return this.each(function(x){c.offset.setOffset(this,a,x)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d,e=b.offsetParent,f=b.ownerDocument,h=f.documentElement,l=f.body;d=(f=f.defaultView)?f.getComputedStyle(b,null):b.currentStyle;for(var k=b.offsetTop,o=b.offsetLeft;(b=b.parentNode)&&b!==l&&b!==h;){if(c.offset.supportsFixedPosition&&d.position==="fixed")break;d=f?f.getComputedStyle(b,null):b.currentStyle;k-=b.scrollTop;o-=b.scrollLeft;if(b===e){k+=b.offsetTop;o+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&xb.test(b.nodeName))){k+=parseFloat(d.borderTopWidth)||0;o+=parseFloat(d.borderLeftWidth)||0}e=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&d.overflow!=="visible"){k+=parseFloat(d.borderTopWidth)||0;o+=parseFloat(d.borderLeftWidth)||0}d=d}if(d.position==="relative"||d.position==="static"){k+=l.offsetTop;o+=l.offsetLeft}if(c.offset.supportsFixedPosition&&d.position==="fixed"){k+=Math.max(h.scrollTop,l.scrollTop);o+=Math.max(h.scrollLeft,l.scrollLeft)}return{top:k,left:o}};c.offset={initialize:function(){var a=t.body,b=t.createElement("div"),d,e,f,h=parseFloat(c.css(a,"marginTop"))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});b.innerHTML="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";a.insertBefore(b,a.firstChild);d=b.firstChild;e=d.firstChild;f=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=e.offsetTop!==5;this.doesAddBorderForTableAndCells=f.offsetTop===5;e.style.position="fixed";e.style.top="20px";this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15;e.style.position=e.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==h;a.removeChild(b);c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.css(a,"marginTop"))||0;d+=parseFloat(c.css(a,"marginLeft"))||0}return{top:b,left:d}},setOffset:function(a,b,d){var e=c.css(a,"position");if(e==="static")a.style.position="relative";var f=c(a),h=f.offset(),l=c.css(a,"top"),k=c.css(a,"left"),o=e==="absolute"&&c.inArray("auto",[l,k])>-1;e={};var x={};if(o)x=f.position();l=o?x.top:parseInt(l,10)||0;k=o?x.left:parseInt(k,10)||0;if(c.isFunction(b))b=b.call(a,d,h);if(b.top!=null)e.top=b.top-h.top+l;if(b.left!=null)e.left=b.left-h.left+k;"using"in b?b.using.call(a,e):f.css(e)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),e=Ia.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.css(a,"marginTop"))||0;d.left-=parseFloat(c.css(a,"marginLeft"))||0;e.top+=parseFloat(c.css(b[0],"borderTopWidth"))||0;e.left+=parseFloat(c.css(b[0],"borderLeftWidth"))||0;return{top:d.top-e.top,left:d.left-e.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||t.body;a&&!Ia.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(e){var f=this[0],h;if(!f)return null;if(e!==B)return this.each(function(){if(h=fa(this))h.scrollTo(!a?e:c(h).scrollLeft(),a?e:c(h).scrollTop());else this[d]=e});else return(h=fa(f))?"pageXOffset"in h?h[a?"pageYOffset":"pageXOffset"]:c.support.boxModel&&h.document.documentElement[d]||h.document.body[d]:f[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?parseFloat(c.css(this[0],d,"padding")):null};c.fn["outer"+b]=function(e){return this[0]?parseFloat(c.css(this[0],d,e?"margin":"border")):null};c.fn[d]=function(e){var f=this[0];if(!f)return e==null?null:this;if(c.isFunction(e))return this.each(function(l){var k=c(this);k[d](e.call(this,l,k[d]()))});if(c.isWindow(f))return f.document.compatMode==="CSS1Compat"&&f.document.documentElement["client"+b]||f.document.body["client"+b];else if(f.nodeType===9)return Math.max(f.documentElement["client"+
b],f.body["scroll"+b],f.documentElement["scroll"+b],f.body["offset"+b],f.documentElement["offset"+b]);else if(e===B){f=c.css(f,d);var h=parseFloat(f);return c.isNaN(h)?f:h}else return this.css(d,typeof e==="string"?e:e+"px")}})})(window);

/* jquery-noconflict.js */

jQuery.noConflict();

/* caption.js */

var JCaption=new Class({initialize:function(selector)
{this.selector=selector;var images=$$(selector);images.each(function(image){this.createCaption(image);},this);},createCaption:function(element)
{var caption=document.createTextNode(element.title);var container=document.createElement("div");var text=document.createElement("p");var width=element.getAttribute("width");var align=element.getAttribute("align");if(!width){width=element.width;}
if(!align)
align=element.getStyle("float");if(!align)
align=element.style.styleFloat;if(align==""){align="none";}
text.appendChild(caption);text.className=this.selector.replace('.','_');element.parentNode.insertBefore(container,element);container.appendChild(element);if(element.title!=""){container.appendChild(text);}
container.className=this.selector.replace('.','_');container.className=container.className+" "+align;container.setAttribute("style","float:"+align);container.style.width=width+"px";}});document.caption=null;window.addEvent('load',function(){var caption=new JCaption('img.caption')
document.caption=caption});

/* rokbox.js */

eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('V.4A({\'2B\':E(){L 8.1z(\'2b\',\'\')},\'1S\':E(){L 8.1z(\'2b\',\'3l\')}});8O.4A({\'8N\':E(){u a=/^(1U|4F):\\/\\/([a-z-.0-9]+)[\\/]{0,1}/i.4f(J.2I);u b=/^(1U|4F):\\/\\/([a-z-.0-9]+)[\\/]{0,1}/i.4f(8);L a[2]===b[2]}});u 3U=C 4H({2O:\'2.0\',A:{\'1C\':\'8u\',\'4I\':\'8s\',\'1B\':2i.4u.4r.8o,\'1D\':4l,\'49\':40,\'1t\':\'4L\',\'2r\':M,\'4N\':8g,\'3Y\':I,\'2F\':M,1y:{\'33\':\'#8a\',\'1d\':0.85,\'3z\':87,\'1D\':4l,\'1B\':2i.4u.4r.4T},\'52-53\':0,\'5d-2w\':0,\'1b-B\':50,2H:{\'D\':5h,\'B\':7U},\'1P\':\'M\',\'2p\':\'I\',\'1a\':\'#7Q\',\'5o\':I,\'2T\':\'5p\',\'36\':I,\'37\':I,\'38\':M,\'3b\':I},5u:E(f){8.5B(f);u g=C 7F("^"+8.A.1C),16=8.A.1C,F=8;8.1H=[];8.2x=C 7A({});8.2l=I;8.29=I;8.7x=$$(\'a\').7w(E(a){u b=a.26(\'2P\'),11=I,4n=I,1E=I;u c=(b||\'\').4v(g);t(c){t(b)11=b.U(/\\([a-5K-5L-Z]+\\)/g)||I;t(b)1E=b.U(/\\[1E\\=(.+)+\\]/)||I;t(1E[1]){a.1E=1E[1]}N{a.1E=I};t(11[0]){11=11[0].1M("(","").1M(")","");t(!8.2x.7j(11))8.2x.4x(11,[]);u d=8.2x.4y(11);d.7f(a);4n=d.1h;8.2x.4x(11,d)};a.11=11;a.4w=4n;a.1N(\'1G\',8.1G.5R(a,[a.1I,a.1F,a.2P,8]))};L c}.5T(8));u h=$77(8.A.1y,{\'Q\':16+\'-1y\',\'1k\':16+\'-1y\'});8.2s=C 4q(I,h).1N(\'5W\',E(){F.24(F.1H)}).1N(\'5Z\',E(){t(F.2l){F.2l=I;u e=F.1O[0],3v=F.1O[1],2t=F.1O[2],1g=F.1O[3],1s;t(3v.26(\'Q\').4v(\'2y\'))1s=2t[1g];N 1s=2t[1g-2];F.1G.3r(1R,F,[I,1s.1I,1s.1F,1s.2P,F,1s])}});8.1y=8.2s.1y.1N(\'1G\',E(){F.29=I;F.2a()});8.W=C V(\'1o\',{\'Q\':16+\'-W\',\'1k\':16+\'-\'+8.A.4I}).Y(1c.4h).1J({\'4e\':\'4c\',\'3z\':66,\'1d\':0}).1S();u i=C V(\'1o\',{\'Q\':16+\'-13\',\'1k\':16+\'-1n\'}).Y(8.W);u j=C V(\'1o\',{\'1k\':16+\'-3c\'}).Y(i);u k=C V(\'1o\',{\'1k\':16+\'-18\'}).Y(j);u l=C V(\'1o\',{\'Q\':16+\'-6y\',\'1k\':16+\'-1n\'}).Y(8.W);u m=C V(\'1o\',{\'1k\':16+\'-3c\'}).Y(l);8.18=C V(\'1o\',{\'1k\':16+\'-18\'}).Y(m);u n=C V(\'1o\',{\'Q\':16+\'-6v\',\'1k\':16+\'-1n\'}).Y(8.W);u o=C V(\'1o\',{\'1k\':16+\'-3c\'}).Y(n);u p=C V(\'1o\',{\'1k\':16+\'-18\'}).Y(o);C V(\'1o\',{\'1k\':\'6s\'}).Y(8.W);8.1w=C V(\'a\',{\'Q\':16+\'-2a\',\'1F\':\'#\'}).2c(\'<1K>[x] 2a</1K>\').Y(8.18);8.1w.1N(\'1G\',E(e){C 31(e).2V();F.29=I;F.2a(e)});8.1v={\'W\':C 2i.6h(8.W,{\'1D\':8.A.1D,3S:M,\'1B\':8.A.1B,6i:E(){t(F.O==\'2R\')L;t(!8.6w.1d&&F.2s.24){F.W.1S();t(!F.29){F.2s.1S()}N{t(F.2l){F.2l=I;u e=F.1O[0],3v=F.1O[1],2t=F.1O[2],1g=F.1O[3],1s;t(3v.26(\'Q\').4v(\'2y\'))1s=2t[1g];N 1s=2t[1g-2];F.1G.3r(1R,F,[I,1s.1I,1s.1F,1s.2P,F,1s])}}}N{F.6e.3r(50,F)}}}),\'18\':C 2i.6h(8.18,{\'1D\':8.A.1D,3S:M,\'1B\':8.A.1B}),\'B\':C 2i.6d(8.18,\'B\',{\'1D\':8.A.1D,3S:M,\'1B\':8.A.1B})};J.1N(\'6x\',E(){F.25(F.W);F.2s.25()});t(8.A.3Y)J.1N(\'1X\',E(){F.25(F.W)})},1G:E(e,a,b,c,d,f){t(e)C 31(e).2V();u g=\'\';u h=c.U(/([0-9]+\\s?[0-9]+)/g)||[\'\'];h=h[0].1r(" ");u h=c.U(/([0-9%]+\\s?[0-9%]+)/g)||[\'\'];g=h[0].1r(" ");h=h[0].1r(" ");t(c.U(/2K/g))g=\'2K\';u i=d.1u();t(!f)f=I;u j=8.11||f.11;u k=d.1w.1e(\'B\').X()||d.1w.17().G.y||0;u l=d.A[\'1b-B\']||0;h[0]=(h[0])?h[0]:\'\';h[1]=(h[1])?h[1]:\'\';t((!h[0].3n("%")&&!h[1].3n("%"))&&!h[0].1h||!h[1].1h){t(b.U(/3p\\.1i\\/2W/i)){h[0]=5h;h[1]=73}N t(b.U(/3K\\./i)){h[0]=79;h[1]=7a}N t(b.U(/4d\\.1i\\/2W/i)){h[0]=3H;h[1]=7h}N t(b.U(/3I\\.1i\\/5N/i)){h[0]=3H;h[1]=7k}N t(b.U(/3A\\.1i\\/[0-9]{1,}/i)){h[0]=3H;h[1]=7m}N t(b.U(/\\.(5J|3L|3s|5G|5F|5E|5D|5C|3N|5A|5z|5y|5x|5w)$/i)){h[0]=7I;h[1]=7J}N t(b.U(/\\.(5t|3m|5r)$/i)){h[0]=7M;h[1]=45}};u m=J.17().G;t(h[0]>((J.1V)?J.3h:m.x)||g==\'2K\')h[0]=((J.1V)?J.3h:m.x)-d.1u(M)-20;t(h[1]>((J.1V)?J.35:m.y)||g==\'2K\')h[1]=((J.1V)?J.35:m.y)-d.1u()-k-l-20;t($O(h[0])!=\'5k\'&&$O(h[1])!=\'5k\'){t(h[0].3n("%")&&h[1].3n("%")){u n=(J.1V)?J.3h:m.x;u o=(J.1V)?J.35:m.y;h[0]=h[0].1M("%","").X();h[1]=h[1].1M("%","").X();h[0]=h[0]>1R?1R:h[0];h[1]=h[1]>1R?1R:h[1];h[0]=n*h[0]/1R;h[1]=o*h[1]/1R;h[0]=h[0]-d.1u(M)-20;h[1]=h[1]-d.1u()-k-l-20}}c={D:(h[0]||d.A.2H.D).X(),B:(h[1]||d.A.2H.B).X()};5j={D:(h[0]||d.A.2H.D).X()+d.1u(M),B:(h[1]||d.A.2H.B).X()+d.1u()+k};d.1H=[8,a,b,c,j,8.4w||f.4w,5j,8.1E];t(!d.29)d.2s.5i();N d.24(d.1H)},1u:E(a){u b=(8.A[\'52-53\']*2)+(8.A[\'5d-2w\']*2);L b},24:E(){1Q=1Q[0];u b=1Q;u d=1Q[0],j=1Q[1],1F=1Q[2],G=1Q[3],A=1Q[6],1E=1Q[7],F=8;8.1w.1z(\'3X\',\'80\');u e=F.1w.1e(\'B\').X()||F.1w.17().G.y||F.1w.82.B.X()||0;t(F.1w.1e(\'4e\')==\'4c\')e=0;u g=F.A[\'1b-B\']||0;8.W.1J({\'D\':A.D,\'B\':A.B+g+e}).2B();8.18.1J({\'D\':G.D,\'B\':G.B+e+g});t(F.A.2r&&!8.1f){u i=F.41(j)||[I,I];u j=i[0],2q=i[1];8.1f=C V(\'1o\',{\'Q\':8.A.1C+\'-1f\'}).Y(8.18).1z(\'1d\',0).59(j,2q)};t(F.A.2r&&8.1f)8.1f.1S().1z(\'B\',0);t(F.15)F.15.4b();u k=8.25(8.W,A)[1];8.1v.W.1l(8.3g(8.A.1t,k).1l).2D(E(){t(F.A.2r&&F.1f){(E(){u a=F.1f.17().G.y||0;u b=F.18.1e(\'B\').X();u c=F.1f.83().84().1h;F.1v.B.1l(b+a-e).2D(E(){F.1f.1t(\'1d\').1l(1);t(F.A.2F){F.4g=F.2F.5R(F);1c.1N(\'4Z\',F.4g)}})}).3r(F.A.4N)}});u h=G.B+e+g;u f=8.3g(8.A.1t,k).1l;t(f.D||f.B)8.1v.18.1l({\'D\':($O(f.D)==\'4Y\')?[0,G.D]:G.D,\'B\':($O(f.B)==\'4Y\')?[0,h]:h});N 8.18.1J({\'D\':G.D,\'B\':h})},2a:E(a,b){u c=8,1t;u d={\'1n\':8.W.1e(\'1n\').X(),\'13\':8.W.1e(\'13\').X()};8.1w.1z(\'3X\',\'4X\');8.15.2e(\'2o\');8.4U();1t=8.3g((b)?b:8.A.1t,d).2E;t(8.A.2r)8.1f.1t(\'1d\').4x(0);t(8.A.2F)1c.8b(\'4Z\',c.4g);t(8.1b)8.1b.4o();8.1b=I;u e={};t($4Q(1t.D))e.D=4P.4O(1t.D-c.1u());t($4Q(1t.B))e.B=4P.4O(1t.B);8.1v.18.1l(e).2D(E(){c.1v.B.2V();t(c.1f)c.1f.1z(\'B\',\'\');c.18.1J({\'D\':\'\',\'B\':\'\'});c.15.1J({\'D\':\'\',\'B\':\'\'})});8.1v.W.1l(1t);L 8},2F:E(e){C 31(e);4p(e.3w){1L\'1n\':t(8.1b)8.2X.3y(\'1G\',e);27;1L\'3c\':t(8.1b)8.2Z.3y(\'1G\',e);27;1L\'8C\':8.29=I;8.2a(e,\'3C\')}},25:E(a,b){u c=J.17();t(!a)a=$(8.W);t(!b){u d=a.17().G;b={\'D\':d.x,\'B\':d.y}};u e=8.A[\'1b-B\'];u f=c.1X.x+(((J.1V)?J.3h:c.G.x)/2)-(b.D/2)-a.1e(\'2w-1n\').X();u g=c.1X.y+(((J.1V)?J.35:c.G.y)/2)-(b.B/2)-a.1e(\'2w-13\').X()-(e/2);u h={\'13\':(g>0)?g:0,\'1n\':(f>0)?f:0};L[a.1J(h),h]},6e:E(){t(8.15)8.15.4o();t(8.1f)8.1f.1S();u d=8.1H[1],K=8.1H[2],G=8.1H[3],11=8.1H[4],1g=8.1H[5],16=8.A.1C;u f=8.1H[7];u g=8.1w.1e(\'B\').X()||8.1w.17().G.y||0;u h=8.A[\'1b-B\']||0;8.O=I;t(f){8.O=\'1E\';8.H=$(f)}N t(K.U(/\\.(8S|8W|7R|8P|8K)$/i)||8.1H[0].8J==\'2R\'){8.O=\'2R\';u i=8;8.H=C 8y.2R(K,{Q:\'1m\',8t:E(){i.15.2e(\'8q\').4K(\'8k\');i.15.2c(\'<4M>8h 8c 86.</4M>\')},4V:E(){G.D=8.D;G.B=8.B;i.15.1J(G);u a=8,2M=J.17();u b=2M.1X.y+(2M.G.y/2)-(8.B/2)-i.W.1e(\'2w-13\').X();t(b<0)b=0;t(i.18.1e(\'D\').X()!=G.D&&i.18.1e(\'B\').X()!=G.B){i.1v.18.1l({\'D\':G.D,\'B\':G.B+i.1u(M)+h})};u c=2M.1X.x+(2M.G.x/2)-(8.D/2)-(i.1u(M)/2)-i.W.1e(\'2w-1n\').X();i.1v.W.1l({\'1n\':(c>0)?c:0,\'D\':8.D+i.1u(M),\'B\':8.B+i.1u()+h+g}).2D(E(){i.15.2e(\'2o\');a.Y(i.15);t(i.1b)i.1b.2B()})}})}N t(K.U(/\\.(5J|3L|3s|5G|5F|5E|5D|5C)$/i)){8.O=\'3L\';t(1x.2k&&1x.2k.1h){8.H=\'<H Q="1m" 3k="3j..." O="4i/4W" 51="1U://2d.54.1i/55/56.57" 2L="\'+K+\'" D="\'+G.D+\'" B="\'+G.B+\'"><S P="2m" T="\'+K+\'" /><S P="58" T="5a" /><S P="2p" T="\'+8.A.2p+\'" /><S P="1P" T="\'+8.A.1P+\'" /><S P="1a" T="\'+8.A.1a+\'" /><S P="5b" T="M" /></H>\'}N{8.H=\'<H 3Z="5c:7Z-7Y-7X-7V-7S" 3k="3j..." 51="1U://2d.54.1i/55/56.57" O="4i/4W" D="\'+G.D+\'" B="\'+G.B+\'" Q="1m"><S P="2m" T="\'+K+\'" /><S P="58" T="5a" /><S P="2p" T="\'+8.A.2p+\'" /><S P="1P" T="\'+8.A.1P+\'" /><S P="1a" T="\'+8.A.1a+\'" /><S P="5b" T="M" /></H>\'}}N t(K.U(/\\.(3N|5A|5z|5y|5x|5w)$/i)){8.O=\'3N\';t(1x.2k&&1x.2k.1h){8.H=\'<H Q="1m" 3k="3j..." O="2n/x-5m" 2L="\'+K+\'" D="\'+G.D+\'" B="\'+G.B+\'" /><S P="2m" T="\'+K+\'" /><S P="5n" T="\'+8.A.1P+\'" /><S P="1a" T="\'+8.A.1a+\'" /></H>\'}N{8.H=\'<H Q="1m" 3k="3j..." 3Z="7P:7L-7H-7G-7D-7l" O="2n/x-5m" 2L="\'+K+\'" D="\'+G.D+\'" B="\'+G.B+\'" /><S P="3J" T="\'+K+\'" /><S P="7i" T="\'+8.A.2p+\'"><S P="5n" T="\'+8.A.1P+\'" /><S P="1a" T="\'+8.A.1a+\'" /><S P="7g" T="M" /></H>\'}}N t(K.U(/3p\\.1i\\/2W\\?v=/i)||K.U(/3p\\-7c\\.1i\\/2W\\?v=/i)){8.O=\'1W\';u j=3D(K);8.1Y=j[\'2z\'][\'v\'];74 j[\'2z\'][\'v\'];t(8.A.5o&&!j[\'2z\'][\'1P\'])j[\'2z\'][\'1P\']=1;8.H=C 1q("1U://2d.3p.1i/v/"+8.1Y+\'&\'+2v.72(j[\'2z\']),"1m",G.D,G.B,"9",8.A.1a,"2U","2N");8.H.1j(\'2h\',\'22\');8.H.1j(\'2f\',\'M\')}N t(K.U(/3K\\./i)){8.O=\'1W\';u k=K.1r("71")[0].1r(\'/\');8.5Y=k[k.1h-1];8.H=C 1q("1U://2d.3K.1i/1A/"+8.5Y+"&70=1&6X=33:6U;6T:6S;6J:6G;6D:6C;&6B=1&6A=0","1m",G.D,G.B,"9",8.A.1a);8.H.1j(\'2h\',\'22\');8.H.1j(\'2f\',\'M\')}N t(K.U(/4d\\.1i\\/2W/i)){8.O=\'1W\';u k=K.1r(\'/\');8.1Y=k[4];8.H=C 1q("1U://2d.4d.1i/6z/"+8.1Y+"/.1A","1m",G.D,G.B,"9",8.A.1a,"2U","2N");8.H.1j(\'2h\',\'22\');8.H.1j(\'2f\',\'M\')}N t(K.U(/3I\\.1i\\/5N/i)){8.O=\'1W\';u k=K.1r(\'=\');8.1Y=k[1];8.H=C 1q("1U://4i.3I.1i/6t.1A?6k="+8.1Y+"&1P=1&8r=6l","1m",G.D,G.B,"9",8.A.1a,"2U","2N");8.H.1j(\'2h\',\'22\');8.H.1j(\'2f\',\'M\')}N t(K.U(/3A\\.1i\\/[0-9]{1,}/i)){8.O=\'1W\';u k=K.1r(\'/\');8.1Y=k[3];8.A.38=(8.A.38)?1:0;8.A.37=(8.A.37)?1:0;8.A.3b=(8.A.3b)?1:0;8.A.36=(8.A.36)?1:0;8.A.2T=(8.A.2T.U(/[0-9]{6}/))?8.A.2T:\'5p\';8.H=C 1q("1U://2d.3A.1i/6m.1A?6n="+8.1Y+"&2C;6o=2d.3A.1i&2C;2K="+8.A.38+"&2C;6p="+8.A.37+"&2C;6q="+8.A.3b+"&2C;6r="+8.A.36+"&2C;6g="+8.A.2T+"","1m",G.D,G.B,"9",8.A.1a);8.H.1j(\'2h\',\'22\');8.H.1j(\'2f\',\'M\')}N t(K.U(/\\.1A/i)){8.O=\'1W\';8.H=C 1q(K,"1m",G.D,G.B,"9",8.A.1a,"2U","2N");8.H.1j(\'2h\',\'22\');8.H.1j(\'2f\',\'M\')}N t(K.U(/\\.6u/i)&&J.6f){8.O=\'1W\';K=J.6f+\'6c/6c.1A?6b=\'+K;8.H=C 1q(K,"1m",G.D,G.B,"9",8.A.1a,"2U","2N");8.H.1j(\'2h\',\'22\');8.H.1j(\'2f\',\'M\')}N t(K.U(/\\.(5t|5r)$/i)){8.O=\'2u\';8.H=\'<H Q="1m"" D="\'+G.D+\'" B="\'+G.B+\'" 2L="\'+K+\'"" O="\'+((J.3F)?\'2n/x-3a\':\'2u/3s\')+\'"><S T="\'+K+\'" P="2m"/><S T="\'+K+\'" P="3J"/><S T="\'+((J.3F)?\'2n/x-3a\':\'2u/3s\')+\'" P="O"/><S P="1a" T="\'+8.A.1a+\'" /><p>6a 69 68 28 67: \'+K+\'</p></H>\'}N t(K.U(/\\.3m$/i)){8.O=\'2u\';8.H=\'<H Q="1m"" D="\'+G.D+\'" B="\'+G.B+\'" 2L="\'+K+\'"" O="\'+((J.3F)?\'2n/x-3a\':\'2u/3m\')+\'"><S T="\'+K+\'" P="2m"/><S T="\'+K+\'" P="3J"/><S T="\'+((J.3F)?\'2n/x-3a\':\'2u/3m\')+\'" P="O"/><S P="1a" T="\'+8.A.1a+\'" /><p>6a 69 68 28 67: \'+K+\'</p></H>\'}N{8.O=\'42\';u l="1m"+$6E()+$44(0,1R);8.H=C V(\'42\').46({Q:l,D:G.D,B:G.B,6F:0,3Y:\'6H\',2m:K});u i=8;8.H.4V=E(){i.15.2e(\'2o\')}}8.3G=$(\'1m\');t(8.O){8.15=C V(\'1o\',{\'Q\':16+\'-15\',\'1k\':16+\'-15\'}).4K(\'2o\').1J(G).6I(8.18);t(8.O==\'1W\')8.H.64(8.15);N t(8.O==\'1E\'){8.H.6K(M).Y(8.15.2e(\'2o\')).1z(\'2b\',\'6L\')}N t(8.O==\'6M\'){8.H.Y(8.15);C 6N(K,{\'6O\':\'4y\',\'6P\':M,\'6Q\':8.H,6i:E(){8.15.2e(\'2o\')}.5T(8)}).6R()}N t(8.O==\'42\'){8.H.Y(8.15)}N t(8.O!=\'2R\')8.15.2e(\'2o\').2c(8.H);t(11){u m=8.2x.4y(11),i=8;t(m.1h>1){t(!8.1b){8.1b=C V(\'1o\',{\'Q\':8.A.1C+\'-1b\'}).Y(8.18).1S();t(1g!=1){8.2X=C V(\'a\',{\'Q\':8.A.1C+\'-3t\'}).Y(8.1b).2c(\'<1K>&63;3t</1K>\');8.2X.46({\'1F\':m[1g-2].26(\'1F\'),\'1I\':m[1g-2].26(\'1I\')})};t(1g!=m.1h){8.2Z=C V(\'a\',{\'Q\':8.A.1C+\'-2y\'}).Y(8.1b).2c(\'<1K>2y &62;</1K>\');8.2Z.46({\'1F\':m[1g].26(\'1F\'),\'1I\':m[1g].26(\'1I\')})};t(1g==1)8.2X=C V(\'a\',{\'Q\':8.A.1C+\'-3t\',\'1k\':\'3u\',\'1F\':\'#\'}).Y(8.1b,\'13\').2c(\'<1K>&63;3t</1K>\');t(1g==m.1h)8.2Z=C V(\'a\',{\'Q\':8.A.1C+\'-2y\',\'1k\':\'3u\',\'1F\':\'#\'}).Y(8.1b).2c(\'<1K>2y &62;</1K>\');8.2X.1N(\'1G\',E(e){e=C 31(e).2V();t(!8.61(\'3u\')){i.2l=M;i.1O=[e,8,m,1g];i.29=M;i.2a(e,\'3C\')}});8.2Z.1N(\'1G\',E(e){e=C 31(e).2V();t(!8.61(\'3u\')){i.2l=M;i.1O=[e,8,m,1g];i.29=M;i.2a(e,\'3C\')}})};8.1b.2B()}};t(8.A.2r){u n=8.41(d)||[I,I];u o=n[0],2q=n[1];t(8.1f)8.1f.4b().4o();8.1f=C V(\'1o\',{\'Q\':8.A.1C+\'-1f\'}).Y(8.18).1z(\'1d\',0).59(o,2q)}}},4U:E(){t(8.O){8.15.1z(\'3X\',\'4X\').4b()}8.3G=2j;8.O=I},41:E(a){a=a.1r(" :: ")||I;4p(a.1h){1L 0:L I;27;1L 1:u b=I;u c=C V(\'p\').4k(a[0]);27;1L 2:u b=C V(\'6V\').4k(a[0]);u c=C V(\'p\').4k(a[1]);27}L[b,c]},6W:E(a){u b=a.26(\'2P\'),11=I;t(b)11=b.U(/\\([a-5K-5L-Z]+\\)/g)||I;t(11[0])11=11[0].1M("(","").1M(")","");N 11=I;L 11}});3U.4m(C 60,C 6Y);u 4q=C 4H({A:{\'Q\':I,\'1k\':I,\'33\':\'#6Z\',\'1d\':0.7,\'3z\':66,\'1D\':4l,\'1B\':2i.4u.4r.4T},5u:E(a,b){8.5X=$(a)||$(1c.4h);8.5B(b);8.1y=C V(\'1o\',{\'Q\':8.A.Q||(\'5V-\'+$44(1,5U)),\'1k\':8.A.Q||(\'5V-\'+$44(1,5U)),\'75\':{\'1d\':0,\'2b\':\'3l\',\'4e\':\'4c\',\'13\':0,\'1n\':0,\'76\':\'78\',\'33-6g\':8.A.33,\'z-1g\':8.A.3z}}).Y(1c.4h);8.1v=C 2i.6d(8.1y,\'1d\',{1D:8.A.1D,1B:8.A.1B});8.24=I;L 8},25:E(a){u b=8.5X;a=a||J.17().4t;8.1y.1J({13:b.5S().y||0,1n:b.5S().x||0,D:J.17().G.x,B:a.y});L 8},2B:E(){u a=8.1y,F=8;8.1y.1z(\'2b\',\'\');8.24=M;8.25().1v.1l(8.A.1d).2D(E(){F.3y(\'5W\',a)});L 8},1S:E(){u a=8.1y,F=8;8.24=I;8.25().1v.1l(0).2D(E(){a.1z(\'2b\',\'3l\');F.3y(\'5Z\',a)});L 8},5i:E(){8[8.24?\'1S\':\'2B\']();L 8}});4q.4m(C 60,C 7b);3U.4m({3g:E(a,b){u c={};t(!b)b=0;4p(a){1L\'3C\':c={\'1l\':{\'13\':[b.13-8.A.49,b.13],\'1d\':1},\'2E\':{\'13\':8.W.1e(\'13\').X()+8.A.49,\'1d\':0}};27;1L\'4L\':u d=8.W.1e(\'B\').X(),D=8.W.1e(\'D\').X();c={\'1l\':{\'13\':[b.13+(d/2),b.13],\'B\':[0,d],\'1d\':1},\'2E\':{\'13\':b.13+(d/2),\'1n\':J.17().G.x/2-((J.17().4t.x-10)/2),\'D\':J.17().4t.x-30,\'B\':0,\'1d\':0}};27;1L\'7d\':u d=8.W.1e(\'B\').X(),D=8.W.1e(\'D\').X();c={\'1l\':{\'B\':[0,d],\'D\':[0,D],\'1d\':1,\'13\':[(J.17().G.y/2)+J.17().1X.y,b.13],\'1n\':[(J.17().G.x/2)+J.17().1X.x,b.1n]},\'2E\':{\'B\':0,\'D\':0,\'1d\':0,\'13\':(J.17().G.y/2)+J.17().1X.y,\'1n\':(J.17().G.x/2)+J.17().1X.x}};27;1L\'7e\':c={\'1l\':{\'1d\':1},\'2E\':{\'1d\':0}}};L c}});E 3D(a){u o=3D.A,m=o.3E[o.5Q?"5P":"5O"].4f(a),2A={},i=14;5M(i--)2A[o.3w[i]]=m[i]||"";2A[o.q.P]={};2A[o.3w[12]].1M(o.q.3E,E($0,$1,$2){t($1)2A[o.q.P][$1]=$2});L 2A};3D.A={5Q:I,3w:["7n","7o","7p","7q","7r","7s","7t","7u","7v","7y","7z","6b","7B","7C"],q:{P:"2z",3E:/(?:^|&)([^&=]*)=?([^&]*)/g},3E:{5P:/^(?:([^:\\/?#]+):)?(?:\\/\\/((?:(([^:@]*):?([^:@]*))?@)?([^:\\/?#]*)(?::(\\d*))?))?((((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)/,5O:/^(?:(?![^:@]+:[^:@\\/]*@)([^:\\/?#.]+):)?(?:\\/\\/)?((?:(([^:@]*):?([^:@]*))?@)?([^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/}};t(2J R=="4j"){u R=C 2v()}t(2J R.2Q=="4j"){R.2Q=C 2v()}t(2J R.1Z=="4j"){R.1Z=C 2v()}R.1q=E(a,b,w,h,d,c,e,f,g,i){t(!1c.3i){L}8.5I=i?i:"7E";8.5H=R.2Q.4a(8.5I);8.43=C 2v();8.3e=C 2v();8.3W=C 5v();t(a){8.1p("1A",a)}t(b){8.1p("Q",b)}t(w){8.1p("D",w)}t(h){8.1p("B",h)}t(d){8.1p("2O",C R.1T(d.7K().1r(".")))}8.34=R.1Z.5s();t(!J.1V&&1c.3V&&8.34.2g>7){R.1q.5q=M}t(c){8.1j("1a",c)}u q=e?e:"7N";8.1j("7O",q);8.1p("39",I);8.1p("2S",I);u j=(f)?f:J.2I;8.1p("4z",j);8.1p("3d","");t(g){8.1p("3d",g)}};R.1q.5l={39:E(a){8.3R=!a?"7T.1A":a;8.1p("39",M)},1p:E(a,b){8.3W[a]=b},19:E(a){L 8.3W[a]},1j:E(a,b){8.43[a]=b},3Q:E(){L 8.43},2G:E(a,b){8.3e[a]=b},7W:E(a){L 8.3e[a]},5g:E(){L 8.3e},3O:E(){u a=C 5v();u b;u c=8.5g();28(b 3o c){a[a.1h]=b+"="+c[b]}L a},5f:E(){u a="";t(1x.2k&&1x.3M&&1x.3M.1h){t(8.19("2S")){8.2G("5e","81");8.1p("1A",8.3R)}a="<88 O=\\"2n/x-89-1W\\" 2m=\\""+8.19("1A")+"\\" D=\\""+8.19("D")+"\\" B=\\""+8.19("B")+"\\" 32=\\""+8.19("32")+"\\"";a+=" Q=\\""+8.19("Q")+"\\" P=\\""+8.19("Q")+"\\" ";u b=8.3Q();28(u c 3o b){a+=[c]+"=\\""+b[c]+"\\" "}u d=8.3O().4S("&");t(d.1h>0){a+="4R=\\""+d+"\\""}a+="/>"}N{t(8.19("2S")){8.2G("5e","8d");8.1p("1A",8.3R)}a="<H Q=\\""+8.19("Q")+"\\" 3Z=\\"5c:8e-8f-8i-8j-8l\\" D=\\""+8.19("D")+"\\" B=\\""+8.19("B")+"\\" 32=\\""+8.19("32")+"\\">";a+="<S P=\\"3G\\" T=\\""+8.19("1A")+"\\" />";u e=8.3Q();28(u c 3o e){a+="<S P=\\""+c+"\\" T=\\""+e[c]+"\\" />"}u f=8.3O().4S("&");t(f.1h>0){a+="<S P=\\"4R\\" T=\\""+f+"\\" />"}a+="</H>"}L a},64:E(a){t(8.19("39")){u b=C R.1T([6,0,65]);t(8.34.3f(b)&&!8.34.3f(8.19("2O"))){8.1p("2S",M);8.2G("8m",8n(8.19("4z")));1c.1I=1c.1I.8p(0,47)+" - 4J 6j 8v";8.2G("8w",1c.1I)}}t(8.5H||8.19("2S")||8.34.3f(8.19("2O"))){u n=(2J a=="8x")?1c.3i(a):a;n.8z=8.5f();L M}N{t(8.19("3d")!=""){1c.2I.1M(8.19("3d"))}}L I}};R.1Z.5s=E(){u a=C R.1T([0,0,0]);t(1x.2k&&1x.3M.1h){u x=1x.2k["8A 4J"];t(x&&x.2q){a=C R.1T(x.2q.1M(/([a-8B-Z]|\\s)+/,"").1M(/(\\s+r|\\s+b[0-9]+)/,".").1r("."))}}N{t(1x.4G&&1x.4G.3P("8D 8E")>=0){u b=1;u c=3;5M(b){3q{c++;b=C 3x("23.23."+c);a=C R.1T([c,0,0])}3B(e){b=2j}}}N{3q{u b=C 3x("23.23.7")}3B(e){3q{u b=C 3x("23.23.6");a=C R.1T([6,0,21]);b.8F="22"}3B(e){t(a.2g==6){L a}}3q{b=C 3x("23.23")}3B(e){}}t(b!=2j){a=C R.1T(b.8G("$2O").1r(" ")[1].1r(","))}}}L a};R.1T=E(a){8.2g=a[0]!=2j?48(a[0]):0;8.2Y=a[1]!=2j?48(a[1]):0;8.4s=a[2]!=2j?48(a[2]):0};R.1T.5l.3f=E(a){t(8.2g<a.2g){L I}t(8.2g>a.2g){L M}t(8.2Y<a.2Y){L I}t(8.2Y>a.2Y){L M}t(8.4s<a.4s){L I}L M};R.2Q={4a:E(a){u q=1c.2I.8H||1c.2I.8I;t(a==2j){L q}t(q){u b=q.3T(1).1r("&");28(u i=0;i<b.1h;i++){t(b[i].3T(0,b[i].3P("="))==a){L b[i].3T((b[i].3P("=")+1))}}}L""}};R.1Z.4E=E(){u a=1c.8L("8M");28(u i=a.1h-1;i>=0;i--){a[i].32.2b="3l";28(u x 3o a[i]){t(2J a[i][x]=="E"){a[i][x]=E(){}}}}};t(R.1q.5q){t(!R.4D){R.1Z.4C=E(){8Q=E(){};8R=E(){};J.4B("8T",R.1Z.4E)};J.4B("8U",R.1Z.4C);R.4D=M}}t(!1c.3i&&1c.3V){1c.3i=E(a){L 1c.3V[a]}}u 8V=R.2Q.4a;u 8X=R.1q;u 1q=R.1q;',62,556,'||||||||this|||||||||||||||||||||if|var||||||options|height|new|width|function|self|size|object|false|window|url|return|true|else|type|name|id|deconcept|param|value|match|Element|wrapper|toInt|inject|||group||top||container|cls|getSize|center|getAttribute|bgcolor|arrows|document|opacity|getStyle|caption|index|length|com|addParam|class|start|rokboxobject|left|div|setAttribute|SWFObject|split|what|effect|overflow|fx|closeButton|navigator|overlay|setStyle|swf|transition|className|duration|module|href|click|current|title|setStyles|span|case|replace|addEvent|nextGroup|autoplay|arguments|100|hide|PlayerVersion|http|opera|flash|scroll|videoID|SWFObjectUtil|||always|ShockwaveFlash|open|reposition|getProperty|break|for|swtch|close|display|setHTML|www|removeClass|allowfullscreen|major|allowscriptaccess|Fx|null|plugins|changeGroup|src|application|spinner|controller|description|captions|overlayObj|list|audio|Object|padding|groups|next|queryKey|uri|show|amp|chain|end|keyEvents|addVariable|defaultSize|location|typeof|fullscreen|data|winSize|transparent|version|rel|util|image|doExpressInstall|vimeoColor|wmode|stop|watch|prevArrow|minor|nextArrow||Event|style|background|installedVer|innerHeight|vimeoPortrait|vimeoTitle|vimeoFullScreen|useExpressInstall|mplayer2|vimeoByline|right|redirectUrl|variables|versionIsValid|effects|innerWidth|getElementById|loading|standby|none|wav|contains|in|youtube|try|delay|mpeg|previous|inactive|selfLink|key|ActiveXObject|fireEvent|zIndex|vimeo|catch|growl|parseUri|parser|ie|movie|400|google|filename|dailymotion|qt|mimeTypes|wmv|getVariablePairs|indexOf|getParams|xiSWFPath|wait|substring|RokBox|all|attributes|visibility|scrolling|classid||getCaption|iframe|params|random||setProperties||parseInt|chase|getRequestParameter|empty|absolute|metacafe|position|exec|evt|body|video|undefined|setText|200|implement|len|remove|switch|Rokverlay|Quad|rev|scrollSize|Transitions|test|idx|set|get|xiRedirectUrl|extend|attachEvent|prepUnload|unloadSet|cleanupSWFs|https|userAgent|Class|theme|Flash|addClass|quicksilver|h1|captionsDelay|abs|Math|chk|flashvars|join|easeInOut|unloadVideo|onload|quicktime|hidden|array|keyup||codebase|frame|border|apple|qtactivex|qtplugin|cab|scale|adopt|aspect|enablejavascript|clsid|content|MMplayerType|getSWFHTML|getVariables|640|toggle|options2|number|prototype|oleobject|autoStart|youtubeAutoplay|00adef|doPrepUnload|m4a|getPlayerVersion|mp3|initialize|Array|asf|asx|wvx|wax|wma|setOptions|m4v|mv4|xvid|avi|divx|skipDetect|DETECT_KEY|mov|z0|9A|while|videoplay|loose|strict|strictMode|bindWithEvent|getPosition|bind|1000|rokverlay|onShow|where|videoId|onHide|Options|hasClass|gt|lt|write||65555|playing|matched|plugin|No|file|jwplayer|Style|loadVideo|rokboxPath|color|Styles|onComplete|Player|docId|en|moogaloop|clip_id|server|show_title|show_byline|show_portrait|clr|googleplayer|flv|bottom|now|resize|middle|fplayer|related|autoPlay|FFC300|special|time|frameBorder|333333|auto|injectInside|foreground|clone|block|html|Ajax|method|evalScripts|update|request|FFFFFF|glow|DDDDDD|h2|getGroup|colors|Chain|000000|v3|_|toQueryString|385|delete|styles|cursor|merge|pointer|420|339|Events|nocookie|explode|fade|push|stretchToFit|345|showcontrols|hasKey|326|0080C74C7E95|225|source|protocol|authority|userInfo|user|password|host|port|relative|filter|elements|path|directory|Hash|query|anchor|94AB|detectflash|RegExp|11D0|B0F6|504|336|toString|22D6f312|320|high|quality|CLSID|f3f3f3|jpeg|D3488ABDDC6B|expressinstall|460|BC80|getVariable|4B23|8C17|02BF25D5|visible|PlugIn|currentStyle|getText|trim||found|65550|embed|shockwave|000|removeEvent|not|ActiveX|D27CDB6E|AE6D|800|Image|11cf|96B8|warning|444553540000|MMredirectURL|escape|easeOut|slice|liading|hl|default|onerror|rokbox|Installation|MMdoctitle|string|Asset|innerHTML|Shockwave|zA|esc|Windows|CE|AllowScriptAccess|GetVariable|search|hash|alt|bmp|getElementsByTagName|OBJECT|sameDomain|String|png|__flash_unloadHandler|__flash_savedUnloadHandler|gif|onunload|onbeforeunload|getQueryParamValue|jpg|FlashObject'.split('|'),0,{}))

/* rokbox-config.js */

var rokbox;window.addEvent('domready',function(){rokbox=new RokBox({'theme':'light','transition':Fx.Transitions.Quad.easeOut,'duration':400,'chase':50,'frame-border':20,'content-padding':0,'arrows-height':35,'effect':'growl','captions':1,'captionsDelay':800,'scrolling':0,'keyEvents':1,'overlay':{'background':'#000','opacity':0.2,'duration':200,'transition':Fx.Transitions.Quad.easeInOut},'defaultSize':{'width':640,'height':460},'autoplay':'true','controller':'true','bgcolor':'#ffffff','youtubeAutoplay':0,'vimeoColor':'00adef','vimeoPortrait':0,'vimeoTitle':0,'vimeoFullScreen':1,'vimeoByline':0});});

/* script.js */

window.addEvent('domready',function(){if(document.getElements('div.tabber_nav').length&&document.getElements('div.tabber_content').length){(function(){Tabber=new Tabber();}).delay(100);}else{(function(){if(document.getElements('div.tabber_nav').length&&document.getElements('div.tabber_content').length){Tabber=new Tabber();}}).delay(2000);}});var Tabber=new Class({initialize:function()
{var self=this;this.docScroll=new Fx.Scroll(window);this.containers=new Array();document.getElements('div.tabber_container').each(function(container){if(typeof(container)!="undefined"){container.removeClass('tabber_noscript');var c_id=container.id.replace('tabber_container_','');var active=0;container.getElements('div.tabber_content').each(function(el){if(typeof(el)!="undefined"){var id=el.id.replace('tabber_content_','');var set_id=id.slice(0,id.indexOf('-'));if(set_id==c_id){el.fx=new Fx.Style(el,'height',{'duration':tabber_slide_speed,onComplete:function(){self.autoHeight(el);}});}}});var first=1;container.getElements('li.tabber_tab').each(function(el){if(typeof(el)!="undefined"&&!el.hasClass('tabber_notab')){var id=el.id.replace('tabber_tab_','');var set_id=id.slice(0,id.indexOf('-'));if(set_id==c_id){self.containers[id]=c_id;if((first&&!el.hasClass('inactive'))||el.hasClass('active')){active=id;}
el.addEvent('click',function(){self.showTab(id,c_id);});first=0;}}});container.getElements('div.tabber_item').each(function(el){if(typeof(el)!="undefined"){var id=el.id.replace('tabber_item_','');var set_id=id.slice(0,id.indexOf('-'));if(set_id==c_id){el.setStyle('display','block');el.fade_in=new Fx.Styles(el,{'duration':tabber_fade_in_speed});el.fx=new Fx.Slide(el,{'duration':0,onComplete:function(){self.autoHeight(el.getParent());}}).hide();}}});container.getElements('div.tabber_nav').each(function(el){if(typeof(el)!="undefined"){el.setStyle('display','block');}});container.getElements('h2.tabber_title').each(function(el){if(typeof(el)!="undefined"){el.setStyle('display','none');}});self.showTab(active,c_id,1,(active==tabber_urlscroll));}});document.getElements('a.tabber_tablink').each(function(el){if(typeof(el)!="undefined"&&el.rel&&typeof(self.containers[el.rel])!="undefined"){el.addEvent('click',function(){self.showTab(el.rel,self.containers[el.rel],0,1);self.docScroll.stop().toElement($('tabber_tab_'+el.rel));});el.href='javascript://';}});},showTab:function(id,c_id,first,scroll)
{var container=$('tabber_container_'+c_id);var item=$('tabber_tab_'+id);var isactive=(typeof(item)!="undefined"&&item&&item.hasClass('active'));var content=null;container.getElements('li.tabber_tab').each(function(el){if(typeof(el)!="undefined"&&el&&el.hasClass('active')){var el_id=el.id.replace('tabber_tab_','');var set_id=el_id.slice(0,el_id.indexOf('-'));if(set_id==c_id){el.removeClass('active');content=$('tabber_item_'+el_id);if(content){content.getParent().getParent().setStyle('height',parseInt(content.getStyle('height')));}}}});if(typeof(item)!="undefined"&&item){item.addClass('active');}
var el=$('tabber_item_'+id);if(typeof(el)!="undefined"&&el&&typeof(el.fx)!="undefined"){content=el.getParent().getParent();content.className=('tabber_content '+(el.className.replace('tabber_item',''))).trim();el.fx.stop();if(first){el.fx.show();this.autoHeight(el.getParent(),1);this.autoHeight(content,1);}else if(!isactive){el.fade_in.stop();el.setStyle('opacity',0);el.fx.show();this.autoHeight(el.getParent());el.fade_in.start({'opacity':1});content.fx.stop().start(parseInt(el.getStyle('height')));}
if((tabber_scroll&&!first)||scroll){if(typeof(container)!="undefined"&&container){this.docScroll.stop().toElement(container);}}}
container.getElements('div.tabber_item').each(function(el){if(id&&typeof(el)!="undefined"&&el&&el.id&&el.id!='tabber_item_'+id&&typeof(el.fx)!="undefined"){var el_id=el.id.replace('tabber_item_','');var set_id=el_id.slice(0,el_id.indexOf('-'));if(set_id==c_id){el.fx.hide();}}});},autoHeight:function(el,force)
{if(typeof(el)!="undefined"&&el&&el.getStyle('height')&&(force||parseInt(el.getStyle('height'))>0)){el.setStyle('height','auto');}}});

/* riverside.jquery.js */


/* shadowbox.js */

(function(au,k){var Q={version:"3.0.3"};var J=navigator.userAgent.toLowerCase();if(J.indexOf("windows")>-1||J.indexOf("win32")>-1){Q.isWindows=true}else{if(J.indexOf("macintosh")>-1||J.indexOf("mac os x")>-1){Q.isMac=true}else{if(J.indexOf("linux")>-1){Q.isLinux=true}}}Q.isIE=J.indexOf("msie")>-1;Q.isIE6=J.indexOf("msie 6")>-1;Q.isIE7=J.indexOf("msie 7")>-1;Q.isGecko=J.indexOf("gecko")>-1&&J.indexOf("safari")==-1;Q.isWebKit=J.indexOf("applewebkit/")>-1;var ab=/#(.+)$/,af=/^(light|shadow)box\[(.*?)\]/i,az=/\s*([a-z_]*?)\s*=\s*(.+)\s*/,f=/[0-9a-z]+$/i,aD=/(.+\/)shadowbox\.js/i;var A=false,a=false,l={},z=0,R,ap;Q.current=-1;Q.dimensions=null;Q.ease=function(K){return 1+Math.pow(K-1,3)};Q.errorInfo={fla:{name:"Flash",url:"http://www.adobe.com/products/flashplayer/"},qt:{name:"QuickTime",url:"http://www.apple.com/quicktime/download/"},wmp:{name:"Windows Media Player",url:"http://www.microsoft.com/windows/windowsmedia/"},f4m:{name:"Flip4Mac",url:"http://www.flip4mac.com/wmv_download.htm"}};Q.gallery=[];Q.onReady=aj;Q.path=null;Q.player=null;Q.playerId="sb-player";Q.options={animate:true,animateFade:true,autoplayMovies:true,continuous:false,enableKeys:true,flashParams:{bgcolor:"#000000",allowfullscreen:true},flashVars:{},flashVersion:"9.0.115",handleOversize:"resize",handleUnsupported:"link",onChange:aj,onClose:aj,onFinish:aj,onOpen:aj,showMovieControls:true,skipSetup:false,slideshowDelay:0,viewportPadding:20};Q.getCurrent=function(){return Q.current>-1?Q.gallery[Q.current]:null};Q.hasNext=function(){return Q.gallery.length>1&&(Q.current!=Q.gallery.length-1||Q.options.continuous)};Q.isOpen=function(){return A};Q.isPaused=function(){return ap=="pause"};Q.applyOptions=function(K){l=aC({},Q.options);aC(Q.options,K)};Q.revertOptions=function(){aC(Q.options,l)};Q.init=function(aG,aJ){if(a){return}a=true;if(Q.skin.options){aC(Q.options,Q.skin.options)}if(aG){aC(Q.options,aG)}if(!Q.path){var aI,S=document.getElementsByTagName("script");for(var aH=0,K=S.length;aH<K;++aH){aI=aD.exec(S[aH].src);if(aI){Q.path=aI[1];break}}}if(aJ){Q.onReady=aJ}P()};Q.open=function(S){if(A){return}var K=Q.makeGallery(S);Q.gallery=K[0];Q.current=K[1];S=Q.getCurrent();if(S==null){return}Q.applyOptions(S.options||{});G();if(Q.gallery.length){S=Q.getCurrent();if(Q.options.onOpen(S)===false){return}A=true;Q.skin.onOpen(S,c)}};Q.close=function(){if(!A){return}A=false;if(Q.player){Q.player.remove();Q.player=null}if(typeof ap=="number"){clearTimeout(ap);ap=null}z=0;aq(false);Q.options.onClose(Q.getCurrent());Q.skin.onClose();Q.revertOptions()};Q.play=function(){if(!Q.hasNext()){return}if(!z){z=Q.options.slideshowDelay*1000}if(z){R=aw();ap=setTimeout(function(){z=R=0;Q.next()},z);if(Q.skin.onPlay){Q.skin.onPlay()}}};Q.pause=function(){if(typeof ap!="number"){return}z=Math.max(0,z-(aw()-R));if(z){clearTimeout(ap);ap="pause";if(Q.skin.onPause){Q.skin.onPause()}}};Q.change=function(K){if(!(K in Q.gallery)){if(Q.options.continuous){K=(K<0?Q.gallery.length+K:0);if(!(K in Q.gallery)){return}}else{return}}Q.current=K;if(typeof ap=="number"){clearTimeout(ap);ap=null;z=R=0}Q.options.onChange(Q.getCurrent());c(true)};Q.next=function(){Q.change(Q.current+1)};Q.previous=function(){Q.change(Q.current-1)};Q.setDimensions=function(aS,aJ,aQ,aR,aI,K,aO,aL){var aN=aS,aH=aJ;var aM=2*aO+aI;if(aS+aM>aQ){aS=aQ-aM}var aG=2*aO+K;if(aJ+aG>aR){aJ=aR-aG}var S=(aN-aS)/aN,aP=(aH-aJ)/aH,aK=(S>0||aP>0);if(aL&&aK){if(S>aP){aJ=Math.round((aH/aN)*aS)}else{if(aP>S){aS=Math.round((aN/aH)*aJ)}}}Q.dimensions={height:aS+aI,width:aJ+K,innerHeight:aS,innerWidth:aJ,top:Math.floor((aQ-(aS+aM))/2+aO),left:Math.floor((aR-(aJ+aG))/2+aO),oversized:aK};return Q.dimensions};Q.makeGallery=function(aI){var K=[],aH=-1;if(typeof aI=="string"){aI=[aI]}if(typeof aI.length=="number"){aF(aI,function(aK,aL){if(aL.content){K[aK]=aL}else{K[aK]={content:aL}}});aH=0}else{if(aI.tagName){var S=Q.getCache(aI);aI=S?S:Q.makeObject(aI)}if(aI.gallery){K=[];var aJ;for(var aG in Q.cache){aJ=Q.cache[aG];if(aJ.gallery&&aJ.gallery==aI.gallery){if(aH==-1&&aJ.content==aI.content){aH=K.length}K.push(aJ)}}if(aH==-1){K.unshift(aI);aH=0}}else{K=[aI];aH=0}}aF(K,function(aK,aL){K[aK]=aC({},aL)});return[K,aH]};Q.makeObject=function(aH,aG){var aI={content:aH.href,title:aH.getAttribute("title")||"",link:aH};if(aG){aG=aC({},aG);aF(["player","title","height","width","gallery"],function(aJ,aK){if(typeof aG[aK]!="undefined"){aI[aK]=aG[aK];delete aG[aK]}});aI.options=aG}else{aI.options={}}if(!aI.player){aI.player=Q.getPlayer(aI.content)}var K=aH.getAttribute("rel");if(K){var S=K.match(af);if(S){aI.gallery=escape(S[2])}aF(K.split(";"),function(aJ,aK){S=aK.match(az);if(S){aI[S[1]]=S[2]}})}return aI};Q.getPlayer=function(aG){if(aG.indexOf("#")>-1&&aG.indexOf(document.location.href)==0){return"inline"}var aH=aG.indexOf("?");if(aH>-1){aG=aG.substring(0,aH)}var S,K=aG.match(f);if(K){S=K[0].toLowerCase()}if(S){if(Q.img&&Q.img.ext.indexOf(S)>-1){return"img"}if(Q.swf&&Q.swf.ext.indexOf(S)>-1){return"swf"}if(Q.flv&&Q.flv.ext.indexOf(S)>-1){return"flv"}if(Q.qt&&Q.qt.ext.indexOf(S)>-1){if(Q.wmp&&Q.wmp.ext.indexOf(S)>-1){return"qtwmp"}else{return"qt"}}if(Q.wmp&&Q.wmp.ext.indexOf(S)>-1){return"wmp"}}return"iframe"};function G(){var aH=Q.errorInfo,aI=Q.plugins,aK,aL,aO,aG,aN,S,aM,K;for(var aJ=0;aJ<Q.gallery.length;++aJ){aK=Q.gallery[aJ];aL=false;aO=null;switch(aK.player){case"flv":case"swf":if(!aI.fla){aO="fla"}break;case"qt":if(!aI.qt){aO="qt"}break;case"wmp":if(Q.isMac){if(aI.qt&&aI.f4m){aK.player="qt"}else{aO="qtf4m"}}else{if(!aI.wmp){aO="wmp"}}break;case"qtwmp":if(aI.qt){aK.player="qt"}else{if(aI.wmp){aK.player="wmp"}else{aO="qtwmp"}}break}if(aO){if(Q.options.handleUnsupported=="link"){switch(aO){case"qtf4m":aN="shared";S=[aH.qt.url,aH.qt.name,aH.f4m.url,aH.f4m.name];break;case"qtwmp":aN="either";S=[aH.qt.url,aH.qt.name,aH.wmp.url,aH.wmp.name];break;default:aN="single";S=[aH[aO].url,aH[aO].name]}aK.player="html";aK.content='<div class="sb-message">'+s(Q.lang.errors[aN],S)+"</div>"}else{aL=true}}else{if(aK.player=="inline"){aG=ab.exec(aK.content);if(aG){aM=ad(aG[1]);if(aM){aK.content=aM.innerHTML}else{aL=true}}else{aL=true}}else{if(aK.player=="swf"||aK.player=="flv"){K=(aK.options&&aK.options.flashVersion)||Q.options.flashVersion;if(Q.flash&&!Q.flash.hasFlashPlayerVersion(K)){aK.width=310;aK.height=177}}}}if(aL){Q.gallery.splice(aJ,1);if(aJ<Q.current){--Q.current}else{if(aJ==Q.current){Q.current=aJ>0?aJ-1:aJ}}--aJ}}}function aq(K){if(!Q.options.enableKeys){return}(K?F:M)(document,"keydown",an)}function an(aG){if(aG.metaKey||aG.shiftKey||aG.altKey||aG.ctrlKey){return}var S=v(aG),K;switch(S){case 81:case 88:case 27:K=Q.close;break;case 37:K=Q.previous;break;case 39:K=Q.next;break;case 32:K=typeof ap=="number"?Q.pause:Q.play;break}if(K){n(aG);K()}}function c(aK){aq(false);var aJ=Q.getCurrent();var aG=(aJ.player=="inline"?"html":aJ.player);if(typeof Q[aG]!="function"){throw"unknown player "+aG}if(aK){Q.player.remove();Q.revertOptions();Q.applyOptions(aJ.options||{})}Q.player=new Q[aG](aJ,Q.playerId);if(Q.gallery.length>1){var aH=Q.gallery[Q.current+1]||Q.gallery[0];if(aH.player=="img"){var S=new Image();S.src=aH.content}var aI=Q.gallery[Q.current-1]||Q.gallery[Q.gallery.length-1];if(aI.player=="img"){var K=new Image();K.src=aI.content}}Q.skin.onLoad(aK,W)}function W(){if(!A){return}if(typeof Q.player.ready!="undefined"){var K=setInterval(function(){if(A){if(Q.player.ready){clearInterval(K);K=null;Q.skin.onReady(e)}}else{clearInterval(K);K=null}},10)}else{Q.skin.onReady(e)}}function e(){if(!A){return}Q.player.append(Q.skin.body,Q.dimensions);Q.skin.onShow(I)}function I(){if(!A){return}if(Q.player.onLoad){Q.player.onLoad()}Q.options.onFinish(Q.getCurrent());if(!Q.isPaused()){Q.play()}aq(true)}if(!Array.prototype.indexOf){Array.prototype.indexOf=function(S,aG){var K=this.length>>>0;aG=aG||0;if(aG<0){aG+=K}for(;aG<K;++aG){if(aG in this&&this[aG]===S){return aG}}return-1}}function aw(){return(new Date).getTime()}function aC(K,aG){for(var S in aG){K[S]=aG[S]}return K}function aF(aH,aI){var S=0,K=aH.length;for(var aG=aH[0];S<K&&aI.call(aG,S,aG)!==false;aG=aH[++S]){}}function s(S,K){return S.replace(/\{(\w+?)\}/g,function(aG,aH){return K[aH]})}function aj(){}function ad(K){return document.getElementById(K)}function C(K){K.parentNode.removeChild(K)}var h=true,x=true;function d(){var K=document.body,S=document.createElement("div");h=typeof S.style.opacity==="string";S.style.position="fixed";S.style.margin=0;S.style.top="20px";K.appendChild(S,K.firstChild);x=S.offsetTop==20;K.removeChild(S)}Q.getStyle=(function(){var K=/opacity=([^)]*)/,S=document.defaultView&&document.defaultView.getComputedStyle;return function(aJ,aI){var aH;if(!h&&aI=="opacity"&&aJ.currentStyle){aH=K.test(aJ.currentStyle.filter||"")?(parseFloat(RegExp.$1)/100)+"":"";return aH===""?"1":aH}if(S){var aG=S(aJ,null);if(aG){aH=aG[aI]}if(aI=="opacity"&&aH==""){aH="1"}}else{aH=aJ.currentStyle[aI]}return aH}})();Q.appendHTML=function(aG,S){if(aG.insertAdjacentHTML){aG.insertAdjacentHTML("BeforeEnd",S)}else{if(aG.lastChild){var K=aG.ownerDocument.createRange();K.setStartAfter(aG.lastChild);var aH=K.createContextualFragment(S);aG.appendChild(aH)}else{aG.innerHTML=S}}};Q.getWindowSize=function(K){if(document.compatMode==="CSS1Compat"){return document.documentElement["client"+K]}return document.body["client"+K]};Q.setOpacity=function(aG,K){var S=aG.style;if(h){S.opacity=(K==1?"":K)}else{S.zoom=1;if(K==1){if(typeof S.filter=="string"&&(/alpha/i).test(S.filter)){S.filter=S.filter.replace(/\s*[\w\.]*alpha\([^\)]*\);?/gi,"")}}else{S.filter=(S.filter||"").replace(/\s*[\w\.]*alpha\([^\)]*\)/gi,"")+" alpha(opacity="+(K*100)+")"}}};Q.clearOpacity=function(K){Q.setOpacity(K,1)};function o(S){var K=S.target?S.target:S.srcElement;return K.nodeType==3?K.parentNode:K}function V(S){var K=S.pageX||(S.clientX+(document.documentElement.scrollLeft||document.body.scrollLeft)),aG=S.pageY||(S.clientY+(document.documentElement.scrollTop||document.body.scrollTop));return[K,aG]}function n(K){K.preventDefault()}function v(K){return K.which?K.which:K.keyCode}function F(aH,aG,S){if(aH.addEventListener){aH.addEventListener(aG,S,false)}else{if(aH.nodeType===3||aH.nodeType===8){return}if(aH.setInterval&&(aH!==au&&!aH.frameElement)){aH=au}if(!S.__guid){S.__guid=F.guid++}if(!aH.events){aH.events={}}var K=aH.events[aG];if(!K){K=aH.events[aG]={};if(aH["on"+aG]){K[0]=aH["on"+aG]}}K[S.__guid]=S;aH["on"+aG]=F.handleEvent}}F.guid=1;F.handleEvent=function(aH){var K=true;aH=aH||F.fixEvent(((this.ownerDocument||this.document||this).parentWindow||au).event);var S=this.events[aH.type];for(var aG in S){this.__handleEvent=S[aG];if(this.__handleEvent(aH)===false){K=false}}return K};F.preventDefault=function(){this.returnValue=false};F.stopPropagation=function(){this.cancelBubble=true};F.fixEvent=function(K){K.preventDefault=F.preventDefault;K.stopPropagation=F.stopPropagation;return K};function M(aG,S,K){if(aG.removeEventListener){aG.removeEventListener(S,K,false)}else{if(aG.events&&aG.events[S]){delete aG.events[S][K.__guid]}}}var y=false,al;if(document.addEventListener){al=function(){document.removeEventListener("DOMContentLoaded",al,false);Q.load()}}else{if(document.attachEvent){al=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",al);Q.load()}}}}function g(){if(y){return}try{document.documentElement.doScroll("left")}catch(K){setTimeout(g,1);return}Q.load()}function P(){if(document.readyState==="complete"){return Q.load()}if(document.addEventListener){document.addEventListener("DOMContentLoaded",al,false);au.addEventListener("load",Q.load,false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",al);au.attachEvent("onload",Q.load);var K=false;try{K=au.frameElement===null}catch(S){}if(document.documentElement.doScroll&&K){g()}}}}Q.load=function(){if(y){return}if(!document.body){return setTimeout(Q.load,13)}y=true;d();Q.onReady();if(!Q.options.skipSetup){Q.setup()}Q.skin.init()};Q.plugins={};if(navigator.plugins&&navigator.plugins.length){var w=[];aF(navigator.plugins,function(K,S){w.push(S.name)});w=w.join(",");var ai=w.indexOf("Flip4Mac")>-1;Q.plugins={fla:w.indexOf("Shockwave Flash")>-1,qt:w.indexOf("QuickTime")>-1,wmp:!ai&&w.indexOf("Windows Media")>-1,f4m:ai}}else{var p=function(K){var S;try{S=new ActiveXObject(K)}catch(aG){}return!!S};Q.plugins={fla:p("ShockwaveFlash.ShockwaveFlash"),qt:p("QuickTime.QuickTime"),wmp:p("wmplayer.ocx"),f4m:false}}var X=/^(light|shadow)box/i,am="shadowboxCacheKey",b=1;Q.cache={};Q.select=function(S){var aG=[];if(!S){var K;aF(document.getElementsByTagName("a"),function(aJ,aK){K=aK.getAttribute("rel");if(K&&X.test(K)){aG.push(aK)}})}else{var aI=S.length;if(aI){if(typeof S=="string"){if(Q.find){aG=Q.find(S)}}else{if(aI==2&&typeof S[0]=="string"&&S[1].nodeType){if(Q.find){aG=Q.find(S[0],S[1])}}else{for(var aH=0;aH<aI;++aH){aG[aH]=S[aH]}}}}else{aG.push(S)}}return aG};Q.setup=function(K,S){aF(Q.select(K),function(aG,aH){Q.addCache(aH,S)})};Q.teardown=function(K){aF(Q.select(K),function(S,aG){Q.removeCache(aG)})};Q.addCache=function(aG,K){var S=aG[am];if(S==k){S=b++;aG[am]=S;F(aG,"click",u)}Q.cache[S]=Q.makeObject(aG,K)};Q.removeCache=function(K){M(K,"click",u);delete Q.cache[K[am]];K[am]=null};Q.getCache=function(S){var K=S[am];return(K in Q.cache&&Q.cache[K])};Q.clearCache=function(){for(var K in Q.cache){Q.removeCache(Q.cache[K].link)}Q.cache={}};function u(K){Q.open(this);if(Q.gallery.length){n(K)}}
Q.find=(function(){var aP=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,aQ=0,aS=Object.prototype.toString,aK=false,aJ=true;[0,0].sort(function(){aJ=false;return 0});var aG=function(a1,aW,a4,a5){a4=a4||[];var a7=aW=aW||document;if(aW.nodeType!==1&&aW.nodeType!==9){return[]}if(!a1||typeof a1!=="string"){return a4}var a2=[],aY,a9,bc,aX,a0=true,aZ=aH(aW),a6=a1;while((aP.exec(""),aY=aP.exec(a6))!==null){a6=aY[3];a2.push(aY[1]);if(aY[2]){aX=aY[3];break}}if(a2.length>1&&aL.exec(a1)){if(a2.length===2&&aM.relative[a2[0]]){a9=aT(a2[0]+a2[1],aW)}else{a9=aM.relative[a2[0]]?[aW]:aG(a2.shift(),aW);while(a2.length){a1=a2.shift();if(aM.relative[a1]){a1+=a2.shift()}a9=aT(a1,a9)}}}else{if(!a5&&a2.length>1&&aW.nodeType===9&&!aZ&&aM.match.ID.test(a2[0])&&!aM.match.ID.test(a2[a2.length-1])){var a8=aG.find(a2.shift(),aW,aZ);aW=a8.expr?aG.filter(a8.expr,a8.set)[0]:a8.set[0]}if(aW){var a8=a5?{expr:a2.pop(),set:aO(a5)}:aG.find(a2.pop(),a2.length===1&&(a2[0]==="~"||a2[0]==="+")&&aW.parentNode?aW.parentNode:aW,aZ);a9=a8.expr?aG.filter(a8.expr,a8.set):a8.set;if(a2.length>0){bc=aO(a9)}else{a0=false}while(a2.length){var bb=a2.pop(),ba=bb;if(!aM.relative[bb]){bb=""}else{ba=a2.pop()}if(ba==null){ba=aW}aM.relative[bb](bc,ba,aZ)}}else{bc=a2=[]}}if(!bc){bc=a9}if(!bc){throw"Syntax error, unrecognized expression: "+(bb||a1)}if(aS.call(bc)==="[object Array]"){if(!a0){a4.push.apply(a4,bc)}else{if(aW&&aW.nodeType===1){for(var a3=0;bc[a3]!=null;a3++){if(bc[a3]&&(bc[a3]===true||bc[a3].nodeType===1&&aN(aW,bc[a3]))){a4.push(a9[a3])}}}else{for(var a3=0;bc[a3]!=null;a3++){if(bc[a3]&&bc[a3].nodeType===1){a4.push(a9[a3])}}}}}else{aO(bc,a4)}if(aX){aG(aX,a7,a4,a5);aG.uniqueSort(a4)}return a4};aG.uniqueSort=function(aX){if(aR){aK=aJ;aX.sort(aR);if(aK){for(var aW=1;aW<aX.length;aW++){if(aX[aW]===aX[aW-1]){aX.splice(aW--,1)}}}}return aX};aG.matches=function(aW,aX){return aG(aW,null,null,aX)};aG.find=function(a3,aW,a4){var a2,a0;if(!a3){return[]}for(var aZ=0,aY=aM.order.length;aZ<aY;aZ++){var a1=aM.order[aZ],a0;if((a0=aM.leftMatch[a1].exec(a3))){var aX=a0[1];a0.splice(1,1);if(aX.substr(aX.length-1)!=="\\"){a0[1]=(a0[1]||"").replace(/\\/g,"");a2=aM.find[a1](a0,aW,a4);if(a2!=null){a3=a3.replace(aM.match[a1],"");break}}}}if(!a2){a2=aW.getElementsByTagName("*")}return{set:a2,expr:a3}};aG.filter=function(a6,a5,a9,aZ){var aY=a6,bb=[],a3=a5,a1,aW,a2=a5&&a5[0]&&aH(a5[0]);while(a6&&a5.length){for(var a4 in aM.filter){if((a1=aM.match[a4].exec(a6))!=null){var aX=aM.filter[a4],ba,a8;aW=false;if(a3===bb){bb=[]}if(aM.preFilter[a4]){a1=aM.preFilter[a4](a1,a3,a9,bb,aZ,a2);if(!a1){aW=ba=true}else{if(a1===true){continue}}}if(a1){for(var a0=0;(a8=a3[a0])!=null;a0++){if(a8){ba=aX(a8,a1,a0,a3);var a7=aZ^!!ba;if(a9&&ba!=null){if(a7){aW=true}else{a3[a0]=false}}else{if(a7){bb.push(a8);aW=true}}}}}if(ba!==k){if(!a9){a3=bb}a6=a6.replace(aM.match[a4],"");if(!aW){return[]}break}}}if(a6===aY){if(aW==null){throw"Syntax error, unrecognized expression: "+a6}else{break}}aY=a6}return a3};var aM=aG.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(aW){return aW.getAttribute("href")}},relative:{"+":function(a2,aX){var aZ=typeof aX==="string",a1=aZ&&!/\W/.test(aX),a3=aZ&&!a1;if(a1){aX=aX.toLowerCase()}for(var aY=0,aW=a2.length,a0;aY<aW;aY++){if((a0=a2[aY])){while((a0=a0.previousSibling)&&a0.nodeType!==1){}a2[aY]=a3||a0&&a0.nodeName.toLowerCase()===aX?a0||false:a0===aX}}if(a3){aG.filter(aX,a2,true)}},">":function(a2,aX){var a0=typeof aX==="string";if(a0&&!/\W/.test(aX)){aX=aX.toLowerCase();for(var aY=0,aW=a2.length;aY<aW;aY++){var a1=a2[aY];if(a1){var aZ=a1.parentNode;a2[aY]=aZ.nodeName.toLowerCase()===aX?aZ:false}}}else{for(var aY=0,aW=a2.length;aY<aW;aY++){var a1=a2[aY];if(a1){a2[aY]=a0?a1.parentNode:a1.parentNode===aX}}if(a0){aG.filter(aX,a2,true)}}},"":function(aZ,aX,a1){var aY=aQ++,aW=aU;if(typeof aX==="string"&&!/\W/.test(aX)){var a0=aX=aX.toLowerCase();aW=K}aW("parentNode",aX,aY,aZ,a0,a1)},"~":function(aZ,aX,a1){var aY=aQ++,aW=aU;if(typeof aX==="string"&&!/\W/.test(aX)){var a0=aX=aX.toLowerCase();aW=K}aW("previousSibling",aX,aY,aZ,a0,a1)}},find:{ID:function(aX,aY,aZ){if(typeof aY.getElementById!=="undefined"&&!aZ){var aW=aY.getElementById(aX[1]);return aW?[aW]:[]}},NAME:function(aY,a1){if(typeof a1.getElementsByName!=="undefined"){var aX=[],a0=a1.getElementsByName(aY[1]);for(var aZ=0,aW=a0.length;aZ<aW;aZ++){if(a0[aZ].getAttribute("name")===aY[1]){aX.push(a0[aZ])}}return aX.length===0?null:aX}},TAG:function(aW,aX){return aX.getElementsByTagName(aW[1])}},preFilter:{CLASS:function(aZ,aX,aY,aW,a2,a3){aZ=" "+aZ[1].replace(/\\/g,"")+" ";if(a3){return aZ}for(var a0=0,a1;(a1=aX[a0])!=null;a0++){if(a1){if(a2^(a1.className&&(" "+a1.className+" ").replace(/[\t\n]/g," ").indexOf(aZ)>=0)){if(!aY){aW.push(a1)}}else{if(aY){aX[a0]=false}}}}return false},ID:function(aW){return aW[1].replace(/\\/g,"")},TAG:function(aX,aW){return aX[1].toLowerCase()},CHILD:function(aW){if(aW[1]==="nth"){var aX=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(aW[2]==="even"&&"2n"||aW[2]==="odd"&&"2n+1"||!/\D/.test(aW[2])&&"0n+"+aW[2]||aW[2]);aW[2]=(aX[1]+(aX[2]||1))-0;aW[3]=aX[3]-0}aW[0]=aQ++;return aW},ATTR:function(a0,aX,aY,aW,a1,a2){var aZ=a0[1].replace(/\\/g,"");if(!a2&&aM.attrMap[aZ]){a0[1]=aM.attrMap[aZ]}if(a0[2]==="~="){a0[4]=" "+a0[4]+" "}return a0},PSEUDO:function(a0,aX,aY,aW,a1){if(a0[1]==="not"){if((aP.exec(a0[3])||"").length>1||/^\w/.test(a0[3])){a0[3]=aG(a0[3],null,null,aX)}else{var aZ=aG.filter(a0[3],aX,aY,true^a1);if(!aY){aW.push.apply(aW,aZ)}return false}}else{if(aM.match.POS.test(a0[0])||aM.match.CHILD.test(a0[0])){return true}}return a0},POS:function(aW){aW.unshift(true);return aW}},filters:{enabled:function(aW){return aW.disabled===false&&aW.type!=="hidden"},disabled:function(aW){return aW.disabled===true},checked:function(aW){return aW.checked===true},selected:function(aW){aW.parentNode.selectedIndex;return aW.selected===true},parent:function(aW){return!!aW.firstChild},empty:function(aW){return!aW.firstChild},has:function(aY,aX,aW){return!!aG(aW[3],aY).length},header:function(aW){return/h\d/i.test(aW.nodeName)},text:function(aW){return"text"===aW.type},radio:function(aW){return"radio"===aW.type},checkbox:function(aW){return"checkbox"===aW.type},file:function(aW){return"file"===aW.type},password:function(aW){return"password"===aW.type},submit:function(aW){return"submit"===aW.type},image:function(aW){return"image"===aW.type},reset:function(aW){return"reset"===aW.type},button:function(aW){return"button"===aW.type||aW.nodeName.toLowerCase()==="button"},input:function(aW){return/input|select|textarea|button/i.test(aW.nodeName)}},setFilters:{first:function(aX,aW){return aW===0},last:function(aY,aX,aW,aZ){return aX===aZ.length-1},even:function(aX,aW){return aW%2===0},odd:function(aX,aW){return aW%2===1},lt:function(aY,aX,aW){return aX<aW[3]-0},gt:function(aY,aX,aW){return aX>aW[3]-0},nth:function(aY,aX,aW){return aW[3]-0===aX},eq:function(aY,aX,aW){return aW[3]-0===aX}},filter:{PSEUDO:function(a2,aY,aZ,a3){var aX=aY[1],a0=aM.filters[aX];if(a0){return a0(a2,aZ,aY,a3)}else{if(aX==="contains"){return(a2.textContent||a2.innerText||S([a2])||"").indexOf(aY[3])>=0}else{if(aX==="not"){var a1=aY[3];for(var aZ=0,aW=a1.length;aZ<aW;aZ++){if(a1[aZ]===a2){return false}}return true}else{throw"Syntax error, unrecognized expression: "+aX}}}},CHILD:function(aW,aZ){var a2=aZ[1],aX=aW;switch(a2){case"only":case"first":while((aX=aX.previousSibling)){if(aX.nodeType===1){return false}}if(a2==="first"){return true}aX=aW;case"last":while((aX=aX.nextSibling)){if(aX.nodeType===1){return false}}return true;case"nth":var aY=aZ[2],a5=aZ[3];if(aY===1&&a5===0){return true}var a1=aZ[0],a4=aW.parentNode;if(a4&&(a4.sizcache!==a1||!aW.nodeIndex)){var a0=0;for(aX=a4.firstChild;aX;aX=aX.nextSibling){if(aX.nodeType===1){aX.nodeIndex=++a0}}a4.sizcache=a1}var a3=aW.nodeIndex-a5;if(aY===0){return a3===0}else{return(a3%aY===0&&a3/aY>=0)}}},ID:function(aX,aW){return aX.nodeType===1&&aX.getAttribute("id")===aW},TAG:function(aX,aW){return(aW==="*"&&aX.nodeType===1)||aX.nodeName.toLowerCase()===aW},CLASS:function(aX,aW){return(" "+(aX.className||aX.getAttribute("class"))+" ").indexOf(aW)>-1},ATTR:function(a1,aZ){var aY=aZ[1],aW=aM.attrHandle[aY]?aM.attrHandle[aY](a1):a1[aY]!=null?a1[aY]:a1.getAttribute(aY),a2=aW+"",a0=aZ[2],aX=aZ[4];return aW==null?a0==="!=":a0==="="?a2===aX:a0==="*="?a2.indexOf(aX)>=0:a0==="~="?(" "+a2+" ").indexOf(aX)>=0:!aX?a2&&aW!==false:a0==="!="?a2!==aX:a0==="^="?a2.indexOf(aX)===0:a0==="$="?a2.substr(a2.length-aX.length)===aX:a0==="|="?a2===aX||a2.substr(0,aX.length+1)===aX+"-":false},POS:function(a0,aX,aY,a1){var aW=aX[2],aZ=aM.setFilters[aW];if(aZ){return aZ(a0,aY,aX,a1)}}}};var aL=aM.match.POS;for(var aI in aM.match){aM.match[aI]=new RegExp(aM.match[aI].source+/(?![^\[]*\])(?![^\(]*\))/.source);aM.leftMatch[aI]=new RegExp(/(^(?:.|\r|\n)*?)/.source+aM.match[aI].source)}var aO=function(aX,aW){aX=Array.prototype.slice.call(aX,0);if(aW){aW.push.apply(aW,aX);return aW}return aX};try{Array.prototype.slice.call(document.documentElement.childNodes,0)}catch(aV){aO=function(a0,aZ){var aX=aZ||[];if(aS.call(a0)==="[object Array]"){Array.prototype.push.apply(aX,a0)}else{if(typeof a0.length==="number"){for(var aY=0,aW=a0.length;aY<aW;aY++){aX.push(a0[aY])}}else{for(var aY=0;a0[aY];aY++){aX.push(a0[aY])}}}return aX}}var aR;if(document.documentElement.compareDocumentPosition){aR=function(aX,aW){if(!aX.compareDocumentPosition||!aW.compareDocumentPosition){if(aX==aW){aK=true}return aX.compareDocumentPosition?-1:1}var aY=aX.compareDocumentPosition(aW)&4?-1:aX===aW?0:1;if(aY===0){aK=true}return aY}}else{if("sourceIndex"in document.documentElement){aR=function(aX,aW){if(!aX.sourceIndex||!aW.sourceIndex){if(aX==aW){aK=true}return aX.sourceIndex?-1:1}var aY=aX.sourceIndex-aW.sourceIndex;if(aY===0){aK=true}return aY}}else{if(document.createRange){aR=function(aZ,aX){if(!aZ.ownerDocument||!aX.ownerDocument){if(aZ==aX){aK=true}return aZ.ownerDocument?-1:1}var aY=aZ.ownerDocument.createRange(),aW=aX.ownerDocument.createRange();aY.setStart(aZ,0);aY.setEnd(aZ,0);aW.setStart(aX,0);aW.setEnd(aX,0);var a0=aY.compareBoundaryPoints(Range.START_TO_END,aW);if(a0===0){aK=true}return a0}}}}function S(aW){var aX="",aZ;for(var aY=0;aW[aY];aY++){aZ=aW[aY];if(aZ.nodeType===3||aZ.nodeType===4){aX+=aZ.nodeValue}else{if(aZ.nodeType!==8){aX+=S(aZ.childNodes)}}}return aX}(function(){var aX=document.createElement("div"),aY="script"+(new Date).getTime();aX.innerHTML="<a name='"+aY+"'/>";var aW=document.documentElement;aW.insertBefore(aX,aW.firstChild);if(document.getElementById(aY)){aM.find.ID=function(a0,a1,a2){if(typeof a1.getElementById!=="undefined"&&!a2){var aZ=a1.getElementById(a0[1]);return aZ?aZ.id===a0[1]||typeof aZ.getAttributeNode!=="undefined"&&aZ.getAttributeNode("id").nodeValue===a0[1]?[aZ]:k:[]}};aM.filter.ID=function(a1,aZ){var a0=typeof a1.getAttributeNode!=="undefined"&&a1.getAttributeNode("id");return a1.nodeType===1&&a0&&a0.nodeValue===aZ}}aW.removeChild(aX);aW=aX=null})();(function(){var aW=document.createElement("div");aW.appendChild(document.createComment(""));if(aW.getElementsByTagName("*").length>0){aM.find.TAG=function(aX,a1){var a0=a1.getElementsByTagName(aX[1]);if(aX[1]==="*"){var aZ=[];for(var aY=0;a0[aY];aY++){if(a0[aY].nodeType===1){aZ.push(a0[aY])}}a0=aZ}return a0}}aW.innerHTML="<a href='#'></a>";if(aW.firstChild&&typeof aW.firstChild.getAttribute!=="undefined"&&aW.firstChild.getAttribute("href")!=="#"){aM.attrHandle.href=function(aX){return aX.getAttribute("href",2)}}aW=null})();if(document.querySelectorAll){(function(){var aW=aG,aY=document.createElement("div");aY.innerHTML="<p class='TEST'></p>";if(aY.querySelectorAll&&aY.querySelectorAll(".TEST").length===0){return}aG=function(a2,a1,aZ,a0){a1=a1||document;if(!a0&&a1.nodeType===9&&!aH(a1)){try{return aO(a1.querySelectorAll(a2),aZ)}catch(a3){}}return aW(a2,a1,aZ,a0)};for(var aX in aW){aG[aX]=aW[aX]}aY=null})()}(function(){var aW=document.createElement("div");aW.innerHTML="<div class='test e'></div><div class='test'></div>";if(!aW.getElementsByClassName||aW.getElementsByClassName("e").length===0){return}aW.lastChild.className="e";if(aW.getElementsByClassName("e").length===1){return}aM.order.splice(1,0,"CLASS");aM.find.CLASS=function(aX,aY,aZ){if(typeof aY.getElementsByClassName!=="undefined"&&!aZ){return aY.getElementsByClassName(aX[1])}};aW=null})();function K(aX,a2,a1,a5,a3,a4){for(var aZ=0,aY=a5.length;aZ<aY;aZ++){var aW=a5[aZ];if(aW){aW=aW[aX];var a0=false;while(aW){if(aW.sizcache===a1){a0=a5[aW.sizset];break}if(aW.nodeType===1&&!a4){aW.sizcache=a1;aW.sizset=aZ}if(aW.nodeName.toLowerCase()===a2){a0=aW;break}aW=aW[aX]}a5[aZ]=a0}}}function aU(aX,a2,a1,a5,a3,a4){for(var aZ=0,aY=a5.length;aZ<aY;aZ++){var aW=a5[aZ];if(aW){aW=aW[aX];var a0=false;while(aW){if(aW.sizcache===a1){a0=a5[aW.sizset];break}if(aW.nodeType===1){if(!a4){aW.sizcache=a1;aW.sizset=aZ}if(typeof a2!=="string"){if(aW===a2){a0=true;break}}else{if(aG.filter(a2,[aW]).length>0){a0=aW;break}}}aW=aW[aX]}a5[aZ]=a0}}}var aN=document.compareDocumentPosition?function(aX,aW){return aX.compareDocumentPosition(aW)&16}:function(aX,aW){return aX!==aW&&(aX.contains?aX.contains(aW):true)};var aH=function(aW){var aX=(aW?aW.ownerDocument||aW:0).documentElement;return aX?aX.nodeName!=="HTML":false};var aT=function(aW,a3){var aZ=[],a0="",a1,aY=a3.nodeType?[a3]:a3;while((a1=aM.match.PSEUDO.exec(aW))){a0+=a1[0];aW=aW.replace(aM.match.PSEUDO,"")}aW=aM.relative[aW]?aW+"*":aW;for(var a2=0,aX=aY.length;a2<aX;a2++){aG(aW,aY[a2],aZ)}return aG.filter(a0,aZ)};return aG})();Q.lang={code:"en",of:"of",loading:"loading",cancel:"Cancel",next:"Next",previous:"Previous",play:"Play",pause:"Pause",close:"Close",errors:{single:'You must install the <a href="{0}">{1}</a> browser plugin to view this content.',shared:'You must install both the <a href="{0}">{1}</a> and <a href="{2}">{3}</a> browser plugins to view this content.',either:'You must install either the <a href="{0}">{1}</a> or the <a href="{2}">{3}</a> browser plugin to view this content.'}};var D,at="sb-drag-proxy",E,j,ag;function ax(){E={x:0,y:0,startX:null,startY:null}}function aA(){var K=Q.dimensions;aC(j.style,{height:K.innerHeight+"px",width:K.innerWidth+"px"})}function O(){ax();var K=["position:absolute","cursor:"+(Q.isGecko?"-moz-grab":"move"),"background-color:"+(Q.isIE?"#fff;filter:alpha(opacity=0)":"transparent")].join(";");Q.appendHTML(Q.skin.body,'<div id="'+at+'" style="'+K+'"></div>');j=ad(at);aA();F(j,"mousedown",L)}function B(){if(j){M(j,"mousedown",L);C(j);j=null}ag=null}function L(S){n(S);var K=V(S);E.startX=K[0];E.startY=K[1];ag=ad(Q.player.id);F(document,"mousemove",H);F(document,"mouseup",i);if(Q.isGecko){j.style.cursor="-moz-grabbing"}}function H(aI){var K=Q.player,aJ=Q.dimensions,aH=V(aI);var aG=aH[0]-E.startX;E.startX+=aG;E.x=Math.max(Math.min(0,E.x+aG),aJ.innerWidth-K.width);var S=aH[1]-E.startY;E.startY+=S;E.y=Math.max(Math.min(0,E.y+S),aJ.innerHeight-K.height);aC(ag.style,{left:E.x+"px",top:E.y+"px"})}function i(){M(document,"mousemove",H);M(document,"mouseup",i);if(Q.isGecko){j.style.cursor="-moz-grab"}}Q.img=function(S,aG){this.obj=S;this.id=aG;this.ready=false;var K=this;D=new Image();D.onload=function(){K.height=S.height?parseInt(S.height,10):D.height;K.width=S.width?parseInt(S.width,10):D.width;K.ready=true;D.onload=null;D=null};D.src=S.content};Q.img.ext=["bmp","gif","jpg","jpeg","png"];Q.img.prototype={append:function(S,aI){var aG=document.createElement("img");aG.id=this.id;aG.src=this.obj.content;aG.style.position="absolute";var K,aH;if(aI.oversized&&Q.options.handleOversize=="resize"){K=aI.innerHeight;aH=aI.innerWidth}else{K=this.height;aH=this.width}aG.setAttribute("height",K);aG.setAttribute("width",aH);S.appendChild(aG)},remove:function(){var K=ad(this.id);if(K){C(K)}B();if(D){D.onload=null;D=null}},onLoad:function(){var K=Q.dimensions;if(K.oversized&&Q.options.handleOversize=="drag"){O()}},onWindowResize:function(){var aH=Q.dimensions;switch(Q.options.handleOversize){case"resize":var K=ad(this.id);K.height=aH.innerHeight;K.width=aH.innerWidth;break;case"drag":if(ag){var aG=parseInt(Q.getStyle(ag,"top")),S=parseInt(Q.getStyle(ag,"left"));if(aG+this.height<aH.innerHeight){ag.style.top=aH.innerHeight-this.height+"px"}if(S+this.width<aH.innerWidth){ag.style.left=aH.innerWidth-this.width+"px"}aA()}break}}};var ao=false,Y=[],q=["sb-nav-close","sb-nav-next","sb-nav-play","sb-nav-pause","sb-nav-previous"],aa,ae,Z,m=true;function N(aG,aQ,aN,aL,aR){var K=(aQ=="opacity"),aM=K?Q.setOpacity:function(aS,aT){aS.style[aQ]=""+aT+"px"};if(aL==0||(!K&&!Q.options.animate)||(K&&!Q.options.animateFade)){aM(aG,aN);if(aR){aR()}return}var aO=parseFloat(Q.getStyle(aG,aQ))||0;var aP=aN-aO;if(aP==0){if(aR){aR()}return}aL*=1000;var aH=aw(),aK=Q.ease,aJ=aH+aL,aI;var S=setInterval(function(){aI=aw();if(aI>=aJ){clearInterval(S);S=null;aM(aG,aN);if(aR){aR()}}else{aM(aG,aO+aK((aI-aH)/aL)*aP)}},10)}function aB(){aa.style.height=Q.getWindowSize("Height")+"px";aa.style.width=Q.getWindowSize("Width")+"px"}function aE(){aa.style.top=document.documentElement.scrollTop+"px";aa.style.left=document.documentElement.scrollLeft+"px"}function ay(K){if(K){aF(Y,function(S,aG){aG[0].style.visibility=aG[1]||""})}else{Y=[];aF(Q.options.troubleElements,function(aG,S){aF(document.getElementsByTagName(S),function(aH,aI){Y.push([aI,aI.style.visibility]);aI.style.visibility="hidden"})})}}function r(aG,K){var S=ad("sb-nav-"+aG);if(S){S.style.display=K?"":"none"}}function ah(K,aJ){var aI=ad("sb-loading"),aG=Q.getCurrent().player,aH=(aG=="img"||aG=="html");if(K){Q.setOpacity(aI,0);aI.style.display="block";var S=function(){Q.clearOpacity(aI);if(aJ){aJ()}};if(aH){N(aI,"opacity",1,Q.options.fadeDuration,S)}else{S()}}else{var S=function(){aI.style.display="none";Q.clearOpacity(aI);if(aJ){aJ()}};if(aH){N(aI,"opacity",0,Q.options.fadeDuration,S)}else{S()}}}function t(aO){var aJ=Q.getCurrent();ad("sb-title-inner").innerHTML=aJ.title||"";var aP,aL,S,aQ,aM;if(Q.options.displayNav){aP=true;var aN=Q.gallery.length;if(aN>1){if(Q.options.continuous){aL=aM=true}else{aL=(aN-1)>Q.current;aM=Q.current>0}}if(Q.options.slideshowDelay>0&&Q.hasNext()){aQ=!Q.isPaused();S=!aQ}}else{aP=aL=S=aQ=aM=false}r("close",aP);r("next",aL);r("play",S);r("pause",aQ);r("previous",aM);var K="";if(Q.options.displayCounter&&Q.gallery.length>1){var aN=Q.gallery.length;if(Q.options.counterType=="skip"){var aI=0,aH=aN,aG=parseInt(Q.options.counterLimit)||0;if(aG<aN&&aG>2){var aK=Math.floor(aG/2);aI=Q.current-aK;if(aI<0){aI+=aN}aH=Q.current+(aG-aK);if(aH>aN){aH-=aN}}while(aI!=aH){if(aI==aN){aI=0}K+='<a onclick="Shadowbox.change('+aI+');"';if(aI==Q.current){K+=' class="sb-counter-current"'}K+=">"+(++aI)+"</a>"}}else{K=[Q.current+1,Q.lang.of,aN].join(" ")}}ad("sb-counter").innerHTML=K;aO()}function U(aH){var K=ad("sb-title-inner"),aG=ad("sb-info-inner"),S=0.35;K.style.visibility=aG.style.visibility="";if(K.innerHTML!=""){N(K,"marginTop",0,S)}N(aG,"marginTop",0,S,aH)}function av(aG,aM){var aK=ad("sb-title"),K=ad("sb-info"),aH=aK.offsetHeight,aI=K.offsetHeight,aJ=ad("sb-title-inner"),aL=ad("sb-info-inner"),S=(aG?0.35:0);N(aJ,"marginTop",aH,S);N(aL,"marginTop",aI*-1,S,function(){aJ.style.visibility=aL.style.visibility="hidden";aM()})}function ac(K,aH,S,aJ){var aI=ad("sb-wrapper-inner"),aG=(S?Q.options.resizeDuration:0);N(Z,"top",aH,aG);N(aI,"height",K,aG,aJ)}function ar(K,aH,S,aI){var aG=(S?Q.options.resizeDuration:0);N(Z,"left",aH,aG);N(Z,"width",K,aG,aI)}function ak(aM,aG){var aI=ad("sb-body-inner"),aM=parseInt(aM),aG=parseInt(aG),S=Z.offsetHeight-aI.offsetHeight,K=Z.offsetWidth-aI.offsetWidth,aK=ae.offsetHeight,aL=ae.offsetWidth,aJ=parseInt(Q.options.viewportPadding)||20,aH=(Q.player&&Q.options.handleOversize!="drag");return Q.setDimensions(aM,aG,aK,aL,S,K,aJ,aH)}var T={};T.markup='<div id="sb-container"><div id="sb-overlay"></div><div id="sb-wrapper"><div id="sb-title"><div id="sb-title-inner"></div></div><div id="sb-wrapper-inner"><div id="sb-body"><div id="sb-body-inner"></div><div id="sb-loading"><div id="sb-loading-inner"><span>{loading}</span></div></div></div></div><div id="sb-info"><div id="sb-info-inner"><div id="sb-counter"></div><div id="sb-nav"><a id="sb-nav-close" title="{close}" onclick="Shadowbox.close()"></a><a id="sb-nav-next" title="{next}" onclick="Shadowbox.next()"></a><a id="sb-nav-play" title="{play}" onclick="Shadowbox.play()"></a><a id="sb-nav-pause" title="{pause}" onclick="Shadowbox.pause()"></a><a id="sb-nav-previous" title="{previous}" onclick="Shadowbox.previous()"></a></div></div></div></div></div>';T.options={animSequence:"sync",counterLimit:10,counterType:"default",displayCounter:true,displayNav:true,fadeDuration:0.35,initialHeight:160,initialWidth:320,modal:false,overlayColor:"#000",overlayOpacity:0.5,resizeDuration:0.35,showOverlay:true,troubleElements:["select","object","embed","canvas"]};T.init=function(){Q.appendHTML(document.body,s(T.markup,Q.lang));T.body=ad("sb-body-inner");aa=ad("sb-container");ae=ad("sb-overlay");Z=ad("sb-wrapper");if(!x){aa.style.position="absolute"}if(!h){var aG,K,S=/url\("(.*\.png)"\)/;aF(q,function(aI,aJ){aG=ad(aJ);if(aG){K=Q.getStyle(aG,"backgroundImage").match(S);if(K){aG.style.backgroundImage="none";aG.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,src="+K[1]+",sizingMethod=scale);"}}})}var aH;F(au,"resize",function(){if(aH){clearTimeout(aH);aH=null}if(A){aH=setTimeout(T.onWindowResize,10)}})};T.onOpen=function(K,aG){m=false;aa.style.display="block";aB();var S=ak(Q.options.initialHeight,Q.options.initialWidth);ac(S.innerHeight,S.top);ar(S.width,S.left);if(Q.options.showOverlay){ae.style.backgroundColor=Q.options.overlayColor;Q.setOpacity(ae,0);if(!Q.options.modal){F(ae,"click",Q.close)}ao=true}if(!x){aE();F(au,"scroll",aE)}ay();aa.style.visibility="visible";if(ao){N(ae,"opacity",Q.options.overlayOpacity,Q.options.fadeDuration,aG)}else{aG()}};T.onLoad=function(S,K){ah(true);while(T.body.firstChild){C(T.body.firstChild)}av(S,function(){if(!A){return}if(!S){Z.style.visibility="visible"}t(K)})};T.onReady=function(aH){if(!A){return}var S=Q.player,aG=ak(S.height,S.width);var K=function(){U(aH)};switch(Q.options.animSequence){case"hw":ac(aG.innerHeight,aG.top,true,function(){ar(aG.width,aG.left,true,K)});break;case"wh":ar(aG.width,aG.left,true,function(){ac(aG.innerHeight,aG.top,true,K)});break;default:ar(aG.width,aG.left,true);ac(aG.innerHeight,aG.top,true,K)}};T.onShow=function(K){ah(false,K);m=true};T.onClose=function(){if(!x){M(au,"scroll",aE)}M(ae,"click",Q.close);Z.style.visibility="hidden";var K=function(){aa.style.visibility="hidden";aa.style.display="none";ay(true)};if(ao){N(ae,"opacity",0,Q.options.fadeDuration,K)}else{K()}};T.onPlay=function(){r("play",false);r("pause",true)};T.onPause=function(){r("pause",false);r("play",true)};T.onWindowResize=function(){if(!m){return}aB();var K=Q.player,S=ak(K.height,K.width);ar(S.width,S.left);ac(S.innerHeight,S.top);if(K.onWindowResize){K.onWindowResize()}};Q.skin=T;au.Shadowbox=Q})(window);

/* jquery.fbfan.js */

jQuery(function(){jQuery("#fb_like_box").hover(function(){jQuery("#fb_like_box").stop(true,false).animate({right:"0"},"slow");},function(){jQuery("#fb_like_box").stop(true,false).animate({right:"-237"},"slow");});return false;});


