﻿// sha1.js, jquery.js, common.js, flowplayer-3.1.4.min.js, jquery.min.js, jquery.cycle.all.min.js, cufon-yui.js
// sha1.js
var hexcase = 0;
var b64pad  = "";
var chrsz   = 8;
function hex_sha1(s){return binb2hex(core_sha1(str2binb(s),s.length * chrsz));}
function b64_sha1(s){return binb2b64(core_sha1(str2binb(s),s.length * chrsz));}
function str_sha1(s){return binb2str(core_sha1(str2binb(s),s.length * chrsz));}
function hex_hmac_sha1(key, data){ return binb2hex(core_hmac_sha1(key, data));}
function b64_hmac_sha1(key, data){ return binb2b64(core_hmac_sha1(key, data));}
function str_hmac_sha1(key, data){ return binb2str(core_hmac_sha1(key, data));}
function sha1_vm_test()
{
  return hex_sha1("abc") == "a9993e364706816aba3e25717850c26c9cd0d89d";
}
function core_sha1(x, len)
{
  /* append padding */
  x[len >> 5] |= 0x80 << (24 - len % 32);
  x[((len + 64 >> 9) << 4) + 15] = len;

  var w = Array(80);
  var a =  1732584193;
  var b = -271733879;
  var c = -1732584194;
  var d =  271733878;
  var e = -1009589776;
  for(var i = 0; i < x.length; i += 16)
  {
    var olda = a;
    var oldb = b;
    var oldc = c;
    var oldd = d;
    var olde = e;

    for(var j = 0; j < 80; j++)
    {
      if(j < 16) w[j] = x[i + j];
      else w[j] = rol(w[j-3] ^ w[j-8] ^ w[j-14] ^ w[j-16], 1);
      var t = safe_add(safe_add(rol(a, 5), sha1_ft(j, b, c, d)),
                       safe_add(safe_add(e, w[j]), sha1_kt(j)));
      e = d;
      d = c;
      c = rol(b, 30);
      b = a;
      a = t;
    }

    a = safe_add(a, olda);
    b = safe_add(b, oldb);
    c = safe_add(c, oldc);
    d = safe_add(d, oldd);
    e = safe_add(e, olde);
  }
  return Array(a, b, c, d, e);

}
function sha1_ft(t, b, c, d)
{
  if(t < 20) return (b & c) | ((~b) & d);
  if(t < 40) return b ^ c ^ d;
  if(t < 60) return (b & c) | (b & d) | (c & d);
  return b ^ c ^ d;
}
function sha1_kt(t)
{
  return (t < 20) ?  1518500249 : (t < 40) ?  1859775393 :
         (t < 60) ? -1894007588 : -899497514;
}
function core_hmac_sha1(key, data)
{
  var bkey = str2binb(key);
  if(bkey.length > 16) bkey = core_sha1(bkey, key.length * chrsz);

  var ipad = Array(16), opad = Array(16);
  for(var i = 0; i < 16; i++)
  {
    ipad[i] = bkey[i] ^ 0x36363636;
    opad[i] = bkey[i] ^ 0x5C5C5C5C;
  }

  var hash = core_sha1(ipad.concat(str2binb(data)), 512 + data.length * chrsz);
  return core_sha1(opad.concat(hash), 512 + 160);
}
function safe_add(x, y)
{
  var lsw = (x & 0xFFFF) + (y & 0xFFFF);
  var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
  return (msw << 16) | (lsw & 0xFFFF);
}
function rol(num, cnt)
{
  return (num << cnt) | (num >>> (32 - cnt));
}
function str2binb(str)
{
  var bin = Array();
  var mask = (1 << chrsz) - 1;
  for(var i = 0; i < str.length * chrsz; i += chrsz)
    bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (32 - chrsz - i%32);
  return bin;
}
function binb2str(bin)
{
  var str = "";
  var mask = (1 << chrsz) - 1;
  for(var i = 0; i < bin.length * 32; i += chrsz)
    str += String.fromCharCode((bin[i>>5] >>> (32 - chrsz - i%32)) & mask);
  return str;
}
function binb2hex(binarray)
{
  var hex_tab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef";
  var str = "";
  for(var i = 0; i < binarray.length * 4; i++)
  {
    str += hex_tab.charAt((binarray[i>>2] >> ((3 - i%4)*8+4)) & 0xF) +
           hex_tab.charAt((binarray[i>>2] >> ((3 - i%4)*8  )) & 0xF);
  }
  return str;
}
function binb2b64(binarray)
{
  var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  var str = "";
  for(var i = 0; i < binarray.length * 4; i += 3)
  {
    var triplet = (((binarray[i   >> 2] >> 8 * (3 -  i   %4)) & 0xFF) << 16)
                | (((binarray[i+1 >> 2] >> 8 * (3 - (i+1)%4)) & 0xFF) << 8 )
                |  ((binarray[i+2 >> 2] >> 8 * (3 - (i+2)%4)) & 0xFF);
    for(var j = 0; j < 4; j++)
    {
      if(i * 8 + j * 6 > binarray.length * 32) str += b64pad;
      else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F);
    }
  }
  return str;
}
//jquery.js
(function(){if(window.jQuery)var _jQuery=window.jQuery;var jQuery=window.jQuery=function(selector,context){return new jQuery.prototype.init(selector,context);};if(window.$)var _$=window.$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;var isSimple=/^.[^:#\[\.]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}else if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem)if(elem.id!=match[3])return jQuery().find(selector);else{this[0]=elem;this.length=1;return this;}else
selector=[];}}else
return new jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return new jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(selector.constructor==Array&&selector||(selector.jquery||selector.length&&selector!=window&&!selector.nodeType&&selector[0]!=undefined&&selector[0].nodeType)&&jQuery.makeArray(selector)||[selector]);},jquery:"1.2.3",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;this.each(function(i){if(this==elem)ret=i;});return ret;},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value==undefined)return this.length&&jQuery[type||"attr"](this[0],name)||undefined;else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return!selector?this:this.pushStack(jQuery.merge(this.get(),selector.constructor==String?jQuery(selector).get():selector.length!=undefined&&(!selector.nodeName||jQuery.nodeName(selector,"form"))?selector:[selector]));},is:function(selector){return selector?jQuery.multiFilter(selector,this).length>0:false;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=value.constructor==Array?value:[value];jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value==undefined?(this.length?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value==null){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data==undefined&&this.length)data=jQuery.data(this[0],key);return data==null&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script")){scripts=scripts.add(elem);}else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.prototype.init.prototype=jQuery.prototype;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==1){target=this;i=0;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){if(target===options[name])continue;if(deep&&options[name]&&typeof options[name]=="object"&&target[name]&&!options[name].nodeType)target[name]=jQuery.extend(target[name],options[name]);else if(options[name]!=undefined)target[name]=options[name];}return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,windowData={};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/function/i.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.appendChild(script);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!=undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){if(args){if(object.length==undefined){for(var name in object)if(callback.apply(object[name],args)===false)break;}else
for(var i=0,length=object.length;i<length;i++)if(callback.apply(object[i],args)===false)break;}else{if(object.length==undefined){for(var name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var i=0,length=object.length,value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret;function color(elem){if(!jQuery.browser.safari)return false;var ret=document.defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=elem.style.outline;elem.style.outline="0 solid black";elem.style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&elem.style&&elem.style[name])ret=elem.style[name];else if(document.defaultView&&document.defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var getComputedStyle=document.defaultView.getComputedStyle(elem,null);if(getComputedStyle&&!color(elem))ret=getComputedStyle.getPropertyValue(name);else{var swap=[],stack=[];for(var a=elem;a&&color(a);a=a.parentNode)stack.unshift(a);for(var i=0;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(getComputedStyle&&getComputedStyle.getPropertyValue(name))||"";for(var i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var style=elem.style.left,runtimeStyle=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;elem.style.left=ret||0;ret=elem.style.pixelLeft+"px";elem.style.left=style;elem.runtimeStyle.left=runtimeStyle;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem=elem.toString();if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(fix[name]){if(value!=undefined)elem[fix[name]]=value;return elem[fix[name]];}else if(jQuery.browser.msie&&name=="style")return jQuery.attr(elem.style,"cssText",value);else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method"))return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem.setAttribute(name,""+value);}if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem))return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(typeof array!="array")for(var i=0,length=array.length;i<length;i++)ret.push(array[i]);else
ret=array.slice(0);return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]==elem)return i;return-1;},merge:function(first,second){if(jQuery.browser.msie){for(var i=0;second[i];i++)if(second[i].nodeType!=8)first.push(second[i]);}else
for(var i=0;second[i];i++)first.push(second[i]);return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv&&callback(elems[i],i)||inv&&!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!==null&&value!=undefined){if(value.constructor!=Array)value=[value];ret=ret.concat(value);}}return ret;}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength",selectedIndex:"selectedIndex",defaultValue:"defaultValue",tagName:"tagName",nodeName:"nodeName"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false;var re=quickChild;var m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[];var cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&(!elem||n!=elem))r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval!=undefined)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)return val;val=jQuery.event.handle.apply(arguments.callee.elem,arguments);return val;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data||[]);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event)data.unshift(this.fix({type:type,target:elem}));data[0].type=type;if(exclusive)data[0].exclusive=true;if(jQuery.isFunction(jQuery.data(elem,"handle")))val=jQuery.data(elem,"handle").apply(elem,data);if(!fn&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var parts=event.type.split(".");event.type=parts[0];var handlers=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in handlers){var handler=handlers[j];args[0].handler=handler;args[0].data=handler.data;if(!parts[1]&&!event.exclusive||handler.type==parts[1]){var ret=handler.apply(this,args);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}if(jQuery.browser.msie)event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=originalEvent.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){if(this[0])return jQuery.event.trigger(type,data,this[0],false,fn);return undefined;},toggle:function(){var args=arguments;return this.click(function(event){this.lastToggle=0==this.lastToggle?1:0;event.preventDefault();return args[this.lastToggle].apply(this,arguments)||false;});},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.apply(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({load:function(url,params,callback){if(jQuery.isFunction(url))return this.bind("load",url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=(new Date).getTime();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){var jsonp,jsre=/=\?(&|$)/g,status,data;s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(s.type.toLowerCase()=="get"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&s.type.toLowerCase()=="get"){var ts=(new Date()).getTime();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&s.type.toLowerCase()=="get"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");if((!s.url.indexOf("http")||!s.url.indexOf("//"))&&s.dataType=="script"&&s.type.toLowerCase()=="get"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async,s.username,s.password);try{if(s.data)xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");xml.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend)s.beforeSend(xml);if(s.global)jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xml)&&"error"||s.ifModified&&jQuery.httpNotModified(xml,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xml,s.dataType);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xml,status);complete();if(s.async)xml=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xml){xml.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xml,s]);}function complete(){if(s.complete)s.complete(xml,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xml;},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||r.status==1223||jQuery.browser.safari&&r.status==undefined;}catch(e){}return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){}return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0;var data=xml?r.responseXML:r.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall);var hidden=jQuery(this).is(":hidden"),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return jQuery.isFunction(opt.complete)&&opt.complete.apply(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.apply(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(!elem)return undefined;type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",array?jQuery.makeArray(array):[]);return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].apply(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.apply(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.apply(this.elem,[this.now,this]);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=(new Date()).getTime();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=(new Date()).getTime();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done&&jQuery.isFunction(this.options.complete))this.options.complete.apply(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.fx.step={scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}};jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),fixed=jQuery.css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&jQuery.css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(jQuery.css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&jQuery.css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||jQuery.css(offsetChild,"position")=="absolute"))||(mozilla&&jQuery.css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}return results;};})();
// common.js
	function number_format(number, decimals, dec_point, thousands_sep) {
		var n = !isFinite(+number) ? 0 : +number, 
			prec = !isFinite(+decimals) ? 0 : Math.abs(decimals),
			sep = (typeof thousands_sep === 'undefined') ? '' : thousands_sep,
			dec = (typeof dec_point === 'undefined') ? '.' : dec_point,
			s = '',
			toFixedFix = function (n, prec) {
				var k = Math.pow(10, prec);
				return '' + Math.round(n * k) / k;
			};
		// Fix for IE parseFloat(0.55).toFixed(0) = 0;
		s = (prec ? toFixedFix(n, prec) : '' + Math.round(n)).split('.');
		if (s[0].length > 3) {
			s[0] = s[0].replace(/\B(?=(?:\d{3})+(?!\d))/g, sep);
		}
		if ((s[1] || '').length < prec) {
			s[1] = s[1] || '';
			s[1] += new Array(prec - s[1].length + 1).join('0');
		}
		return s.join(dec);
	}
	function usunProduktKosz(id)
	{
		$.ajax({
			type:"GET",
			url: url+'site/usun_z_koszyka/'+id,
			cache: false,
			success: function(html){
				$("#koszyczek").html(html);
			},
			error : function(){
				$("#koszyczek").html(html);
			}
		});
	}
function confirmation()
{
  p = window.confirm('Czy  na pewno usunąć');
  if(p == true) 
   return true;
  else
   return false;
}

	function moveBox(id,side,section)
	{
		$.ajax({
			type:"GET",
			url: url+'site_ajax/boxes_move/' + side + '/' + id+'/'+section,
			cache: false,
			success: function(html){
				$("#fiksacja").html(html);
			},
			error : function(){
				$("#fiksacja").html('Wystąpił błąd');
			}
		});
	}

function delContent(section,id,news_page_id)
{
	p = window.confirm('Czy na pewno usunąć');
	if(p == true)
	{
		$.ajax({
			type:"GET",
			url: url+'site_ajax/del_content_ajax/'+ id + '/' +section,
			cache: false,
			success: function(html){
				location.href= url+'site/index/'+news_page_id;
			},
			error : function(){
				location.href= url+'site/index/'+news_page_id;
			}
		});
	}
	else 
		return false;
}

function changeFlag(id,hidden,uri)
{  
	$.ajax({
		type:"GET",
		url: url+'site_ajax/change_flags/'+ id + '/' +hidden,
		cache: false,
		success: function(html){
			location.href= url+uri;
		},
		error : function(){
			location.href= url+uri;
		}
	});
}

function editContent(section,id)
{  
	$('#overlay_kom').css({'height':$(document).height()}).fadeTo(200,0.6).show();
	$('#edycja_tresc').show();
	$('#edycja').css({'height':($(window).height()-80)+'px','top':'40px','left':(($(document).width()/2)-353)+'px'});
	$.ajax({
		type:"GET",
		url: url+'site_ajax/edit_content_ajax/'+ id + '/' +section,
		cache: false,
		success: function(html){
			$('#edycja_tresc').html(html);
			$('#edycja').fadeIn(200);
		},
		error : function(){
			$('#edycja_tresc').html('Wystąpił błąd');
			$('#edycja').fadeIn(200);
		}
	});
}
	
	function wyloguj()
	{  
		$.ajax({
			type:"GET",
			url: url+'site/logout/',
			cache: false,
			success: function(html){
				$('#zaloguj').html(html);
			},
			error : function(){
				klikik('Wystąpił błąd przy wylogowywaniu');
			}
		});
	}
	
	function zaloguj()
	{
		var user = $('#user').val();
		var pass = $('#pass').val();
		pass = hex_sha1(pass);
		$.ajax({
			type:"POST",
			url: url+'site/loguj/',
			data: "user="+user+"&pass="+pass,
			success: function(html){
				$('#zaloguj').html(html);
			},
			error : function(){
				klikik('Wystąpił błąd przy logowaniu');
			}
		});
	}

function crop(id,uri)
{  
	$('#overlay_kom').css({'height':$(document).height()}).fadeTo(200,0.6).show();
	$('#edycja_tresc').show();
	$('#edycja').css({'height':($(window).height()-80)+'px','top':'40px','width':'810px','left':(($(document).width()/2)-405)+'px'});
	$.ajax({
		type:"GET",
		url: url+'site_ajax/crop_ajax/'+ id,
		cache: false,
		success: function(html){
			$('#edycja_tresc').html(html);
			$('#edycja').fadeIn(200);
		},
		error : function(){
			$('#edycja_tresc').html('Wystąpił błąd');
			$('#edycja').fadeIn(200);
		}
	});
}

function addContent(section,id)
{  
	$('#overlay_kom').css({'height':$(document).height()}).fadeTo(200,0.6).show();
	$('#edycja_tresc').show();
	$('#edycja').css({'height':($(window).height()-80)+'px','top':'40px','left':(($(document).width()/2)-250)+'px'});
	$.ajax({
		type:"GET",
		url: url+'site_ajax/add_content_ajax/'+ id + '/' +section,
		cache: false,
		success: function(html){
			$('#edycja_tresc').html(html);
			$('#edycja').fadeIn(200);
		},
		error : function(){
			$('#edycja_tresc').html('Wystąpił błąd');
			$('#edycja').fadeIn(200);
		}
	});
}

function printer(site,item) {
	if(!item) item=0;
	if(item != 0) {
		if(site=='page')
		{
			printwindow = window.open('http://www.margomedia.home.pl/carvalet/print_page.php?id='+item, 'printer', config='height=650,width=650,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,directories=no,status=no');
		}
		if(site=='news')
		{
			printwindow = window.open('http://www.margomedia.home.pl/carvalet/print_news.php?id='+item, 'printer', config='height=650,width=650,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,directories=no,status=no');
		}
	}
	if(!printwindow.closed)
		printwindow.focus();
}
function klikik(txt)
{
	$('#komunikat').css({
		'top':'40px',
		'left':(($(document).width()/2)-222)+'px'
	});
	$('#komunikat_tresc').html(txt);
	$('#komunikat').fadeIn(200);
};
$(document).ready(function(){
	Cufon.replace('.lewa, .lewy_podstr_tu_a, .cena_list, .nagl_obrob, .cena, .menu_tops, .menu_tops_tu, .nagl_obrobka, .nagl_obrobka_div, .nagl_zamowienie, .select_obrobka, .witamy_nagl, .oni_maja_nagl, .kwadrat_nagl');
	$('.prod_list_middle').mouseenter( function()
	{
		var l = $('#cont'+this.id);
		var a = $('#adresik'+this.id).val();
		if(!l.find('iframe').length)
		{
			l.html('<iframe src="http://www.facebook.com/plugins/like.php?href='+a+'&amp;send=false&amp;layout=box_count&amp;width=70&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=62" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:70px; height:62px;" allowTransparency="true"></iframe>');
		}
		l.show();
	}).mouseleave( function() {
		$('#cont'+this.id).hide();
	});
	$('#save_thumb').click(function() {
		var x1 = $('#x1').val();
		var y1 = $('#y1').val();
		var w = $('#w').val();
		var h = $('#h').val();
		if(x1=="" || y1=="" || x2=="" || y2=="" || w=="" || h==""){
			alert("Proszę zaznaczyć obrazek do wycięcia");
			return false;
		}else{
			return true;
		}
	});
	$("#wyslij").click(function(){
		$("#wyslij_div").slideToggle(500);
	});
	$("#but_zaloguj").click(function(){
		$("#login_cont").slideToggle(500);
	});
	$(".single_news2").mouseover(function(){
		$("#"+this.id+"_button").show();
		$(".crop").show();
		$("#"+this.id).css('border','1px solid #a4b4bd');
	});
	$(".single_news2").mouseout(function(){
		$("#"+this.id+"_button").hide();
		$(".crop").hide();
		$("#"+this.id).css('border','0px');
	});
	$('.zaladuj').click( function () {
		klikik('Poczekaj... w tej chwili jest przesyłany plik i może to potrwać nawet kilka minut w zależności od szybkości Twojego łącza internetowego.<br><br><img src="http://www.fotonaplotnie.pl/images/loading.gif" alt="" border="0"/>');
	});
	$(".flaha").mouseover(function(){
		$("#"+this.id+"_podpis").show();
	});
	$(".flaha").mouseout(function(){
		$("#"+this.id+"_podpis").hide();
	});
	$('#komunikat_close').click(function()
    {
		$('#komunikat').fadeOut(200);
		$('#overlay_kom').fadeOut(200);
	});
	
	$('#edycja_close').click(function()
    {
		$('#edycja').fadeOut(200);
		$('#overlay_kom').fadeOut(200);
		$(".imgareaselect-selection").parent().fadeOut(200);
		$('.imgareaselect-selection').fadeOut(200);
		$('.imgareaselect-handle').fadeOut(200);
		$('.imgareaselect-outer').fadeOut(200);
		$('.imgareaselect-border1').fadeOut(200);
		$('.imgareaselect-border2').fadeOut(200);
		$('.imgareaselect-border3').fadeOut(200);
		$('.imgareaselect-border4').fadeOut(200);
	});
});
//flowplayer-3.1.4.min.js
(function(){function g(o){console.log("$f.fireEvent",[].slice.call(o))}function k(q){if(!q||typeof q!="object"){return q}var o=new q.constructor();for(var p in q){if(q.hasOwnProperty(p)){o[p]=k(q[p])}}return o}function m(t,q){if(!t){return}var o,p=0,r=t.length;if(r===undefined){for(o in t){if(q.call(t[o],o,t[o])===false){break}}}else{for(var s=t[0];p<r&&q.call(s,p,s)!==false;s=t[++p]){}}return t}function c(o){return document.getElementById(o)}function i(q,p,o){if(typeof p!="object"){return q}if(q&&p){m(p,function(r,s){if(!o||typeof s!="function"){q[r]=s}})}return q}function n(s){var q=s.indexOf(".");if(q!=-1){var p=s.substring(0,q)||"*";var o=s.substring(q+1,s.length);var r=[];m(document.getElementsByTagName(p),function(){if(this.className&&this.className.indexOf(o)!=-1){r.push(this)}});return r}}function f(o){o=o||window.event;if(o.preventDefault){o.stopPropagation();o.preventDefault()}else{o.returnValue=false;o.cancelBubble=true}return false}function j(q,o,p){q[o]=q[o]||[];q[o].push(p)}function e(){return"_"+(""+Math.random()).substring(2,10)}var h=function(t,r,s){var q=this;var p={};var u={};q.index=r;if(typeof t=="string"){t={url:t}}i(this,t,true);m(("Begin*,Start,Pause*,Resume*,Seek*,Stop*,Finish*,LastSecond,Update,BufferFull,BufferEmpty,BufferStop").split(","),function(){var v="on"+this;if(v.indexOf("*")!=-1){v=v.substring(0,v.length-1);var w="onBefore"+v.substring(2);q[w]=function(x){j(u,w,x);return q}}q[v]=function(x){j(u,v,x);return q};if(r==-1){if(q[w]){s[w]=q[w]}if(q[v]){s[v]=q[v]}}});i(this,{onCuepoint:function(x,w){if(arguments.length==1){p.embedded=[null,x];return q}if(typeof x=="number"){x=[x]}var v=e();p[v]=[x,w];if(s.isLoaded()){s._api().fp_addCuepoints(x,r,v)}return q},update:function(w){i(q,w);if(s.isLoaded()){s._api().fp_updateClip(w,r)}var v=s.getConfig();var x=(r==-1)?v.clip:v.playlist[r];i(x,w,true)},_fireEvent:function(v,y,w,A){if(v=="onLoad"){m(p,function(B,C){if(C[0]){s._api().fp_addCuepoints(C[0],r,B)}});return false}A=A||q;if(v=="onCuepoint"){var z=p[y];if(z){return z[1].call(s,A,w)}}if(y&&"onBeforeBegin,onMetaData,onStart,onUpdate,onResume".indexOf(v)!=-1){i(A,y);if(y.metaData){if(!A.duration){A.duration=y.metaData.duration}else{A.fullDuration=y.metaData.duration}}}var x=true;m(u[v],function(){x=this.call(s,A,y,w)});return x}});if(t.onCuepoint){var o=t.onCuepoint;q.onCuepoint.apply(q,typeof o=="function"?[o]:o);delete t.onCuepoint}m(t,function(v,w){if(typeof w=="function"){j(u,v,w);delete t[v]}});if(r==-1){s.onCuepoint=this.onCuepoint}};var l=function(p,r,q,t){var s={};var o=this;var u=false;if(t){i(s,t)}m(r,function(v,w){if(typeof w=="function"){s[v]=w;delete r[v]}});i(this,{animate:function(y,z,x){if(!y){return o}if(typeof z=="function"){x=z;z=500}if(typeof y=="string"){var w=y;y={};y[w]=z;z=500}if(x){var v=e();s[v]=x}if(z===undefined){z=500}r=q._api().fp_animate(p,y,z,v);return o},css:function(w,x){if(x!==undefined){var v={};v[w]=x;w=v}r=q._api().fp_css(p,w);i(o,r);return o},show:function(){this.display="block";q._api().fp_showPlugin(p);return o},hide:function(){this.display="none";q._api().fp_hidePlugin(p);return o},toggle:function(){this.display=q._api().fp_togglePlugin(p);return o},fadeTo:function(y,x,w){if(typeof x=="function"){w=x;x=500}if(w){var v=e();s[v]=w}this.display=q._api().fp_fadeTo(p,y,x,v);this.opacity=y;return o},fadeIn:function(w,v){return o.fadeTo(1,w,v)},fadeOut:function(w,v){return o.fadeTo(0,w,v)},getName:function(){return p},getPlayer:function(){return q},_fireEvent:function(w,v,x){if(w=="onUpdate"){var y=q._api().fp_getPlugin(p);if(!y){return}i(o,y);delete o.methods;if(!u){m(y.methods,function(){var A=""+this;o[A]=function(){var B=[].slice.call(arguments);var C=q._api().fp_invoke(p,A,B);return C==="undefined"||C===undefined?o:C}});u=true}}var z=s[w];if(z){z.apply(o,v);if(w.substring(0,1)=="_"){delete s[w]}}}})};function b(o,t,z){var E=this,y=null,x,u,p=[],s={},B={},r,v,w,D,A,q;i(E,{id:function(){return r},isLoaded:function(){return(y!==null)},getParent:function(){return o},hide:function(F){if(F){o.style.height="0px"}if(y){y.style.height="0px"}return E},show:function(){o.style.height=q+"px";if(y){y.style.height=A+"px"}return E},isHidden:function(){return y&&parseInt(y.style.height,10)===0},load:function(F){if(!y&&E._fireEvent("onBeforeLoad")!==false){m(a,function(){this.unload()});x=o.innerHTML;if(x&&!flashembed.isSupported(t.version)){o.innerHTML=""}flashembed(o,t,{config:z});if(F){F.cached=true;j(B,"onLoad",F)}}return E},unload:function(){if(x.replace(/\s/g,"")!==""){if(E._fireEvent("onBeforeUnload")===false){return E}try{if(y){y.fp_close();E._fireEvent("onUnload")}}catch(F){}y=null;o.innerHTML=x}return E},getClip:function(F){if(F===undefined){F=D}return p[F]},getCommonClip:function(){return u},getPlaylist:function(){return p},getPlugin:function(F){var H=s[F];if(!H&&E.isLoaded()){var G=E._api().fp_getPlugin(F);if(G){H=new l(F,G,E);s[F]=H}}return H},getScreen:function(){return E.getPlugin("screen")},getControls:function(){return E.getPlugin("controls")},getConfig:function(F){return F?k(z):z},getFlashParams:function(){return t},loadPlugin:function(I,H,K,J){if(typeof K=="function"){J=K;K={}}var G=J?e():"_";E._api().fp_loadPlugin(I,H,K,G);var F={};F[G]=J;var L=new l(I,null,E,F);s[I]=L;return L},getState:function(){return y?y.fp_getState():-1},play:function(G,F){function H(){if(G!==undefined){E._api().fp_play(G,F)}else{E._api().fp_play()}}if(y){H()}else{E.load(function(){H()})}return E},getVersion:function(){var G="flowplayer.js 3.1.4";if(y){var F=y.fp_getVersion();F.push(G);return F}return G},_api:function(){if(!y){throw"Flowplayer "+E.id()+" not loaded when calling an API method"}return y},setClip:function(F){E.setPlaylist([F]);return E},getIndex:function(){return w}});m(("Click*,Load*,Unload*,Keypress*,Volume*,Mute*,Unmute*,PlaylistReplace,ClipAdd,Fullscreen*,FullscreenExit,Error,MouseOver,MouseOut").split(","),function(){var F="on"+this;if(F.indexOf("*")!=-1){F=F.substring(0,F.length-1);var G="onBefore"+F.substring(2);E[G]=function(H){j(B,G,H);return E}}E[F]=function(H){j(B,F,H);return E}});m(("pause,resume,mute,unmute,stop,toggle,seek,getStatus,getVolume,setVolume,getTime,isPaused,isPlaying,startBuffering,stopBuffering,isFullscreen,toggleFullscreen,reset,close,setPlaylist,addClip,playFeed").split(","),function(){var F=this;E[F]=function(H,G){if(!y){return E}var I=null;if(H!==undefined&&G!==undefined){I=y["fp_"+F](H,G)}else{I=(H===undefined)?y["fp_"+F]():y["fp_"+F](H)}return I==="undefined"||I===undefined?E:I}});E._fireEvent=function(O){if(typeof O=="string"){O=[O]}var P=O[0],M=O[1],K=O[2],J=O[3],I=0;if(z.debug){g(O)}if(!y&&P=="onLoad"&&M=="player"){y=y||c(v);A=y.clientHeight;m(p,function(){this._fireEvent("onLoad")});m(s,function(Q,R){R._fireEvent("onUpdate")});u._fireEvent("onLoad")}if(P=="onLoad"&&M!="player"){return}if(P=="onError"){if(typeof M=="string"||(typeof M=="number"&&typeof K=="number")){M=K;K=J}}if(P=="onContextMenu"){m(z.contextMenu[M],function(Q,R){R.call(E)});return}if(P=="onPluginEvent"){var F=M.name||M;var G=s[F];if(G){G._fireEvent("onUpdate",M);G._fireEvent(K,O.slice(3))}return}if(P=="onPlaylistReplace"){p=[];var L=0;m(M,function(){p.push(new h(this,L++,E))})}if(P=="onClipAdd"){if(M.isInStream){return}M=new h(M,K,E);p.splice(K,0,M);for(I=K+1;I<p.length;I++){p[I].index++}}var N=true;if(typeof M=="number"&&M<p.length){D=M;var H=p[M];if(H){N=H._fireEvent(P,K,J)}if(!H||N!==false){N=u._fireEvent(P,K,J,H)}}m(B[P],function(){N=this.call(E,M,K);if(this.cached){B[P].splice(I,1)}if(N===false){return false}I++});return N};function C(){if($f(o)){$f(o).getParent().innerHTML="";w=$f(o).getIndex();a[w]=E}else{a.push(E);w=a.length-1}q=parseInt(o.style.height,10)||o.clientHeight;if(typeof t=="string"){t={src:t}}r=o.id||"fp"+e();v=t.id||r+"_api";t.id=v;z.playerId=r;if(typeof z=="string"){z={clip:{url:z}}}if(typeof z.clip=="string"){z.clip={url:z.clip}}z.clip=z.clip||{};if(o.getAttribute("href",2)&&!z.clip.url){z.clip.url=o.getAttribute("href",2)}u=new h(z.clip,-1,E);z.playlist=z.playlist||[z.clip];var F=0;m(z.playlist,function(){var H=this;if(typeof H=="object"&&H.length){H={url:""+H}}m(z.clip,function(I,J){if(J!==undefined&&H[I]===undefined&&typeof J!="function"){H[I]=J}});z.playlist[F]=H;H=new h(H,F,E);p.push(H);F++});m(z,function(H,I){if(typeof I=="function"){if(u[H]){u[H](I)}else{j(B,H,I)}delete z[H]}});m(z.plugins,function(H,I){if(I){s[H]=new l(H,I,E)}});if(!z.plugins||z.plugins.controls===undefined){s.controls=new l("controls",null,E)}s.canvas=new l("canvas",null,E);t.bgcolor=t.bgcolor||"#000000";t.version=t.version||[9,0];t.expressInstall="http://www.flowplayer.org/swf/expressinstall.swf";function G(H){if(!E.isLoaded()&&E._fireEvent("onBeforeClick")!==false){E.load()}return f(H)}x=o.innerHTML;if(x.replace(/\s/g,"")!==""){if(o.addEventListener){o.addEventListener("click",G,false)}else{if(o.attachEvent){o.attachEvent("onclick",G)}}}else{if(o.addEventListener){o.addEventListener("click",f,false)}E.load()}}if(typeof o=="string"){flashembed.domReady(function(){var F=c(o);if(!F){throw"Flowplayer cannot access element: "+o}else{o=F;C()}})}else{C()}}var a=[];function d(o){this.length=o.length;this.each=function(p){m(o,p)};this.size=function(){return o.length}}window.flowplayer=window.$f=function(){var p=null;var o=arguments[0];if(!arguments.length){m(a,function(){if(this.isLoaded()){p=this;return false}});return p||a[0]}if(arguments.length==1){if(typeof o=="number"){return a[o]}else{if(o=="*"){return new d(a)}m(a,function(){if(this.id()==o.id||this.id()==o||this.getParent()==o){p=this;return false}});return p}}if(arguments.length>1){var r=arguments[1];var q=(arguments.length==3)?arguments[2]:{};if(typeof o=="string"){if(o.indexOf(".")!=-1){var t=[];m(n(o),function(){t.push(new b(this,k(r),k(q)))});return new d(t)}else{var s=c(o);return new b(s!==null?s:o,r,q)}}else{if(o){return new b(o,r,q)}}}return null};i(window.$f,{fireEvent:function(){var o=[].slice.call(arguments);var q=$f(o[0]);return q?q._fireEvent(o.slice(1)):null},addPlugin:function(o,p){b.prototype[o]=p;return $f},each:m,extend:i});if(typeof jQuery=="function"){jQuery.prototype.flowplayer=function(q,p){if(!arguments.length||typeof arguments[0]=="number"){var o=[];this.each(function(){var r=$f(this);if(r){o.push(r)}});return arguments.length?o[arguments[0]]:new d(o)}return this.each(function(){$f(this,k(q),p?k(p):{})})}}})();(function(){var e=typeof jQuery=="function";var i={width:"100%",height:"100%",allowfullscreen:true,allowscriptaccess:"always",quality:"high",version:null,onFail:null,expressInstall:null,w3c:false,cachebusting:false};if(e){jQuery.tools=jQuery.tools||{};jQuery.tools.flashembed={version:"1.0.4",conf:i}}function j(){if(c.done){return false}var l=document;if(l&&l.getElementsByTagName&&l.getElementById&&l.body){clearInterval(c.timer);c.timer=null;for(var k=0;k<c.ready.length;k++){c.ready[k].call()}c.ready=null;c.done=true}}var c=e?jQuery:function(k){if(c.done){return k()}if(c.timer){c.ready.push(k)}else{c.ready=[k];c.timer=setInterval(j,13)}};function f(l,k){if(k){for(key in k){if(k.hasOwnProperty(key)){l[key]=k[key]}}}return l}function g(k){switch(h(k)){case"string":k=k.replace(new RegExp('(["\\\\])',"g"),"\\$1");k=k.replace(/^\s?(\d+)%/,"$1pct");return'"'+k+'"';case"array":return"["+b(k,function(n){return g(n)}).join(",")+"]";case"function":return'"function()"';case"object":var l=[];for(var m in k){if(k.hasOwnProperty(m)){l.push('"'+m+'":'+g(k[m]))}}return"{"+l.join(",")+"}"}return String(k).replace(/\s/g," ").replace(/\'/g,'"')}function h(l){if(l===null||l===undefined){return false}var k=typeof l;return(k=="object"&&l.push)?"array":k}if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){}})}function b(k,n){var m=[];for(var l in k){if(k.hasOwnProperty(l)){m[l]=n(k[l])}}return m}function a(r,t){var q=f({},r);var s=document.all;var n='<object width="'+q.width+'" height="'+q.height+'"';if(s&&!q.id){q.id="_"+(""+Math.random()).substring(9)}if(q.id){n+=' id="'+q.id+'"'}if(q.cachebusting){q.src+=((q.src.indexOf("?")!=-1?"&":"?")+Math.random())}if(q.w3c||!s){n+=' data="'+q.src+'" type="application/x-shockwave-flash"'}else{n+=' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'}n+=">";if(q.w3c||s){n+='<param name="movie" value="'+q.src+'" />'}q.width=q.height=q.id=q.w3c=q.src=null;for(var l in q){if(q[l]!==null){n+='<param name="'+l+'" value="'+q[l]+'" />'}}var o="";if(t){for(var m in t){if(t[m]!==null){o+=m+"="+(typeof t[m]=="object"?g(t[m]):t[m])+"&"}}o=o.substring(0,o.length-1);n+='<param name="flashvars" value=\''+o+"' />"}n+="</object>";return n}function d(m,p,l){var k=flashembed.getVersion();f(this,{getContainer:function(){return m},getConf:function(){return p},getVersion:function(){return k},getFlashvars:function(){return l},getApi:function(){return m.firstChild},getHTML:function(){return a(p,l)}});var q=p.version;var r=p.expressInstall;var o=!q||flashembed.isSupported(q);if(o){p.onFail=p.version=p.expressInstall=null;m.innerHTML=a(p,l)}else{if(q&&r&&flashembed.isSupported([6,65])){f(p,{src:r});l={MMredirectURL:location.href,MMplayerType:"PlugIn",MMdoctitle:document.title};m.innerHTML=a(p,l)}else{if(m.innerHTML.replace(/\s/g,"")!==""){}else{m.innerHTML="<h2>Flash version "+q+" or greater is required</h2><h3>"+(k[0]>0?"Your version is "+k:"You have no flash plugin installed")+"</h3>"+(m.tagName=="A"?"<p>Click here to download latest version</p>":"<p>Download latest version from <a href='http://www.adobe.com/go/getflashplayer'>here</a></p>");if(m.tagName=="A"){m.onclick=function(){location.href="http://www.adobe.com/go/getflashplayer"}}}}}if(!o&&p.onFail){var n=p.onFail.call(this);if(typeof n=="string"){m.innerHTML=n}}if(document.all){window[p.id]=document.getElementById(p.id)}}window.flashembed=function(l,m,k){if(typeof l=="string"){var n=document.getElementById(l);if(n){l=n}else{c(function(){flashembed(l,m,k)});return}}if(!l){return}if(typeof m=="string"){m={src:m}}var o=f({},i);f(o,m);return new d(l,o,k)};f(window.flashembed,{getVersion:function(){var m=[0,0];if(navigator.plugins&&typeof navigator.plugins["Shockwave Flash"]=="object"){var l=navigator.plugins["Shockwave Flash"].description;if(typeof l!="undefined"){l=l.replace(/^.*\s+(\S+\s+\S+$)/,"$1");var n=parseInt(l.replace(/^(.*)\..*$/,"$1"),10);var r=/r/.test(l)?parseInt(l.replace(/^.*r(.*)$/,"$1"),10):0;m=[n,r]}}else{if(window.ActiveXObject){try{var p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7")}catch(q){try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");m=[6,0];p.AllowScriptAccess="always"}catch(k){if(m[0]==6){return m}}try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash")}catch(o){}}if(typeof p=="object"){l=p.GetVariable("$version");if(typeof l!="undefined"){l=l.replace(/^\S+\s+(.*)$/,"$1").split(",");m=[parseInt(l[0],10),parseInt(l[2],10)]}}}}return m},isSupported:function(k){var m=flashembed.getVersion();var l=(m[0]>k[0])||(m[0]==k[0]&&m[1]>=k[1]);return l},domReady:c,asString:g,getHTML:a});if(e){jQuery.fn.flashembed=function(l,k){var m=null;this.each(function(){m=flashembed(this,l,k)});return l.api===false?this:m}}})();
//jquery.min.js
(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(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 X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o<i;o++)e(a[o],b,f?d.call(a[o],o,e(a[o],b)):d,j);return a}return i?
e(a[0],b):w}function J(){return(new Date).getTime()}function Y(){return false}function Z(){return true}function na(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function oa(a){var b,d=[],f=[],e=arguments,j,i,o,k,n,r;i=c.data(this,"events");if(!(a.liveFired===this||!i||!i.live||a.button&&a.type==="click")){a.liveFired=this;var u=i.live.slice(0);for(k=0;k<u.length;k++){i=u[k];i.origType.replace(O,"")===a.type?f.push(i.selector):u.splice(k--,1)}j=c(a.target).closest(f,a.currentTarget);n=0;for(r=
j.length;n<r;n++)for(k=0;k<u.length;k++){i=u[k];if(j[n].selector===i.selector){o=j[n].elem;f=null;if(i.preType==="mouseenter"||i.preType==="mouseleave")f=c(a.relatedTarget).closest(i.selector)[0];if(!f||f!==o)d.push({elem:o,handleObj:i})}}n=0;for(r=d.length;n<r;n++){j=d[n];a.currentTarget=j.elem;a.data=j.handleObj.data;a.handleObj=j.handleObj;if(j.handleObj.origHandler.apply(j.elem,e)===false){b=false;break}}return b}}function pa(a,b){return"live."+(a&&a!=="*"?a+".":"")+b.replace(/\./g,"`").replace(/ /g,
"&")}function qa(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ra(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var f=c.data(a[d++]),e=c.data(this,f);if(f=f&&f.events){delete e.handle;e.events={};for(var j in f)for(var i in f[j])c.event.add(this,j,f[j][i],f[j][i].data)}}})}function sa(a,b,d){var f,e,j;b=b&&b[0]?b[0].ownerDocument||b[0]:s;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===s&&!ta.test(a[0])&&(c.support.checkClone||!ua.test(a[0]))){e=
true;if(j=c.fragments[a[0]])if(j!==1)f=j}if(!f){f=b.createDocumentFragment();c.clean(a,b,f,d)}if(e)c.fragments[a[0]]=j?f:1;return{fragment:f,cacheable:e}}function K(a,b){var d={};c.each(va.concat.apply([],va.slice(0,b)),function(){d[this]=a});return d}function wa(a){return"scrollTo"in a&&a.document?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var c=function(a,b){return new c.fn.init(a,b)},Ra=A.jQuery,Sa=A.$,s=A.document,T,Ta=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/,
Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&&
(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this,
a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b===
"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this,
function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b<d;b++)if((e=arguments[b])!=null)for(j in e){i=a[j];o=e[j];if(a!==o)if(f&&o&&(c.isPlainObject(o)||c.isArray(o))){i=i&&(c.isPlainObject(i)||
c.isArray(i))?i:c.isArray(o)?[]:{};a[j]=c.extend(f,i,o)}else if(o!==w)a[j]=o}return a};c.extend({noConflict:function(a){A.$=Sa;if(a)A.jQuery=Ra;return c},isReady:false,ready:function(){if(!c.isReady){if(!s.body)return setTimeout(c.ready,13);c.isReady=true;if(Q){for(var a,b=0;a=Q[b++];)a.call(s,c);Q=null}c.fn.triggerHandler&&c(s).triggerHandler("ready")}},bindReady:function(){if(!xa){xa=true;if(s.readyState==="complete")return c.ready();if(s.addEventListener){s.addEventListener("DOMContentLoaded",
L,false);A.addEventListener("load",c.ready,false)}else if(s.attachEvent){s.attachEvent("onreadystatechange",L);A.attachEvent("onload",c.ready);var a=false;try{a=A.frameElement==null}catch(b){}s.documentElement.doScroll&&a&&ma()}}},isFunction:function(a){return $.call(a)==="[object Function]"},isArray:function(a){return $.call(a)==="[object Array]"},isPlainObject:function(a){if(!a||$.call(a)!=="[object Object]"||a.nodeType||a.setInterval)return false;if(a.constructor&&!aa.call(a,"constructor")&&!aa.call(a.constructor.prototype,
"isPrototypeOf"))return false;var b;for(b in a);return b===w||aa.call(a,b)},isEmptyObject:function(a){for(var b in a)return false;return true},error:function(a){throw a;},parseJSON:function(a){if(typeof a!=="string"||!a)return null;a=c.trim(a);if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return A.JSON&&A.JSON.parse?A.JSON.parse(a):(new Function("return "+
a))();else c.error("Invalid JSON: "+a)},noop:function(){},globalEval:function(a){if(a&&Va.test(a)){var b=s.getElementsByTagName("head")[0]||s.documentElement,d=s.createElement("script");d.type="text/javascript";if(c.support.scriptEval)d.appendChild(s.createTextNode(a));else d.text=a;b.insertBefore(d,b.firstChild);b.removeChild(d)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,b,d){var f,e=0,j=a.length,i=j===w||c.isFunction(a);if(d)if(i)for(f in a){if(b.apply(a[f],
d)===false)break}else for(;e<j;){if(b.apply(a[e++],d)===false)break}else if(i)for(f in a){if(b.call(a[f],f,a[f])===false)break}else for(d=a[0];e<j&&b.call(d,e,d)!==false;d=a[++e]);return a},trim:function(a){return(a||"").replace(Wa,"")},makeArray:function(a,b){b=b||[];if(a!=null)a.length==null||typeof a==="string"||c.isFunction(a)||typeof a!=="function"&&a.setInterval?ba.call(b,a):c.merge(b,a);return b},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var d=0,f=b.length;d<f;d++)if(b[d]===
a)return d;return-1},merge:function(a,b){var d=a.length,f=0;if(typeof b.length==="number")for(var e=b.length;f<e;f++)a[d++]=b[f];else for(;b[f]!==w;)a[d++]=b[f++];a.length=d;return a},grep:function(a,b,d){for(var f=[],e=0,j=a.length;e<j;e++)!d!==!b(a[e],e)&&f.push(a[e]);return f},map:function(a,b,d){for(var f=[],e,j=0,i=a.length;j<i;j++){e=b(a[j],j,d);if(e!=null)f[f.length]=e}return f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length===2)if(typeof b==="string"){d=a;a=d[b];b=w}else if(b&&
!c.isFunction(b)){d=b;b=w}if(!b&&a)b=function(){return a.apply(d||this,arguments)};if(a)b.guid=a.guid=a.guid||b.guid||c.guid++;return b},uaMatch:function(a){a=a.toLowerCase();a=/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||!/compatible/.test(a)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}},browser:{}});P=c.uaMatch(P);if(P.browser){c.browser[P.browser]=true;c.browser.version=P.version}if(c.browser.webkit)c.browser.safari=
true;if(ya)c.inArray=function(a,b){return ya.call(b,a)};T=c(s);if(s.addEventListener)L=function(){s.removeEventListener("DOMContentLoaded",L,false);c.ready()};else if(s.attachEvent)L=function(){if(s.readyState==="complete"){s.detachEvent("onreadystatechange",L);c.ready()}};(function(){c.support={};var a=s.documentElement,b=s.createElement("script"),d=s.createElement("div"),f="script"+J();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 e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected,
parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent=
false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n=
s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true,
applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando];
else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this,
a,b)})},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 f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===
w)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 Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i,
cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(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(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1)if(e.className){for(var j=" "+e.className+" ",
i=e.className,o=0,k=b.length;o<k;o++)if(j.indexOf(" "+b[o]+" ")<0)i+=" "+b[o];e.className=c.trim(i)}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(k){var n=c(this);n.removeClass(a.call(this,k,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(var j=(" "+e.className+" ").replace(Aa," "),i=0,o=b.length;i<o;i++)j=j.replace(" "+b[i]+" ",
" ");e.className=c.trim(j)}else e.className=""}return this},toggleClass:function(a,b){var d=typeof a,f=typeof b==="boolean";if(c.isFunction(a))return this.each(function(e){var j=c(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var e,j=0,i=c(this),o=b,k=a.split(ca);e=k[j++];){o=f?o:!i.hasClass(e);i[o?"addClass":"removeClass"](e)}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(Aa," ").indexOf(a)>-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j<d;j++){var i=
e[j];if(i.selected){a=c(i).val();if(b)return a;f.push(a)}}return f}if(Ba.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Za,"")}return w}var o=c.isFunction(a);return this.each(function(k){var n=c(this),r=a;if(this.nodeType===1){if(o)r=a.call(this,k,n.val());if(typeof r==="number")r+="";if(c.isArray(r)&&Ba.test(this.type))this.checked=c.inArray(n.val(),r)>=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected=
c.inArray(c(this).val(),u)>=0});if(!u.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,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");
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:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g,
function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split(".");
k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a),
C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B<r.length;B++){u=r[B];if(d.guid===u.guid){if(i||k.test(u.namespace)){f==null&&r.splice(B--,1);n.remove&&n.remove.call(a,u)}if(f!=
null)break}}if(r.length===0||f!=null&&r.length===1){if(!n.teardown||n.teardown.call(a,o)===false)Ca(a,e,z.handle);delete C[e]}}else for(var B=0;B<r.length;B++){u=r[B];if(i||k.test(u.namespace)){c.event.remove(a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=z.handle)b.elem=null;delete z.events;delete z.handle;c.isEmptyObject(z)&&c.removeData(a)}}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type=
e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&&
f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;
if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e<j;e++){var i=d[e];if(b||f.test(i.namespace)){a.handler=i.handler;a.data=i.data;a.handleObj=i;i=i.handler.apply(this,arguments);if(i!==w){a.result=i;if(i===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 originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
fix:function(a){if(a[G])return a;var b=a;a=c.Event(b);for(var d=this.props.length,f;d;){f=this.props[--d];a[f]=b[f]}if(!a.target)a.target=a.srcElement||s;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=s.documentElement;d=s.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&&(a.charCode||a.charCode===0?a.charCode:a.keyCode))a.which=a.charCode||a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==w)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,a.origType,c.extend({},a,{handler:oa}))},remove:function(a){var b=true,d=a.origType.replace(O,"");c.each(c.data(this,
"events").live||[],function(){if(d===this.origType.replace(O,""))return b=false});b&&c.event.remove(this,a.origType,oa)}},beforeunload:{setup:function(a,b,d){if(this.setInterval)this.onbeforeunload=d;return false},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};var Ca=s.removeEventListener?function(a,b,d){a.removeEventListener(b,d,false)}:function(a,b,d){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=J();this[G]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=Z;var a=this.originalEvent;if(a){a.preventDefault&&a.preventDefault();a.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=Z;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=Z;this.stopPropagation()},isDefaultPrevented:Y,isPropagationStopped:Y,
isImmediatePropagationStopped:Y};var Da=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){}},Ea=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?Ea:Da,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?Ea:Da)}}});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)return na("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)return na("submit",this,arguments)})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};
if(!c.support.changeBubbles){var da=/textarea|input|select/i,ea,Fa=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(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",
e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.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 fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,
"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a,
d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j<o;j++)c.event.add(this[j],d,i,f)}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 f=this.length;d<f;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,f){return this.live(b,d,f,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]){a=c.Event(a);a.preventDefault();a.stopPropagation();c.event.trigger(a,b,this[0]);return a.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(f){var e=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,e+1);f.preventDefault();return b[e].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Ga={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,f,e,j){var i,o=0,k,n,r=j||this.selector,
u=j?this:c(this.context);if(c.isFunction(f)){e=f;f=w}for(d=(d||"").split(" ");(i=d[o++])!=null;){j=O.exec(i);k="";if(j){k=j[0];i=i.replace(O,"")}if(i==="hover")d.push("mouseenter"+k,"mouseleave"+k);else{n=i;if(i==="focus"||i==="blur"){d.push(Ga[i]+k);i+=k}else i=(Ga[i]||i)+k;b==="live"?u.each(function(){c.event.add(this,pa(i,r),{data:f,selector:r,handler:e,origType:i,origHandler:e,preType:n})}):u.unbind(pa(i,r),e)}}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){return d?this.bind(b,d):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});A.attachEvent&&!A.addEventListener&&A.attachEvent("onunload",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){for(var h="",l,m=0;g[m];m++){l=g[m];if(l.nodeType===3||l.nodeType===4)h+=l.nodeValue;else if(l.nodeType!==8)h+=a(l.childNodes)}return h}function b(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];
if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1&&!p){t.sizcache=l;t.sizset=q}if(t.nodeName.toLowerCase()===h){y=t;break}t=t[g]}m[q]=y}}}function d(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1){if(!p){t.sizcache=l;t.sizset=q}if(typeof h!=="string"){if(t===h){y=true;break}}else if(k.filter(h,[t]).length>0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,
e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift();
t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D||
g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h<g.length;h++)g[h]===g[h-1]&&g.splice(h--,1)}return g};k.matches=function(g,h){return k(g,null,null,h)};k.find=function(g,h,l){var m,q;if(!g)return[];
for(var p=0,v=n.order.length;p<v;p++){var t=n.order[p];if(q=n.leftMatch[t].exec(g)){var y=q[1];q.splice(1,1);if(y.substr(y.length-1)!=="\\"){q[1]=(q[1]||"").replace(/\\/g,"");m=n.find[t](q,h,l);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=h.getElementsByTagName("*"));return{set:m,expr:g}};k.filter=function(g,h,l,m){for(var q=g,p=[],v=h,t,y,S=h&&h[0]&&x(h[0]);g&&h.length;){for(var H in n.filter)if((t=n.leftMatch[H].exec(g))!=null&&t[2]){var M=n.filter[H],I,D;D=t[1];y=false;t.splice(1,1);if(D.substr(D.length-
1)!=="\\"){if(v===p)p=[];if(n.preFilter[H])if(t=n.preFilter[H](t,v,l,p,m,S)){if(t===true)continue}else y=I=true;if(t)for(var U=0;(D=v[U])!=null;U++)if(D){I=M(D,t,U,v);var Ha=m^!!I;if(l&&I!=null)if(Ha)y=true;else v[U]=false;else if(Ha){p.push(D);y=true}}if(I!==w){l||(v=p);g=g.replace(n.match[H],"");if(!y)return[];break}}}if(g===q)if(y==null)k.error(g);else break;q=g}return v};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=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,h){var l=typeof h==="string",m=l&&!/\W/.test(h);l=l&&!m;if(m)h=h.toLowerCase();m=0;for(var q=g.length,p;m<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},">":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m<q;m++){var p=g[m];if(p){l=p.parentNode;g[m]=l.nodeName.toLowerCase()===h?l:false}}}else{m=0;for(q=g.length;m<q;m++)if(p=g[m])g[m]=
l?p.parentNode:p.parentNode===h;l&&k.filter(h,g,true)}},"":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("parentNode",h,m,g,p,l)},"~":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("previousSibling",h,m,g,p,l)}},find:{ID:function(g,h,l){if(typeof h.getElementById!=="undefined"&&!l)return(g=h.getElementById(g[1]))?[g]:[]},NAME:function(g,h){if(typeof h.getElementsByName!=="undefined"){var l=[];
h=h.getElementsByName(g[1]);for(var m=0,q=h.length;m<q;m++)h[m].getAttribute("name")===g[1]&&l.push(h[m]);return l.length===0?null:l}},TAG:function(g,h){return h.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,h,l,m,q,p){g=" "+g[1].replace(/\\/g,"")+" ";if(p)return g;p=0;for(var v;(v=h[p])!=null;p++)if(v)if(q^(v.className&&(" "+v.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))l||m.push(v);else if(l)h[p]=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 h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m,
g);return false}else if(n.match.POS.test(g[0])||n.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,h,l){return!!k(l[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,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return h<l[3]-0},gt:function(g,h,l){return h>l[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h=
h[3];l=0;for(m=h.length;l<m;l++)if(h[l]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+q)},CHILD:function(g,h){var l=h[1],m=g;switch(l){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(l==="first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":l=h[2];var q=h[3];if(l===1&&q===0)return true;h=h[0];var p=g.parentNode;if(p&&(p.sizcache!==h||!g.nodeIndex)){var v=0;for(m=p.firstChild;m;m=
m.nextSibling)if(m.nodeType===1)m.nodeIndex=++v;p.sizcache=h}g=g.nodeIndex-q;return l===0?g===0:g%l===0&&g/l>=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m===
"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g,
h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l<m;l++)h.push(g[l]);else for(l=0;g[l];l++)h.push(g[l]);return h}}var B;if(s.documentElement.compareDocumentPosition)B=function(g,h){if(!g.compareDocumentPosition||
!h.compareDocumentPosition){if(g==h)i=true;return g.compareDocumentPosition?-1:1}g=g.compareDocumentPosition(h)&4?-1:g===h?0:1;if(g===0)i=true;return g};else if("sourceIndex"in s.documentElement)B=function(g,h){if(!g.sourceIndex||!h.sourceIndex){if(g==h)i=true;return g.sourceIndex?-1:1}g=g.sourceIndex-h.sourceIndex;if(g===0)i=true;return g};else if(s.createRange)B=function(g,h){if(!g.ownerDocument||!h.ownerDocument){if(g==h)i=true;return g.ownerDocument?-1:1}var l=g.ownerDocument.createRange(),m=
h.ownerDocument.createRange();l.setStart(g,0);l.setEnd(g,0);m.setStart(h,0);m.setEnd(h,0);g=l.compareBoundaryPoints(Range.START_TO_END,m);if(g===0)i=true;return g};(function(){var g=s.createElement("div"),h="script"+(new Date).getTime();g.innerHTML="<a name='"+h+"'/>";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&&
q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML="<a href='#'></a>";
if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="<p class='TEST'></p>";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}();
(function(){var g=s.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){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}:
function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q<p;q++)k(g,h[q],l);return k.filter(m,l)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=a;c.isXMLDoc=x;c.contains=E})();var eb=/Until$/,fb=/^(?:parents|prevUntil|prevAll)/,
gb=/,/;R=Array.prototype.slice;var Ia=function(a,b,d){if(c.isFunction(b))return c.grep(a,function(e,j){return!!b.call(e,j,e)===d});else if(b.nodeType)return c.grep(a,function(e){return e===b===d});else if(typeof b==="string"){var f=c.grep(a,function(e){return e.nodeType===1});if(Ua.test(b))return c.filter(b,f,!d);else b=c.filter(b,f)}return c.grep(a,function(e){return c.inArray(e,b)>=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f<e;f++){d=b.length;
c.find(a,this[f],b);if(f>0)for(var j=d;j<b.length;j++)for(var i=0;i<d;i++)if(b[i]===b[j]){b.splice(j--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,f=b.length;d<f;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(Ia(this,a,false),"not",a)},filter:function(a){return this.pushStack(Ia(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j=
{},i;if(f&&a.length){e=0;for(var o=a.length;e<o;e++){i=a[e];j[i]||(j[i]=c.expr.match.POS.test(i)?c(i,b||this.context):i)}for(;f&&f.ownerDocument&&f!==b;){for(i in j){e=j[i];if(e.jquery?e.index(f)>-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},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){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},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,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType===
1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===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 Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/<tbody/i,jb=/<|&#?\w+;/,ta=/<script|<object|<embed|<option|<style/i,ua=/checked\s*(?:[^=]|=\s*.checked.)/i,Ma=function(a,b,d){return hb.test(d)?
a:b+"></"+d+">"},F={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,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._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!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).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,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}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,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja,
""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);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(f){this.empty().append(a)}}else c.isFunction(a)?this.each(function(e){var j=c(this),i=j.html();j.empty().append(function(){return a.call(this,e,i)})}):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),f=d.html();d.replaceWith(a.call(this,b,f))});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){function f(u){return c.nodeName(u,"table")?u.getElementsByTagName("tbody")[0]||
u.appendChild(u.ownerDocument.createElement("tbody")):u}var e,j,i=a[0],o=[],k;if(!c.support.checkClone&&arguments.length===3&&typeof i==="string"&&ua.test(i))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(i))return this.each(function(u){var z=c(this);a[0]=i.call(this,u,b?z.html():w);z.domManip(a,b,d)});if(this[0]){e=i&&i.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:sa(a,this,o);k=e.fragment;if(j=k.childNodes.length===
1?(k=k.firstChild):k.firstChild){b=b&&c.nodeName(j,"tr");for(var n=0,r=this.length;n<r;n++)d.call(b?f(this[n],j):this[n],n>0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]);
return this}else{e=0;for(var j=d.length;e<j;e++){var i=(e>0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["",
""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]==="<table>"&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e=
c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]?
c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja=
function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter=
Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a,
"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f=
a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=
a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/<script(.|\s)*?\/script>/gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!==
"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("<div />").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});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||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).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,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},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,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},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:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&&
e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)?
"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache===
false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B=
false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since",
c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E||
d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x);
g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===
1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b===
"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional;
if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");
this[a].style.display=d||"";if(c.css(this[a],"display")==="none"){d=this[a].nodeName;var f;if(la[d])f=la[d];else{var e=c("<"+d+" />").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a||a===0)return this.animate(K("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a],
"olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||d?this.each(function(){var f=d?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(K("toggle",3),a,b);return this},fadeTo:function(a,b,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d)},
animate:function(a,b,d,f){var e=c.speed(b,d,f);if(c.isEmptyObject(a))return this.each(e.complete);return this[e.queue===false?"each":"queue"](function(){var j=c.extend({},e),i,o=this.nodeType===1&&c(this).is(":hidden"),k=this;for(i in a){var n=i.replace(ia,ja);if(i!==n){a[n]=a[i];delete a[i];i=n}if(a[i]==="hide"&&o||a[i]==="show"&&!o)return j.complete.call(this);if((i==="height"||i==="width")&&this.style){j.display=c.css(this,"display");j.overflow=this.style.overflow}if(c.isArray(a[i])){(j.specialEasing=
j.specialEasing||{})[i]=a[i][1];a[i]=a[i][0]}}if(j.overflow!=null)this.style.overflow="hidden";j.curAnim=c.extend({},a);c.each(a,function(r,u){var z=new c.fx(k,j,r);if(Ab.test(u))z[u==="toggle"?o?"show":"hide":u](a);else{var C=Bb.exec(u),B=z.cur(true)||0;if(C){u=parseFloat(C[2]);var E=C[3]||"px";if(E!=="px"){k.style[r]=(u||1)+E;B=(u||1)/z.cur(true)*B;k.style[r]=B+E}if(C[1])u=(C[1]==="-="?-1:1)*u+B;z.custom(B,u,E)}else z.custom(B,u,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);
this.each(function(){for(var f=d.length-1;f>=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration===
"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+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);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;
this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},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=J(),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 f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem,
e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,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()},stop:function(){clearInterval(W);W=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};c.fn.offset="getBoundingClientRect"in s.documentElement?
function(a){var b=this[0];if(a)return this.each(function(e){c.offset.setOffset(this,a,e)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);var d=b.getBoundingClientRect(),f=b.ownerDocument;b=f.body;f=f.documentElement;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrollTop||b.scrollTop)-(f.clientTop||b.clientTop||0),left:d.left+(self.pageXOffset||c.support.boxModel&&f.scrollLeft||b.scrollLeft)-(f.clientLeft||b.clientLeft||0)}}:function(a){var b=
this[0];if(a)return this.each(function(r){c.offset.setOffset(this,a,r)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,f=b,e=b.ownerDocument,j,i=e.documentElement,o=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;for(var k=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==o&&b!==i;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;j=e?e.getComputedStyle(b,null):b.currentStyle;
k-=b.scrollTop;n-=b.scrollLeft;if(b===d){k+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(b.nodeName))){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=d;d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&j.overflow!=="visible"){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=j}if(f.position==="relative"||f.position==="static"){k+=o.offsetTop;n+=o.offsetLeft}if(c.offset.supportsFixedPosition&&
f.position==="fixed"){k+=Math.max(i.scrollTop,o.scrollTop);n+=Math.max(i.scrollLeft,o.scrollLeft)}return{top:k,left:n}};c.offset={initialize:function(){var a=s.body,b=s.createElement("div"),d,f,e,j=parseFloat(c.curCSS(a,"marginTop",true))||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;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;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.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a,
d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top-
f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.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(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset":
"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in
e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window);
// jquery.cycle.all.min.js
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#" class="kwadracik_nawig"></a>';}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);
// cufon-yui.js
/*!
 * Copyright (c) 2011 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		},

		strict: (function() {
			var doctype;
			// no doctype (doesn't always catch it though.. IE I'm looking at you)
			if (document.compatMode == 'BackCompat') return false;
			// WebKit, Gecko, Opera, IE9+
			doctype = document.doctype;
			if (doctype) {
				return !/frameset|transitional/i.test(doctype.publicId);
			}
			// IE<9, firstChild is the doctype even if there's an XML declaration
			doctype = document.firstChild;
			if (doctype.nodeType != 8 || /^DOCTYPE.+(transitional|frameset)/i.test(doctype.data)) {
				return false;
			}
			return true;
		})()

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 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
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/(?:^|\s)./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement, simple) {
				if (simple) return text.replace(wsStart, '').replace(wsEnd, ''); // @fixme too simple
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		var checkTypes = {
			'': 1,
			'text/css': 1
		};

		function isContainerReady(el) {
			if (!checkTypes[el.type.toLowerCase()]) return true;
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = (function(glyphs) {
			var key, fallbacks = {
				'\u2011': '\u002d',
				'\u00ad': '\u2011'
			};
			for (key in fallbacks) {
				if (!hasOwnProperty(fallbacks, key)) continue;
				if (!glyphs[key]) glyphs[key] = glyphs[fallbacks[key]];
			}
			return glyphs;
		})(data.glyphs);

		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph,
				kerning, k,
				jumps = [],
				width = 0, w,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				w = glyph.w;
				if (isNaN(w)) w = +this.w; // may have been a String in old fonts
				if (w > 0) {
					w += letterSpacing;
					if (wordSeparators[chr]) w += wordSpacing;
				}
				width += jumps[++j] = ~~w; // get rid of decimals
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			try {
				if (node.contains) return node.contains(anotherNode);
				return node.compareDocumentPosition(anotherNode) & 16;
			}
			catch(e) {} // probably a XUL element such as a scrollbar
			return false;
		}

		// mouseover/mouseout (standards) mode
		function onOverOut(e) {
			var related = e.relatedTarget;
			// there might be no relatedTarget if the element is right next
			// to the window frame
			if (related && contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		// mouseenter/mouseleave (probably ie) mode
		function onEnterLeave(e) {
			if (!e) e = window.event;
			// ie model, we don't have access to "this", but
			// mouseenter/leave doesn't bubble so it's fine.
			trigger(e.target || e.srcElement, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				if (hoverState) {
					options = merge(options, options.hover);
					options._mediatorMode = 1;
				}
				api.replace(el, options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

		this.detach = function(el) {
			if (el.onmouseenter === undefined) {
				removeEvent(el, 'mouseover', onOverOut);
				removeEvent(el, 'mouseout', onOverOut);
			}
			else {
				removeEvent(el, 'mouseenter', onEnterLeave);
				removeEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			// we don't really need "this" right now, saves code
			el.attachEvent('on' + type, listener);
		}
	}

	function attach(el, options) {
		if (options._mediatorMode) return el;
		var storage = sharedStorage.get(el);
		var oldOptions = storage.options;
		if (oldOptions) {
			if (oldOptions === options) return el;
			if (oldOptions.hover) hoverHandler.detach(el);
		}
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function removeEvent(el, type, listener) {
		if (el.removeEventListener) {
			el.removeEventListener(type, listener, false);
		}
		else if (el.detachEvent) {
			el.detachEvent('on' + type, listener);
		}
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		if (options.ignoreClass && options.ignoreClass.test(el.className)) return;
		if (options.onBeforeReplace) options.onBeforeReplace(el, options);
		var replace = !options.textless[name], simple = (options.trim === 'simple');
		var style = CSS.getStyle(attach(el, options)).extend(options);
		// may cause issues if the element contains other elements
		// with larger fontSize, however such cases are rare and can
		// be fixed by using a more specific selector
		if (parseFloat(style.get('fontSize')) === 0) return;
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		var isShy = options.softHyphens, anyShy = false, pos, shy, reShy = /\u00ad/g;
		var modifyText = options.modifyText;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				if (isShy && el.nodeName.toLowerCase() != TAG_SHY) {
					pos = node.data.indexOf('\u00ad');
					if (pos >= 0) {
						node.splitText(pos);
						next = node.nextSibling;
						next.deleteData(0, 1);
						shy = document.createElement(TAG_SHY);
						shy.appendChild(document.createTextNode('\u00ad'));
						el.insertBefore(shy, next);
						next = shy;
						anyShy = true;
					}
				}
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				text = anchor.data;
				if (!isShy) text = text.replace(reShy, '');
				text = CSS.whiteSpace(text, style, anchor, lastElement, simple);
				// modify text only on the first replace
				if (modifyText) text = modifyText(text, anchor, el, options);
				el.replaceChild(process(font, text, style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
		if (isShy && anyShy) {
			updateShy(el);
			if (!trackingShy) addEvent(window, 'resize', updateShyOnResize);
			trackingShy = true;
		}
		if (options.onAfterReplace) options.onAfterReplace(el, options);
	}

	function updateShy(context) {
		var shys, shy, parent, glue, newGlue, next, prev, i;
		shys = context.getElementsByTagName(TAG_SHY);
		// unfortunately there doesn't seem to be any easy
		// way to avoid having to loop through the shys twice.
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = C_SHY_DISABLED;
			glue = parent = shy.parentNode;
			if (glue.nodeName.toLowerCase() != TAG_GLUE) {
				newGlue = document.createElement(TAG_GLUE);
				newGlue.appendChild(shy.previousSibling);
				parent.insertBefore(newGlue, shy);
				newGlue.appendChild(shy);
			}
			else {
				// get rid of double glue (edge case fix)
				glue = glue.parentNode;
				if (glue.nodeName.toLowerCase() == TAG_GLUE) {
					parent = glue.parentNode;
					while (glue.firstChild) {
						parent.insertBefore(glue.firstChild, glue);
					}
					parent.removeChild(glue);
				}
			}
		}
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = '';
			glue = shy.parentNode;
			parent = glue.parentNode;
			next = glue.nextSibling || parent.nextSibling;
			// make sure we're comparing same types
			prev = (next.nodeName.toLowerCase() == TAG_GLUE) ? glue : shy.previousSibling;
			if (prev.offsetTop >= next.offsetTop) {
				shy.className = C_SHY_DISABLED;
				if (prev.offsetTop < next.offsetTop) {
					// we have an annoying edge case, double the glue
					newGlue = document.createElement(TAG_GLUE);
					parent.insertBefore(newGlue, glue);
					newGlue.appendChild(glue);
					newGlue.appendChild(next);
				}
			}
		}
	}

	function updateShyOnResize() {
		if (ignoreResize) return; // needed for IE
		CSS.addClass(DOM.root(), C_VIEWPORT_RESIZING);
		clearTimeout(shyTimer);
		shyTimer = setTimeout(function() {
			ignoreResize = true;
			CSS.removeClass(DOM.root(), C_VIEWPORT_RESIZING);
			updateShy(document);
			ignoreResize = false;
		}, 100);
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;
	var TAG_GLUE = 'cufonglue';
	var TAG_SHY = 'cufonshy';
	var C_SHY_DISABLED = 'cufon-shy-disabled';
	var C_VIEWPORT_RESIZING = 'cufon-viewport-resizing';

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;
	var trackingShy = false;
	var shyTimer;
	var ignoreResize = false;

	var engines = {}, fonts = {}, defaultOptions = {
		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,
			noscript: 1,
			optgroup: 1,
			option: 1,
			script: 1,
			select: 1,
			style: 1,
			textarea: 1,
			title: 1,
			pre: 1
		},
		ignoreClass: null,
		modifyText: null,
		onAfterReplace: null,
		onBeforeReplace: null,
		printable: true,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.glow && glow.dom && glow.dom.get)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		softHyphens: true,
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none',
		trim: 'advanced'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.ignoreClass == 'string') {
			options.ignoreClass = new RegExp('(?:^|\\s)(?:' + options.ignoreClass.replace(/\s+/g, '|') + ')(?:\\s|$)');
		}
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (typeof elements == 'string') {
			if (!ignoreHistory) replaceHistory.add(elements, arguments);
			elements = [ elements ];
		}
		else if (elements.nodeType) elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (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:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +
			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}' +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (!isNaN(value) || /px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'none';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;
		var pixelRatio = window.devicePixelRatio || 1;
		if (pixelRatio != 1) {
			canvas.width = canvasWidth * pixelRatio;
			canvas.height = canvasHeight * pixelRatio;
			g.scale(pixelRatio, pixelRatio);
		}

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());
// Humanst.font.js
Cufon.registerFont({"w":181,"face":{"font-family":"Humanst521EU","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":"-60 -345 499 98","underline-thickness":"21.6","underline-position":"-19.08","unicode-range":"U+0020-U+F6C2"},"glyphs":{" ":{"w":90},"!":{"d":"42,-76v-11,-30,-17,-87,-18,-130v0,-29,8,-44,21,-44v14,0,20,14,20,42v0,48,-6,92,-18,132r-5,0xm45,-41v12,0,22,9,22,22v0,12,-9,22,-22,22v-12,0,-22,-9,-22,-22v0,-12,9,-22,22,-22","w":90},"\"":{"d":"92,-155r-24,0r0,-97r24,0r0,97xm40,-155r-24,0r0,-97r24,0r0,97","w":108},"#":{"d":"261,-176r-9,25r-53,0r-16,47r56,0r-9,25r-56,0r-29,80r-29,0r29,-80r-46,0r-28,80r-29,0r28,-80r-55,0r10,-25r54,0r16,-47r-58,0r9,-25r59,0r28,-80r29,0r-28,80r45,0r29,-80r29,0r-29,80r53,0xm170,-151r-45,0r-17,47r46,0","w":276},"$":{"d":"10,-179v0,-38,32,-63,70,-65r0,-26r23,0r0,26v21,1,40,8,58,21r0,39v-23,-18,-42,-26,-58,-27r0,70v92,17,95,132,0,140r0,40r-23,0v-2,-12,4,-32,-2,-40v-21,0,-44,-8,-70,-26r0,-46v26,23,50,36,72,37r0,-76v-47,-12,-70,-34,-70,-67xm80,-211v-22,0,-36,10,-36,30v0,16,12,27,36,33r0,-63xm103,-36v48,-1,42,-60,0,-67r0,67"},"%":{"d":"262,-142v40,0,73,33,73,73v0,40,-33,73,-73,73v-40,0,-74,-34,-74,-73v0,-40,34,-73,74,-73xm270,-250r-166,254r-29,0r166,-254r29,0xm83,-250v39,0,75,35,74,74v0,39,-35,73,-74,73v-39,0,-73,-33,-73,-73v0,-41,33,-74,73,-74xm262,-28v22,0,41,-18,41,-41v0,-23,-19,-41,-41,-41v-23,0,-42,18,-42,41v0,23,19,41,42,41xm83,-135v22,0,41,-19,41,-42v0,-23,-19,-41,-41,-41v-23,0,-41,18,-41,41v0,23,18,42,41,42","w":345},"&":{"d":"107,-250v36,0,64,21,64,55v0,26,-16,48,-47,68r36,42v9,-10,19,-25,27,-42r37,0v-9,25,-23,48,-41,68r49,59r-46,0r-29,-35v-40,55,-146,55,-146,-23v0,-40,29,-54,62,-74v-48,-39,-34,-118,34,-118xm108,-222v-42,0,-36,45,-5,72v23,-15,35,-30,35,-45v1,-17,-14,-27,-30,-27xm48,-60v9,46,56,33,87,0r-41,-49v-31,18,-46,35,-46,49","w":234},"'":{"d":"40,-155r-24,0r0,-97r24,0r0,97","w":55},"(":{"d":"112,-250v-81,101,-83,223,-4,331r-21,0v-92,-109,-91,-223,6,-331r19,0","w":113},")":{"d":"21,-250v96,108,97,222,5,331r-21,0v79,-109,77,-229,-4,-331r20,0","w":113},"*":{"d":"151,-166r-62,-8r50,38r-17,17r-38,-49r8,61r-25,0r8,-61r-38,49r-17,-17r50,-38r-62,8r0,-24r62,7r-50,-37r17,-18r38,50r-8,-62r25,0r-8,62r38,-50r17,18r-50,38r62,-8r0,24","w":159},"+":{"d":"255,-95r-93,0r0,95r-24,0r0,-95r-93,0r0,-25r93,0r0,-95r24,0r0,95r93,0r0,25","w":299},",":{"d":"44,-39v16,0,23,15,23,33v0,26,-14,44,-42,53v3,-17,17,-22,14,-44v-23,-8,-19,-42,5,-42","w":90},"-":{"d":"107,-67r-92,0r0,-29r92,0r0,29","w":121,"k":{"\u015b":-7,"\u00f8":-7,"\u00f3":-7,"\u015a":-13,"\u00d8":-13,"\u00d3":-13,"\u0106":-10,"\u0104":7,"\u00c5":7,"s":-7,"o":-7,"Y":28,"X":13,"W":20,"V":22,"T":33,"S":-13,"O":-13,"J":-20,"G":-13,"C":-10,"A":7}},".":{"d":"45,-40v12,0,21,11,22,22v0,11,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,10,-22,21,-22","w":90},"\/":{"d":"101,-250r-86,283r-24,0r85,-283r25,0","w":101},"0":{"d":"91,-250v57,0,80,60,80,127v0,68,-23,127,-80,127v-110,0,-110,-254,0,-254xm91,-29v36,-4,45,-47,45,-94v0,-48,-9,-90,-45,-94v-37,3,-46,46,-46,94v0,48,9,90,46,94"},"1":{"d":"108,0r-35,0r0,-246r35,0r0,246"},"2":{"d":"151,-176v-4,60,-36,92,-75,140r92,0r0,36r-156,0v30,-49,104,-115,104,-172v0,-55,-67,-55,-97,-14r0,-42v50,-45,137,-18,132,52"},"3":{"d":"28,-239v53,-27,122,-4,121,54v0,23,-9,41,-29,54v65,29,32,135,-44,135v-17,0,-34,-4,-52,-14r0,-38v36,22,93,26,93,-24v0,-25,-17,-38,-52,-40r0,-31v28,0,50,-13,50,-39v0,-40,-50,-44,-87,-25r0,-32"},"4":{"d":"168,-82r-27,0r0,82r-34,0r0,-82r-105,0r0,-15r124,-153r15,0r0,139r27,0r0,29xm108,-185r-59,74r58,0"},"5":{"d":"66,-153v54,-2,92,27,92,77v1,68,-80,103,-141,64r0,-37v36,26,104,25,105,-26v1,-42,-47,-54,-89,-43r5,-128r108,0r0,30r-78,0"},"6":{"d":"57,-133v54,-31,111,6,111,62v0,44,-34,75,-78,75v-47,0,-77,-38,-77,-87v0,-66,34,-122,101,-167r19,24v-41,28,-66,59,-76,93xm93,-29v24,0,39,-16,39,-40v1,-24,-16,-43,-40,-42v-18,0,-43,7,-43,31v0,29,17,51,44,51"},"7":{"d":"179,-246r-112,252r-30,-14r89,-206r-104,0r0,-32r157,0"},"8":{"d":"136,-127v66,26,31,142,-45,131v-76,11,-112,-105,-45,-131v-55,-34,-22,-131,47,-123v67,-7,97,91,43,123xm90,-141v23,0,41,-16,41,-40v0,-22,-16,-37,-40,-37v-24,0,-40,15,-40,37v-1,22,18,41,39,40xm89,-29v26,0,46,-16,45,-41v0,-24,-18,-40,-43,-39v-25,0,-44,14,-44,39v-1,23,18,41,42,41"},"9":{"d":"90,-250v47,0,77,38,77,87v0,67,-34,122,-101,167r-19,-24v42,-28,67,-59,76,-93v-54,31,-110,-6,-110,-62v0,-43,33,-75,77,-75xm88,-135v19,0,43,-8,43,-31v0,-28,-16,-51,-43,-51v-24,0,-40,16,-39,40v0,23,15,42,39,42"},":":{"d":"45,-166v12,0,22,10,22,21v0,11,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm45,-39v12,0,22,10,22,21v0,11,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21","w":90},";":{"d":"45,-166v12,0,22,10,22,21v0,12,-11,21,-22,22v-11,0,-21,-10,-21,-22v0,-12,9,-21,21,-21xm44,-39v16,0,23,15,23,33v0,26,-14,44,-42,53v3,-17,17,-22,14,-44v-23,-8,-19,-42,5,-42","w":90},"<":{"d":"253,-11r-207,-85r0,-23r207,-85r0,27r-170,70r170,69r0,27","w":299},"=":{"d":"255,-130r-210,0r0,-24r210,0r0,24xm255,-60r-210,0r0,-25r210,0r0,25","w":299},">":{"d":"253,-96r-207,85r0,-27r171,-69r-171,-70r0,-27r207,85r0,23","w":299},"?":{"d":"15,-240v39,-23,92,-4,92,44v0,47,-63,73,-55,121r-8,4v-45,-35,23,-89,23,-121v0,-31,-34,-27,-58,-10xm50,-40v12,0,22,9,22,21v0,12,-9,23,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21","w":112},"@":{"d":"196,-258v80,0,146,51,146,121v0,61,-39,116,-99,116v-25,0,-37,-9,-36,-30v-25,47,-108,40,-108,-28v0,-51,35,-98,84,-97v20,0,35,8,43,26r10,-20r23,0r-27,111v0,11,5,17,17,17v38,0,67,-50,67,-92v0,-63,-54,-104,-121,-102v-91,2,-147,57,-151,145v-6,118,160,156,246,89r10,14v-99,81,-281,31,-281,-104v0,-98,82,-166,177,-166xm185,-157v-35,0,-58,40,-58,79v0,42,41,47,64,26v19,-16,21,-47,29,-73v-4,-22,-16,-32,-35,-32","w":360},"A":{"d":"232,0r-36,0r-32,-72r-105,0r-31,72r-36,0r107,-246r25,0xm150,-104r-39,-89r-38,89r77,0","w":224,"k":{"\u00ab":13,"\u2039":13,"\u201e":-7,"\u201a":-7,"\u201d":43,"\u201c":47,"\u2019":43,"\u2018":47,"\u015a":-7,"\u0106":7,"w":7,"v":7,"Y":20,"W":7,"V":20,"U":7,"T":27,"S":-7,"C":7,";":-7,":":-7,"-":8}},"B":{"d":"139,-131v31,8,55,29,56,64v0,74,-90,70,-169,67r0,-246v72,-2,151,-6,149,64v0,25,-12,42,-36,51xm138,-180v0,-35,-39,-36,-77,-34r0,74v41,3,77,-6,77,-40xm157,-69v4,-40,-51,-41,-96,-39r0,76v43,1,100,5,96,-37","w":208,"k":{"\u201e":7,"\u201a":7,"\u201d":7,"\u2019":7,"Y":7,"W":7,"V":7,"-":-10}},"C":{"d":"50,-123v0,92,115,121,186,65r0,39v-94,54,-223,7,-223,-105v0,-103,124,-159,221,-106r0,38v-75,-51,-183,-21,-184,69","w":249,"k":{"\u201d":-10,"\u2019":-10,"-":-8}},"D":{"d":"117,-246v82,-2,135,51,135,123v0,72,-53,123,-135,123r-91,0r0,-246r91,0xm61,-33v85,7,153,-11,153,-90v0,-78,-67,-97,-153,-89r0,179","w":266,"k":{"\u201e":33,"\u201a":33,"\u201d":7,"\u201c":7,"\u2019":7,"\u2018":7,"\u0104":7,"\u00c5":7,"Y":13,"W":7,"V":7,"A":7,"-":-12}},"E":{"d":"178,0r-152,0r0,-246r148,0r0,31r-113,0r0,75r110,0r0,32r-110,0r0,76r117,0r0,32","w":195},"F":{"d":"166,-215r-105,0r0,73r102,0r0,32r-102,0r0,110r-35,0r0,-246r140,0r0,31","k":{"\u00bb":-7,"\u00ab":13,"\u203a":-7,"\u2039":13,"\u201e":73,"\u201a":73,"\u201d":-7,"\u2019":-7,"\u0104":13,"\u00c5":13,"u":7,"r":7,"A":13,";":15,":":15,".":72,"-":18,",":72}},"G":{"d":"50,-123v-1,71,79,117,149,83r0,-48r-46,0r0,-33r83,0r0,104v-102,51,-223,5,-223,-107v-1,-103,124,-159,221,-106r0,38v-75,-51,-183,-21,-184,69","w":254,"k":{"\u201d":17,"\u2019":17,"Y":7,"W":7,"T":7,"-":-8}},"H":{"d":"238,0r-35,0r0,-107r-142,0r0,107r-35,0r0,-246r35,0r0,106r142,0r0,-106r35,0r0,246","w":264,"k":{".":7,",":7}},"I":{"d":"63,0r-36,0r0,-246r36,0r0,246","w":90},"J":{"d":"-22,50v38,1,50,-9,50,-47r0,-249r35,0r0,240v3,64,-18,88,-77,89","w":90,"k":{"\u201e":20,"\u201a":20,"\u201d":7,"\u2019":7,"-":7}},"K":{"d":"230,0r-49,0r-118,-122r0,122r-36,0r0,-246r36,0r0,111r102,-111r45,0r-107,115","w":219,"k":{"\u00ab":10,"\u2039":10,"\u201e":-12,"\u201a":-12,"\u201d":8,"\u201c":13,"\u2019":8,"\u2018":13,"\u015b":7,"\u00f8":7,"\u00f3":7,"\u0119":7,"\u0107":7,"\u0105":7,"\u015a":13,"\u00d8":13,"\u00d3":13,"\u0106":13,"y":13,"u":7,"s":7,"o":7,"e":7,"c":7,"a":7,"Y":13,"W":13,"U":7,"T":13,"S":13,"O":13,"C":13,"-":18}},"L":{"d":"179,0r-152,0r0,-246r35,0r0,214r117,0r0,32","k":{"\u201d":55,"\u201c":60,"\u2019":55,"\u2018":60,"\u015a":13,"\u00d8":13,"\u00d3":13,"y":13,"Y":27,"W":20,"V":20,"U":7,"T":20,"S":13,"O":13,"-":7}},"M":{"d":"265,0r-35,0r0,-192r-85,99r-85,-99r0,192r-34,0r0,-246r31,0r88,103r89,-103r31,0r0,246","w":290},"N":{"d":"254,0r-32,0r-161,-191r0,191r-35,0r0,-246r31,0r162,191r0,-191r35,0r0,246","w":280},"O":{"d":"144,-250v71,0,131,58,131,128v0,70,-61,126,-131,126v-70,0,-131,-58,-131,-128v0,-69,62,-126,131,-126xm144,-29v51,0,94,-43,94,-94v0,-49,-43,-94,-94,-94v-49,0,-94,43,-94,94v0,50,44,94,94,94","w":288,"k":{"\u201e":20,"\u201a":20,"\u201d":7,"\u2019":7,"\u0104":7,"\u00c5":7,"Y":13,"X":20,"V":7,"A":7,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"26,-246v77,-2,159,-5,159,70v0,62,-55,76,-124,70r0,106r-35,0r0,-246xm61,-137v43,0,87,5,87,-39v0,-43,-45,-38,-87,-38r0,77","w":195,"k":{"\u00bb":7,"\u00ab":20,"\u203a":7,"\u2039":20,"\u201e":87,"\u201a":87,"\u201d":-8,"\u201c":-7,"\u2019":-8,"\u2018":-7,"\u015b":13,"\u00f8":13,"\u00f3":13,"\u0144":7,"\u0119":13,"\u0107":13,"\u0105":13,"\u0104":20,"\u00c5":20,"s":13,"r":7,"o":13,"n":7,"e":13,"c":13,"a":13,"A":20,";":17,":":17,".":87,"-":28,",":87}},"Q":{"d":"144,-250v71,0,132,58,131,128v-1,63,-43,108,-98,122v34,16,56,24,93,16v-3,14,-23,21,-32,33v-45,1,-74,-14,-126,-49v-55,-11,-98,-61,-99,-124v-1,-69,62,-126,131,-126xm144,-29v51,0,94,-43,94,-94v0,-49,-43,-94,-94,-94v-49,0,-94,43,-94,94v0,50,44,94,94,94","w":288},"R":{"d":"26,-246v74,-2,150,-5,150,67v0,31,-15,52,-46,62v33,27,58,81,85,117r-43,0v-20,-29,-46,-76,-68,-98v-11,-11,-24,-13,-43,-12r0,110r-35,0r0,-246xm139,-178v0,-40,-38,-39,-78,-38r0,77v41,2,78,-2,78,-39","w":203,"k":{"\u201d":7,"\u201c":7,"\u2019":7,"\u2018":7,"\u015b":7,"\u00f8":7,"\u00f3":7,"\u0119":7,"\u0107":7,"\u0105":7,"u":7,"s":7,"o":7,"e":7,"c":7,"a":7,"Y":7,"-":10}},"S":{"d":"47,-189v13,53,106,54,106,129v0,67,-96,82,-139,41r0,-47v21,24,42,36,64,36v22,1,41,-10,39,-31v-7,-58,-104,-57,-104,-124v0,-63,81,-84,129,-49r0,40v-21,-17,-39,-25,-57,-25v-20,-1,-38,12,-38,30","w":165},"T":{"d":"218,-214r-90,0r0,214r-35,0r0,-214r-90,0r0,-32r215,0r0,32","w":220,"k":{"\u00bb":20,"\u00ab":33,"\u203a":20,"\u2039":33,"\u201e":40,"\u201a":40,"\u015b":63,"\u00f8":63,"\u00f3":63,"\u0119":63,"\u0107":37,"\u0105":37,"\u0106":13,"\u0104":27,"\u00c5":27,"y":63,"w":63,"u":63,"s":63,"r":63,"o":63,"e":63,"c":37,"a":37,"C":13,"A":27,";":50,":":50,".":57,"-":33,",":57}},"U":{"d":"131,-29v40,1,71,-23,71,-60r0,-157r35,0r0,158v-1,56,-46,94,-106,92v-61,-2,-106,-32,-106,-107r0,-143r35,0r0,141v-6,55,28,74,71,76","w":261,"k":{"\u0104":7,"\u00c5":7,"A":7}},"V":{"d":"221,-246r-111,248r-9,0r-108,-248r37,0r76,175r78,-175r37,0","w":213,"k":{"\u00bb":20,"\u00ab":40,"\u203a":20,"\u2039":40,"\u201e":60,"\u201a":60,"\u201d":-10,"\u2019":-10,"\u015b":20,"\u00f8":20,"\u00f3":20,"\u0119":20,"\u0107":20,"\u0105":20,"\u015a":7,"\u00d8":7,"\u00d3":7,"\u0104":15,"\u00c5":15,"y":10,"u":20,"s":20,"o":20,"e":20,"c":20,"a":20,"S":7,"O":7,"A":15,";":25,":":25,".":60,"-":30,",":60}},"W":{"d":"341,-246r-92,248r-8,0r-74,-190r-74,190r-8,0r-91,-248r36,0r60,168r67,-168r22,0r65,168r62,-168r35,0","w":335,"k":{"\u00bb":20,"\u00ab":33,"\u203a":20,"\u2039":33,"\u201e":60,"\u201a":60,"\u201d":-7,"\u2019":-7,"\u015b":20,"\u00f8":20,"\u00f3":20,"\u0119":20,"\u0107":20,"\u0105":20,"\u0104":13,"\u00c5":13,"y":7,"u":13,"s":20,"r":13,"o":20,"e":20,"c":20,"a":20,"A":13,";":22,":":22,".":45,"-":22,",":45}},"X":{"d":"262,0r-43,0r-88,-105r-91,105r-44,0r113,-130r-97,-116r43,0r76,90r78,-90r43,0r-99,116","w":258,"k":{"\u00ab":20,"\u2039":20,"\u201e":-20,"\u201a":-20,"\u201c":13,"\u2018":13,"\u015a":20,"\u00d8":20,"\u00d3":20,"\u0106":17,"S":20,"O":20,"C":17,"-":18}},"Y":{"d":"220,-246r-99,125r0,121r-36,0r0,-123r-95,-123r42,0r72,93r73,-93r43,0","w":209,"k":{"\u00bb":27,"\u00ab":40,"\u203a":27,"\u2039":40,"\u201e":47,"\u201a":47,"\u015b":40,"\u00f8":40,"\u00f3":40,"\u0119":40,"\u0107":40,"\u0105":40,"\u015a":13,"\u00d8":13,"\u00d3":13,"\u0106":7,"\u0104":20,"\u00c5":20,"u":38,"s":40,"o":40,"i":7,"e":40,"c":40,"a":40,"S":13,"O":13,"C":7,"A":20,";":38,":":38,".":48,"-":43,",":48}},"Z":{"d":"225,0r-222,0r161,-215r-150,0r0,-31r211,0r0,4r-159,212r159,0r0,30","w":229,"k":{"\u201c":7,"\u2018":7,"-":7}},"[":{"d":"109,75r-78,0r0,-321r78,0r0,25r-49,0r0,272r49,0r0,24","w":112},"\\":{"d":"111,33r-25,0r-85,-283r25,0","w":101},"]":{"d":"82,75r-78,0r0,-24r49,0r0,-272r-49,0r0,-25r78,0r0,321","w":112},"^":{"d":"286,-158r-32,0r-74,-74r-75,74r-31,0r89,-98r33,0","w":360},"_":{"d":"180,85r-180,0r0,-25r180,0r0,25","w":180},"`":{"d":"114,-185r-19,0r-49,-62r31,0","w":180},"a":{"d":"13,-145v37,-33,129,-32,121,38r0,68v1,24,9,17,23,7r0,20v-16,15,-50,26,-55,-1v-31,26,-91,21,-94,-23v-3,-35,56,-55,92,-66v5,-48,-59,-38,-87,-11r0,-32xm100,-81v-30,11,-52,14,-57,39v0,29,41,24,57,9r0,-48","w":155},"b":{"d":"54,-153v53,-34,121,4,121,72v0,80,-84,101,-154,73r0,-238r33,0r0,93xm54,-33v43,17,87,1,87,-48v0,-48,-50,-71,-87,-43r0,91","w":186},"c":{"d":"44,-81v0,52,63,67,104,42r0,34v-67,26,-138,-10,-138,-76v0,-65,73,-105,135,-75r0,35v-40,-29,-101,-11,-101,40","w":158},"d":{"d":"11,-81v0,-65,67,-108,121,-72r0,-93r33,0r0,246r-33,0r0,-9v-54,34,-121,-8,-121,-72xm45,-82v0,48,50,72,87,46r0,-91v-35,-28,-87,-3,-87,45","w":186},"e":{"d":"90,-166v49,0,78,37,76,90r-122,0v4,61,76,59,119,26r0,33v-61,44,-153,16,-153,-67v0,-47,33,-83,80,-82xm130,-99v0,-23,-19,-39,-41,-39v-25,0,-40,13,-45,39r86,0","w":175},"f":{"d":"28,-162v-6,-65,22,-98,81,-82r0,28v-39,-13,-51,12,-47,54r21,0r0,28r-21,0r0,134r-34,0r0,-134r-21,0r0,-28r21,0","w":95,"k":{"\u201e":20,"\u201a":20,"\u201d":-25,"\u201c":-32,"\u2019":-25,"\u2018":-32,".":13,",":13}},"g":{"d":"158,31v0,34,-26,51,-80,51v-89,0,-107,-79,-33,-93v-25,-12,-24,-31,4,-41v-25,-8,-37,-25,-37,-51v0,-62,77,-62,145,-59r0,26r-27,0v30,31,2,86,-33,86v-20,0,-57,13,-25,27v2,1,15,3,39,8v32,6,47,22,47,46xm78,-74v21,0,34,-11,34,-30v0,-19,-15,-31,-34,-31v-19,0,-34,12,-34,31v0,20,11,30,34,30xm68,9v-18,0,-37,6,-38,21v0,16,16,24,47,24v32,0,49,-7,49,-22v0,-15,-19,-23,-58,-23","w":160},"h":{"d":"54,-143v35,-39,107,-25,107,35r0,108r-33,0v-6,-50,21,-138,-34,-138v-16,0,-29,7,-40,21r0,117r-33,0r0,-246r33,0r0,103","w":180},"i":{"d":"38,-229v9,0,18,8,18,19v0,11,-9,18,-18,18v-10,0,-19,-8,-19,-18v0,-10,10,-19,19,-19xm54,0r-32,0r0,-162r32,0r0,162","w":75},"j":{"d":"39,-229v9,1,18,8,18,19v0,11,-9,18,-18,18v-10,1,-19,-9,-19,-18v0,-9,10,-19,19,-19xm0,59v15,-7,21,-17,22,-37r0,-184r33,0v-4,72,11,163,-8,221v-3,11,-14,17,-27,23","w":76},"k":{"d":"179,0r-45,0r-79,-86r70,-76r40,0r-68,74xm54,0r-32,0r0,-246r32,0r0,246","w":173},"l":{"d":"54,0r-32,0r0,-246r32,0r0,246","w":75},"m":{"d":"153,-138v35,-44,113,-34,113,30r0,108r-32,0v-6,-50,21,-138,-34,-138v-16,0,-30,7,-41,21r0,117r-32,0v-6,-50,21,-138,-34,-138v-16,0,-29,7,-40,21r0,117r-32,0r0,-162r32,0r0,19v29,-31,79,-30,100,5","w":285},"n":{"d":"53,-143v35,-39,107,-25,107,35r0,108r-33,0v-6,-50,21,-138,-34,-138v-16,0,-29,7,-40,21r0,117r-32,0r0,-162r32,0r0,19","w":179,"k":{"\u201d":20,"\u201c":20,"\u2019":20,"\u2018":20}},"o":{"d":"96,-166v46,0,87,40,87,85v0,47,-40,84,-87,84v-46,0,-86,-37,-86,-84v0,-47,40,-85,86,-85xm96,-27v28,0,52,-26,52,-54v0,-30,-24,-54,-52,-54v-28,0,-52,25,-52,54v0,30,24,54,52,54","w":192,"k":{"\u201c":13,"\u2018":13,"-":-7}},"p":{"d":"54,-153v54,-36,121,7,121,72v0,64,-66,106,-121,72r0,91r-33,0r0,-244r33,0r0,9xm54,-36v35,27,87,4,87,-45v0,-50,-50,-72,-87,-46r0,91","w":186},"q":{"d":"11,-81v0,-65,67,-108,121,-72r0,-9r33,0r0,244r-33,0r0,-91v-54,34,-121,-8,-121,-72xm45,-81v0,48,50,72,87,46r0,-91v-35,-28,-87,-3,-87,45","w":186},"r":{"d":"138,-149r-17,28v-29,-25,-68,-15,-68,29r0,92r-32,0r0,-162r32,0r0,35v26,-40,49,-50,85,-22","w":135,"k":{"\u00ab":7,"\u2039":7,"\u201e":48,"\u201a":48,"\u201d":-15,"\u2019":-15,".":37,"-":13,",":37}},"s":{"d":"45,-123v10,34,80,31,80,79v0,52,-75,58,-115,33r0,-35v20,13,38,20,53,20v29,0,35,-21,16,-32v-27,-16,-67,-25,-67,-64v0,-49,69,-54,105,-31r0,32v-19,-11,-36,-16,-50,-16v-14,0,-22,5,-22,14","w":135},"t":{"d":"58,-60v-7,39,30,36,52,24r0,31v-41,19,-84,7,-84,-52r0,-77r-28,0r0,-4r57,-62r3,0r0,38r51,0r0,28r-51,0r0,74","w":115},"u":{"d":"127,-20v-35,41,-108,24,-108,-35r0,-107r33,0v6,50,-21,138,34,138v16,0,30,-7,41,-21r0,-117r32,0r0,162r-32,0r0,-20","w":179},"v":{"d":"163,-162r-75,165r-15,0r-78,-165r36,0r50,107r47,-107r35,0","w":159,"k":{".":28,",":28}},"w":{"d":"270,-162r-72,165r-16,0r-48,-117r-48,117r-16,0r-72,-165r34,0r46,107r45,-107r21,0r46,107r46,-107r34,0","w":269,"k":{"\u201e":28,"\u201a":28,"\u201d":-20,"\u201c":-10,"\u2019":-20,"\u2018":-10,".":27,"-":-7,",":27}},"x":{"d":"172,0r-39,0r-48,-60r-47,60r-39,0r65,-84r-64,-78r40,0r44,55r42,-55r40,0r-62,77","w":171},"y":{"d":"163,-162r-121,244r-35,0r56,-114r-68,-130r36,0r50,95r47,-95r35,0","w":159,"k":{"\u201e":47,"\u201a":47,"\u201d":-20,"\u201c":-20,"\u2019":-20,"\u2018":-20,".":32,"-":7,",":32}},"z":{"d":"152,0r-149,0r0,-4r91,-128r-87,0r0,-30r143,0v-26,47,-60,86,-88,131r90,0r0,31","w":158},"{":{"d":"74,-93v77,9,-12,156,78,140r0,26v-54,1,-75,-9,-73,-63v2,-48,6,-101,-49,-90r0,-27v52,10,51,-39,49,-90v-3,-54,20,-64,73,-63r0,27v-86,-18,-3,132,-78,140","w":180},"|":{"d":"103,85r-26,0r0,-360r26,0r0,360","w":180},"}":{"d":"101,-197v-2,49,-5,100,50,90r0,27v-53,-10,-52,39,-50,90v3,54,-19,64,-73,63r0,-26v85,17,4,-131,78,-140v-41,-6,-35,-52,-35,-100v0,-35,-9,-41,-43,-40r0,-27v53,-1,75,9,73,63","w":180},"~":{"d":"99,-132v22,0,82,24,102,24v20,0,42,-9,68,-27r0,27v-24,17,-46,25,-68,25v-18,0,-82,-24,-102,-24v-19,0,-42,10,-68,28r0,-28v25,-17,47,-25,68,-25","w":299},"\u00a0":{"w":90},"\u00c0":{"d":"124,-270r-25,0r-34,-46r33,0xm232,0r-36,0r-32,-72r-105,0r-31,72r-36,0r107,-246r25,0xm150,-104r-39,-89r-38,89r77,0","w":224},"\u00c1":{"d":"160,-316r-33,46r-26,0r26,-46r33,0xm232,0r-36,0r-32,-72r-105,0r-31,72r-36,0r107,-246r25,0xm150,-104r-39,-89r-38,89r77,0","w":224},"\u00c2":{"d":"163,-261r-19,0r-32,-39r-31,39r-19,0r35,-58r31,0xm232,0r-36,0r-32,-72r-105,0r-31,72r-36,0r107,-246r25,0xm150,-104r-39,-89r-38,89r77,0","w":224},"\u00c3":{"d":"163,-309v-8,40,-38,36,-70,26v-8,0,-14,4,-17,11r-16,0v7,-39,38,-35,70,-25v8,0,14,-4,17,-12r16,0xm232,0r-36,0r-32,-72r-105,0r-31,72r-36,0r107,-246r25,0xm150,-104r-39,-89r-38,89r77,0","w":224},"\u00c4":{"d":"146,-314v10,0,17,7,17,17v0,10,-7,18,-17,18v-10,0,-17,-8,-17,-18v0,-10,7,-17,17,-17xm79,-314v10,0,17,7,17,17v0,10,-7,18,-17,18v-10,0,-17,-8,-17,-18v0,-10,7,-17,17,-17xm232,0r-36,0r-32,-72r-105,0r-31,72r-36,0r107,-246r25,0xm150,-104r-39,-89r-38,89r77,0","w":224},"\u0100":{"d":"155,-279r-90,0r0,-22r90,0r0,22xm232,0r-36,0r-32,-72r-105,0r-31,72r-36,0r107,-246r25,0xm150,-104r-39,-89r-38,89r77,0","w":224},"\u0102":{"d":"163,-312v-3,32,-19,48,-50,48v-31,0,-47,-16,-49,-48r16,0v2,17,12,25,33,25v21,0,33,-8,35,-25r15,0xm232,0r-36,0r-32,-72r-105,0r-31,72r-36,0r107,-246r25,0xm150,-104r-39,-89r-38,89r77,0","w":224},"\u00c5":{"d":"111,-345v23,0,44,20,44,44v0,24,-21,44,-44,44v-24,0,-43,-20,-43,-44v0,-24,19,-44,43,-44xm232,0r-36,0r-32,-72r-105,0r-31,72r-36,0r107,-246r25,0xm112,-276v13,0,24,-12,24,-25v0,-13,-11,-25,-24,-25v-14,0,-26,12,-26,25v0,13,12,25,26,25xm150,-104r-39,-89r-38,89r77,0","w":224,"k":{"\u00ab":13,"\u2039":13,"\u201e":-7,"\u201a":-7,"\u201d":43,"\u201c":47,"\u2019":43,"\u2018":47,"w":7,"v":7,"Y":20,"W":7,"V":20,"U":7,"T":27,"S":-7,"C":7,";":-7,":":-7,"-":8}},"\u0104":{"d":"232,0v-22,-1,-41,47,-6,47v7,0,15,-2,23,-7r0,23v-27,17,-72,10,-72,-25v0,-15,8,-27,24,-38r-5,0r-32,-72r-105,0r-31,72r-36,0r107,-246r25,0xm150,-104r-39,-89r-38,89r77,0","w":224,"k":{"w":7,"v":7,"Y":20,"W":7,"V":20,"U":7,"T":27,"S":-7,"C":7,";":-7,":":-7,"-":8}},"\u00c6":{"d":"312,0r-153,0r0,-71r-97,0r-47,71r-38,0r163,-246r169,0r0,32r-114,0r0,74r111,0r0,32r-111,0r0,76r117,0r0,32xm159,-104v-2,-35,4,-79,-2,-110r-72,110r74,0","w":330},"\u0106":{"d":"185,-316r-34,46r-25,0r26,-46r33,0xm50,-123v0,92,115,121,186,65r0,39v-94,54,-223,7,-223,-105v0,-103,124,-159,221,-106r0,38v-75,-51,-183,-21,-184,69","w":249,"k":{"\u201d":17,"\u2019":17,"-":-8}},"\u0108":{"d":"195,-259r-19,0r-31,-39r-32,39r-18,0r34,-58r32,0xm50,-123v0,92,115,121,186,65r0,39v-94,54,-223,7,-223,-105v0,-103,124,-159,221,-106r0,38v-75,-51,-183,-21,-184,69","w":249},"\u010c":{"d":"197,-315r-34,54r-32,0r-34,-54r19,0r31,36r32,-36r18,0xm50,-123v0,92,115,121,186,65r0,39v-94,54,-223,7,-223,-105v0,-103,124,-159,221,-106r0,38v-75,-51,-183,-21,-184,69","w":249},"\u010a":{"d":"145,-316v10,-1,19,10,19,19v0,9,-10,19,-19,19v-11,0,-20,-9,-20,-19v-1,-10,10,-20,20,-19xm50,-123v0,92,115,121,186,65r0,39v-94,54,-223,7,-223,-105v0,-103,124,-159,221,-106r0,38v-75,-51,-183,-21,-184,69","w":249},"\u00c7":{"d":"50,-123v0,92,115,121,186,65r0,39v-94,54,-223,7,-223,-105v0,-103,124,-159,221,-106r0,38v-75,-51,-183,-21,-184,69xm191,50v0,37,-51,37,-88,25r0,-16v19,4,34,7,44,7v14,0,21,-5,21,-15v0,-15,-18,-20,-34,-17r0,-34r13,0r0,19v28,-1,45,9,44,31","w":249},"\u010e":{"d":"162,-316r-34,54r-32,0r-34,-54r19,0r31,36r32,-36r18,0xm117,-246v82,-2,135,51,135,123v0,72,-53,123,-135,123r-91,0r0,-246r91,0xm61,-33v85,7,153,-11,153,-90v0,-78,-67,-97,-153,-89r0,179","w":266},"\u0110":{"d":"119,-246v83,-2,135,50,135,123v0,73,-52,123,-135,123r-90,0r0,-109r-29,0r0,-29r29,0r0,-108r90,0xm64,-33v85,7,153,-12,153,-90v0,-77,-67,-97,-153,-89r0,74r64,0r0,29r-64,0r0,76","w":269},"\u00d0":{"d":"119,-246v83,-2,135,50,135,123v0,73,-52,123,-135,123r-90,0r0,-109r-29,0r0,-29r29,0r0,-108r90,0xm64,-33v85,7,153,-12,153,-90v0,-77,-67,-97,-153,-89r0,74r64,0r0,29r-64,0r0,76","w":269,"k":{"\u201e":33,"\u201a":33,"\u201d":7,"\u201c":7,"\u2019":7,"\u2018":7,"\u00c5":7,"Y":13,"W":7,"V":7,"A":7,"-":-12}},"\u00c8":{"d":"120,-270r-26,0r-33,-46r33,0xm178,0r-152,0r0,-246r148,0r0,31r-113,0r0,75r110,0r0,32r-110,0r0,76r117,0r0,32","w":195},"\u00c9":{"d":"146,-316r-33,46r-26,0r26,-46r33,0xm178,0r-152,0r0,-246r148,0r0,31r-113,0r0,75r110,0r0,32r-110,0r0,76r117,0r0,32","w":195},"\u00ca":{"d":"155,-261r-19,0r-32,-39r-31,39r-19,0r35,-58r31,0xm178,0r-152,0r0,-246r148,0r0,31r-113,0r0,75r110,0r0,32r-110,0r0,76r117,0r0,32","w":195},"\u011a":{"d":"153,-316r-35,54r-31,0r-34,-54r18,0r32,36r31,-36r19,0xm178,0r-152,0r0,-246r148,0r0,31r-113,0r0,75r110,0r0,32r-110,0r0,76r117,0r0,32","w":195},"\u00cb":{"d":"116,-297v0,-21,36,-23,35,0v0,10,-7,18,-17,18v-11,0,-18,-7,-18,-18xm49,-297v0,-21,36,-23,35,0v0,10,-7,18,-17,18v-11,0,-18,-7,-18,-18xm178,0r-152,0r0,-246r148,0r0,31r-113,0r0,75r110,0r0,32r-110,0r0,76r117,0r0,32","w":195},"\u0112":{"d":"148,-279r-91,0r0,-22r91,0r0,22xm178,0r-152,0r0,-246r148,0r0,31r-113,0r0,75r110,0r0,32r-110,0r0,76r117,0r0,32","w":195},"\u0114":{"d":"152,-312v-2,32,-19,47,-50,47v-31,0,-47,-15,-49,-47r15,0v2,17,13,25,34,25v21,0,32,-8,34,-25r16,0xm178,0r-152,0r0,-246r148,0r0,31r-113,0r0,75r110,0r0,32r-110,0r0,76r117,0r0,32","w":195},"\u0116":{"d":"102,-316v10,0,19,10,19,20v0,10,-9,19,-19,19v-10,0,-20,-8,-20,-19v-1,-10,10,-21,20,-20xm178,0r-152,0r0,-246r148,0r0,31r-113,0r0,75r110,0r0,32r-110,0r0,76r117,0r0,32","w":195},"\u0118":{"d":"171,63v-27,17,-72,10,-72,-25v0,-15,7,-27,23,-38r-96,0r0,-246r148,0r0,31r-113,0r0,75r110,0r0,32r-110,0r0,76r117,0r0,32v-28,-4,-49,5,-50,28v0,22,27,23,43,12r0,23","w":195},"\u011c":{"d":"197,-259r-18,0r-32,-39r-31,39r-19,0r34,-58r32,0xm50,-123v-1,71,79,117,149,83r0,-48r-46,0r0,-33r83,0r0,104v-102,51,-223,5,-223,-107v-1,-103,124,-159,221,-106r0,38v-75,-51,-183,-21,-184,69","w":254},"\u011e":{"d":"200,-312v-3,32,-20,47,-50,47v-31,0,-48,-15,-50,-47r16,0v2,17,13,25,34,25v21,0,32,-8,34,-25r16,0xm50,-123v-1,71,79,117,149,83r0,-48r-46,0r0,-33r83,0r0,104v-102,51,-223,5,-223,-107v-1,-103,124,-159,221,-106r0,38v-75,-51,-183,-21,-184,69","w":254},"\u0120":{"d":"146,-316v10,0,20,9,20,19v0,11,-10,19,-20,19v-11,0,-20,-8,-19,-19v0,-9,10,-19,19,-19xm50,-123v-1,71,79,117,149,83r0,-48r-46,0r0,-33r83,0r0,104v-102,51,-223,5,-223,-107v-1,-103,124,-159,221,-106r0,38v-75,-51,-183,-21,-184,69","w":254},"\u0122":{"d":"50,-123v-1,71,79,117,149,83r0,-48r-46,0r0,-33r83,0r0,104v-102,51,-223,5,-223,-107v-1,-103,124,-159,221,-106r0,38v-75,-51,-183,-21,-184,69xm148,12v16,0,23,15,23,33v0,26,-14,44,-42,53v3,-17,17,-22,14,-44v-23,-8,-19,-42,5,-42","w":254},"\u0124":{"d":"184,-258r-19,0r-31,-39r-32,39r-18,0r34,-58r31,0xm238,0r-35,0r0,-107r-142,0r0,107r-35,0r0,-246r35,0r0,106r142,0r0,-106r35,0r0,246","w":264},"\u0126":{"d":"264,-194r-26,0r0,194r-35,0r0,-107r-142,0r0,107r-35,0r0,-194r-26,0r0,-23r26,0r0,-29r35,0r0,29r142,0r0,-29r35,0r0,29r26,0r0,23xm203,-140r0,-54r-142,0r0,54r142,0","w":264},"\u00cc":{"d":"58,-270r-25,0r-34,-46r33,0xm63,0r-36,0r0,-246r36,0r0,246","w":90},"\u00cd":{"d":"90,-316r-33,46r-26,0r26,-46r33,0xm63,0r-36,0r0,-246r36,0r0,246","w":90},"\u012c":{"d":"97,-312v-2,32,-19,48,-50,48v-31,0,-48,-16,-50,-48r16,0v2,17,13,25,34,25v21,0,32,-8,34,-25r16,0xm63,0r-36,0r0,-246r36,0r0,246","w":90},"\u00ce":{"d":"95,-261r-19,0r-31,-39r-32,39r-19,0r35,-58r31,0xm63,0r-36,0r0,-246r36,0r0,246","w":90},"\u0128":{"d":"99,-316v-8,40,-38,37,-70,26v-8,0,-14,4,-17,11r-16,0v6,-38,40,-35,70,-24v8,0,14,-5,17,-13r16,0xm63,0r-36,0r0,-246r36,0r0,246","w":90},"\u00cf":{"d":"78,-314v10,0,18,7,18,17v0,11,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,7,-17,17,-17xm12,-314v10,0,17,7,17,17v0,10,-7,18,-17,18v-11,0,-18,-7,-18,-18v0,-10,8,-17,18,-17xm63,0r-36,0r0,-246r36,0r0,246","w":90},"\u012a":{"d":"90,-280r-90,0r0,-22r90,0r0,22xm63,0r-36,0r0,-246r36,0r0,246","w":90},"\u0130":{"d":"46,-316v10,0,19,10,19,19v0,10,-9,19,-19,19v-11,0,-19,-8,-19,-19v0,-10,10,-19,19,-19xm63,0r-36,0r0,-246r36,0r0,246","w":90},"\u012e":{"d":"85,63v-27,17,-72,10,-72,-25v0,-15,7,-27,23,-38r-9,0r0,-246r36,0r0,246v-14,9,-21,18,-21,28v0,22,27,23,43,12r0,23","w":90},"\u0134":{"d":"95,-259r-18,0r-32,-39r-31,39r-19,0r35,-57r31,0xm-22,50v38,1,50,-9,50,-47r0,-249r35,0r0,240v3,64,-18,88,-77,89","w":90},"\u0136":{"d":"230,0r-49,0r-118,-122r0,122r-36,0r0,-246r36,0r0,111r102,-111r45,0r-107,115xm111,12v16,0,24,16,24,33v0,26,-14,44,-42,53v3,-17,17,-22,14,-44v-23,-7,-20,-41,4,-42","w":219},"\u0139":{"d":"93,-316r-33,46r-26,0r26,-46r33,0xm179,0r-152,0r0,-246r35,0r0,214r117,0r0,32"},"\u013d":{"d":"126,-229r-34,47r-25,0r26,-47r33,0xm179,0r-152,0r0,-246r35,0r0,214r117,0r0,32"},"\u013b":{"d":"179,0r-152,0r0,-246r35,0r0,214r117,0r0,32xm100,12v16,0,23,15,23,33v0,26,-14,44,-42,53v3,-17,17,-22,14,-44v-22,-8,-18,-41,5,-42"},"\u0141":{"d":"182,0r-152,0r0,-101r-18,12r0,-32r18,-13r0,-112r35,0r0,94r51,-34r0,32r-51,34r0,88r117,0r0,32","w":184,"k":{"y":13,"Y":27,"W":20,"V":20,"U":7,"T":20,"O":13,"-":7}},"\u013f":{"d":"118,-145v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-21v0,-11,10,-21,22,-21xm179,0r-152,0r0,-246r35,0r0,214r117,0r0,32"},"\u0143":{"d":"193,-316r-34,46r-25,0r25,-46r34,0xm254,0r-32,0r-161,-191r0,191r-35,0r0,-246r31,0r162,191r0,-191r35,0r0,246","w":280},"\u0147":{"d":"193,-316r-35,54r-31,0r-35,-54r19,0r32,36r31,-36r19,0xm254,0r-32,0r-161,-191r0,191r-35,0r0,-246r31,0r162,191r0,-191r35,0r0,246","w":280},"\u00d1":{"d":"198,-309v-8,40,-37,36,-70,26v-8,0,-14,4,-17,11r-15,0v7,-39,38,-34,70,-25v8,0,14,-4,17,-12r15,0xm254,0r-32,0r-161,-191r0,191r-35,0r0,-246r31,0r162,191r0,-191r35,0r0,246","w":280},"\u0145":{"d":"254,0r-32,0r-161,-191r0,191r-35,0r0,-246r31,0r162,191r0,-191r35,0r0,246xm138,12v16,0,23,15,23,33v0,26,-14,44,-42,53v3,-17,17,-22,14,-44v-23,-8,-19,-42,5,-42","w":280},"\u00d2":{"d":"175,-270r-26,0r-33,-46r33,0xm144,-250v71,0,131,58,131,128v0,70,-61,126,-131,126v-70,0,-131,-58,-131,-128v0,-69,62,-126,131,-126xm144,-29v51,0,94,-43,94,-94v0,-49,-43,-94,-94,-94v-49,0,-94,43,-94,94v0,50,44,94,94,94","w":288},"\u00d3":{"d":"183,-316r-34,46r-26,0r26,-46r34,0xm144,-250v71,0,131,58,131,128v0,70,-61,126,-131,126v-70,0,-131,-58,-131,-128v0,-69,62,-126,131,-126xm144,-29v51,0,94,-43,94,-94v0,-49,-43,-94,-94,-94v-49,0,-94,43,-94,94v0,50,44,94,94,94","w":288,"k":{"Y":13,"X":20,"V":7,"A":7,";":-7,":":-7,".":15,"-":-10,",":15}},"\u00d4":{"d":"195,-261r-19,0r-31,-39r-31,39r-19,0r35,-58r31,0xm144,-250v71,0,131,58,131,128v0,70,-61,126,-131,126v-70,0,-131,-58,-131,-128v0,-69,62,-126,131,-126xm144,-29v51,0,94,-43,94,-94v0,-49,-43,-94,-94,-94v-49,0,-94,43,-94,94v0,50,44,94,94,94","w":288},"\u00d5":{"d":"196,-309v-8,40,-38,36,-70,26v-8,0,-14,4,-17,11r-15,0v7,-39,38,-35,69,-25v8,0,14,-4,17,-12r16,0xm144,-250v71,0,131,58,131,128v0,70,-61,126,-131,126v-70,0,-131,-58,-131,-128v0,-69,62,-126,131,-126xm144,-29v51,0,94,-43,94,-94v0,-49,-43,-94,-94,-94v-49,0,-94,43,-94,94v0,50,44,94,94,94","w":288},"\u00d6":{"d":"178,-314v10,0,17,7,17,17v0,10,-7,18,-17,18v-10,0,-17,-8,-17,-18v0,-10,7,-17,17,-17xm111,-314v10,0,18,8,18,17v0,10,-8,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,7,-17,17,-17xm144,-250v71,0,131,58,131,128v0,70,-61,126,-131,126v-70,0,-131,-58,-131,-128v0,-69,62,-126,131,-126xm144,-29v51,0,94,-43,94,-94v0,-49,-43,-94,-94,-94v-49,0,-94,43,-94,94v0,50,44,94,94,94","w":288},"\u014c":{"d":"189,-280r-90,0r0,-22r90,0r0,22xm144,-250v71,0,131,58,131,128v0,70,-61,126,-131,126v-70,0,-131,-58,-131,-128v0,-69,62,-126,131,-126xm144,-29v51,0,94,-43,94,-94v0,-49,-43,-94,-94,-94v-49,0,-94,43,-94,94v0,50,44,94,94,94","w":288},"\u014e":{"d":"193,-312v-3,32,-19,48,-50,48v-31,0,-47,-16,-49,-48r15,0v2,17,13,25,34,25v21,0,32,-8,34,-25r16,0xm144,-250v71,0,131,58,131,128v0,70,-61,126,-131,126v-70,0,-131,-58,-131,-128v0,-69,62,-126,131,-126xm144,-29v51,0,94,-43,94,-94v0,-49,-43,-94,-94,-94v-49,0,-94,43,-94,94v0,50,44,94,94,94","w":288},"\u0150":{"d":"199,-316r-31,47r-15,0r19,-47r27,0xm151,-316r-29,47r-14,0r15,-47r28,0xm144,-250v71,0,131,58,131,128v0,70,-61,126,-131,126v-70,0,-131,-58,-131,-128v0,-69,62,-126,131,-126xm144,-29v51,0,94,-43,94,-94v0,-49,-43,-94,-94,-94v-49,0,-94,43,-94,94v0,50,44,94,94,94","w":288},"\u00d8":{"d":"41,-45v-71,-77,2,-205,102,-205v33,0,61,10,85,29r31,-30r19,18r-32,31v73,77,2,206,-101,206v-32,0,-60,-10,-86,-30r-34,33r-18,-18xm201,-196v-57,-52,-151,-1,-151,73v0,20,6,39,17,54xm85,-50v58,50,153,3,153,-75v0,-20,-7,-38,-19,-53","w":288,"k":{"\u201e":20,"\u201a":20,"\u201d":7,"\u2019":7,"\u00c5":7,"Y":13,"X":20,"V":7,"A":7,";":-7,":":-7,".":15,"-":-10,",":15}},"\u0152":{"d":"17,-123v0,-82,51,-123,146,-123r170,0r0,31r-113,0r0,75r110,0r0,32r-110,0r0,76r117,0r0,32r-173,0v-96,5,-147,-41,-147,-123xm54,-123v0,72,46,95,131,91r0,-183v-85,-5,-131,20,-131,92","w":354},"\u0154":{"d":"129,-316r-34,47r-26,0r26,-47r34,0xm26,-246v74,-2,150,-5,150,67v0,31,-15,52,-46,62v33,27,58,81,85,117r-43,0v-20,-29,-46,-76,-68,-98v-11,-11,-24,-13,-43,-12r0,110r-35,0r0,-246xm139,-178v0,-40,-38,-39,-78,-38r0,77v41,2,78,-2,78,-39","w":203},"\u0158":{"d":"137,-317r-34,54r-32,0r-34,-54r18,0r32,36r31,-36r19,0xm26,-246v74,-2,150,-5,150,67v0,31,-15,52,-46,62v33,27,58,81,85,117r-43,0v-20,-29,-46,-76,-68,-98v-11,-11,-24,-13,-43,-12r0,110r-35,0r0,-246xm139,-178v0,-40,-38,-39,-78,-38r0,77v41,2,78,-2,78,-39","w":203},"\u0156":{"d":"26,-246v74,-2,150,-5,150,67v0,31,-15,52,-46,62v33,27,58,81,85,117r-43,0v-20,-29,-46,-76,-68,-98v-11,-11,-24,-13,-43,-12r0,110r-35,0r0,-246xm106,12v16,0,24,16,24,33v0,26,-14,44,-42,53v0,-16,19,-22,14,-44v-23,-7,-20,-41,4,-42xm139,-178v0,-40,-38,-39,-78,-38r0,77v41,2,78,-2,78,-39","w":203},"\u015a":{"d":"128,-316r-34,46r-25,0r26,-46r33,0xm47,-189v13,53,106,54,106,129v0,67,-96,82,-139,41r0,-47v21,24,42,36,64,36v22,1,41,-10,39,-31v-7,-58,-104,-57,-104,-124v0,-63,81,-84,129,-49r0,40v-21,-17,-39,-25,-57,-25v-20,-1,-38,12,-38,30","w":165},"\u015c":{"d":"134,-258r-20,0r-31,-39r-31,39r-19,0r35,-58r31,0xm47,-189v13,53,106,54,106,129v0,67,-96,82,-139,41r0,-47v21,24,42,36,64,36v22,1,41,-10,39,-31v-7,-58,-104,-57,-104,-124v0,-63,81,-84,129,-49r0,40v-21,-17,-39,-25,-57,-25v-20,-1,-38,12,-38,30","w":165},"\u0160":{"d":"139,-317r-35,54r-31,0r-34,-54r18,0r32,36r31,-36r19,0xm47,-189v13,53,106,54,106,129v0,67,-96,82,-139,41r0,-47v21,24,42,36,64,36v22,1,41,-10,39,-31v-7,-58,-104,-57,-104,-124v0,-63,81,-84,129,-49r0,40v-21,-17,-39,-25,-57,-25v-20,-1,-38,12,-38,30","w":165},"\u015e":{"d":"47,-189v13,53,112,54,106,129v-3,37,-32,64,-71,64v1,5,-4,15,4,15v27,0,40,10,40,31v0,36,-50,37,-87,25r0,-16v19,4,33,7,43,7v14,0,21,-5,21,-15v0,-15,-17,-20,-33,-17r0,-30v-21,-2,-39,-9,-56,-23r0,-47v21,24,42,36,64,36v22,1,41,-10,39,-31v-7,-58,-104,-57,-104,-124v0,-63,81,-84,129,-49r0,40v-21,-17,-39,-25,-57,-25v-20,-1,-38,12,-38,30","w":165},"\u0218":{"d":"47,-189v13,53,106,54,106,129v0,67,-96,82,-139,41r0,-47v21,24,42,36,64,36v22,1,41,-10,39,-31v-7,-58,-104,-57,-104,-124v0,-63,81,-84,129,-49r0,40v-21,-17,-39,-25,-57,-25v-20,-1,-38,12,-38,30xm77,12v16,0,23,15,23,33v0,26,-14,44,-42,53v3,-17,17,-22,14,-44v-22,-8,-19,-43,5,-42","w":165},"\u0164":{"d":"160,-316r-34,54r-32,0r-34,-54r18,0r32,36r31,-36r19,0xm218,-214r-90,0r0,214r-35,0r0,-214r-90,0r0,-32r215,0r0,32","w":220},"\u0162":{"d":"218,-214r-90,0r0,214r-35,0r0,-214r-90,0r0,-32r215,0r0,32xm107,12v16,0,24,16,24,33v0,26,-14,44,-42,53v0,-16,17,-22,13,-44v-22,-8,-18,-41,5,-42","w":220},"\u021a":{"d":"218,-214r-90,0r0,214r-35,0r0,-214r-90,0r0,-32r215,0r0,32xm107,12v16,0,24,16,24,33v0,26,-14,44,-42,53v0,-16,17,-22,13,-44v-22,-8,-18,-41,5,-42","w":220},"\uf6c1":{"d":"218,-214r-90,0r0,233v28,-1,45,9,44,31v0,37,-51,37,-88,25r0,-16v19,4,33,7,43,7v14,0,22,-5,22,-15v0,-15,-18,-20,-34,-17r0,-34r-22,0r0,-214r-90,0r0,-32r215,0r0,32","w":220},"\u0166":{"d":"218,-214r-90,0r0,94r45,0r0,25r-45,0r0,95r-35,0r0,-95r-45,0r0,-25r45,0r0,-94r-90,0r0,-32r215,0r0,32","w":220},"\u00de":{"d":"61,-195v68,-5,124,8,124,70v0,62,-55,76,-124,70r0,55r-35,0r0,-246r35,0r0,51xm61,-86v43,0,87,5,87,-39v0,-40,-45,-40,-87,-38r0,77","w":195},"\u00d9":{"d":"156,-270r-26,0r-34,-46r34,0xm131,-29v40,1,71,-23,71,-60r0,-157r35,0r0,158v-1,56,-46,94,-106,92v-61,-2,-106,-32,-106,-107r0,-143r35,0r0,141v-6,55,28,74,71,76","w":261},"\u00da":{"d":"168,-316r-34,46r-25,0r26,-46r33,0xm131,-29v40,1,71,-23,71,-60r0,-157r35,0r0,158v-1,56,-46,94,-106,92v-61,-2,-106,-32,-106,-107r0,-143r35,0r0,141v-6,55,28,74,71,76","w":261},"\u00db":{"d":"183,-261r-19,0r-31,-39r-31,39r-20,0r35,-58r31,0xm131,-29v40,1,71,-23,71,-60r0,-157r35,0r0,158v-1,56,-46,94,-106,92v-61,-2,-106,-32,-106,-107r0,-143r35,0r0,141v-6,55,28,74,71,76","w":261},"\u0168":{"d":"181,-316v-8,40,-38,37,-70,26v-8,0,-14,4,-17,11r-16,0v6,-38,41,-35,70,-24v8,0,14,-5,17,-13r16,0xm131,-29v40,1,71,-23,71,-60r0,-157r35,0r0,158v-1,56,-46,94,-106,92v-61,-2,-106,-32,-106,-107r0,-143r35,0r0,141v-6,55,28,74,71,76","w":261},"\u00dc":{"d":"165,-314v10,0,17,7,17,17v0,10,-7,18,-17,18v-11,0,-18,-7,-18,-18v0,-10,8,-17,18,-17xm80,-297v0,-21,36,-23,35,0v0,10,-7,18,-17,18v-11,0,-18,-7,-18,-18xm131,-29v40,1,71,-23,71,-60r0,-157r35,0r0,158v-1,56,-46,94,-106,92v-61,-2,-106,-32,-106,-107r0,-143r35,0r0,141v-6,55,28,74,71,76","w":261},"\u016a":{"d":"178,-280r-91,0r0,-22r91,0r0,22xm131,-29v40,1,71,-23,71,-60r0,-157r35,0r0,158v-1,56,-46,94,-106,92v-61,-2,-106,-32,-106,-107r0,-143r35,0r0,141v-6,55,28,74,71,76","w":261},"\u016c":{"d":"183,-312v-2,32,-18,47,-49,47v-31,0,-48,-15,-50,-47r16,0v1,17,13,25,34,25v21,0,32,-8,33,-25r16,0xm131,-29v40,1,71,-23,71,-60r0,-157r35,0r0,158v-1,56,-46,94,-106,92v-61,-2,-106,-32,-106,-107r0,-143r35,0r0,141v-6,55,28,74,71,76","w":261},"\u016e":{"d":"135,-312v23,0,43,19,43,43v0,24,-19,44,-43,44v-24,0,-44,-20,-44,-44v0,-24,20,-43,44,-43xm131,-29v40,1,71,-23,71,-60r0,-157r35,0r0,158v-1,56,-46,94,-106,92v-61,-2,-106,-32,-106,-107r0,-143r35,0r0,141v-6,55,28,74,71,76xm135,-243v14,0,25,-11,25,-25v0,-14,-11,-25,-25,-25v-14,0,-25,11,-25,25v0,14,11,25,25,25","w":261},"\u0170":{"d":"183,-315r-31,46r-15,0r19,-46r27,0xm135,-315r-29,46r-15,0r16,-46r28,0xm131,-29v40,1,71,-23,71,-60r0,-157r35,0r0,158v-1,56,-46,94,-106,92v-61,-2,-106,-32,-106,-107r0,-143r35,0r0,141v-6,55,28,74,71,76","w":261},"\u0172":{"d":"131,-29v40,1,71,-23,71,-60r0,-157r35,0v-7,94,26,205,-50,238v-19,8,-28,22,-28,36v0,22,27,23,43,12r0,23v-27,18,-72,9,-72,-25v0,-13,6,-25,19,-35v-73,5,-124,-25,-124,-106r0,-143r35,0r0,141v-6,55,28,74,71,76","w":261},"\u0174":{"d":"218,-259r-19,0r-31,-38r-32,38r-18,0r34,-57r32,0xm341,-246r-92,248r-8,0r-74,-190r-74,190r-8,0r-91,-248r36,0r60,168r67,-168r22,0r65,168r62,-168r35,0","w":335},"\u00dd":{"d":"146,-316r-50,61r-18,0r36,-61r32,0xm220,-246r-99,125r0,121r-36,0r0,-123r-95,-123r42,0r72,93r73,-93r43,0","w":209},"\u0176":{"d":"153,-259r-18,0r-32,-38r-31,38r-19,0r34,-57r32,0xm220,-246r-99,125r0,121r-36,0r0,-123r-95,-123r42,0r72,93r73,-93r43,0","w":209},"\u0178":{"d":"121,-297v0,-21,36,-23,35,0v0,10,-7,18,-17,18v-11,0,-18,-7,-18,-18xm54,-297v0,-21,36,-23,35,0v0,10,-7,18,-17,18v-11,0,-18,-7,-18,-18xm220,-246r-99,125r0,121r-36,0r0,-123r-95,-123r42,0r72,93r73,-93r43,0","w":209},"\u0179":{"d":"157,-316r-34,46r-25,0r25,-46r34,0xm225,0r-222,0r161,-215r-150,0r0,-31r211,0r0,4r-159,212r159,0r0,30","w":229},"\u017d":{"d":"171,-317r-34,54r-32,0r-34,-54r19,0r31,36r32,-36r18,0xm225,0r-222,0r161,-215r-150,0r0,-31r211,0r0,4r-159,212r159,0r0,30","w":229},"\u017b":{"d":"112,-316v9,0,19,7,18,18v1,11,-9,18,-18,18v-10,0,-19,-8,-19,-18v0,-10,9,-18,19,-18xm225,0r-222,0r161,-215r-150,0r0,-31r211,0r0,4r-159,212r159,0r0,30","w":229,"k":{"-":7}},"\u00e0":{"d":"95,-182r-25,0r-34,-47r33,0xm13,-145v37,-33,129,-32,121,38r0,68v1,24,9,17,23,7r0,20v-16,15,-50,26,-55,-1v-31,26,-91,21,-94,-23v-3,-35,56,-55,92,-66v5,-48,-59,-38,-87,-11r0,-32xm100,-81v-30,11,-52,14,-57,39v0,29,41,24,57,9r0,-48","w":155},"\u00e1":{"d":"118,-229r-33,47r-26,0r26,-47r33,0xm13,-145v37,-33,129,-32,121,38r0,68v1,24,9,17,23,7r0,20v-16,15,-50,26,-55,-1v-31,26,-91,21,-94,-23v-3,-35,56,-55,92,-66v5,-48,-59,-38,-87,-11r0,-32xm100,-81v-30,11,-52,14,-57,39v0,29,41,24,57,9r0,-48","w":155},"\u00e2":{"d":"123,-171r-19,0r-31,-39r-32,39r-18,0r34,-58r32,0xm13,-145v37,-33,129,-32,121,38r0,68v1,24,9,17,23,7r0,20v-16,15,-50,26,-55,-1v-31,26,-91,21,-94,-23v-3,-35,56,-55,92,-66v5,-48,-59,-38,-87,-11r0,-32xm100,-81v-30,11,-52,14,-57,39v0,29,41,24,57,9r0,-48","w":155},"\u00e3":{"d":"127,-221v-8,39,-38,35,-70,26v-8,0,-14,4,-17,11r-15,0v6,-38,40,-36,70,-25v8,0,14,-4,17,-12r15,0xm13,-145v37,-33,129,-32,121,38r0,68v1,24,9,17,23,7r0,20v-16,15,-50,26,-55,-1v-31,26,-91,21,-94,-23v-3,-35,56,-55,92,-66v5,-48,-59,-38,-87,-11r0,-32xm100,-81v-30,11,-52,14,-57,39v0,29,41,24,57,9r0,-48","w":155},"\u00e4":{"d":"110,-230v10,0,17,8,17,18v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18xm43,-230v10,0,17,8,17,18v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18xm13,-145v37,-33,129,-32,121,38r0,68v1,24,9,17,23,7r0,20v-16,15,-50,26,-55,-1v-31,26,-91,21,-94,-23v-3,-35,56,-55,92,-66v5,-48,-59,-38,-87,-11r0,-32xm100,-81v-30,11,-52,14,-57,39v0,29,41,24,57,9r0,-48","w":155},"\u0101":{"d":"118,-202r-90,0r0,-22r90,0r0,22xm13,-145v37,-33,129,-32,121,38r0,68v1,24,9,17,23,7r0,20v-16,15,-50,26,-55,-1v-31,26,-91,21,-94,-23v-3,-35,56,-55,92,-66v5,-48,-59,-38,-87,-11r0,-32xm100,-81v-30,11,-52,14,-57,39v0,29,41,24,57,9r0,-48","w":155},"\u0103":{"d":"126,-225v-2,32,-18,48,-49,48v-31,0,-48,-16,-50,-48r16,0v1,17,13,26,34,26v21,0,33,-9,34,-26r15,0xm13,-145v37,-33,129,-32,121,38r0,68v1,24,9,17,23,7r0,20v-16,15,-50,26,-55,-1v-31,26,-91,21,-94,-23v-3,-35,56,-55,92,-66v5,-48,-59,-38,-87,-11r0,-32xm100,-81v-30,11,-52,14,-57,39v0,29,41,24,57,9r0,-48","w":155},"\u00e5":{"d":"76,-265v23,0,44,20,44,44v0,24,-21,43,-44,43v-24,0,-43,-19,-43,-43v0,-24,19,-44,43,-44xm13,-145v37,-33,129,-32,121,38r0,68v1,24,9,17,23,7r0,20v-16,15,-50,26,-55,-1v-31,26,-91,21,-94,-23v-3,-35,56,-55,92,-66v5,-48,-59,-38,-87,-11r0,-32xm77,-196v14,0,25,-12,25,-25v0,-13,-11,-25,-25,-25v-14,0,-26,12,-26,25v0,13,12,25,26,25xm100,-81v-30,11,-52,14,-57,39v0,29,41,24,57,9r0,-48","w":155},"\u0105":{"d":"157,-12v-10,8,-41,21,-37,40v0,22,27,23,43,12r0,23v-27,17,-72,10,-72,-25v0,-14,7,-26,21,-36v-6,-2,-9,-7,-10,-15v-31,26,-91,21,-94,-23v-3,-35,56,-55,92,-66v5,-48,-59,-38,-87,-11r0,-32v37,-33,129,-32,121,38r0,68v1,24,9,17,23,7r0,20xm100,-81v-30,11,-52,14,-57,39v0,29,41,24,57,9r0,-48","w":155},"\u00e6":{"d":"126,-144v50,-48,144,-13,132,68r-121,0v5,60,74,60,119,26r0,33v-41,28,-103,30,-135,-7v-25,19,-47,28,-66,28v-27,1,-46,-16,-46,-41v0,-31,30,-51,91,-62v8,-53,-59,-41,-87,-14r0,-32v29,-25,89,-31,113,1xm223,-99v-1,-23,-18,-40,-41,-40v-25,0,-40,14,-45,40r86,0xm100,-33r0,-45v-38,6,-57,18,-57,36v0,29,41,24,57,9","w":268},"\u0107":{"d":"133,-229r-34,47r-25,0r26,-47r33,0xm44,-81v0,52,63,67,104,42r0,34v-67,26,-138,-10,-138,-76v0,-65,73,-105,135,-75r0,35v-40,-29,-101,-11,-101,40","w":158},"\u0109":{"d":"147,-171r-19,0r-31,-39r-32,39r-19,0r35,-58r31,0xm44,-81v0,52,63,67,104,42r0,34v-67,26,-138,-10,-138,-76v0,-65,73,-105,135,-75r0,35v-40,-29,-101,-11,-101,40","w":158},"\u010d":{"d":"149,-225r-35,54r-31,0r-35,-54r19,0r32,36r31,-36r19,0xm44,-81v0,52,63,67,104,42r0,34v-67,26,-138,-10,-138,-76v0,-65,73,-105,135,-75r0,35v-40,-29,-101,-11,-101,40","w":158},"\u010b":{"d":"97,-229v10,-1,21,10,20,20v0,10,-10,19,-20,19v-11,1,-19,-9,-19,-19v0,-10,9,-20,19,-20xm44,-81v0,52,63,67,104,42r0,34v-67,26,-138,-10,-138,-76v0,-65,73,-105,135,-75r0,35v-40,-29,-101,-11,-101,40","w":158},"\u00e7":{"d":"44,-81v0,52,63,67,104,42r0,34v-67,26,-138,-10,-138,-76v0,-65,73,-105,135,-75r0,35v-40,-29,-101,-11,-101,40xm142,50v0,37,-51,37,-88,25r0,-16v19,4,34,7,44,7v14,0,21,-5,21,-15v0,-15,-17,-20,-33,-17r0,-34r12,0r0,19v28,-1,45,9,44,31","w":158},"\u010f":{"d":"229,-229r-34,47r-25,0r25,-47r34,0xm11,-81v0,-65,67,-108,121,-72r0,-93r33,0r0,246r-33,0r0,-9v-54,34,-121,-8,-121,-72xm45,-82v0,48,50,72,87,46r0,-91v-35,-28,-87,-3,-87,45","w":207},"\u0111":{"d":"11,-81v0,-64,67,-108,121,-72r0,-41r-52,0r0,-23r52,0r0,-29r33,0r0,29r27,0r0,23r-27,0r0,194r-33,0r0,-9v-54,34,-121,-9,-121,-72xm45,-82v0,49,50,73,87,46r0,-91v-36,-28,-87,-4,-87,45","w":187},"\u00f0":{"d":"10,-78v0,-66,94,-110,140,-56v-3,-22,-11,-42,-24,-59r-55,16r-7,-20r47,-14v-9,-9,-19,-16,-29,-23r20,-16v14,7,28,18,40,30r41,-11r8,19r-34,10v48,66,38,205,-61,205v-45,0,-86,-37,-86,-81xm96,-27v28,0,52,-23,52,-50v0,-27,-24,-50,-52,-50v-28,0,-52,23,-52,50v0,27,24,50,52,50","w":192},"\u00e8":{"d":"109,-182r-25,0r-34,-47r33,0xm90,-166v49,0,78,37,76,90r-122,0v4,61,76,59,119,26r0,33v-61,44,-153,16,-153,-67v0,-47,33,-83,80,-82xm130,-99v0,-23,-19,-39,-41,-39v-25,0,-40,13,-45,39r86,0","w":175,"k":{"-":7}},"\u00e9":{"d":"134,-229r-34,47r-25,0r25,-47r34,0xm90,-166v49,0,78,37,76,90r-122,0v4,61,76,59,119,26r0,33v-61,44,-153,16,-153,-67v0,-47,33,-83,80,-82xm130,-99v0,-23,-19,-39,-41,-39v-25,0,-40,13,-45,39r86,0","w":175},"\u00ea":{"d":"140,-171r-19,0r-31,-39r-32,39r-18,0r34,-58r31,0xm90,-166v49,0,78,37,76,90r-122,0v4,61,76,59,119,26r0,33v-61,44,-153,16,-153,-67v0,-47,33,-83,80,-82xm130,-99v0,-23,-19,-39,-41,-39v-25,0,-40,13,-45,39r86,0","w":175},"\u011b":{"d":"139,-225r-34,54r-32,0r-34,-54r19,0r31,36r32,-36r18,0xm90,-166v49,0,78,37,76,90r-122,0v4,61,76,59,119,26r0,33v-61,44,-153,16,-153,-67v0,-47,33,-83,80,-82xm130,-99v0,-23,-19,-39,-41,-39v-25,0,-40,13,-45,39r86,0","w":175},"\u00eb":{"d":"121,-230v11,0,18,7,18,18v0,10,-8,17,-18,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18xm54,-230v11,0,18,7,18,18v0,10,-8,17,-18,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18xm90,-166v49,0,78,37,76,90r-122,0v4,61,76,59,119,26r0,33v-61,44,-153,16,-153,-67v0,-47,33,-83,80,-82xm130,-99v0,-23,-19,-39,-41,-39v-25,0,-40,13,-45,39r86,0","w":175},"\u0113":{"d":"138,-202r-90,0r0,-22r90,0r0,22xm90,-166v49,0,78,37,76,90r-122,0v4,61,76,59,119,26r0,33v-61,44,-153,16,-153,-67v0,-47,33,-83,80,-82xm130,-99v0,-23,-19,-39,-41,-39v-25,0,-40,13,-45,39r86,0","w":175},"\u0115":{"d":"142,-225v-2,32,-18,48,-49,48v-31,0,-48,-16,-50,-48r16,0v1,17,13,26,34,26v21,0,32,-9,33,-26r16,0xm90,-166v49,0,78,37,76,90r-122,0v4,61,76,59,119,26r0,33v-61,44,-153,16,-153,-67v0,-47,33,-83,80,-82xm130,-99v0,-23,-19,-39,-41,-39v-25,0,-40,13,-45,39r86,0","w":175},"\u0117":{"d":"89,-229v10,-1,21,10,20,20v0,10,-10,19,-20,19v-11,1,-19,-9,-19,-19v0,-10,9,-20,19,-20xm90,-166v49,0,78,37,76,90r-122,0v4,61,76,59,119,26r0,33v-61,44,-153,16,-153,-67v0,-47,33,-83,80,-82xm130,-99v0,-23,-19,-39,-41,-39v-25,0,-40,13,-45,39r86,0","w":175},"\u0119":{"d":"90,-166v49,0,78,37,76,90r-122,0v4,61,76,59,119,26r0,33v-15,8,-47,25,-43,45v0,22,27,23,43,12r0,23v-27,17,-72,10,-72,-25v0,-13,7,-25,20,-35v-62,9,-101,-30,-101,-87v0,-47,33,-83,80,-82xm130,-99v0,-23,-19,-39,-41,-39v-25,0,-40,13,-45,39r86,0","w":175},"\u011d":{"d":"134,-171r-19,0r-31,-39r-32,39r-19,0r35,-58r31,0xm158,31v0,34,-26,51,-80,51v-89,0,-107,-79,-33,-93v-25,-12,-24,-31,4,-41v-25,-8,-37,-25,-37,-51v0,-62,77,-62,145,-59r0,26r-27,0v30,31,2,86,-33,86v-20,0,-57,13,-25,27v2,1,15,3,39,8v32,6,47,22,47,46xm78,-74v21,0,34,-11,34,-30v0,-19,-15,-31,-34,-31v-19,0,-34,12,-34,31v0,20,11,30,34,30xm68,9v-18,0,-37,6,-38,21v0,16,16,24,47,24v32,0,49,-7,49,-22v0,-15,-19,-23,-58,-23","w":160},"\u011f":{"d":"136,-225v-2,32,-19,48,-50,48v-31,0,-48,-16,-50,-48r16,0v1,17,13,26,34,26v21,0,33,-9,34,-26r16,0xm158,31v0,34,-26,51,-80,51v-89,0,-107,-79,-33,-93v-25,-12,-24,-31,4,-41v-25,-8,-37,-25,-37,-51v0,-62,77,-62,145,-59r0,26r-27,0v30,31,2,86,-33,86v-20,0,-57,13,-25,27v2,1,15,3,39,8v32,6,47,22,47,46xm78,-74v21,0,34,-11,34,-30v0,-19,-15,-31,-34,-31v-19,0,-34,12,-34,31v0,20,11,30,34,30xm68,9v-18,0,-37,6,-38,21v0,16,16,24,47,24v32,0,49,-7,49,-22v0,-15,-19,-23,-58,-23","w":160},"\u0121":{"d":"83,-229v10,0,19,10,19,20v0,9,-10,19,-19,19v-11,1,-19,-8,-19,-19v0,-10,9,-20,19,-20xm158,31v0,34,-26,51,-80,51v-89,0,-107,-79,-33,-93v-25,-12,-24,-31,4,-41v-25,-8,-37,-25,-37,-51v0,-62,77,-62,145,-59r0,26r-27,0v30,31,2,86,-33,86v-20,0,-57,13,-25,27v2,1,15,3,39,8v32,6,47,22,47,46xm78,-74v21,0,34,-11,34,-30v0,-19,-15,-31,-34,-31v-19,0,-34,12,-34,31v0,20,11,30,34,30xm68,9v-18,0,-37,6,-38,21v0,16,16,24,47,24v32,0,49,-7,49,-22v0,-15,-19,-23,-58,-23","w":160},"\u0123":{"d":"84,-175v-16,0,-25,-15,-24,-33v0,-26,14,-44,42,-53v-3,17,-17,22,-14,44v23,7,20,41,-4,42xm158,31v0,34,-26,51,-80,51v-89,0,-107,-79,-33,-93v-25,-12,-24,-31,4,-41v-25,-8,-37,-25,-37,-51v0,-62,77,-62,145,-59r0,26r-27,0v30,31,2,86,-33,86v-20,0,-57,13,-25,27v2,1,15,3,39,8v32,6,47,22,47,46xm78,-74v21,0,34,-11,34,-30v0,-19,-15,-31,-34,-31v-19,0,-34,12,-34,31v0,20,11,30,34,30xm68,9v-18,0,-37,6,-38,21v0,16,16,24,47,24v32,0,49,-7,49,-22v0,-15,-19,-23,-58,-23","w":160},"\u0125":{"d":"87,-258r-18,0r-32,-39r-31,39r-19,0r35,-58r31,0xm54,-143v35,-39,107,-25,107,35r0,108r-33,0v-6,-50,21,-138,-34,-138v-16,0,-29,7,-40,21r0,117r-33,0r0,-246r33,0r0,103","w":180},"\u0127":{"d":"54,-143v35,-39,107,-25,107,35r0,108r-33,0v-6,-50,21,-138,-34,-138v-16,0,-29,7,-40,21r0,117r-33,0r0,-194r-22,0r0,-23r22,0r0,-29r33,0r0,29r57,0r0,23r-57,0r0,51","w":180},"\u0131":{"d":"54,0r-32,0r0,-162r32,0r0,162","w":75},"\u00ec":{"d":"52,-182r-26,0r-33,-47r33,0xm54,0r-32,0r0,-162r32,0r0,162","w":75},"\u00ed":{"d":"83,-229r-33,47r-26,0r26,-47r33,0xm54,0r-32,0r0,-162r32,0r0,162","w":75},"\u012d":{"d":"90,-225v-2,32,-19,48,-50,48v-31,0,-47,-16,-49,-48r15,0v1,17,13,26,34,26v21,0,33,-9,34,-26r16,0xm54,0r-32,0r0,-162r32,0r0,162","w":75},"\u00ee":{"d":"90,-171r-19,0r-31,-39r-32,39r-19,0r35,-58r31,0xm54,0r-32,0r0,-162r32,0r0,162","w":75},"\u0129":{"d":"88,-221v-8,39,-38,35,-70,26v-8,0,-14,4,-17,11r-15,0v6,-38,40,-36,70,-25v8,0,14,-4,17,-12r15,0xm54,0r-32,0r0,-162r32,0r0,162","w":75},"\u00ef":{"d":"72,-230v10,0,17,8,17,18v0,10,-7,17,-17,17v-10,0,-18,-7,-18,-17v1,-10,8,-18,18,-18xm5,-230v10,0,17,8,17,18v0,10,-7,17,-17,17v-10,0,-18,-7,-18,-17v1,-10,8,-18,18,-18xm54,0r-32,0r0,-162r32,0r0,162","w":75},"\u012b":{"d":"85,-202r-91,0r0,-22r91,0r0,22xm54,0r-32,0r0,-162r32,0r0,162","w":75},"\u012f":{"d":"38,-229v9,0,18,8,18,19v0,11,-9,18,-18,18v-10,0,-19,-8,-19,-18v0,-10,10,-19,19,-19xm76,63v-27,18,-72,9,-72,-25v0,-15,8,-27,24,-38r-6,0r0,-162r32,0r0,162v-14,9,-21,18,-21,28v0,22,27,23,43,12r0,23","w":75},"\u0135":{"d":"89,-171r-19,0r-31,-39r-32,39r-19,0r35,-58r31,0xm0,59v15,-7,21,-17,22,-37r0,-184r33,0v-4,72,11,163,-8,221v-3,11,-14,17,-27,23","w":76},"\u0137":{"d":"179,0r-45,0r-79,-86r70,-76r40,0r-68,74xm54,0r-32,0r0,-246r32,0r0,246xm90,12v16,0,23,15,23,33v0,26,-14,44,-42,53v3,-17,17,-22,14,-44v-23,-8,-19,-42,5,-42","w":173},"\u013a":{"d":"84,-316r-34,46r-25,0r26,-46r33,0xm54,0r-32,0r0,-246r32,0r0,246","w":75},"\u013e":{"d":"118,-229r-33,47r-26,0r26,-47r33,0xm54,0r-32,0r0,-246r32,0r0,246","w":85},"\u013c":{"d":"54,0r-32,0r0,-246r32,0r0,246xm38,12v16,0,24,16,24,33v0,26,-15,44,-43,53v3,-17,17,-22,14,-44v-22,-8,-18,-41,5,-42","w":75},"\u0142":{"d":"79,-158r-20,14r0,144r-32,0r0,-124r-17,12r0,-30r17,-12r0,-92r32,0r0,72r20,-14r0,30","w":86},"\u0140":{"d":"81,-145v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-21v0,-11,10,-21,22,-21xm54,0r-32,0r0,-246r32,0r0,246","w":106},"\u0144":{"d":"131,-229r-34,47r-25,0r26,-47r33,0xm53,-143v35,-39,107,-25,107,35r0,108r-33,0v-6,-50,21,-138,-34,-138v-16,0,-29,7,-40,21r0,117r-32,0r0,-162r32,0r0,19","w":179},"\u0148":{"d":"137,-225r-34,54r-32,0r-34,-54r18,0r32,36r31,-36r19,0xm53,-143v35,-39,107,-25,107,35r0,108r-33,0v-6,-50,21,-138,-34,-138v-16,0,-29,7,-40,21r0,117r-32,0r0,-162r32,0r0,19","w":179},"\u00f1":{"d":"138,-221v-8,39,-38,35,-70,26v-8,0,-14,4,-17,11r-15,0v6,-38,39,-37,69,-25v8,0,14,-4,17,-12r16,0xm53,-143v35,-39,107,-25,107,35r0,108r-33,0v-6,-50,21,-138,-34,-138v-16,0,-29,7,-40,21r0,117r-32,0r0,-162r32,0r0,19","w":179},"\u0146":{"d":"53,-143v35,-39,107,-25,107,35r0,108r-33,0v-6,-50,21,-138,-34,-138v-16,0,-29,7,-40,21r0,117r-32,0r0,-162r32,0r0,19xm90,12v16,0,24,16,24,33v0,26,-14,44,-42,53v3,-17,17,-22,14,-44v-23,-7,-20,-41,4,-42","w":179},"\u00f2":{"d":"123,-182r-26,0r-33,-47r33,0xm96,-166v46,0,87,40,87,85v0,47,-40,84,-87,84v-46,0,-86,-37,-86,-84v0,-47,40,-85,86,-85xm96,-27v28,0,52,-26,52,-54v0,-30,-24,-54,-52,-54v-28,0,-52,25,-52,54v0,30,24,54,52,54","w":192},"\u00f3":{"d":"138,-229r-33,47r-26,0r26,-47r33,0xm96,-166v46,0,87,40,87,85v0,47,-40,84,-87,84v-46,0,-86,-37,-86,-84v0,-47,40,-85,86,-85xm96,-27v28,0,52,-26,52,-54v0,-30,-24,-54,-52,-54v-28,0,-52,25,-52,54v0,30,24,54,52,54","w":192,"k":{"-":-7}},"\u00f4":{"d":"147,-171r-19,0r-31,-39r-32,39r-19,0r35,-58r31,0xm96,-166v46,0,87,40,87,85v0,47,-40,84,-87,84v-46,0,-86,-37,-86,-84v0,-47,40,-85,86,-85xm96,-27v28,0,52,-26,52,-54v0,-30,-24,-54,-52,-54v-28,0,-52,25,-52,54v0,30,24,54,52,54","w":192},"\u00f5":{"d":"148,-221v-8,39,-38,35,-70,26v-8,0,-14,4,-17,11r-15,0v6,-38,40,-36,70,-25v8,0,13,-4,16,-12r16,0xm96,-166v46,0,87,40,87,85v0,47,-40,84,-87,84v-46,0,-86,-37,-86,-84v0,-47,40,-85,86,-85xm96,-27v28,0,52,-26,52,-54v0,-30,-24,-54,-52,-54v-28,0,-52,25,-52,54v0,30,24,54,52,54","w":192},"\u00f6":{"d":"130,-230v10,0,17,8,18,18v0,21,-36,23,-35,0v0,-10,7,-18,17,-18xm63,-230v10,0,17,8,18,18v0,21,-36,23,-35,0v0,-10,7,-18,17,-18xm96,-166v46,0,87,40,87,85v0,47,-40,84,-87,84v-46,0,-86,-37,-86,-84v0,-47,40,-85,86,-85xm96,-27v28,0,52,-26,52,-54v0,-30,-24,-54,-52,-54v-28,0,-52,25,-52,54v0,30,24,54,52,54","w":192},"\u014d":{"d":"143,-202r-91,0r0,-22r91,0r0,22xm96,-166v46,0,87,40,87,85v0,47,-40,84,-87,84v-46,0,-86,-37,-86,-84v0,-47,40,-85,86,-85xm96,-27v28,0,52,-26,52,-54v0,-30,-24,-54,-52,-54v-28,0,-52,25,-52,54v0,30,24,54,52,54","w":192},"\u014f":{"d":"148,-225v-2,32,-19,48,-50,48v-31,0,-48,-16,-50,-48r16,0v1,17,13,26,34,26v21,0,33,-9,34,-26r16,0xm96,-166v46,0,87,40,87,85v0,47,-40,84,-87,84v-46,0,-86,-37,-86,-84v0,-47,40,-85,86,-85xm96,-27v28,0,52,-26,52,-54v0,-30,-24,-54,-52,-54v-28,0,-52,25,-52,54v0,30,24,54,52,54","w":192},"\u0151":{"d":"155,-229r-32,47r-15,0r19,-47r28,0xm106,-229r-28,47r-15,0r15,-47r28,0xm96,-166v46,0,87,40,87,85v0,47,-40,84,-87,84v-46,0,-86,-37,-86,-84v0,-47,40,-85,86,-85xm96,-27v28,0,52,-26,52,-54v0,-30,-24,-54,-52,-54v-28,0,-52,25,-52,54v0,30,24,54,52,54","w":192},"\u00f8":{"d":"28,-29v-45,-55,0,-137,69,-137v22,0,39,6,52,18r21,-19r15,16r-20,20v61,71,-41,176,-120,118r-22,21r-16,-18xm127,-124v-41,-36,-108,22,-75,72xm67,-37v42,34,105,-24,74,-71","w":192,"k":{"\u201c":13,"\u2018":13,"-":-7}},"\u0153":{"d":"163,-134v42,-61,155,-30,141,58r-121,0v5,60,74,60,118,26r0,33v-43,29,-108,29,-137,-13v-47,64,-154,27,-154,-51v0,-78,110,-116,153,-53xm269,-99v-1,-23,-18,-40,-41,-40v-25,0,-40,14,-45,40r86,0xm96,-27v28,0,52,-26,52,-54v0,-30,-24,-54,-52,-54v-28,0,-52,25,-52,54v0,30,24,54,52,54","w":314},"\u0155":{"d":"98,-229r-33,47r-26,0r26,-47r33,0xm138,-149r-17,28v-29,-25,-68,-15,-68,29r0,92r-32,0r0,-162r32,0r0,35v26,-40,49,-50,85,-22","w":135},"\u0157":{"d":"138,-149r-17,28v-29,-25,-68,-15,-68,29r0,92r-32,0r0,-162r32,0r0,35v26,-40,49,-50,85,-22xm37,12v16,0,24,16,24,33v0,26,-14,44,-42,53v0,-16,17,-22,13,-44v-22,-8,-18,-41,5,-42","w":135},"\u0159":{"d":"107,-225r-34,54r-32,0r-34,-54r19,0r31,36r32,-36r18,0xm138,-149r-17,28v-29,-25,-68,-15,-68,29r0,92r-32,0r0,-162r32,0r0,35v26,-40,49,-50,85,-22","w":135},"\u015b":{"d":"108,-229r-34,47r-25,0r26,-47r33,0xm45,-123v10,34,80,31,80,79v0,52,-75,58,-115,33r0,-35v20,13,38,20,53,20v29,0,35,-21,16,-32v-27,-16,-67,-25,-67,-64v0,-49,69,-54,105,-31r0,32v-19,-11,-36,-16,-50,-16v-14,0,-22,5,-22,14","w":135},"\u015d":{"d":"118,-171r-19,0r-31,-39r-32,39r-18,0r34,-58r32,0xm45,-123v10,34,80,31,80,79v0,52,-75,58,-115,33r0,-35v20,13,38,20,53,20v29,0,35,-21,16,-32v-27,-16,-67,-25,-67,-64v0,-49,69,-54,105,-31r0,32v-19,-11,-36,-16,-50,-16v-14,0,-22,5,-22,14","w":135},"\u0161":{"d":"119,-225r-35,54r-31,0r-35,-54r19,0r32,36r31,-36r19,0xm45,-123v10,34,80,31,80,79v0,52,-75,58,-115,33r0,-35v20,13,38,20,53,20v29,0,35,-21,16,-32v-27,-16,-67,-25,-67,-64v0,-49,69,-54,105,-31r0,32v-19,-11,-36,-16,-50,-16v-14,0,-22,5,-22,14","w":135},"\u015f":{"d":"45,-123v10,34,80,31,80,79v0,29,-24,48,-56,47r0,16v28,-1,45,9,44,31v0,37,-51,37,-88,25r0,-16v19,4,34,7,44,7v14,0,21,-5,21,-15v0,-15,-17,-20,-33,-17r0,-31v-16,-1,-32,-6,-47,-14r0,-35v20,13,38,20,53,20v29,0,35,-21,16,-32v-27,-16,-67,-25,-67,-64v0,-49,69,-54,105,-31r0,32v-19,-11,-36,-16,-50,-16v-14,0,-22,5,-22,14","w":135},"\u0219":{"d":"45,-123v10,34,80,31,80,79v0,52,-75,58,-115,33r0,-35v20,13,38,20,53,20v29,0,35,-21,16,-32v-27,-16,-67,-25,-67,-64v0,-49,69,-54,105,-31r0,32v-19,-11,-36,-16,-50,-16v-14,0,-22,5,-22,14xm64,12v16,0,24,16,24,33v0,26,-14,44,-42,53v0,-16,17,-22,13,-44v-22,-8,-18,-41,5,-42","w":135},"\u00df":{"d":"90,-250v68,0,91,90,34,113v79,26,44,165,-44,139r0,-33v31,13,54,-9,54,-40v0,-32,-17,-49,-52,-50v1,-9,-2,-21,1,-28v27,0,41,-13,41,-37v1,-23,-15,-39,-37,-39v-20,1,-34,15,-34,36r0,189r-33,0r0,-183v0,-43,27,-67,70,-67","w":180,"k":{"\u201c":7,"\u2018":7,"-":-13}},"\u0165":{"d":"128,-229r-34,47r-25,0r26,-47r33,0xm58,-60v-7,39,30,36,52,24r0,31v-41,19,-84,7,-84,-52r0,-77r-28,0r0,-4r57,-62r3,0r0,38r51,0r0,28r-51,0r0,74","w":119},"\u0163":{"d":"58,-60v-7,39,30,36,52,24r0,31v-41,19,-84,7,-84,-52r0,-77r-28,0r0,-4r57,-62r3,0r0,38r51,0r0,28r-51,0r0,74xm55,12v16,0,23,15,23,33v0,26,-14,44,-42,53v3,-17,17,-22,14,-44v-22,-8,-19,-43,5,-42","w":115},"\u021b":{"d":"58,-60v-7,39,30,36,52,24r0,31v-41,19,-84,7,-84,-52r0,-77r-28,0r0,-4r57,-62r3,0r0,38r51,0r0,28r-51,0r0,74xm55,12v16,0,23,15,23,33v0,26,-14,44,-42,53v3,-17,17,-22,14,-44v-22,-8,-19,-43,5,-42","w":115},"\uf6c2":{"d":"58,-60v-7,39,30,36,52,24r0,31v-10,6,-21,8,-34,8r0,16v28,-1,45,9,44,31v0,37,-51,37,-88,25r0,-16v19,4,33,7,43,7v14,0,21,-5,21,-15v0,-15,-17,-20,-33,-17r0,-31v-53,-4,-33,-82,-37,-137r-28,0r0,-4r57,-62r3,0r0,38r51,0r0,28r-51,0r0,74","w":115},"\u0167":{"d":"58,-79v1,26,-5,51,24,51v10,0,19,-3,28,-8r0,31v-41,19,-94,6,-84,-52r0,-22r-16,0r0,-25r16,0r0,-30r-28,0r0,-4r57,-62r3,0r0,38r51,0r0,28r-51,0r0,30r36,0r0,25r-36,0","w":115},"\u00fe":{"d":"54,-153v54,-36,121,7,121,72v0,64,-66,106,-121,72r0,91r-33,0r0,-328r33,0r0,93xm54,-36v35,27,87,4,87,-45v0,-50,-50,-72,-87,-46r0,91","w":186},"\u00f9":{"d":"110,-182r-26,0r-33,-47r33,0xm127,-20v-35,41,-108,24,-108,-35r0,-107r33,0v6,50,-21,138,34,138v16,0,30,-7,41,-21r0,-117r32,0r0,162r-32,0r0,-20","w":179},"\u00fa":{"d":"125,-229r-33,47r-26,0r26,-47r33,0xm127,-20v-35,41,-108,24,-108,-35r0,-107r33,0v6,50,-21,138,34,138v16,0,30,-7,41,-21r0,-117r32,0r0,162r-32,0r0,-20","w":179},"\u00fb":{"d":"140,-171r-19,0r-31,-39r-32,39r-18,0r34,-58r31,0xm127,-20v-35,41,-108,24,-108,-35r0,-107r33,0v6,50,-21,138,34,138v16,0,30,-7,41,-21r0,-117r32,0r0,162r-32,0r0,-20","w":179},"\u0169":{"d":"139,-221v-8,39,-38,35,-70,26v-8,0,-14,4,-17,11r-16,0v6,-38,40,-36,70,-25v8,0,14,-4,17,-12r16,0xm127,-20v-35,41,-108,24,-108,-35r0,-107r33,0v6,50,-21,138,34,138v16,0,30,-7,41,-21r0,-117r32,0r0,162r-32,0r0,-20","w":179},"\u00fc":{"d":"123,-230v11,0,18,7,18,18v0,10,-8,17,-18,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18xm57,-230v10,0,17,8,17,18v0,10,-7,17,-17,17v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18xm127,-20v-35,41,-108,24,-108,-35r0,-107r33,0v6,50,-21,138,34,138v16,0,30,-7,41,-21r0,-117r32,0r0,162r-32,0r0,-20","w":179},"\u016b":{"d":"135,-202r-91,0r0,-22r91,0r0,22xm127,-20v-35,41,-108,24,-108,-35r0,-107r33,0v6,50,-21,138,34,138v16,0,30,-7,41,-21r0,-117r32,0r0,162r-32,0r0,-20","w":179},"\u016d":{"d":"139,-225v-2,32,-18,48,-49,48v-31,0,-48,-16,-50,-48r16,0v1,17,13,26,34,26v21,0,32,-9,33,-26r16,0xm127,-20v-35,41,-108,24,-108,-35r0,-107r33,0v6,50,-21,138,34,138v16,0,30,-7,41,-21r0,-117r32,0r0,162r-32,0r0,-20","w":179},"\u016f":{"d":"89,-238v24,0,44,19,44,43v0,24,-20,43,-44,43v-24,0,-44,-19,-44,-43v0,-24,20,-43,44,-43xm127,-20v-35,41,-108,24,-108,-35r0,-107r33,0v6,50,-21,138,34,138v16,0,30,-7,41,-21r0,-117r32,0r0,162r-32,0r0,-20xm89,-170v14,0,25,-11,25,-25v0,-14,-11,-25,-25,-25v-14,0,-25,11,-25,25v0,14,11,25,25,25","w":179},"\u0171":{"d":"138,-229r-32,47r-15,0r20,-47r27,0xm89,-229r-28,47r-15,0r16,-47r27,0xm127,-20v-35,41,-108,24,-108,-35r0,-107r33,0v6,50,-21,138,34,138v16,0,30,-7,41,-21r0,-117r32,0r0,162r-32,0r0,-20","w":179},"\u0173":{"d":"127,-20v-35,41,-108,24,-108,-35r0,-107r33,0v6,50,-21,138,34,138v16,0,30,-7,41,-21r0,-117r32,0r0,162v-14,9,-20,18,-20,28v-1,23,26,23,42,12r0,23v-27,18,-72,9,-72,-25v0,-15,8,-27,24,-38r-6,0r0,-20","w":179},"\u0175":{"d":"184,-171r-19,0r-31,-39r-32,39r-18,0r34,-58r31,0xm270,-162r-72,165r-16,0r-48,-117r-48,117r-16,0r-72,-165r34,0r46,107r45,-107r21,0r46,107r46,-107r34,0","w":269},"\u00fd":{"d":"123,-229r-49,62r-19,0r37,-62r31,0xm163,-162r-121,244r-35,0r56,-114r-68,-130r36,0r50,95r47,-95r35,0","w":159},"\u0177":{"d":"129,-171r-19,0r-31,-39r-32,39r-19,0r35,-58r31,0xm163,-162r-121,244r-35,0r56,-114r-68,-130r36,0r50,95r47,-95r35,0","w":159},"\u00ff":{"d":"113,-230v11,0,18,7,18,18v0,10,-8,17,-18,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18xm46,-230v11,0,18,7,18,18v0,10,-8,17,-18,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18xm163,-162r-121,244r-35,0r56,-114r-68,-130r36,0r50,95r47,-95r35,0","w":159},"\u017a":{"d":"116,-229r-34,47r-25,0r26,-47r33,0xm152,0r-149,0r0,-4r91,-128r-87,0r0,-30r143,0v-26,47,-60,86,-88,131r90,0r0,31","w":158},"\u017e":{"d":"130,-225r-35,54r-31,0r-35,-54r19,0r32,36r31,-36r19,0xm152,0r-149,0r0,-4r91,-128r-87,0r0,-30r143,0v-26,47,-60,86,-88,131r90,0r0,31","w":158},"\u017c":{"d":"76,-229v23,0,25,38,0,37v-9,0,-18,-7,-18,-18v0,-11,9,-18,18,-19xm152,0r-149,0r0,-4r91,-128r-87,0r0,-30r143,0v-26,47,-60,86,-88,131r90,0r0,31","w":158},"\u00b4":{"d":"131,-229r-33,47r-26,0r26,-47r33,0","w":192},"\u02c6":{"d":"140,-171r-18,0r-32,-39r-31,39r-19,0r35,-58r31,0","w":180},"\u02c7":{"d":"140,-225r-35,54r-31,0r-35,-54r19,0r32,36r31,-36r19,0","w":180},"\u02dc":{"d":"141,-221v-8,39,-37,35,-69,26v-8,0,-14,4,-17,11r-16,0v6,-38,40,-36,70,-25v8,0,14,-4,17,-12r15,0","w":180},"\u00a8":{"d":"123,-230v11,0,18,7,18,18v0,10,-8,17,-18,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18xm57,-230v10,0,17,8,17,18v0,10,-7,17,-17,17v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18","w":180},"\u00af":{"d":"135,-202r-90,0r0,-22r90,0r0,22","w":180},"\u02c9":{"d":"135,-202r-90,0r0,-22r90,0r0,22","w":180},"\u02d8":{"d":"143,-225v-2,32,-19,48,-50,48v-31,0,-48,-16,-50,-48r16,0v1,17,13,26,34,26v21,0,33,-9,34,-26r16,0","w":180},"\u02da":{"d":"90,-269v24,0,44,19,44,43v0,24,-20,44,-44,44v-24,0,-44,-20,-44,-44v0,-24,20,-43,44,-43xm90,-200v14,0,25,-11,25,-25v0,-14,-12,-26,-25,-26v-13,0,-25,12,-25,26v0,14,11,25,25,25","w":180},"\u02dd":{"d":"152,-229r-32,47r-15,0r20,-47r27,0xm103,-229r-28,47r-15,0r16,-47r27,0","w":180},"\u02d9":{"d":"90,-229v10,0,20,10,19,20v1,10,-10,19,-19,19v-11,0,-19,-8,-19,-19v0,-10,9,-20,19,-20","w":180},"\u00b8":{"d":"131,50v0,36,-50,37,-87,25r0,-16v19,4,33,7,43,7v14,0,21,-5,21,-15v0,-15,-17,-20,-33,-17r0,-34r12,0r0,19v28,-1,45,9,44,31","w":158},"\u02db":{"d":"185,63v-27,18,-72,9,-72,-25v0,-18,12,-33,36,-45r14,7v-14,9,-20,18,-20,28v-1,23,26,23,42,12r0,23","w":206},"\u2026":{"d":"300,-40v11,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,10,-22,21,-22xm180,-40v11,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,10,-22,21,-22xm60,-40v11,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,10,-22,21,-22","w":360},"\u00ad":{"d":"107,-67r-92,0r0,-29r92,0r0,29","w":121,"k":{"\u015b":-7,"\u00f8":-7,"\u00f3":-7,"\u015a":-13,"\u00d8":-13,"\u00d3":-13,"\u0106":-10,"\u0104":7,"\u00c5":7,"s":-7,"o":-7,"Y":28,"X":13,"W":20,"V":22,"T":33,"S":-13,"O":-13,"J":-20,"G":-13,"C":-10,"A":7}},"\u00a1":{"d":"45,-250v12,0,22,10,22,22v0,12,-9,22,-22,22v-12,0,-23,-9,-22,-22v0,-12,10,-22,22,-22xm24,-41v1,-43,7,-99,18,-129r5,0v12,40,18,83,18,131v0,28,-6,42,-20,42v-13,0,-21,-15,-21,-44","w":90},"\u00bf":{"d":"63,-250v12,0,22,10,22,22v0,12,-11,21,-22,22v-12,0,-22,-10,-22,-22v0,-12,9,-23,22,-22xm45,-54v5,30,34,27,59,10r-7,38v-39,24,-91,2,-91,-45v0,-47,63,-73,55,-121r8,-4v45,35,-23,89,-24,122","w":112},"\u2018":{"d":"45,-163v-16,0,-24,-15,-24,-34v0,-26,14,-44,42,-53v-2,18,-18,22,-14,44v22,8,19,43,-4,43","w":84,"k":{"\u015a":15,"\u00d8":15,"\u0106":57,"\u00c5":48,"r":20,"f":-10,"Y":-12,"X":-12,"W":-8,"V":-10,"T":-7,"O":15,"J":8,"A":48}},"\u2019":{"d":"40,-250v15,0,24,15,24,33v0,26,-14,45,-42,54v2,-18,18,-22,14,-44v-22,-8,-19,-43,4,-43","w":84},"\u201c":{"d":"114,-163v-15,0,-25,-16,-24,-34v0,-26,14,-44,42,-53v-2,18,-18,22,-14,44v22,8,20,42,-4,43xm45,-163v-16,0,-24,-15,-24,-34v0,-26,14,-44,42,-53v-2,18,-18,22,-14,44v22,8,19,43,-4,43","w":154,"k":{"\u015a":15,"\u00d8":15,"\u0106":57,"\u00c5":48,"r":20,"f":-10,"Y":-12,"X":-12,"W":-8,"V":-10,"T":-7,"O":15,"J":8,"A":48}},"\u201d":{"d":"110,-250v16,0,24,16,24,34v0,26,-14,44,-42,53v-1,-17,17,-22,13,-44v-22,-8,-19,-42,5,-43xm40,-250v16,0,24,15,24,34v0,26,-14,44,-42,53v2,-18,18,-22,14,-44v-22,-8,-19,-43,4,-43","w":154},"\u201a":{"d":"40,-39v15,0,24,15,24,33v0,26,-14,45,-42,54v2,-18,18,-22,14,-44v-22,-8,-19,-43,4,-43","w":84,"k":{"\u00df":-7,"\u015a":20,"\u00d8":20,"\u0106":-40,"\u00c5":-13,"w":15,"f":-7,"Y":40,"X":-15,"W":52,"V":60,"T":37,"O":20,"J":-7,"G":13,"C":20,"A":-13}},"\u201e":{"d":"110,-39v16,0,24,16,24,33v0,26,-14,45,-42,54v-1,-16,17,-23,13,-44v-22,-8,-19,-42,5,-43xm40,-39v15,0,24,15,24,33v0,26,-14,45,-42,54v2,-18,18,-22,14,-44v-22,-8,-19,-43,4,-43","w":154,"k":{"\u00df":-7,"\u015a":20,"\u00d8":20,"\u0106":-40,"\u00c5":-13,"w":15,"f":-7,"Y":40,"X":-15,"W":52,"V":60,"T":37,"O":20,"J":-7,"G":13,"C":20,"A":-13}},"\u2039":{"d":"81,-28r-28,0r-42,-56r42,-53r28,0r-41,53","w":92,"k":{"\u0106":-27,"Y":27,"W":20,"V":20,"T":20,"J":-7}},"\u203a":{"d":"81,-84r-42,56r-28,0r41,-56r-41,-53r28,0","w":92,"k":{"\u00c5":13,"Y":40,"X":20,"W":33,"V":40,"T":33,"J":-13,"A":13}},"\u00ab":{"d":"142,-28r-28,0r-42,-53r42,-56r28,0r-42,56xm81,-28r-28,0r-42,-53r42,-56r28,0r-41,56","w":153,"k":{"\u0106":-27,"Y":27,"W":20,"V":20,"T":20,"J":-7}},"\u00bb":{"d":"141,-81r-42,53r-27,0r41,-53r-41,-56r27,0xm81,-81r-42,53r-28,0r41,-53r-41,-56r28,0","w":153,"k":{"\u00c5":13,"Y":40,"X":20,"W":33,"V":40,"T":33,"J":-13,"A":13}},"\u2013":{"d":"180,-71r-180,0r0,-21r180,0r0,21","w":180},"\u2014":{"d":"360,-71r-360,0r0,-21r360,0r0,21","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":"46,-145v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-21v0,-11,10,-21,22,-21","w":90},"\u2219":{"d":"46,-145v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-21v0,-11,10,-21,22,-21","w":90},"\u2020":{"d":"170,-135r-68,-7r7,174r-36,0r7,-174r-68,7r0,-36r68,7r-7,-82r36,0r-7,82r68,-7r0,36"},"\u2021":{"d":"168,-34r-66,-7r7,73r-36,0r7,-73r-67,7r0,-36r67,7v-7,-29,-7,-59,0,-88r-67,7r0,-35r67,7r-7,-74r36,0r-7,74r66,-7r0,35r-66,-7v7,29,7,59,0,88r66,-7r0,36"},"\u00a7":{"d":"64,-201v11,44,103,40,103,100v0,22,-13,38,-38,48v44,29,17,90,-40,90v-20,0,-40,-5,-58,-15r0,-32v21,13,40,19,58,19v29,0,38,-23,20,-38v-32,-27,-95,-32,-95,-83v0,-22,13,-37,38,-48v-44,-28,-16,-90,41,-90v20,0,37,4,53,13r0,31v-20,-11,-37,-16,-52,-16v-20,0,-30,7,-30,21xm108,-67v34,-14,34,-44,2,-61r-36,-19v-35,14,-34,46,-2,62"},"\u00b6":{"d":"12,-199v0,-71,84,-62,156,-61r0,15r-21,0r0,245r-19,0r0,-245r-32,0r0,245r-19,0r0,-138v-37,-1,-65,-23,-65,-61","w":180},"\u00a6":{"d":"103,-118r-26,0r0,-134r26,0r0,134xm103,62r-26,0r0,-134r26,0r0,134","w":180},"\u00a9":{"d":"150,-257v71,0,130,59,130,129v0,71,-62,130,-130,130v-67,0,-129,-62,-129,-130v0,-69,59,-129,129,-129xm150,-15v58,0,112,-51,112,-113v0,-61,-51,-112,-112,-112v-61,0,-113,53,-113,112v0,59,53,113,113,113xm109,-128v0,57,68,84,78,28r25,0v-2,31,-29,51,-62,51v-45,0,-69,-33,-69,-80v0,-62,64,-100,112,-65v11,8,17,21,18,35r-26,0v-3,-19,-15,-29,-36,-29v-28,0,-40,27,-40,60","w":299},"\u00ae":{"d":"150,-257v70,0,130,61,130,129v0,71,-62,130,-130,130v-69,0,-129,-61,-129,-130v0,-67,57,-129,129,-129xm149,-15v59,0,113,-50,113,-112v0,-62,-51,-113,-112,-113v-61,0,-113,55,-113,112v0,59,54,113,112,113xm153,-204v70,-8,82,68,28,80r33,67r-31,0r-30,-63r-27,0r0,63r-28,0r0,-147r55,0xm186,-161v3,-24,-31,-27,-60,-25r0,49v28,1,63,-1,60,-24","w":299},"\u2122":{"d":"247,-162r-17,0r0,-78r-29,78r-10,0r-31,-78r0,78r-17,0r0,-94r26,0r27,67r25,-67r26,0r0,94xm122,-242r-30,0r0,80r-19,0r0,-80r-31,0r0,-14r80,0r0,14","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":"31,-158v4,-68,77,-117,141,-79r0,39v-39,-33,-101,-26,-106,40r95,0r-7,20r-90,0r0,29r81,0r-6,19r-73,0v6,71,68,75,108,37r0,40v-15,12,-36,17,-60,17v-49,-1,-77,-45,-83,-94r-29,0r6,-19r21,0v-1,-7,0,-21,0,-29r-27,0r6,-20r23,0"},"\u00a2":{"d":"124,-170r21,-56r20,0r-23,61v4,1,8,3,12,5r0,35v-7,-5,-15,-8,-23,-11r-38,103v25,5,42,0,63,-9r0,33v-19,8,-48,11,-74,5r-25,67r-20,0r27,-72v-83,-40,-43,-180,60,-161xm113,-139v-55,-12,-82,71,-37,100"},"\u00a3":{"d":"170,-3v-55,16,-96,-11,-158,5r28,-107r-23,0r0,-32r34,0v28,-83,49,-124,107,-111r17,33v-57,-13,-76,27,-88,78r26,0r0,32r-37,0r-18,68v43,-3,73,14,112,0r0,34"},"\u0192":{"d":"159,-245r-5,34v-34,-16,-44,20,-46,52r32,0r-4,31r-32,0v-11,58,-13,137,-35,181v-11,19,-45,27,-69,16r5,-33v32,11,41,-13,46,-48r18,-117r-30,0r5,-30r29,0v3,-57,28,-107,86,-86"},"\u00a5":{"d":"214,-246r-53,70r34,0r0,20r-49,0r-22,29r71,0r0,19r-76,0r0,108r-34,0r0,-108r-77,0r0,-19r74,0r-22,-29r-52,0r0,-19r38,0r-53,-71r39,0r71,96r71,-96r40,0","w":203},"\u00aa":{"d":"10,-234v27,-22,96,-23,90,27v3,21,-10,75,18,53v6,26,-36,33,-42,13v-23,18,-72,15,-70,-17v-4,-25,43,-38,69,-45v4,-15,-5,-25,-22,-24v-14,0,-28,5,-43,16r0,-23xm75,-189v-22,7,-38,10,-43,28v0,20,31,16,43,6r0,-34","w":117},"\u00ba":{"d":"72,-248v33,0,65,27,65,59v0,34,-31,59,-65,59v-34,0,-64,-24,-64,-59v0,-34,30,-59,64,-59xm72,-151v21,1,39,-17,39,-38v0,-21,-19,-37,-39,-37v-20,0,-39,16,-39,37v0,22,18,38,39,38","w":144},"\u00b9":{"d":"71,-98r-23,0r0,-148r23,0r0,148","w":119},"\u00b2":{"d":"100,-204v-2,37,-24,56,-50,84r61,0r0,22r-103,0v21,-28,64,-68,69,-103v-3,-35,-44,-33,-65,-9r0,-25v33,-26,90,-12,88,31","w":119},"\u00b3":{"d":"19,-242v35,-14,80,-5,80,32v0,14,-7,25,-20,33v44,18,20,81,-29,81v-11,0,-22,-2,-34,-8r0,-23v22,12,60,16,61,-14v0,-15,-11,-24,-34,-25r0,-18v22,0,33,-8,33,-24v0,-24,-33,-26,-57,-14r0,-20","w":119},"\u2044":{"d":"120,-250r-153,254r-27,0r153,-254r27,0","w":61},"\u2215":{"d":"120,-250r-153,254r-27,0r153,-254r27,0","w":61},"\u00bc":{"d":"282,-46r-17,0r0,46r-21,0r0,-46r-67,0r0,-8r78,-86r10,0r0,78r17,0r0,16xm234,-250r-153,254r-27,0r154,-254r26,0xm68,-108r-22,0r0,-138r22,0r0,138xm244,-104r-37,42r37,0r0,-42","w":290},"\u00bd":{"d":"271,-98v-3,35,-22,51,-47,78r58,0r0,20r-98,0v19,-26,65,-63,65,-96v0,-33,-42,-31,-61,-8r0,-24v32,-24,86,-11,83,30xm234,-250r-153,254r-27,0r154,-254r26,0xm68,-108r-22,0r0,-138r22,0r0,138","w":290},"\u00be":{"d":"282,-46r-17,0r0,46r-21,0r0,-46r-67,0r0,-8r78,-86r10,0r0,78r17,0r0,16xm234,-250r-153,254r-27,0r154,-254r26,0xm18,-242v31,-14,77,-5,76,30v0,13,-6,24,-18,31v43,16,17,76,-28,76v-11,0,-22,-3,-33,-9r0,-21v21,12,59,16,59,-13v0,-14,-11,-22,-33,-23r0,-17v17,1,32,-7,31,-22v-2,-23,-32,-24,-54,-14r0,-18xm244,-104r-37,42r37,0r0,-42","w":290},"\u2030":{"d":"426,-142v40,0,73,33,73,73v0,40,-33,73,-73,73v-40,0,-74,-34,-74,-73v0,-40,34,-73,74,-73xm262,-142v40,0,73,33,73,73v0,40,-33,73,-73,73v-40,0,-74,-34,-74,-73v0,-40,34,-73,74,-73xm270,-250r-166,254r-29,0r166,-254r29,0xm83,-250v39,0,75,35,74,74v0,39,-35,73,-74,73v-39,0,-73,-33,-73,-73v0,-41,33,-74,73,-74xm426,-28v22,0,41,-18,41,-41v0,-23,-19,-41,-41,-41v-23,0,-41,18,-41,41v0,23,18,41,41,41xm262,-28v22,0,41,-18,41,-41v0,-23,-19,-41,-41,-41v-23,0,-42,18,-42,41v0,23,19,41,42,41xm83,-135v22,0,41,-19,41,-42v0,-23,-19,-41,-41,-41v-23,0,-41,18,-41,41v0,23,18,42,41,42","w":509},"\u2212":{"d":"255,-95r-210,0r0,-25r210,0r0,25","w":299},"\u00b1":{"d":"255,-125r-93,0r0,59r-24,0r0,-59r-93,0r0,-25r93,0r0,-60r24,0r0,60r93,0r0,25xm255,-5r-210,0r0,-25r210,0r0,25","w":299},"\u00d7":{"d":"251,-25r-17,17r-83,-82r-82,82r-18,-17r83,-82r-83,-83r18,-17r82,82r83,-82r17,17r-83,83","w":299},"\u00f7":{"d":"150,-194v12,0,23,9,22,22v0,12,-10,22,-22,22v-12,0,-21,-11,-22,-22v0,-12,10,-22,22,-22xm255,-95r-210,0r0,-25r210,0r0,25xm150,-64v12,0,23,9,22,22v0,12,-10,21,-22,21v-12,0,-22,-9,-22,-21v0,-12,10,-22,22,-22","w":299},"\u00ac":{"d":"255,-63r-24,0r0,-64r-186,0r0,-24r210,0r0,88","w":299},"\u00b5":{"d":"188,-188r-32,152v-1,10,10,14,19,11r-6,25v-22,5,-40,2,-45,-21v-18,30,-71,33,-93,3r-19,93r-32,0r56,-263r32,0r-26,129v-4,42,55,45,73,19v22,-32,29,-102,41,-148r32,0","w":202},"\u03bc":{"d":"188,-188r-32,152v-1,10,10,14,19,11r-6,25v-22,5,-40,2,-45,-21v-18,30,-71,33,-93,3r-19,93r-32,0r56,-263r32,0r-26,129v-4,42,55,45,73,19v22,-32,29,-102,41,-148r32,0","w":202},"\u00b0":{"d":"59,-256v27,0,51,24,51,51v0,27,-24,50,-51,50v-27,0,-50,-22,-50,-50v0,-27,23,-51,50,-51xm59,-171v20,0,34,-15,34,-35v0,-18,-14,-33,-34,-33v-18,0,-34,16,-34,33v0,19,15,35,34,35","w":118}}});
Cufon.registerFont({"w":203,"face":{"font-family":"Humanst521EU","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 7 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-60 -347 508 124","underline-thickness":"34.56","underline-position":"-6.12","unicode-range":"U+0020-U+F6C2"},"glyphs":{" ":{"w":98},"!":{"d":"87,-213v0,33,-11,100,-19,127v-4,11,-15,14,-19,2v-10,-31,-20,-96,-20,-129v0,-25,10,-37,29,-37v19,0,29,12,29,37xm58,-60v18,-1,33,14,32,32v0,18,-14,31,-32,31v-17,0,-31,-14,-31,-31v0,-17,14,-32,31,-32","w":116},"\"":{"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":"12,-176v1,-41,30,-64,70,-69r0,-25r28,0r0,24v18,1,38,7,58,19r0,45v-18,-14,-37,-22,-58,-24r0,54v49,17,73,42,73,77v0,45,-30,71,-73,74r0,41r-28,0r0,-40v-23,-1,-45,-10,-67,-26r0,-46v30,20,52,30,67,30r0,-63v-47,-12,-70,-36,-70,-71xm82,-160r0,-46v-32,3,-30,41,0,46xm110,-44v33,-3,31,-44,0,-51r0,51","w":196},"%":{"d":"267,-142v40,0,74,33,74,73v0,40,-34,73,-74,73v-40,0,-73,-33,-73,-73v0,-41,33,-73,73,-73xm273,-250r-167,254r-29,0r166,-254r30,0xm82,-250v39,0,75,35,74,74v0,39,-35,73,-74,73v-39,0,-73,-33,-73,-73v0,-41,33,-74,73,-74xm267,-35v17,0,34,-15,34,-34v0,-18,-15,-33,-34,-33v-19,0,-33,15,-33,33v0,18,15,34,33,34xm82,-143v17,0,35,-15,34,-33v0,-19,-15,-34,-34,-34v-18,0,-33,16,-33,34v0,18,15,33,33,33","w":349},"&":{"d":"115,-250v40,0,71,21,71,57v0,25,-14,46,-44,64r33,39v14,-18,23,-32,26,-39r56,0v-16,34,-33,59,-50,74r48,55r-75,0r-17,-19v-51,39,-155,30,-155,-42v0,-27,18,-52,54,-73v-48,-51,-15,-116,53,-116xm116,-210v-34,3,-26,31,-1,51v16,-9,24,-18,24,-30v-1,-12,-10,-22,-23,-21xm67,-67v1,35,44,36,66,14r-42,-48v-16,11,-24,22,-24,34","w":261},"'":{"d":"48,-154r-34,0r0,-99r34,0r0,99","w":61},"(":{"d":"97,81v-45,-35,-82,-94,-82,-165v0,-61,28,-117,83,-166r38,0v-87,90,-86,244,0,331r-39,0","w":130},")":{"d":"33,-250v45,37,83,93,83,164v0,72,-38,128,-83,167r-38,0v86,-91,85,-244,-1,-331r39,0","w":130},"*":{"d":"162,-163r-56,-9r46,33r-22,22r-33,-46r9,55r-30,0r8,-55r-33,46r-21,-22r45,-33r-55,9r0,-31r55,9r-45,-34r21,-21r33,46r-8,-56r30,0r-9,55r33,-45r22,21r-46,34r56,-9r0,31","w":181},"+":{"d":"255,-90r-87,0r0,90r-36,0r0,-90r-87,0r0,-35r87,0r0,-90r36,0r0,90r87,0r0,35","w":299},",":{"d":"49,-60v43,2,39,62,15,87v-13,13,-28,23,-48,26r0,-11v13,-15,19,-27,19,-43v-30,-8,-17,-60,14,-59","w":97},"-":{"d":"109,-60r-95,0r0,-48r95,0r0,48","w":123,"k":{"\u015b":-6,"\u00f8":-6,"\u00f3":-6,"\u015a":-12,"\u00d8":-12,"\u00d3":-12,"\u0106":-9,"\u0104":6,"\u00c5":6,"s":-6,"o":-6,"Y":26,"X":12,"W":18,"V":20,"T":31,"S":-12,"O":-12,"J":8,"G":-12,"C":-9,"A":6}},".":{"d":"49,-60v18,0,32,15,32,32v0,17,-15,31,-32,31v-17,0,-31,-14,-31,-31v0,-17,14,-32,31,-32","w":97},"\/":{"d":"107,-250r-92,283r-27,0r91,-283r28,0","w":102},"0":{"d":"98,-250v60,0,88,59,88,127v0,70,-27,127,-88,127v-60,0,-88,-58,-88,-127v0,-68,28,-127,88,-127xm128,-123v0,-54,-10,-81,-30,-81v-20,0,-30,27,-30,81v0,54,10,81,30,81v20,0,30,-27,30,-81","w":196},"1":{"d":"126,0r-56,0r0,-246r56,0r0,246","w":196},"2":{"d":"172,-180v-2,57,-36,85,-74,129r83,0r0,51r-170,0r0,-8v54,-69,88,-92,102,-161v0,-24,-13,-36,-39,-36v-15,0,-34,9,-59,28r0,-48v54,-43,160,-32,157,45","w":196},"3":{"d":"25,-237v48,-26,140,-16,140,49v0,24,-12,43,-36,56v29,11,43,32,43,64v0,73,-103,89,-155,56r0,-47v20,13,37,19,54,19v28,0,42,-10,42,-32v0,-21,-13,-33,-40,-34r0,-44v21,0,38,-13,38,-31v0,-37,-57,-31,-86,-14r0,-42","w":196},"4":{"d":"183,-61r-24,0r0,61r-53,0r0,-61r-101,0r0,-41r118,-147r36,0r0,150r24,0r0,38xm107,-175r-61,76r60,0","w":196},"5":{"d":"82,-154v57,-4,91,26,93,79v3,75,-96,96,-157,66r0,-48v31,23,98,28,97,-20v-1,-36,-47,-43,-82,-30r0,-139r133,0r0,49r-84,0r0,43","w":196},"6":{"d":"86,-148v50,-21,98,17,98,68v0,47,-36,84,-85,84v-95,0,-105,-118,-57,-184v21,-29,45,-53,78,-71r29,37v-31,19,-52,41,-63,66xm98,-42v20,-1,32,-14,32,-36v0,-35,-36,-48,-58,-26v-9,27,-2,62,26,62","w":196},"7":{"d":"187,-246r-95,254r-49,-19r71,-187r-99,0r0,-48r172,0","w":196},"8":{"d":"98,-250v72,-8,108,87,48,119v25,12,38,33,38,62v1,46,-38,73,-86,73v-48,0,-87,-27,-86,-73v0,-29,13,-50,38,-62v-60,-31,-24,-128,48,-119xm125,-179v0,-23,-9,-33,-27,-33v-18,0,-27,10,-27,33v0,22,9,33,27,33v18,0,27,-11,27,-33xm128,-72v0,-25,-10,-38,-30,-38v-20,0,-30,13,-30,38v0,26,10,39,30,39v20,0,30,-13,30,-39","w":196},"9":{"d":"96,-250v94,0,103,118,58,183v-20,29,-46,55,-79,72r-29,-37v31,-19,52,-41,63,-66v-51,19,-98,-17,-98,-68v0,-47,36,-84,85,-84xm65,-168v0,35,35,48,58,27v9,-27,3,-63,-26,-62v-20,0,-32,13,-32,35","w":196},":":{"d":"49,-170v17,0,32,14,32,31v0,17,-14,32,-32,32v-18,0,-31,-14,-31,-32v0,-17,14,-31,31,-31xm49,-60v18,0,32,15,32,32v0,17,-15,31,-32,31v-17,0,-31,-14,-31,-31v0,-17,14,-32,31,-32","w":97},";":{"d":"49,-170v17,0,32,14,32,31v0,17,-14,32,-32,32v-18,0,-31,-14,-31,-32v0,-17,14,-31,31,-31xm49,-60v43,2,39,62,15,87v-13,13,-28,23,-48,26r0,-11v13,-15,19,-27,19,-43v-30,-8,-17,-60,14,-59","w":97},"<":{"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":"24,-243v45,-19,99,-6,102,42v2,39,-57,74,-54,122v-25,6,-30,-13,-30,-34v-2,-35,23,-52,29,-80v-4,-29,-31,-21,-55,-8xm62,-60v18,-1,33,14,32,32v0,18,-14,31,-32,31v-17,0,-31,-14,-31,-31v0,-17,14,-32,31,-32","w":143},"@":{"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":"267,0r-65,0r-18,-48r-106,0r-20,48r-65,0r107,-246r71,0xm168,-90r-34,-94r-38,94r72,0","w":259,"k":{"\u00ab":12,"\u2039":12,"\u201e":-6,"\u201a":-6,"\u201d":21,"\u201c":24,"\u2019":21,"\u2018":24,"\u015a":6,"\u00d8":6,"\u00d3":6,"\u0106":6,"w":6,"v":6,"Y":27,"W":15,"V":15,"U":6,"T":18,"S":6,"Q":6,"O":6,"G":6,"C":6,";":-6,":":-6,"-":8}},"B":{"d":"231,-71v0,47,-32,71,-97,71r-110,0r0,-246v79,-1,189,-9,189,63v0,22,-11,38,-33,48v34,11,51,32,51,64xm151,-174v0,-31,-34,-29,-65,-28r0,53v29,0,65,3,65,-25xm86,-45v35,-2,80,9,80,-29v0,-33,-43,-32,-80,-31r0,60","w":243,"k":{"\u201e":6,"\u201a":6,"\u201d":6,"\u2019":6,"Y":6,"V":6,"-":-9}},"C":{"d":"75,-123v0,87,106,94,164,45r0,57v-92,58,-227,12,-227,-102v0,-111,128,-157,225,-107r0,58v-57,-45,-162,-35,-162,49","w":251,"k":{"\u201d":-9,"\u2019":-9,"-":-8}},"D":{"d":"116,-246v93,-5,150,46,150,123v0,75,-56,129,-150,123r-92,0r0,-246r92,0xm86,-50v67,7,116,-12,116,-73v0,-61,-48,-80,-116,-73r0,146","w":277,"k":{"\u201e":31,"\u201a":31,"\u0104":6,"\u00c5":6,"Y":12,"W":6,"V":6,"A":6,"-":-10}},"E":{"d":"192,0r-168,0r0,-246r165,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46","w":206},"F":{"d":"183,-201r-97,0r0,54r91,0r0,46r-91,0r0,101r-62,0r0,-246r159,0r0,45","w":196,"k":{"\u201e":60,"\u201a":60,"\u201d":-6,"\u2019":-6,"\u0104":6,"\u00c5":6,"r":6,"A":6,";":14,":":14,".":59,",":59}},"G":{"d":"75,-123v-2,59,56,92,111,68r0,-31r-34,0r0,-46r96,0r0,103v-30,22,-64,33,-103,33v-77,0,-133,-53,-133,-127v0,-113,132,-158,231,-105r0,54v-68,-41,-165,-36,-168,51","w":267,"k":{"Y":6,"W":6,"T":6,"-":-8}},"H":{"d":"257,0r-62,0r0,-100r-109,0r0,100r-62,0r0,-246r62,0r0,99r109,0r0,-99r62,0r0,246","w":280,"k":{".":6,",":6}},"I":{"d":"89,0r-63,0r0,-246r63,0r0,246","w":114},"J":{"d":"-10,23v34,-2,38,-10,38,-48r0,-221r62,0r0,223v0,66,-18,92,-78,95","w":115,"k":{"\u201e":18,"\u201a":18,"-":6}},"K":{"d":"262,0r-80,0r-95,-116r0,116r-61,0r0,-246r61,0r0,110r84,-110r69,0r-87,114","w":250,"k":{"\u00ab":9,"\u2039":9,"\u201e":-10,"\u201a":-10,"\u201d":8,"\u201c":12,"\u2019":8,"\u2018":12,"\u015b":6,"\u00f8":6,"\u00f3":6,"\u0119":6,"\u0107":6,"\u0105":6,"\u015a":12,"\u00d8":12,"\u00d3":12,"\u0106":12,"\u0104":6,"\u00c5":6,"y":12,"u":6,"s":6,"o":6,"e":6,"c":6,"a":6,"Y":12,"W":6,"U":6,"T":12,"S":12,"O":12,"C":12,"A":6,"-":17}},"L":{"d":"192,0r-168,0r0,-246r62,0r0,198r106,0r0,48","w":195,"k":{"\u201d":44,"\u201c":42,"\u2019":44,"\u2018":42,"\u015a":12,"\u00d8":12,"\u00d3":12,"y":12,"Y":24,"W":18,"V":18,"U":6,"T":18,"S":12,"O":12,"-":6}},"M":{"d":"291,0r-61,0r0,-152r-73,90r-72,-90r0,152r-61,0r0,-246r54,0r79,99r80,-99r54,0r0,246","w":315},"N":{"d":"271,0r-49,0r-137,-154r0,154r-61,0r0,-246r54,0r132,147r0,-147r61,0r0,246","w":294},"O":{"d":"145,-250v76,0,134,53,134,127v0,73,-59,127,-134,127v-74,0,-133,-54,-133,-127v0,-73,57,-127,133,-127xm145,-48v41,0,71,-33,71,-75v0,-42,-30,-75,-71,-75v-41,0,-70,33,-70,75v0,42,29,75,70,75","w":291,"k":{"\u201e":18,"\u201a":18,"\u201d":-6,"\u2019":-6,"\u0104":6,"\u00c5":6,"Y":12,"X":6,"V":6,"A":6,";":-6,":":-6,".":14,"-":-9,",":14}},"P":{"d":"213,-172v0,59,-51,81,-127,76r0,96r-62,0r0,-246r91,0v65,0,98,25,98,74xm149,-172v3,-30,-32,-29,-63,-28r0,56v31,1,66,2,63,-28","w":223,"k":{"\u00ab":6,"\u2039":6,"\u201e":85,"\u201a":85,"\u201d":-8,"\u201c":-12,"\u2019":-8,"\u2018":-12,"\u015b":12,"\u00f8":12,"\u00f3":12,"\u0119":12,"\u0107":12,"\u0105":12,"\u0104":17,"\u00c5":17,"s":12,"r":6,"o":12,"e":12,"c":12,"a":12,"A":17,";":9,":":9,".":73,"-":14,",":73}},"Q":{"d":"145,-250v74,0,134,53,134,124v0,61,-28,102,-85,123v28,15,53,22,83,13r5,6v-17,13,-28,31,-48,41v-43,0,-85,-19,-126,-57v-56,-15,-95,-57,-96,-123v-1,-73,57,-127,133,-127xm145,-48v41,0,71,-33,71,-75v0,-42,-30,-75,-71,-75v-41,0,-70,33,-70,75v0,42,29,75,70,75","w":291},"R":{"d":"240,0r-70,0v-24,-37,-20,-105,-83,-100r0,100r-61,0r0,-246v84,-2,188,-9,188,71v0,27,-14,47,-43,60v38,19,47,78,69,115xm150,-174v3,-30,-32,-29,-63,-28r0,57v31,1,66,2,63,-29","w":235,"k":{"\u015b":6,"\u00f8":6,"\u00f3":6,"\u0119":6,"\u0107":6,"\u0105":6,"u":6,"s":6,"o":6,"e":6,"c":6,"a":6,"Y":6,".":-6,"-":9,",":-6}},"S":{"d":"76,-184v-9,15,60,37,65,39v34,14,62,34,62,76v0,83,-123,89,-183,50r0,-55v34,21,62,31,84,31v34,0,48,-22,28,-38v-49,-26,-117,-33,-116,-98v2,-78,113,-86,176,-51r0,51v-32,-16,-59,-25,-80,-25v-24,0,-36,7,-36,20","w":214},"T":{"d":"230,-200r-81,0r0,200r-65,0r0,-200r-81,0r0,-46r227,0r0,46","w":232,"k":{"\u00bb":18,"\u00ab":31,"\u203a":18,"\u2039":31,"\u201e":42,"\u201a":42,"\u015b":51,"\u00f8":51,"\u00f3":51,"\u0119":51,"\u0107":51,"\u0105":51,"\u0106":6,"\u0104":18,"\u00c5":18,"y":45,"w":47,"u":49,"s":51,"r":51,"o":51,"e":51,"c":51,"a":51,"C":6,"A":18,";":39,":":39,".":55,"-":31,",":55}},"U":{"d":"139,4v-71,0,-117,-38,-117,-109r0,-141r62,0v7,76,-28,199,55,199v83,0,46,-124,54,-199r62,0r0,141v1,70,-46,109,-116,109","w":277,"k":{"\u0104":6,"\u00c5":6,"A":6}},"V":{"d":"251,-246r-120,248r-26,0r-112,-248r66,0r61,143r65,-143r66,0","w":244,"k":{"\u00bb":18,"\u00ab":36,"\u203a":18,"\u2039":36,"\u201e":55,"\u201a":55,"\u201d":-9,"\u2019":-9,"\u015b":32,"\u00f8":32,"\u00f3":32,"\u0119":32,"\u0107":24,"\u0105":24,"\u015a":6,"\u00d8":6,"\u00d3":6,"\u0104":21,"\u00c5":21,"y":9,"u":18,"s":32,"o":32,"e":32,"c":24,"a":24,"S":6,"O":6,"A":21,";":17,":":17,".":49,"-":27,",":49}},"W":{"d":"357,-246r-100,248r-25,0r-56,-154r-55,154r-26,0r-99,-248r64,0r48,134r48,-134r41,0r48,134r48,-134r64,0","w":352,"k":{"\u00bb":6,"\u00ab":18,"\u203a":6,"\u2039":18,"\u201e":55,"\u201a":55,"\u201d":-6,"\u2019":-6,"\u015b":24,"\u00f8":24,"\u00f3":24,"\u0119":24,"\u0107":18,"\u0105":18,"\u0104":18,"\u00c5":18,"y":6,"u":12,"s":24,"r":12,"o":24,"e":24,"c":18,"a":18,"A":18,";":20,":":20,".":41,"-":20,",":41}},"X":{"d":"285,0r-79,0r-66,-80r-65,80r-77,0r104,-127r-98,-119r78,0r58,72r59,-72r77,0r-98,118","w":283,"k":{"\u00ab":18,"\u2039":18,"\u201e":-12,"\u201a":-12,"\u201c":12,"\u2018":12,"\u015a":6,"\u00d8":6,"\u00d3":6,"\u0106":6,"S":6,"O":6,"C":6,"-":17}},"Y":{"d":"249,-246r-98,134r0,112r-62,0r0,-111r-97,-135r74,0r54,80r56,-80r73,0","w":241,"k":{"\u00bb":24,"\u00ab":36,"\u203a":24,"\u2039":36,"\u201e":42,"\u201a":42,"\u015b":36,"\u00f8":36,"\u00f3":36,"\u0119":36,"\u0107":36,"\u0105":36,"\u015a":12,"\u00d8":12,"\u00d3":12,"\u0106":12,"\u0104":33,"\u00c5":33,"u":35,"s":36,"o":36,"e":36,"c":36,"a":36,"S":12,"O":12,"C":12,"A":33,";":35,":":35,".":44,"-":39,",":44}},"Z":{"d":"241,-246r-134,198r133,0r0,48r-239,0r135,-200r-124,0r0,-46r229,0","w":246,"k":{"\u201c":6,"\u2018":6,"-":6}},"[":{"d":"132,77r-111,0r0,-323r111,0r0,40r-60,0r0,244r60,0r0,39","w":133},"\\":{"d":"115,33r-28,0r-91,-283r28,0","w":102},"]":{"d":"113,77r-111,0r0,-39r60,0r0,-244r-60,0r0,-40r111,0r0,323","w":133},"^":{"d":"287,-158r-42,0r-65,-65r-66,65r-41,0r85,-99r44,0","w":360},"_":{"d":"180,85r-180,0r0,-36r180,0r0,36","w":180},"`":{"d":"116,-190r-23,0r-52,-61r39,0","w":180},"a":{"d":"17,-150v41,-28,150,-36,143,38r0,67v0,15,12,10,23,6r0,29v-27,14,-65,23,-74,-5v-31,28,-107,27,-100,-28v6,-46,42,-44,98,-64v1,-20,-9,-28,-33,-28v-19,0,-38,9,-57,27r0,-42xm107,-81v-26,10,-41,12,-45,34v1,25,29,19,45,7r0,-41","w":185},"b":{"d":"71,-154v53,-41,126,-1,126,71v0,87,-98,101,-178,73r0,-236r52,0r0,92xm71,-48v28,24,70,5,70,-35v0,-41,-41,-60,-70,-35r0,70","w":206},"c":{"d":"157,-118v-42,-21,-92,-13,-93,35v-2,50,55,55,95,35r0,40v-65,30,-150,-1,-150,-75v0,-73,81,-106,148,-76r0,41","w":170,"k":{"x":6}},"d":{"d":"10,-83v0,-68,71,-113,124,-71r0,-92r53,0r0,246r-51,0r0,-14v-51,44,-126,1,-126,-69xm64,-83v0,40,41,59,70,35r0,-71v-29,-23,-70,-4,-70,36","w":205},"e":{"d":"98,-170v54,0,85,40,84,96r-118,1v3,54,78,51,114,20r0,35v-63,44,-168,22,-168,-67v0,-52,36,-85,88,-85xm129,-100v-1,-45,-63,-45,-65,0r65,0","w":191,"k":{"x":6}},"f":{"d":"120,-206v-31,-7,-49,3,-44,39r22,0r0,36r-22,0r0,131r-53,0r0,-131r-23,0r0,-36r23,0v-8,-64,34,-92,97,-79r0,40","w":103,"k":{"\u201e":18,"\u201a":18,"\u201d":-23,"\u201c":-23,"\u2019":-23,"\u2018":-23,".":6,",":6}},"g":{"d":"89,82v-45,1,-86,-13,-86,-49v0,-20,15,-34,45,-42v-31,-8,-24,-42,8,-46v-29,-9,-44,-27,-44,-54v0,-67,100,-59,172,-58r0,35r-23,0v24,48,-13,86,-73,86v-14,0,-13,19,1,19v42,4,89,14,89,54v0,37,-30,55,-89,55xm91,-78v18,0,30,-10,30,-28v0,-18,-12,-29,-30,-29v-18,0,-30,11,-30,29v0,18,12,28,30,28xm131,30v0,-13,-13,-19,-39,-19v-27,0,-40,6,-40,19v0,14,13,20,39,20v26,0,40,-7,40,-20","w":189},"h":{"d":"185,0r-53,0r0,-98v2,-49,-46,-40,-60,-8r0,106r-53,0r0,-246r53,0r0,100v37,-40,113,-32,113,41r0,105"},"i":{"d":"45,-249v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-13,-28,-28v0,-15,13,-28,28,-28xm72,0r-53,0r0,-167r53,0r0,167","w":90},"j":{"d":"47,-249v16,0,27,12,28,28v1,16,-13,28,-28,28v-15,0,-29,-12,-28,-28v1,-16,12,-28,28,-28xm73,-167v-5,74,15,176,-14,225v-8,14,-25,22,-47,24r-17,-46v17,-4,26,-15,26,-35r0,-168r52,0","w":92},"k":{"d":"200,0r-63,0r-65,-86r64,-81r63,0r-64,81xm71,0r-52,0r0,-246r52,0r0,246","w":198},"l":{"d":"72,0r-53,0r0,-246r53,0r0,246","w":90},"m":{"d":"177,-139v30,-45,120,-45,120,34r0,105r-53,0r0,-98v2,-49,-46,-40,-61,-8r0,106r-51,0r0,-98v2,-49,-46,-40,-61,-8r0,106r-52,0r0,-167r52,0r0,21v27,-32,90,-34,106,7","w":315},"n":{"d":"185,0r-53,0r0,-98v2,-49,-46,-40,-61,-8r0,106r-52,0r0,-167r52,0r0,21v37,-40,114,-32,114,41r0,105","k":{"\u201d":6,"\u201c":6,"\u2019":6,"\u2018":6}},"o":{"d":"100,-170v53,0,92,35,92,87v0,51,-40,86,-92,86v-52,0,-91,-35,-91,-86v0,-51,39,-87,91,-87xm100,-36v24,0,38,-20,38,-47v0,-25,-14,-47,-38,-47v-23,0,-37,22,-37,47v0,26,14,47,37,47","w":200,"k":{"\u201c":6,"\u2018":6,"x":6,"-":-6}},"p":{"d":"69,-153v52,-43,127,0,127,70v0,68,-72,113,-125,71r0,94r-52,0r0,-249r50,0r0,14xm71,-48v29,23,70,4,70,-36v0,-39,-39,-60,-70,-36r0,72","w":205},"q":{"d":"10,-83v0,-69,73,-113,126,-70r0,-14r51,0r0,249r-53,0r0,-94v-52,42,-124,-3,-124,-71xm64,-84v0,40,40,59,70,36r0,-72v-31,-24,-70,-3,-70,36","w":205},"r":{"d":"143,-109v-32,-30,-71,1,-71,37r0,72r-53,0r0,-167r53,0r0,45v27,-44,44,-60,85,-35","w":154,"k":{"\u201e":38,"\u201a":38,"\u201d":-26,"\u2019":-26,".":33,",":33}},"s":{"d":"24,-84v-37,-32,-1,-86,50,-86v20,0,39,4,57,13r0,37v-21,-11,-40,-17,-54,-17v-23,-1,-25,18,-7,26v29,12,69,25,69,61v0,61,-83,63,-127,41r0,-37v22,10,39,15,52,15v40,-3,24,-24,-1,-33v-21,-8,-34,-16,-39,-20","w":148,"k":{"x":6}},"t":{"d":"78,-130v5,35,-16,96,26,93v9,0,19,-2,31,-8r1,39v-55,21,-118,10,-110,-63r0,-61r-23,0r0,-11r68,-74r7,0r0,48r57,0r0,37r-57,0","w":142},"u":{"d":"132,-21v-37,41,-114,29,-114,-40r0,-106r53,0r0,99v-2,49,46,40,61,8r0,-107r52,0r0,167r-52,0r0,-21"},"v":{"d":"176,-167r-73,170r-32,0r-77,-170r56,0r36,91r35,-91r55,0","w":172,"k":{".":26,",":26}},"w":{"d":"277,-167r-76,170r-26,0r-40,-93r-41,93r-26,0r-76,-170r56,0r36,91r38,-91r27,0r39,91r35,-91r54,0","w":273,"k":{"\u201e":20,"\u201a":20,"\u201d":-18,"\u201c":-15,"\u2019":-18,"\u2018":-15,".":24,"-":-12,",":24}},"x":{"d":"197,0r-65,0r-36,-50r-37,50r-63,0r66,-85r-65,-82r63,0r34,47r35,-47r63,0r-64,82","w":193,"k":{"\u015b":6,"\u00f8":6,"\u00f3":6,"\u0119":6,"\u0107":6,"s":6,"o":6,"e":6,"c":6}},"y":{"d":"176,-167r-113,249r-55,0r50,-109r-64,-140r56,0r34,82r36,-82r56,0","w":172,"k":{"\u201e":42,"\u201a":42,"\u201d":-18,"\u201c":-12,"\u2019":-18,"\u2018":-12,".":29,"-":6,",":29}},"z":{"d":"171,0r-167,0v23,-48,58,-84,84,-129r-77,0r0,-38r160,0r0,5r-84,125r84,0r0,37","w":179},"{":{"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","w":180},"|":{"d":"108,85r-36,0r0,-360r36,0r0,360","w":180},"}":{"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","w":180},"~":{"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":98},"\u00c0":{"d":"159,-270r-40,0r-42,-57r49,0xm267,0r-65,0r-18,-48r-106,0r-20,48r-65,0r107,-246r71,0xm168,-90r-34,-94r-38,94r72,0","w":259},"\u00c1":{"d":"195,-327r-42,57r-40,0r32,-57r50,0xm267,0r-65,0r-18,-48r-106,0r-20,48r-65,0r107,-246r71,0xm168,-90r-34,-94r-38,94r72,0","w":259},"\u00c2":{"d":"189,-269r-23,0r-30,-37r-29,37r-23,0r33,-61r39,0xm267,0r-65,0r-18,-48r-106,0r-20,48r-65,0r107,-246r71,0xm168,-90r-34,-94r-38,94r72,0","w":259},"\u00c3":{"d":"189,-320v-7,46,-37,43,-73,32v-8,0,-13,4,-15,12r-17,0v6,-47,38,-40,73,-30v8,0,13,-5,15,-14r17,0xm267,0r-65,0r-18,-48r-106,0r-20,48r-65,0r107,-246r71,0xm168,-90r-34,-94r-38,94r72,0","w":259},"\u00c4":{"d":"168,-319v12,0,21,9,21,21v0,13,-9,21,-21,21v-12,0,-21,-9,-21,-21v1,-11,9,-21,21,-21xm104,-319v12,0,21,9,21,21v0,13,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm267,0r-65,0r-18,-48r-106,0r-20,48r-65,0r107,-246r71,0xm168,-90r-34,-94r-38,94r72,0","w":259},"\u0100":{"d":"188,-285r-105,0r0,-27r105,0r0,27xm267,0r-65,0r-18,-48r-106,0r-20,48r-65,0r107,-246r71,0xm168,-90r-34,-94r-38,94r72,0","w":259},"\u0102":{"d":"187,-323v-2,34,-19,50,-52,50v-32,0,-49,-16,-52,-50r21,0v1,17,11,25,31,25v19,0,30,-8,31,-25r21,0xm267,0r-65,0r-18,-48r-106,0r-20,48r-65,0r107,-246r71,0xm168,-90r-34,-94r-38,94r72,0","w":259},"\u00c5":{"d":"136,-347v23,0,44,22,44,45v0,23,-21,44,-44,44v-23,0,-45,-21,-45,-44v0,-24,21,-45,45,-45xm267,0r-65,0r-18,-48r-106,0r-20,48r-65,0r107,-246r71,0xm136,-282v11,0,21,-9,21,-20v0,-11,-9,-21,-21,-21v-11,0,-20,10,-20,21v0,11,9,20,20,20xm168,-90r-34,-94r-38,94r72,0","w":259,"k":{"\u00ab":12,"\u2039":12,"\u201e":-6,"\u201a":-6,"\u201d":21,"\u201c":24,"\u2019":21,"\u2018":24,"\u015a":6,"\u00d8":6,"w":6,"v":6,"Y":27,"W":15,"V":15,"U":6,"T":18,"Q":6,"O":6,"G":6,"C":6,";":-6,":":-6,"-":8}},"\u0104":{"d":"228,26v0,23,30,23,45,11r0,29v-30,19,-82,11,-81,-26v0,-15,10,-28,30,-40r-20,0r-18,-48r-106,0r-20,48r-65,0r107,-246r71,0r96,246v-23,-4,-39,7,-39,26xm168,-90r-34,-94r-38,94r72,0","w":259,"k":{"w":6,"v":6,"Y":27,"W":15,"V":15,"U":6,"T":18,"Q":6,"O":6,"G":6,"C":6,";":-6,":":-6,"-":8}},"\u00c6":{"d":"332,0r-169,0r0,-79r-70,0r-44,79r-62,0r137,-246r205,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46xm163,-126r0,-80r-43,80r43,0","w":346},"\u0106":{"d":"204,-327r-42,57r-40,0r32,-57r50,0xm75,-123v0,87,106,94,164,45r0,57v-92,58,-227,12,-227,-102v0,-111,128,-157,225,-107r0,58v-57,-45,-162,-35,-162,49","w":251,"k":{"\u201d":15,"\u2019":15,"-":-8}},"\u0108":{"d":"199,-266r-23,0r-29,-36r-30,36r-22,0r33,-61r38,0xm75,-123v0,87,106,94,164,45r0,57v-92,58,-227,12,-227,-102v0,-111,128,-157,225,-107r0,58v-57,-45,-162,-35,-162,49","w":251},"\u010c":{"d":"198,-325r-34,61r-38,0r-33,-61r23,0r29,36r30,-36r23,0xm75,-123v0,87,106,94,164,45r0,57v-92,58,-227,12,-227,-102v0,-111,128,-157,225,-107r0,58v-57,-45,-162,-35,-162,49","w":251},"\u010a":{"d":"145,-327v13,0,25,11,25,25v0,14,-11,24,-25,24v-13,0,-24,-11,-24,-24v0,-12,12,-25,24,-25xm75,-123v0,87,106,94,164,45r0,57v-92,58,-227,12,-227,-102v0,-111,128,-157,225,-107r0,58v-57,-45,-162,-35,-162,49","w":251},"\u00c7":{"d":"75,-123v0,87,106,94,164,45r0,57v-92,58,-227,12,-227,-102v0,-111,128,-157,225,-107r0,58v-57,-45,-162,-35,-162,49xm176,50v0,40,-54,39,-91,26r0,-21v19,5,34,8,45,8v13,0,19,-4,19,-13v0,-11,-15,-15,-33,-14r0,-36r16,0r0,17v29,-1,44,9,44,33","w":251},"\u010e":{"d":"171,-327r-33,62r-38,0r-34,-62r23,0r30,37r29,-37r23,0xm116,-246v93,-5,150,46,150,123v0,75,-56,129,-150,123r-92,0r0,-246r92,0xm86,-50v67,7,116,-12,116,-73v0,-61,-48,-80,-116,-73r0,146","w":277},"\u0110":{"d":"119,-246v93,-5,150,46,150,123v0,75,-56,129,-150,123r-92,0r0,-105r-27,0r0,-36r27,0r0,-105r92,0xm87,-50v68,7,119,-12,119,-73v0,-60,-50,-81,-119,-73r0,55r51,0r0,36r-51,0r0,55","w":280},"\u00d0":{"d":"119,-246v93,-5,150,46,150,123v0,75,-56,129,-150,123r-92,0r0,-105r-27,0r0,-36r27,0r0,-105r92,0xm87,-50v68,7,119,-12,119,-73v0,-60,-50,-81,-119,-73r0,55r51,0r0,36r-51,0r0,55","w":280,"k":{"\u201e":31,"\u201a":31,"\u00c5":6,"Y":12,"W":6,"V":6,"A":6,"-":-10}},"\u00c8":{"d":"133,-270r-40,0r-42,-57r50,0xm192,0r-168,0r0,-246r165,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46","w":206},"\u00c9":{"d":"161,-327r-42,57r-40,0r33,-57r49,0xm192,0r-168,0r0,-246r165,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46","w":206},"\u00ca":{"d":"159,-269r-23,0r-29,-37r-29,37r-23,0r33,-61r38,0xm192,0r-168,0r0,-246r165,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46","w":206},"\u011a":{"d":"159,-327r-33,61r-38,0r-33,-61r23,0r29,36r29,-36r23,0xm192,0r-168,0r0,-246r165,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46","w":206},"\u00cb":{"d":"139,-319v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm75,-319v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm192,0r-168,0r0,-246r165,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46","w":206},"\u0112":{"d":"161,-286r-104,0r0,-26r104,0r0,26xm192,0r-168,0r0,-246r165,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46","w":206},"\u0114":{"d":"163,-323v-2,34,-19,50,-52,50v-32,0,-49,-16,-52,-50r21,0v1,17,11,25,31,25v20,0,30,-8,31,-25r21,0xm192,0r-168,0r0,-246r165,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46","w":206},"\u0116":{"d":"108,-327v13,0,24,12,24,25v0,14,-10,24,-24,24v-13,0,-25,-12,-25,-24v0,-12,13,-25,25,-25xm192,0r-168,0r0,-246r165,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46","w":206},"\u0118":{"d":"184,66v-29,19,-82,11,-81,-26v0,-15,11,-28,31,-40r-110,0r0,-246r165,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46v-28,-4,-53,3,-53,26v0,22,30,23,45,11r0,29","w":206},"\u011c":{"d":"201,-265r-23,0r-29,-37r-30,37r-23,0r34,-61r38,0xm75,-123v-2,59,56,92,111,68r0,-31r-34,0r0,-46r96,0r0,103v-30,22,-64,33,-103,33v-77,0,-133,-53,-133,-127v0,-113,132,-158,231,-105r0,54v-68,-41,-165,-36,-168,51","w":267},"\u011e":{"d":"202,-323v-2,34,-19,50,-52,50v-32,0,-49,-16,-52,-50r21,0v1,17,11,25,31,25v20,0,30,-8,31,-25r21,0xm75,-123v-2,59,56,92,111,68r0,-31r-34,0r0,-46r96,0r0,103v-30,22,-64,33,-103,33v-77,0,-133,-53,-133,-127v0,-113,132,-158,231,-105r0,54v-68,-41,-165,-36,-168,51","w":267},"\u0120":{"d":"149,-326v14,0,25,11,25,25v0,13,-12,24,-25,24v-13,0,-24,-11,-24,-24v0,-12,12,-25,24,-25xm75,-123v-2,59,56,92,111,68r0,-31r-34,0r0,-46r96,0r0,103v-30,22,-64,33,-103,33v-77,0,-133,-53,-133,-127v0,-113,132,-158,231,-105r0,54v-68,-41,-165,-36,-168,51","w":267},"\u0122":{"d":"75,-123v-2,59,56,92,111,68r0,-31r-34,0r0,-46r96,0r0,103v-30,22,-64,33,-103,33v-77,0,-133,-53,-133,-127v0,-113,132,-158,231,-105r0,54v-68,-41,-165,-36,-168,51xm146,11v43,2,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-15,20,-27,19,-44v-32,-8,-17,-59,14,-58","w":267},"\u0124":{"d":"192,-265r-23,0r-29,-36r-29,36r-23,0r33,-61r38,0xm257,0r-62,0r0,-100r-109,0r0,100r-62,0r0,-246r62,0r0,99r109,0r0,-99r62,0r0,246","w":280},"\u0126":{"d":"281,-191r-24,0r0,191r-62,0r0,-100r-109,0r0,100r-62,0r0,-191r-24,0r0,-28r24,0r0,-27r62,0r0,27r109,0r0,-27r62,0r0,27r24,0r0,28xm195,-147r0,-44r-109,0r0,44r109,0","w":280},"\u00cc":{"d":"82,-270r-40,0r-42,-57r50,0xm89,0r-63,0r0,-246r63,0r0,246","w":114},"\u00cd":{"d":"116,-327r-43,57r-40,0r33,-57r50,0xm89,0r-63,0r0,-246r63,0r0,246","w":114},"\u012c":{"d":"111,-323v-2,34,-20,51,-52,51v-33,0,-51,-17,-53,-51r21,0v1,17,12,25,32,25v19,0,30,-8,31,-25r21,0xm89,0r-63,0r0,-246r63,0r0,246","w":114},"\u00ce":{"d":"110,-269r-23,0r-29,-37r-30,37r-23,0r34,-61r38,0xm89,0r-63,0r0,-246r63,0r0,246","w":114},"\u0128":{"d":"107,-320v-7,46,-37,43,-73,32v-8,0,-13,4,-15,12r-18,0v6,-46,39,-40,74,-30v8,0,13,-5,15,-14r17,0xm89,0r-63,0r0,-246r63,0r0,246","w":114},"\u00cf":{"d":"68,-298v0,-30,43,-25,43,0v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-21xm26,-319v11,0,20,10,20,21v1,12,-8,21,-20,21v-12,0,-22,-9,-22,-21v0,-11,10,-21,22,-21xm89,0r-63,0r0,-246r63,0r0,246","w":114},"\u012a":{"d":"110,-286r-104,0r0,-26r104,0r0,26xm89,0r-63,0r0,-246r63,0r0,246","w":114},"\u0130":{"d":"57,-326v13,0,24,11,24,24v0,15,-10,25,-24,25v-14,1,-25,-11,-25,-25v0,-12,13,-24,25,-24xm89,0r-63,0r0,-246r63,0r0,246","w":114},"\u012e":{"d":"54,26v0,23,30,23,45,11r0,29v-30,19,-82,11,-81,-26v0,-15,10,-28,30,-40r-22,0r0,-246r63,0r0,246v-21,-4,-34,10,-35,26","w":114},"\u0134":{"d":"114,-265r-23,0r-29,-37r-30,37r-23,0r33,-61r39,0xm-10,23v34,-2,38,-10,38,-48r0,-221r62,0r0,223v0,66,-18,92,-78,95","w":115},"\u0136":{"d":"262,0r-80,0r-95,-116r0,116r-61,0r0,-246r61,0r0,110r84,-110r69,0r-87,114xm132,11v43,2,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-15,20,-27,19,-44v-32,-8,-17,-59,14,-58","w":250},"\u0139":{"d":"122,-327r-42,57r-40,0r32,-57r50,0xm192,0r-168,0r0,-246r62,0r0,198r106,0r0,48","w":195},"\u013d":{"d":"174,-247r-42,57r-40,0r33,-57r49,0xm192,0r-168,0r0,-246r62,0r0,198r106,0r0,48","w":195},"\u013b":{"d":"192,0r-168,0r0,-246r62,0r0,198r106,0r0,48xm107,11v43,2,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-59,14,-58","w":195},"\u0141":{"d":"195,0r-168,0r0,-87r-18,12r0,-52r18,-13r0,-106r62,0r0,72r49,-32r0,52r-49,33r0,73r106,0r0,48","w":198,"k":{"y":12,"Y":24,"W":18,"V":18,"U":6,"T":18,"O":12,"-":6}},"\u013f":{"d":"127,-155v18,-1,33,14,32,32v0,18,-14,31,-32,31v-17,0,-31,-14,-31,-31v0,-18,13,-32,31,-32xm192,0r-168,0r0,-246r62,0r0,198r106,0r0,48","w":195},"\u0143":{"d":"207,-327r-42,57r-40,0r32,-57r50,0xm271,0r-49,0r-137,-154r0,154r-61,0r0,-246r54,0r132,147r0,-147r61,0r0,246","w":294},"\u0147":{"d":"197,-326r-34,61r-37,0r-34,-61r23,0r30,37r29,-37r23,0xm271,0r-49,0r-137,-154r0,154r-61,0r0,-246r54,0r132,147r0,-147r61,0r0,246","w":294},"\u00d1":{"d":"201,-320v-7,47,-38,43,-74,32v-8,0,-13,4,-15,12r-17,0v6,-46,38,-40,73,-30v8,0,13,-5,15,-14r18,0xm271,0r-49,0r-137,-154r0,154r-61,0r0,-246r54,0r132,147r0,-147r61,0r0,246","w":294},"\u0145":{"d":"271,0r-49,0r-137,-154r0,154r-61,0r0,-246r54,0r132,147r0,-147r61,0r0,246xm157,11v44,0,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-58,14,-58","w":294},"\u00d2":{"d":"184,-270r-40,0r-42,-57r50,0xm145,-250v76,0,134,53,134,127v0,73,-59,127,-134,127v-74,0,-133,-54,-133,-127v0,-73,57,-127,133,-127xm145,-48v41,0,71,-33,71,-75v0,-42,-30,-75,-71,-75v-41,0,-70,33,-70,75v0,42,29,75,70,75","w":291},"\u00d3":{"d":"198,-327r-42,57r-40,0r32,-57r50,0xm145,-250v76,0,134,53,134,127v0,73,-59,127,-134,127v-74,0,-133,-54,-133,-127v0,-73,57,-127,133,-127xm145,-48v41,0,71,-33,71,-75v0,-42,-30,-75,-71,-75v-41,0,-70,33,-70,75v0,42,29,75,70,75","w":291,"k":{"Y":12,"X":6,"V":6,"A":6,";":-6,":":-6,".":14,"-":-9,",":14}},"\u00d4":{"d":"198,-269r-23,0r-29,-37r-30,37r-22,0r33,-61r38,0xm145,-250v76,0,134,53,134,127v0,73,-59,127,-134,127v-74,0,-133,-54,-133,-127v0,-73,57,-127,133,-127xm145,-48v41,0,71,-33,71,-75v0,-42,-30,-75,-71,-75v-41,0,-70,33,-70,75v0,42,29,75,70,75","w":291},"\u00d5":{"d":"199,-320v-7,46,-37,43,-73,32v-8,0,-13,4,-15,12r-18,0v6,-46,38,-40,73,-30v8,0,13,-5,15,-14r18,0xm145,-250v76,0,134,53,134,127v0,73,-59,127,-134,127v-74,0,-133,-54,-133,-127v0,-73,57,-127,133,-127xm145,-48v41,0,71,-33,71,-75v0,-42,-30,-75,-71,-75v-41,0,-70,33,-70,75v0,42,29,75,70,75","w":291},"\u00d6":{"d":"178,-319v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm114,-319v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm145,-250v76,0,134,53,134,127v0,73,-59,127,-134,127v-74,0,-133,-54,-133,-127v0,-73,57,-127,133,-127xm145,-48v41,0,71,-33,71,-75v0,-42,-30,-75,-71,-75v-41,0,-70,33,-70,75v0,42,29,75,70,75","w":291},"\u014c":{"d":"197,-287r-104,0r0,-26r104,0r0,26xm145,-250v76,0,134,53,134,127v0,73,-59,127,-134,127v-74,0,-133,-54,-133,-127v0,-73,57,-127,133,-127xm145,-48v41,0,71,-33,71,-75v0,-42,-30,-75,-71,-75v-41,0,-70,33,-70,75v0,42,29,75,70,75","w":291},"\u014e":{"d":"198,-323v-2,34,-20,51,-52,51v-33,0,-51,-17,-53,-51r21,0v1,17,12,25,32,25v19,0,30,-8,31,-25r21,0xm145,-250v76,0,134,53,134,127v0,73,-59,127,-134,127v-74,0,-133,-54,-133,-127v0,-73,57,-127,133,-127xm145,-48v41,0,71,-33,71,-75v0,-42,-30,-75,-71,-75v-41,0,-70,33,-70,75v0,42,29,75,70,75","w":291},"\u0150":{"d":"213,-327r-37,58r-19,0r22,-58r34,0xm161,-327r-31,58r-19,0r16,-58r34,0xm145,-250v76,0,134,53,134,127v0,73,-59,127,-134,127v-74,0,-133,-54,-133,-127v0,-73,57,-127,133,-127xm145,-48v41,0,71,-33,71,-75v0,-42,-30,-75,-71,-75v-41,0,-70,33,-70,75v0,42,29,75,70,75","w":291},"\u00d8":{"d":"37,-45v-64,-86,1,-205,111,-205v31,0,58,9,80,25r33,-32r24,26r-32,30v65,85,1,205,-110,205v-31,0,-58,-8,-81,-25r-33,32r-24,-25xm186,-185v-60,-44,-143,29,-103,99xm102,-61v63,45,146,-28,105,-100","w":291,"k":{"\u201e":18,"\u201a":18,"\u201d":-6,"\u2019":-6,"\u00c5":6,"Y":12,"X":6,"V":6,"A":6,";":-6,":":-6,".":14,"-":-9,",":14}},"\u0152":{"d":"12,-123v0,-87,57,-123,161,-123r171,0r0,45r-103,0r0,51r98,0r0,45r-98,0r0,59r106,0r0,46r-179,0v-97,6,-156,-45,-156,-123xm75,-123v0,56,37,83,104,77r0,-154v-67,-5,-104,21,-104,77","w":362},"\u0154":{"d":"157,-327r-42,58r-40,0r32,-58r50,0xm240,0r-70,0v-24,-37,-20,-105,-83,-100r0,100r-61,0r0,-246v84,-2,188,-9,188,71v0,27,-14,47,-43,60v38,19,47,78,69,115xm150,-174v3,-30,-32,-29,-63,-28r0,57v31,1,66,2,63,-29","w":235},"\u0158":{"d":"155,-326r-34,61r-37,0r-34,-61r23,0r30,37r29,-37r23,0xm240,0r-70,0v-24,-37,-20,-105,-83,-100r0,100r-61,0r0,-246v84,-2,188,-9,188,71v0,27,-14,47,-43,60v38,19,47,78,69,115xm150,-174v3,-30,-32,-29,-63,-28r0,57v31,1,66,2,63,-29","w":235},"\u0156":{"d":"240,0r-70,0v-24,-37,-20,-105,-83,-100r0,100r-61,0r0,-246v84,-2,188,-9,188,71v0,27,-14,47,-43,60v38,19,47,78,69,115xm129,11v43,2,39,62,15,87v-13,13,-29,23,-49,26r0,-11v14,-15,20,-27,19,-44v-31,-8,-16,-60,15,-58xm150,-174v3,-30,-32,-29,-63,-28r0,57v31,1,66,2,63,-29","w":235},"\u015a":{"d":"169,-327r-42,57r-40,0r32,-57r50,0xm76,-184v-9,15,60,37,65,39v34,14,62,34,62,76v0,83,-123,89,-183,50r0,-55v34,21,62,31,84,31v34,0,48,-22,28,-38v-49,-26,-117,-33,-116,-98v2,-78,113,-86,176,-51r0,51v-32,-16,-59,-25,-80,-25v-24,0,-36,7,-36,20","w":214},"\u015c":{"d":"161,-265r-23,0r-29,-37r-29,37r-23,0r33,-62r38,0xm76,-184v-9,15,60,37,65,39v34,14,62,34,62,76v0,83,-123,89,-183,50r0,-55v34,21,62,31,84,31v34,0,48,-22,28,-38v-49,-26,-117,-33,-116,-98v2,-78,113,-86,176,-51r0,51v-32,-16,-59,-25,-80,-25v-24,0,-36,7,-36,20","w":214},"\u0160":{"d":"160,-330r-34,61r-37,0r-34,-61r23,0r30,36r29,-36r23,0xm76,-184v-9,15,60,37,65,39v34,14,62,34,62,76v0,83,-123,89,-183,50r0,-55v34,21,62,31,84,31v34,0,48,-22,28,-38v-49,-26,-117,-33,-116,-98v2,-78,113,-86,176,-51r0,51v-32,-16,-59,-25,-80,-25v-24,0,-36,7,-36,20","w":214},"\u015e":{"d":"76,-184v-9,15,60,37,65,39v34,14,63,34,62,76v-2,48,-40,74,-94,73v1,4,-3,14,3,13v28,0,41,10,41,33v1,40,-54,39,-91,26r0,-21v19,5,34,8,45,8v13,0,19,-4,19,-13v0,-11,-15,-15,-33,-14r0,-32v-26,-2,-50,-9,-73,-23r0,-55v34,21,62,31,84,31v34,0,48,-22,28,-38v-49,-26,-117,-33,-116,-98v2,-78,113,-86,176,-51r0,51v-32,-16,-59,-25,-80,-25v-24,0,-36,7,-36,20","w":214},"\u0218":{"d":"76,-184v-9,15,60,37,65,39v34,14,62,34,62,76v0,83,-123,89,-183,50r0,-55v34,21,62,31,84,31v34,0,48,-22,28,-38v-49,-26,-117,-33,-116,-98v2,-78,113,-86,176,-51r0,51v-32,-16,-59,-25,-80,-25v-24,0,-36,7,-36,20xm103,11v44,0,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-58,14,-58","w":214},"\u0164":{"d":"167,-326r-34,61r-38,0r-33,-61r23,0r29,37r30,-37r23,0xm230,-200r-81,0r0,200r-65,0r0,-200r-81,0r0,-46r227,0r0,46","w":232},"\u0162":{"d":"230,-200r-81,0r0,200r-65,0r0,-200r-81,0r0,-46r227,0r0,46xm116,11v44,0,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-58,14,-58","w":232},"\u021a":{"d":"230,-200r-81,0r0,200r-65,0r0,-200r-81,0r0,-46r227,0r0,46xm116,11v44,0,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-58,14,-58","w":232},"\uf6c1":{"d":"230,-200r-81,0r0,217v29,0,44,9,44,33v1,40,-55,39,-92,26r0,-21v19,5,34,8,45,8v13,0,19,-4,19,-13v0,-11,-14,-15,-32,-14r0,-36r-49,0r0,-200r-81,0r0,-46r227,0r0,46","w":232},"\u0166":{"d":"230,-200r-81,0r0,75r41,0r0,35r-41,0r0,90r-65,0r0,-90r-41,0r0,-35r41,0r0,-75r-81,0r0,-46r227,0r0,46","w":232},"\u00de":{"d":"86,-199v71,-2,127,7,127,74v0,58,-51,80,-127,75r0,50r-62,0r0,-246r62,0r0,47xm149,-126v3,-29,-32,-29,-63,-28r0,56v31,1,66,2,63,-28","w":223},"\u00d9":{"d":"168,-270r-39,0r-43,-57r50,0xm139,4v-71,0,-117,-38,-117,-109r0,-141r62,0v7,76,-28,199,55,199v83,0,46,-124,54,-199r62,0r0,141v1,70,-46,109,-116,109","w":277},"\u00da":{"d":"186,-327r-42,57r-40,0r33,-57r49,0xm139,4v-71,0,-117,-38,-117,-109r0,-141r62,0v7,76,-28,199,55,199v83,0,46,-124,54,-199r62,0r0,141v1,70,-46,109,-116,109","w":277},"\u00db":{"d":"191,-269r-23,0r-29,-37r-30,37r-22,0r33,-61r38,0xm139,4v-71,0,-117,-38,-117,-109r0,-141r62,0v7,76,-28,199,55,199v83,0,46,-124,54,-199r62,0r0,141v1,70,-46,109,-116,109","w":277},"\u0168":{"d":"186,-320v-6,47,-37,43,-73,32v-8,0,-13,4,-15,12r-17,0v6,-47,38,-40,73,-30v8,0,13,-5,15,-14r17,0xm139,4v-71,0,-117,-38,-117,-109r0,-141r62,0v7,76,-28,199,55,199v83,0,46,-124,54,-199r62,0r0,141v1,70,-46,109,-116,109","w":277},"\u00dc":{"d":"171,-319v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm107,-319v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm139,4v-71,0,-117,-38,-117,-109r0,-141r62,0v7,76,-28,199,55,199v83,0,46,-124,54,-199r62,0r0,141v1,70,-46,109,-116,109","w":277},"\u016a":{"d":"191,-286r-104,0r0,-26r104,0r0,26xm139,4v-71,0,-117,-38,-117,-109r0,-141r62,0v7,76,-28,199,55,199v83,0,46,-124,54,-199r62,0r0,141v1,70,-46,109,-116,109","w":277},"\u016c":{"d":"190,-323v-2,34,-20,51,-52,51v-33,0,-51,-17,-53,-51r22,0v1,17,11,25,31,25v19,0,30,-8,31,-25r21,0xm139,4v-71,0,-117,-38,-117,-109r0,-141r62,0v7,76,-28,199,55,199v83,0,46,-124,54,-199r62,0r0,141v1,70,-46,109,-116,109","w":277},"\u016e":{"d":"140,-327v25,0,45,20,45,45v0,25,-20,46,-45,46v-25,0,-45,-21,-45,-46v0,-25,21,-45,45,-45xm139,4v-71,0,-117,-38,-117,-109r0,-141r62,0v7,76,-28,199,55,199v83,0,46,-124,54,-199r62,0r0,141v1,70,-46,109,-116,109xm140,-259v12,0,23,-9,22,-22v0,-13,-10,-23,-22,-23v-12,0,-23,11,-23,23v0,12,10,22,23,22","w":277},"\u0170":{"d":"193,-327r-37,58r-19,0r21,-58r35,0xm140,-327r-31,58r-18,0r16,-58r33,0xm139,4v-71,0,-117,-38,-117,-109r0,-141r62,0v7,76,-28,199,55,199v83,0,46,-124,54,-199r62,0r0,141v1,70,-46,109,-116,109","w":277},"\u0172":{"d":"163,3v-83,9,-141,-29,-141,-108r0,-141r62,0v7,76,-28,199,55,199v83,0,46,-124,54,-199r62,0v-4,100,21,212,-60,240v-26,8,-32,49,-1,51v8,0,16,-3,24,-8r0,29v-29,19,-82,11,-81,-26v0,-14,9,-26,26,-37","w":277},"\u0174":{"d":"229,-265r-23,0r-29,-37r-29,37r-23,0r33,-61r38,0xm357,-246r-100,248r-25,0r-56,-154r-55,154r-26,0r-99,-248r64,0r48,134r48,-134r41,0r48,134r48,-134r64,0","w":352},"\u00dd":{"d":"170,-331r-52,61r-23,0r36,-61r39,0xm249,-246r-98,134r0,112r-62,0r0,-111r-97,-135r74,0r54,80r56,-80r73,0","w":241},"\u0176":{"d":"173,-265r-23,0r-29,-37r-30,37r-23,0r34,-61r38,0xm249,-246r-98,134r0,112r-62,0r0,-111r-97,-135r74,0r54,80r56,-80r73,0","w":241},"\u0178":{"d":"131,-298v0,-30,43,-25,43,0v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-21xm89,-319v11,0,20,10,20,21v1,12,-8,21,-20,21v-12,0,-22,-9,-22,-21v0,-11,10,-21,22,-21xm249,-246r-98,134r0,112r-62,0r0,-111r-97,-135r74,0r54,80r56,-80r73,0","w":241,"k":{"\u00ff":-6}},"\u0179":{"d":"180,-327r-42,57r-40,0r33,-57r49,0xm241,-246r-134,198r133,0r0,48r-239,0r135,-200r-124,0r0,-46r229,0","w":246},"\u017d":{"d":"176,-330r-34,61r-38,0r-33,-61r23,0r29,36r30,-36r23,0xm241,-246r-134,198r133,0r0,48r-239,0r135,-200r-124,0r0,-46r229,0","w":246},"\u017b":{"d":"120,-329v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-13,-28,-28v0,-15,13,-28,28,-28xm241,-246r-134,198r133,0r0,48r-239,0r135,-200r-124,0r0,-46r229,0","w":246,"k":{"-":6}},"\u00e0":{"d":"121,-190r-40,0r-42,-57r50,0xm17,-150v41,-28,150,-36,143,38r0,67v0,15,12,10,23,6r0,29v-27,14,-65,23,-74,-5v-31,28,-107,27,-100,-28v6,-46,42,-44,98,-64v1,-20,-9,-28,-33,-28v-19,0,-38,9,-57,27r0,-42xm107,-81v-26,10,-41,12,-45,34v1,25,29,19,45,7r0,-41","w":185},"\u00e1":{"d":"153,-247r-42,57r-40,0r32,-57r50,0xm17,-150v41,-28,150,-36,143,38r0,67v0,15,12,10,23,6r0,29v-27,14,-65,23,-74,-5v-31,28,-107,27,-100,-28v6,-46,42,-44,98,-64v1,-20,-9,-28,-33,-28v-19,0,-38,9,-57,27r0,-42xm107,-81v-26,10,-41,12,-45,34v1,25,29,19,45,7r0,-41","w":185},"\u00e2":{"d":"142,-186r-23,0r-29,-36r-30,36r-23,0r34,-61r38,0xm17,-150v41,-28,150,-36,143,38r0,67v0,15,12,10,23,6r0,29v-27,14,-65,23,-74,-5v-31,28,-107,27,-100,-28v6,-46,42,-44,98,-64v1,-20,-9,-28,-33,-28v-19,0,-38,9,-57,27r0,-42xm107,-81v-26,10,-41,12,-45,34v1,25,29,19,45,7r0,-41","w":185},"\u00e3":{"d":"143,-240v-7,46,-37,43,-73,32v-8,0,-13,4,-15,12r-18,0v6,-46,39,-41,74,-30v8,0,13,-5,15,-14r17,0xm17,-150v41,-28,150,-36,143,38r0,67v0,15,12,10,23,6r0,29v-27,14,-65,23,-74,-5v-31,28,-107,27,-100,-28v6,-46,42,-44,98,-64v1,-20,-9,-28,-33,-28v-19,0,-38,9,-57,27r0,-42xm107,-81v-26,10,-41,12,-45,34v1,25,29,19,45,7r0,-41","w":185},"\u00e4":{"d":"122,-239v12,0,21,9,21,21v0,13,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm58,-239v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm17,-150v41,-28,150,-36,143,38r0,67v0,15,12,10,23,6r0,29v-27,14,-65,23,-74,-5v-31,28,-107,27,-100,-28v6,-46,42,-44,98,-64v1,-20,-9,-28,-33,-28v-19,0,-38,9,-57,27r0,-42xm107,-81v-26,10,-41,12,-45,34v1,25,29,19,45,7r0,-41","w":185},"\u0101":{"d":"143,-205r-105,0r0,-26r105,0r0,26xm17,-150v41,-28,150,-36,143,38r0,67v0,15,12,10,23,6r0,29v-27,14,-65,23,-74,-5v-31,28,-107,27,-100,-28v6,-46,42,-44,98,-64v1,-20,-9,-28,-33,-28v-19,0,-38,9,-57,27r0,-42xm107,-81v-26,10,-41,12,-45,34v1,25,29,19,45,7r0,-41","w":185},"\u0103":{"d":"144,-243v-2,34,-19,50,-51,50v-33,0,-51,-16,-53,-50r21,0v1,17,12,24,32,24v19,0,29,-7,30,-24r21,0xm17,-150v41,-28,150,-36,143,38r0,67v0,15,12,10,23,6r0,29v-27,14,-65,23,-74,-5v-31,28,-107,27,-100,-28v6,-46,42,-44,98,-64v1,-20,-9,-28,-33,-28v-19,0,-38,9,-57,27r0,-42xm107,-81v-26,10,-41,12,-45,34v1,25,29,19,45,7r0,-41","w":185},"\u00e5":{"d":"91,-271v23,0,45,21,45,44v0,24,-21,45,-45,45v-23,0,-44,-22,-44,-45v0,-23,21,-44,44,-44xm17,-150v41,-28,150,-36,143,38r0,67v0,15,12,10,23,6r0,29v-27,14,-65,23,-74,-5v-31,28,-107,27,-100,-28v6,-46,42,-44,98,-64v1,-20,-9,-28,-33,-28v-19,0,-38,9,-57,27r0,-42xm91,-206v12,0,21,-9,21,-21v0,-11,-10,-20,-21,-20v-11,0,-20,9,-20,20v0,11,9,21,20,21xm107,-81v-26,10,-41,12,-45,34v1,25,29,19,45,7r0,-41","w":185},"\u0105":{"d":"138,26v2,22,30,23,45,11r0,29v-29,19,-81,11,-80,-26v0,-14,8,-27,26,-38v-12,-2,-19,-7,-20,-17v-31,28,-107,27,-100,-28v6,-46,42,-44,98,-64v1,-20,-9,-28,-33,-28v-19,0,-38,9,-57,27r0,-42v41,-28,150,-36,143,38r0,67v0,15,12,10,23,6r0,29v-12,6,-47,15,-45,36xm107,-81v-26,10,-41,12,-45,34v1,25,29,19,45,7r0,-41","w":185},"\u00e6":{"d":"143,-154v60,-40,144,0,136,80r-118,1v2,55,78,50,114,20r0,35v-38,28,-118,32,-147,-4v-37,32,-119,41,-120,-20v0,-34,33,-53,99,-58v2,-55,-64,-37,-90,-8r0,-42v35,-23,92,-29,126,-4xm226,-100v-1,-46,-63,-44,-65,0r65,0xm107,-40r0,-34v-30,1,-45,10,-45,27v1,25,29,19,45,7","w":288},"\u0107":{"d":"154,-247r-42,57r-40,0r32,-57r50,0xm157,-118v-42,-21,-92,-13,-93,35v-2,50,55,55,95,35r0,40v-65,30,-150,-1,-150,-75v0,-73,81,-106,148,-76r0,41","w":170,"k":{"x":6}},"\u0109":{"d":"150,-186r-23,0r-29,-36r-29,36r-23,0r33,-61r38,0xm157,-118v-42,-21,-92,-13,-93,35v-2,50,55,55,95,35r0,40v-65,30,-150,-1,-150,-75v0,-73,81,-106,148,-76r0,41","w":170},"\u010d":{"d":"153,-247r-33,61r-38,0r-34,-61r23,0r30,37r29,-37r23,0xm157,-118v-42,-21,-92,-13,-93,35v-2,50,55,55,95,35r0,40v-65,30,-150,-1,-150,-75v0,-73,81,-106,148,-76r0,41","w":170},"\u010b":{"d":"98,-247v14,0,25,11,25,25v0,13,-12,24,-25,24v-13,0,-25,-12,-25,-24v0,-12,12,-25,25,-25xm157,-118v-42,-21,-92,-13,-93,35v-2,50,55,55,95,35r0,40v-65,30,-150,-1,-150,-75v0,-73,81,-106,148,-76r0,41","w":170},"\u00e7":{"d":"157,-118v-42,-21,-92,-13,-93,35v-2,50,55,55,95,35r0,40v-65,30,-150,-1,-150,-75v0,-73,81,-106,148,-76r0,41xm157,50v1,40,-55,39,-92,26r0,-21v19,5,34,8,45,8v13,0,19,-4,19,-13v0,-11,-14,-15,-32,-14r0,-36r16,0v1,5,-3,15,2,17v28,0,42,10,42,33","w":170},"\u010f":{"d":"275,-247r-42,57r-40,0r33,-57r49,0xm10,-83v0,-68,71,-113,124,-71r0,-92r53,0r0,246r-51,0r0,-14v-51,44,-126,1,-126,-69xm64,-83v0,40,41,59,70,35r0,-71v-29,-23,-70,-4,-70,36","w":236},"\u0111":{"d":"10,-81v0,-66,72,-113,124,-69r0,-41r-50,0r0,-28r50,0r0,-27r53,0r0,27r25,0r0,28r-25,0r0,191r-51,0r0,-14v-51,44,-126,1,-126,-67xm64,-81v0,37,41,58,70,33r0,-66v-28,-24,-70,-6,-70,33","w":207},"\u00f0":{"d":"9,-77v0,-66,90,-109,136,-59v-2,-19,-8,-36,-18,-51r-55,16r-8,-22r48,-14v-8,-7,-16,-14,-26,-21r24,-22v12,6,27,17,43,33r41,-12r8,22r-34,10v44,66,38,200,-68,200v-51,0,-91,-31,-91,-80xm100,-33v23,0,38,-19,38,-44v0,-24,-15,-44,-38,-44v-23,0,-37,19,-37,44v0,25,14,44,37,44","w":200},"\u00e8":{"d":"124,-190r-40,0r-42,-57r50,0xm98,-170v54,0,85,40,84,96r-118,1v3,54,78,51,114,20r0,35v-63,44,-168,22,-168,-67v0,-52,36,-85,88,-85xm129,-100v-1,-45,-63,-45,-65,0r65,0","w":191,"k":{"-":6}},"\u00e9":{"d":"154,-247r-42,57r-40,0r32,-57r50,0xm98,-170v54,0,85,40,84,96r-118,1v3,54,78,51,114,20r0,35v-63,44,-168,22,-168,-67v0,-52,36,-85,88,-85xm129,-100v-1,-45,-63,-45,-65,0r65,0","w":191},"\u00ea":{"d":"148,-189r-23,0r-29,-37r-30,37r-22,0r33,-62r38,0xm98,-170v54,0,85,40,84,96r-118,1v3,54,78,51,114,20r0,35v-63,44,-168,22,-168,-67v0,-52,36,-85,88,-85xm129,-100v-1,-45,-63,-45,-65,0r65,0","w":191},"\u011b":{"d":"150,-247r-33,61r-38,0r-34,-61r23,0r30,37r29,-37r23,0xm98,-170v54,0,85,40,84,96r-118,1v3,54,78,51,114,20r0,35v-63,44,-168,22,-168,-67v0,-52,36,-85,88,-85xm129,-100v-1,-45,-63,-45,-65,0r65,0","w":191},"\u00eb":{"d":"128,-239v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm42,-218v0,-30,43,-25,43,0v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-21xm98,-170v54,0,85,40,84,96r-118,1v3,54,78,51,114,20r0,35v-63,44,-168,22,-168,-67v0,-52,36,-85,88,-85xm129,-100v-1,-45,-63,-45,-65,0r65,0","w":191},"\u0113":{"d":"153,-205r-104,0r0,-26r104,0r0,26xm98,-170v54,0,85,40,84,96r-118,1v3,54,78,51,114,20r0,35v-63,44,-168,22,-168,-67v0,-52,36,-85,88,-85xm129,-100v-1,-45,-63,-45,-65,0r65,0","w":191},"\u0115":{"d":"151,-243v-2,34,-20,50,-52,50v-33,0,-50,-16,-52,-50r21,0v1,17,11,24,31,24v19,0,30,-7,31,-24r21,0xm98,-170v54,0,85,40,84,96r-118,1v3,54,78,51,114,20r0,35v-63,44,-168,22,-168,-67v0,-52,36,-85,88,-85xm129,-100v-1,-45,-63,-45,-65,0r65,0","w":191},"\u0117":{"d":"98,-247v13,0,24,12,24,25v0,13,-11,24,-24,24v-13,0,-25,-11,-25,-24v0,-13,12,-25,25,-25xm98,-170v54,0,85,40,84,96r-118,1v3,54,78,51,114,20r0,35v-63,44,-168,22,-168,-67v0,-52,36,-85,88,-85xm129,-100v-1,-45,-63,-45,-65,0r65,0","w":191},"\u0119":{"d":"98,-170v54,0,85,40,84,96r-118,1v3,54,78,51,114,20r0,35v-19,8,-47,25,-45,44v2,22,29,23,45,11r0,29v-30,19,-80,11,-80,-26v0,-14,9,-27,27,-38v-67,11,-115,-23,-115,-87v0,-52,36,-85,88,-85xm129,-100v-1,-45,-63,-45,-65,0r65,0","w":191,"k":{"x":6}},"\u011d":{"d":"151,-186r-23,0r-29,-36r-30,36r-22,0r33,-61r38,0xm89,82v-45,1,-86,-13,-86,-49v0,-20,15,-34,45,-42v-31,-8,-24,-42,8,-46v-29,-9,-44,-27,-44,-54v0,-67,100,-59,172,-58r0,35r-23,0v24,48,-13,86,-73,86v-14,0,-13,19,1,19v42,4,89,14,89,54v0,37,-30,55,-89,55xm91,-78v18,0,30,-10,30,-28v0,-18,-12,-29,-30,-29v-18,0,-30,11,-30,29v0,18,12,28,30,28xm131,30v0,-13,-13,-19,-39,-19v-27,0,-40,6,-40,19v0,14,13,20,39,20v26,0,40,-7,40,-20","w":189},"\u011f":{"d":"149,-243v-2,34,-19,50,-51,50v-33,0,-51,-16,-53,-50r21,0v1,17,12,24,32,24v19,0,30,-7,31,-24r20,0xm89,82v-45,1,-86,-13,-86,-49v0,-20,15,-34,45,-42v-31,-8,-24,-42,8,-46v-29,-9,-44,-27,-44,-54v0,-67,100,-59,172,-58r0,35r-23,0v24,48,-13,86,-73,86v-14,0,-13,19,1,19v42,4,89,14,89,54v0,37,-30,55,-89,55xm91,-78v18,0,30,-10,30,-28v0,-18,-12,-29,-30,-29v-18,0,-30,11,-30,29v0,18,12,28,30,28xm131,30v0,-13,-13,-19,-39,-19v-27,0,-40,6,-40,19v0,14,13,20,39,20v26,0,40,-7,40,-20","w":189},"\u0121":{"d":"96,-247v14,0,25,11,25,25v0,13,-12,24,-25,24v-13,0,-24,-11,-24,-24v0,-12,11,-25,24,-25xm89,82v-45,1,-86,-13,-86,-49v0,-20,15,-34,45,-42v-31,-8,-24,-42,8,-46v-29,-9,-44,-27,-44,-54v0,-67,100,-59,172,-58r0,35r-23,0v24,48,-13,86,-73,86v-14,0,-13,19,1,19v42,4,89,14,89,54v0,37,-30,55,-89,55xm91,-78v18,0,30,-10,30,-28v0,-18,-12,-29,-30,-29v-18,0,-30,11,-30,29v0,18,12,28,30,28xm131,30v0,-13,-13,-19,-39,-19v-27,0,-40,6,-40,19v0,14,13,20,39,20v26,0,40,-7,40,-20","w":189},"\u0123":{"d":"96,-179v-44,0,-40,-62,-15,-86v13,-13,28,-23,48,-26r0,10v-13,15,-19,28,-19,44v30,8,17,58,-14,58xm89,82v-45,1,-86,-13,-86,-49v0,-20,15,-34,45,-42v-31,-8,-24,-42,8,-46v-29,-9,-44,-27,-44,-54v0,-67,100,-59,172,-58r0,35r-23,0v24,48,-13,86,-73,86v-14,0,-13,19,1,19v42,4,89,14,89,54v0,37,-30,55,-89,55xm91,-78v18,0,30,-10,30,-28v0,-18,-12,-29,-30,-29v-18,0,-30,11,-30,29v0,18,12,28,30,28xm131,30v0,-13,-13,-19,-39,-19v-27,0,-40,6,-40,19v0,14,13,20,39,20v26,0,40,-7,40,-20","w":189},"\u0125":{"d":"99,-265r-23,0r-30,-36r-29,36r-23,0r33,-61r39,0xm185,0r-53,0r0,-98v2,-49,-46,-40,-60,-8r0,106r-53,0r0,-246r53,0r0,100v37,-40,113,-32,113,41r0,105"},"\u0127":{"d":"185,0r-53,0r0,-98v2,-49,-46,-40,-60,-8r0,106r-53,0r0,-191r-19,0r0,-28r19,0r0,-27r53,0r0,27r57,0r0,28r-57,0r0,45v37,-40,113,-32,113,41r0,105"},"\u0131":{"d":"72,0r-53,0r0,-167r53,0r0,167","w":90},"\u00ec":{"d":"67,-190r-40,0r-42,-57r50,0xm72,0r-53,0r0,-167r53,0r0,167","w":90},"\u00ed":{"d":"105,-247r-42,57r-40,0r33,-57r49,0xm72,0r-53,0r0,-167r53,0r0,167","w":90},"\u012d":{"d":"99,-243v-2,34,-20,50,-52,50v-33,0,-50,-16,-52,-50r21,0v1,17,11,24,31,24v19,0,30,-7,31,-24r21,0xm72,0r-53,0r0,-167r53,0r0,167","w":90},"\u00ee":{"d":"98,-189r-23,0r-30,-37r-29,37r-23,0r33,-62r38,0xm72,0r-53,0r0,-167r53,0r0,167","w":90},"\u0129":{"d":"96,-240v-7,46,-37,43,-73,32v-8,0,-13,4,-15,12r-18,0v6,-45,38,-41,73,-30v8,0,13,-5,15,-14r18,0xm72,0r-53,0r0,-167r53,0r0,167","w":90},"\u00ef":{"d":"77,-239v12,0,21,9,21,21v0,13,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm13,-239v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm72,0r-53,0r0,-167r53,0r0,167","w":90},"\u012b":{"d":"98,-205r-104,0r0,-26r104,0r0,26xm72,0r-53,0r0,-167r53,0r0,167","w":90},"\u012f":{"d":"45,-249v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-13,-28,-28v0,-15,13,-28,28,-28xm63,0v-26,-1,-33,46,-2,45v8,0,16,-3,24,-8r0,29v-29,19,-82,11,-81,-26v0,-15,11,-28,31,-40r-16,0r0,-167r53,0r0,167r-9,0","w":90},"\u0135":{"d":"99,-186r-23,0r-29,-36r-30,36r-22,0r33,-61r38,0xm73,-167v-5,74,15,176,-14,225v-8,14,-25,22,-47,24r-17,-46v17,-4,26,-15,26,-35r0,-168r52,0","w":92},"\u0137":{"d":"200,0r-63,0r-65,-86r64,-81r63,0r-64,81xm71,0r-52,0r0,-246r52,0r0,246xm104,11v44,0,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-58,14,-58","w":198},"\u013a":{"d":"110,-327r-42,57r-40,0r32,-57r50,0xm72,0r-53,0r0,-246r53,0r0,246","w":90},"\u013e":{"d":"157,-247r-42,57r-40,0r33,-57r49,0xm72,0r-53,0r0,-246r53,0r0,246","w":110},"\u013c":{"d":"72,0r-53,0r0,-246r53,0r0,246xm48,11v43,2,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-59,14,-58","w":90},"\u0142":{"d":"93,-148r-18,11r0,137r-49,0r0,-108r-14,11r0,-44r14,-11r0,-94r49,0r0,65r18,-12r0,45","w":101},"\u0140":{"d":"109,-155v18,0,31,14,31,32v0,17,-14,31,-31,31v-18,0,-32,-13,-32,-31v0,-17,14,-32,32,-32xm72,0r-53,0r0,-246r53,0r0,246","w":146},"\u0144":{"d":"151,-247r-42,57r-40,0r32,-57r50,0xm185,0r-53,0r0,-98v2,-49,-46,-40,-61,-8r0,106r-52,0r0,-167r52,0r0,21v37,-40,114,-32,114,41r0,105"},"\u0148":{"d":"151,-247r-34,61r-37,0r-34,-61r23,0r30,37r29,-37r23,0xm185,0r-53,0r0,-98v2,-49,-46,-40,-61,-8r0,106r-52,0r0,-167r52,0r0,21v37,-40,114,-32,114,41r0,105"},"\u00f1":{"d":"157,-240v-7,46,-37,43,-73,32v-8,0,-13,4,-15,12r-18,0v6,-45,38,-41,73,-30v8,0,13,-5,15,-14r18,0xm185,0r-53,0r0,-98v2,-49,-46,-40,-61,-8r0,106r-52,0r0,-167r52,0r0,21v37,-40,114,-32,114,41r0,105"},"\u0146":{"d":"185,0r-53,0r0,-98v2,-49,-46,-40,-61,-8r0,106r-52,0r0,-167r52,0r0,21v37,-40,114,-32,114,41r0,105xm105,11v44,0,40,62,16,87v-13,13,-29,23,-49,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-58,14,-58"},"\u00f2":{"d":"135,-190r-40,0r-42,-57r50,0xm100,-170v53,0,92,35,92,87v0,51,-40,86,-92,86v-52,0,-91,-35,-91,-86v0,-51,39,-87,91,-87xm100,-36v24,0,38,-20,38,-47v0,-25,-14,-47,-38,-47v-23,0,-37,22,-37,47v0,26,14,47,37,47","w":200},"\u00f3":{"d":"157,-247r-43,57r-39,0r32,-57r50,0xm100,-170v53,0,92,35,92,87v0,51,-40,86,-92,86v-52,0,-91,-35,-91,-86v0,-51,39,-87,91,-87xm100,-36v24,0,38,-20,38,-47v0,-25,-14,-47,-38,-47v-23,0,-37,22,-37,47v0,26,14,47,37,47","w":200,"k":{"x":6,"-":-6}},"\u00f4":{"d":"153,-189r-23,0r-30,-37r-29,37r-23,0r33,-62r39,0xm100,-170v53,0,92,35,92,87v0,51,-40,86,-92,86v-52,0,-91,-35,-91,-86v0,-51,39,-87,91,-87xm100,-36v24,0,38,-20,38,-47v0,-25,-14,-47,-38,-47v-23,0,-37,22,-37,47v0,26,14,47,37,47","w":200},"\u00f5":{"d":"153,-240v-7,46,-37,43,-73,32v-8,0,-13,4,-15,12r-17,0v5,-46,39,-40,73,-30v8,0,13,-5,15,-14r17,0xm100,-170v53,0,92,35,92,87v0,51,-40,86,-92,86v-52,0,-91,-35,-91,-86v0,-51,39,-87,91,-87xm100,-36v24,0,38,-20,38,-47v0,-25,-14,-47,-38,-47v-23,0,-37,22,-37,47v0,26,14,47,37,47","w":200},"\u00f6":{"d":"132,-239v12,0,21,9,21,21v0,13,-9,21,-21,21v-12,0,-21,-9,-21,-21v1,-11,9,-21,21,-21xm68,-239v12,0,21,9,21,21v0,13,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm100,-170v53,0,92,35,92,87v0,51,-40,86,-92,86v-52,0,-91,-35,-91,-86v0,-51,39,-87,91,-87xm100,-36v24,0,38,-20,38,-47v0,-25,-14,-47,-38,-47v-23,0,-37,22,-37,47v0,26,14,47,37,47","w":200},"\u014d":{"d":"153,-205r-104,0r0,-26r104,0r0,26xm100,-170v53,0,92,35,92,87v0,51,-40,86,-92,86v-52,0,-91,-35,-91,-86v0,-51,39,-87,91,-87xm100,-36v24,0,38,-20,38,-47v0,-25,-14,-47,-38,-47v-23,0,-37,22,-37,47v0,26,14,47,37,47","w":200},"\u014f":{"d":"153,-243v-2,34,-20,50,-52,50v-33,0,-50,-16,-52,-50r21,0v1,17,11,24,31,24v19,0,30,-7,31,-24r21,0xm100,-170v53,0,92,35,92,87v0,51,-40,86,-92,86v-52,0,-91,-35,-91,-86v0,-51,39,-87,91,-87xm100,-36v24,0,38,-20,38,-47v0,-25,-14,-47,-38,-47v-23,0,-37,22,-37,47v0,26,14,47,37,47","w":200},"\u0151":{"d":"169,-247r-38,57r-18,0r21,-57r35,0xm116,-247r-31,57r-18,0r16,-57r33,0xm100,-170v53,0,92,35,92,87v0,51,-40,86,-92,86v-52,0,-91,-35,-91,-86v0,-51,39,-87,91,-87xm100,-36v24,0,38,-20,38,-47v0,-25,-14,-47,-38,-47v-23,0,-37,22,-37,47v0,26,14,47,37,47","w":200},"\u00f8":{"d":"26,-31v-43,-56,0,-139,74,-139v22,0,41,6,58,17r21,-20r17,17r-21,20v43,56,0,139,-75,139v-22,0,-42,-5,-58,-17r-21,20r-17,-16xm124,-121v-32,-27,-74,9,-59,54xm76,-46v32,28,75,-8,60,-54","w":200,"k":{"\u201c":6,"\u2018":6,"x":6,"-":-6}},"\u0153":{"d":"163,-147v55,-50,157,-13,147,73r-118,1v2,55,78,50,114,20r0,34v-41,28,-103,31,-143,1v-56,49,-154,11,-154,-65v0,-78,100,-114,154,-64xm257,-100v-1,-20,-13,-34,-32,-34v-19,0,-30,11,-33,34r65,0xm100,-36v24,0,38,-20,38,-47v0,-25,-14,-47,-38,-47v-23,0,-37,22,-37,47v0,26,14,47,37,47","w":318},"\u0155":{"d":"125,-247r-42,57r-40,0r32,-57r50,0xm143,-109v-32,-30,-71,1,-71,37r0,72r-53,0r0,-167r53,0r0,45v27,-44,44,-60,85,-35","w":154},"\u0157":{"d":"143,-109v-32,-30,-71,1,-71,37r0,72r-53,0r0,-167r53,0r0,45v27,-44,44,-60,85,-35xm48,11v44,0,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-58,14,-58","w":154},"\u0159":{"d":"125,-247r-34,61r-37,0r-34,-61r23,0r30,37r29,-37r23,0xm143,-109v-32,-30,-71,1,-71,37r0,72r-53,0r0,-167r53,0r0,45v27,-44,44,-60,85,-35","w":154},"\u015b":{"d":"132,-247r-42,57r-40,0r32,-57r50,0xm24,-84v-37,-32,-1,-86,50,-86v20,0,39,4,57,13r0,37v-21,-11,-40,-17,-54,-17v-23,-1,-25,18,-7,26v29,12,69,25,69,61v0,61,-83,63,-127,41r0,-37v22,10,39,15,52,15v40,-3,24,-24,-1,-33v-21,-8,-34,-16,-39,-20","w":148,"k":{"x":6}},"\u015d":{"d":"127,-186r-23,0r-29,-36r-30,36r-22,0r33,-61r38,0xm24,-84v-37,-32,-1,-86,50,-86v20,0,39,4,57,13r0,37v-21,-11,-40,-17,-54,-17v-23,-1,-25,18,-7,26v29,12,69,25,69,61v0,61,-83,63,-127,41r0,-37v22,10,39,15,52,15v40,-3,24,-24,-1,-33v-21,-8,-34,-16,-39,-20","w":148},"\u0161":{"d":"126,-251r-33,62r-38,0r-33,-62r23,0r29,37r29,-37r23,0xm24,-84v-37,-32,-1,-86,50,-86v20,0,39,4,57,13r0,37v-21,-11,-40,-17,-54,-17v-23,-1,-25,18,-7,26v29,12,69,25,69,61v0,61,-83,63,-127,41r0,-37v22,10,39,15,52,15v40,-3,24,-24,-1,-33v-21,-8,-34,-16,-39,-20","w":148},"\u015f":{"d":"24,-84v-37,-32,-1,-86,50,-86v20,0,39,4,57,13r0,37v-21,-11,-40,-17,-54,-17v-23,-1,-25,18,-7,26v29,12,70,25,69,61v-1,35,-26,52,-62,54v1,4,-3,13,2,13v28,0,42,10,42,33v1,40,-55,39,-92,26r0,-21v19,5,34,8,45,8v13,0,19,-4,19,-13v0,-11,-14,-15,-32,-14r0,-33v-18,-1,-35,-5,-49,-12r0,-37v22,10,39,15,52,15v40,-3,24,-24,-1,-33v-21,-8,-34,-16,-39,-20","w":148},"\u0219":{"d":"24,-84v-37,-32,-1,-86,50,-86v20,0,39,4,57,13r0,37v-21,-11,-40,-17,-54,-17v-23,-1,-25,18,-7,26v29,12,69,25,69,61v0,61,-83,63,-127,41r0,-37v22,10,39,15,52,15v40,-3,24,-24,-1,-33v-21,-8,-34,-16,-39,-20xm71,11v44,0,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-58,14,-58","w":148},"\u00df":{"d":"102,-248v71,0,114,76,52,108v27,11,40,32,40,66v1,56,-40,87,-96,75r0,-35v32,1,44,-12,44,-45v0,-31,-14,-46,-44,-47r0,-26v23,-1,34,-11,34,-31v0,-17,-11,-28,-28,-28v-26,0,-31,13,-31,40r0,171r-53,0r0,-175v1,-47,32,-73,82,-73","w":204,"k":{"\u201c":6,"\u2018":6,"-":-12}},"\u0165":{"d":"175,-247r-43,57r-39,0r32,-57r50,0xm78,-130v5,35,-16,96,26,93v9,0,19,-2,31,-8r1,39v-55,21,-118,10,-110,-63r0,-61r-23,0r0,-11r68,-74r7,0r0,48r57,0r0,37r-57,0","w":150},"\u0163":{"d":"78,-130v5,35,-16,96,26,93v9,0,19,-2,31,-8r1,39v-55,21,-118,10,-110,-63r0,-61r-23,0r0,-11r68,-74r7,0r0,48r57,0r0,37r-57,0xm68,11v44,0,40,62,16,87v-13,13,-29,23,-49,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-58,14,-58","w":142},"\u021b":{"d":"78,-130v5,35,-16,96,26,93v9,0,19,-2,31,-8r1,39v-55,21,-118,10,-110,-63r0,-61r-23,0r0,-11r68,-74r7,0r0,48r57,0r0,37r-57,0xm68,11v44,0,40,62,16,87v-13,13,-29,23,-49,26r0,-11v14,-15,20,-27,19,-44v-30,-8,-16,-58,14,-58","w":142},"\uf6c2":{"d":"78,-130v5,35,-16,96,26,93v9,0,19,-2,31,-8r1,39v-17,6,-34,10,-51,10v1,4,-3,14,3,13v28,0,42,10,42,33v1,40,-55,39,-92,26r0,-21v19,5,34,8,45,8v13,0,19,-4,19,-13v0,-11,-15,-15,-33,-14r0,-33v-53,-6,-41,-74,-43,-133r-23,0r0,-11r68,-74r7,0r0,48r57,0r0,37r-57,0","w":142},"\u0167":{"d":"78,-72v-5,41,29,41,57,27r1,39v-57,22,-119,9,-110,-66r-14,0r0,-35r14,0r0,-23r-23,0r0,-11r68,-74r7,0r0,48r57,0r0,37r-57,0r0,23r44,0r0,35r-44,0","w":142},"\u00fe":{"d":"71,-155v53,-39,125,4,125,72v0,68,-72,113,-125,71r0,94r-52,0r0,-328r52,0r0,91xm71,-48v28,23,70,5,70,-36v0,-40,-39,-59,-70,-36r0,72","w":205},"\u00f9":{"d":"135,-190r-40,0r-42,-57r50,0xm132,-21v-37,41,-114,29,-114,-40r0,-106r53,0r0,99v-2,49,46,40,61,8r0,-107r52,0r0,167r-52,0r0,-21"},"\u00fa":{"d":"146,-247r-42,57r-40,0r32,-57r50,0xm132,-21v-37,41,-114,29,-114,-40r0,-106r53,0r0,99v-2,49,46,40,61,8r0,-107r52,0r0,167r-52,0r0,-21"},"\u00fb":{"d":"154,-189r-23,0r-29,-37r-30,37r-23,0r33,-62r39,0xm132,-21v-37,41,-114,29,-114,-40r0,-106r53,0r0,99v-2,49,46,40,61,8r0,-107r52,0r0,167r-52,0r0,-21"},"\u0169":{"d":"149,-240v-7,46,-37,43,-73,32v-8,0,-13,4,-15,12r-18,0v6,-45,38,-41,73,-30v8,0,13,-5,15,-14r18,0xm132,-21v-37,41,-114,29,-114,-40r0,-106r53,0r0,99v-2,49,46,40,61,8r0,-107r52,0r0,167r-52,0r0,-21"},"\u00fc":{"d":"134,-239v11,0,20,10,20,21v1,12,-8,21,-20,21v-12,0,-22,-9,-22,-21v0,-11,10,-21,22,-21xm69,-239v12,0,21,9,21,21v0,13,-9,21,-21,21v-12,0,-21,-9,-21,-21v1,-11,9,-21,21,-21xm132,-21v-37,41,-114,29,-114,-40r0,-106r53,0r0,99v-2,49,46,40,61,8r0,-107r52,0r0,167r-52,0r0,-21"},"\u016b":{"d":"154,-205r-105,0r0,-26r105,0r0,26xm132,-21v-37,41,-114,29,-114,-40r0,-106r53,0r0,99v-2,49,46,40,61,8r0,-107r52,0r0,167r-52,0r0,-21"},"\u016d":{"d":"154,-243v-2,34,-19,50,-51,50v-33,0,-51,-16,-53,-50r21,0v1,17,12,24,32,24v19,0,30,-7,31,-24r20,0xm132,-21v-37,41,-114,29,-114,-40r0,-106r53,0r0,99v-2,49,46,40,61,8r0,-107r52,0r0,167r-52,0r0,-21"},"\u016f":{"d":"101,-255v23,0,46,22,46,45v0,25,-21,46,-46,46v-25,0,-45,-21,-45,-46v0,-24,21,-45,45,-45xm132,-21v-37,41,-114,29,-114,-40r0,-106r53,0r0,99v-2,49,46,40,61,8r0,-107r52,0r0,167r-52,0r0,-21xm102,-187v12,0,22,-10,22,-22v0,-12,-10,-23,-22,-23v-12,0,-23,10,-23,23v0,13,10,23,23,22"},"\u0171":{"d":"156,-247r-37,57r-19,0r22,-57r34,0xm104,-247r-31,57r-19,0r17,-57r33,0xm132,-21v-37,41,-114,29,-114,-40r0,-106r53,0r0,99v-2,49,46,40,61,8r0,-107r52,0r0,167r-52,0r0,-21"},"\u0173":{"d":"153,26v0,22,30,24,45,11r0,29v-29,19,-81,11,-80,-26v0,-15,10,-28,30,-40r-16,0r0,-21v-37,41,-114,29,-114,-40r0,-106r53,0r0,99v-2,49,46,40,61,8r0,-107r52,0r0,167v-18,-4,-31,13,-31,26"},"\u0175":{"d":"187,-186r-23,0r-29,-36r-30,36r-23,0r34,-61r38,0xm277,-167r-76,170r-26,0r-40,-93r-41,93r-26,0r-76,-170r56,0r36,91r38,-91r27,0r39,91r35,-91r54,0","w":273},"\u00fd":{"d":"135,-251r-52,61r-23,0r36,-61r39,0xm176,-167r-113,249r-55,0r50,-109r-64,-140r56,0r34,82r36,-82r56,0","w":172},"\u0177":{"d":"135,-186r-23,0r-30,-36r-29,36r-23,0r33,-61r39,0xm176,-167r-113,249r-55,0r50,-109r-64,-140r56,0r34,82r36,-82r56,0","w":172},"\u00ff":{"d":"118,-239v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm54,-239v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm176,-167r-113,249r-55,0r50,-109r-64,-140r56,0r34,82r36,-82r56,0","w":172,"k":{"\u201d":44,"\u201c":42,"\u2019":44,"\u2018":42,"\u015a":12,"\u00d8":12,"y":12,"Y":24,"W":18,"V":18,"U":6,"T":18,"O":12,"-":6}},"\u017a":{"d":"145,-247r-42,57r-40,0r32,-57r50,0xm171,0r-167,0v23,-48,58,-84,84,-129r-77,0r0,-38r160,0r0,5r-84,125r84,0r0,37","w":179},"\u017e":{"d":"142,-251r-34,62r-37,0r-34,-62r23,0r30,37r29,-37r23,0xm171,0r-167,0v23,-48,58,-84,84,-129r-77,0r0,-38r160,0r0,5r-84,125r84,0r0,37","w":179},"\u017c":{"d":"91,-249v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-13,-28,-28v0,-15,13,-28,28,-28xm171,0r-167,0v23,-48,58,-84,84,-129r-77,0r0,-38r160,0r0,5r-84,125r84,0r0,37","w":179},"\u00b4":{"d":"157,-247r-43,57r-39,0r32,-57r50,0","w":200},"\u02c6":{"d":"142,-186r-23,0r-29,-36r-30,36r-22,0r33,-61r38,0","w":180},"\u02c7":{"d":"142,-247r-33,61r-38,0r-34,-61r23,0r30,37r29,-37r23,0","w":180},"\u02dc":{"d":"143,-240v-7,46,-37,43,-73,32v-8,0,-13,4,-15,12r-18,0v6,-45,38,-41,73,-30v8,0,13,-5,15,-14r18,0","w":180},"\u00a8":{"d":"122,-239v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21xm58,-239v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21","w":180},"\u00af":{"d":"142,-205r-104,0r0,-26r104,0r0,26","w":180},"\u02c9":{"d":"142,-205r-104,0r0,-26r104,0r0,26","w":180},"\u02d8":{"d":"142,-243v-2,34,-20,50,-52,50v-33,0,-51,-16,-53,-50r22,0v1,17,11,24,31,24v19,0,30,-7,31,-24r21,0","w":180},"\u02da":{"d":"90,-276v26,0,45,20,45,45v0,25,-20,45,-45,45v-25,0,-45,-20,-45,-45v0,-25,19,-45,45,-45xm90,-209v13,0,23,-10,23,-22v0,-12,-11,-23,-23,-23v-12,0,-22,10,-22,23v0,12,9,23,22,22","w":180},"\u02dd":{"d":"159,-247r-38,57r-18,0r21,-57r35,0xm106,-247r-31,57r-18,0r16,-57r33,0","w":180},"\u02d9":{"d":"90,-247v14,0,25,11,25,25v0,13,-12,24,-25,24v-13,0,-24,-11,-24,-24v0,-12,11,-25,24,-25","w":180},"\u00b8":{"d":"135,50v0,40,-54,39,-91,26r0,-21v19,5,34,8,45,8v13,0,19,-4,19,-13v0,-11,-15,-15,-33,-14r0,-36r16,0r0,17v29,-1,44,9,44,33","w":170},"\u02db":{"d":"164,0v-25,12,-27,42,1,45v8,0,16,-3,24,-8r0,29v-29,19,-82,11,-81,-26v0,-18,14,-33,43,-46","w":206},"\u2026":{"d":"300,-60v18,-1,33,14,32,32v0,18,-14,31,-32,31v-17,0,-31,-14,-31,-31v0,-17,14,-32,31,-32xm180,-60v18,0,32,15,32,32v0,17,-15,31,-32,31v-17,0,-31,-14,-31,-31v0,-17,14,-32,31,-32xm60,-60v18,-1,33,14,32,32v0,18,-14,31,-32,31v-17,0,-31,-14,-31,-31v0,-17,14,-32,31,-32","w":360},"\u00ad":{"d":"109,-60r-95,0r0,-48r95,0r0,48","w":123,"k":{"\u015b":-6,"\u00f8":-6,"\u00f3":-6,"\u015a":-12,"\u00d8":-12,"\u00d3":-12,"\u0106":-9,"\u0104":6,"\u00c5":6,"s":-6,"o":-6,"Y":26,"X":12,"W":18,"V":20,"T":31,"S":-12,"O":-12,"J":8,"G":-12,"C":-9,"A":6}},"\u00a1":{"d":"58,-250v18,0,32,13,32,31v0,17,-14,32,-32,32v-18,0,-31,-14,-31,-32v0,-17,14,-31,31,-31xm87,-34v0,25,-10,38,-29,38v-20,0,-29,-13,-29,-38v0,-31,12,-99,19,-127v3,-12,17,-12,20,-1v9,31,19,98,19,128","w":116},"\u00bf":{"d":"81,-250v17,0,31,14,31,31v0,18,-13,32,-31,32v-18,1,-33,-14,-32,-32v0,-18,14,-31,32,-31xm73,-53v4,28,30,22,54,7r-8,42v-45,19,-101,7,-101,-42v0,-39,55,-76,54,-121v25,-6,29,13,30,34v2,35,-25,50,-29,80","w":143},"\u2018":{"d":"49,-137v-43,-2,-39,-62,-15,-87v13,-13,28,-23,48,-26r0,11v-14,16,-20,27,-19,44v31,8,17,59,-14,58","w":98,"k":{"\u0106":45,"\u00c5":44,"r":6,"Y":-23,"X":-10,"W":-14,"V":-21,"T":-6,"A":44}},"\u2019":{"d":"49,-250v43,2,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-16,20,-28,19,-44v-31,-9,-19,-60,14,-58","w":98},"\u201c":{"d":"143,-137v-44,0,-40,-62,-16,-87v13,-13,29,-23,49,-26r0,11v-14,16,-20,27,-19,44v30,9,16,58,-14,58xm49,-137v-43,-2,-39,-62,-15,-87v13,-13,28,-23,48,-26r0,11v-14,16,-20,27,-19,44v31,8,17,59,-14,58","w":191,"k":{"\u0106":45,"\u00c5":44,"r":6,"Y":-23,"X":-10,"W":-14,"V":-21,"T":-6,"A":44}},"\u201d":{"d":"142,-250v44,3,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-16,20,-28,19,-44v-30,-9,-17,-60,14,-58xm49,-250v43,3,39,62,15,87v-13,13,-28,23,-48,26r0,-11v14,-16,20,-28,19,-44v-30,-8,-17,-60,14,-58","w":191},"\u201a":{"d":"49,-60v43,2,39,62,15,87v-13,13,-28,23,-48,26r0,-11v13,-15,19,-27,19,-43v-31,-9,-18,-60,14,-59","w":98,"k":{"\u015a":18,"\u00d8":18,"\u0106":-18,"\u00c5":-12,"w":20,"f":-6,"Y":36,"W":29,"V":55,"T":33,"O":18,"J":-6,"G":12,"C":18,"A":-12}},"\u201e":{"d":"142,-60v44,2,39,62,15,87v-13,13,-28,23,-48,26r0,-11v13,-15,19,-27,19,-43v-30,-9,-16,-60,14,-59xm49,-60v43,2,39,62,15,87v-13,13,-28,23,-48,26r0,-11v13,-15,19,-27,19,-43v-30,-8,-17,-60,14,-59","w":191,"k":{"\u015a":18,"\u00d8":18,"\u0106":-18,"\u00c5":-12,"w":20,"f":-6,"Y":36,"W":29,"V":55,"T":33,"O":18,"J":-6,"G":12,"C":18,"A":-12}},"\u2039":{"d":"98,-26r-42,0r-43,-58r43,-56r42,0r-42,56","w":111,"k":{"\u0106":-24,"Y":24,"W":6,"V":18,"T":18,"J":-6}},"\u203a":{"d":"98,-84r-43,58r-42,0r42,-58r-42,-56r42,0","w":111,"k":{"\u00c5":12,"Y":36,"X":18,"W":18,"V":36,"T":31,"J":-12,"A":12}},"\u00ab":{"d":"172,-26r-42,0r-42,-58r42,-56r42,0r-42,56xm98,-26r-42,0r-43,-58r43,-56r42,0r-42,56","w":186,"k":{"\u0106":-24,"Y":24,"W":6,"V":18,"T":18,"J":-6}},"\u00bb":{"d":"172,-84r-42,58r-42,0r42,-58r-42,-56r42,0xm98,-84r-42,58r-43,0r43,-58r-43,-56r43,0","w":186,"k":{"\u00c5":12,"Y":36,"X":18,"W":18,"V":36,"T":31,"J":-12,"A":12}},"\u2013":{"d":"180,-68r-180,0r0,-34r180,0r0,34","w":180},"\u2014":{"d":"360,-68r-360,0r0,-34r360,0r0,34","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":"49,-155v18,0,32,15,32,32v0,17,-15,31,-32,31v-17,0,-31,-14,-31,-31v0,-18,13,-32,31,-32","w":97},"\u2219":{"d":"49,-155v18,0,32,15,32,32v0,17,-15,31,-32,31v-17,0,-31,-14,-31,-31v0,-18,13,-32,31,-32","w":97},"\u2020":{"d":"181,-124r-66,-9r8,165r-50,0r8,-165r-66,9r0,-51r66,8r-8,-79r50,0r-8,79r66,-8r0,51","w":196},"\u2021":{"d":"181,-28r-67,-8r8,68r-48,0r8,-68r-67,8r0,-49r67,10v-8,-26,-8,-53,0,-79r-67,10r0,-50r67,9r-8,-69r48,0r-8,69r67,-9r0,50r-67,-10v8,26,8,53,0,79r67,-10r0,49","w":196},"\u00a7":{"d":"47,-159v-37,-33,-4,-91,51,-91v21,0,41,5,61,14r0,39v-23,-12,-41,-18,-55,-18v-24,0,-29,22,-13,32v33,19,91,30,91,83v0,21,-11,36,-33,46v37,33,4,91,-53,91v-22,0,-43,-6,-63,-17r0,-39v24,14,43,21,59,21v24,0,29,-22,13,-32v-33,-21,-91,-31,-91,-82v0,-21,11,-37,33,-47xm120,-73v28,-13,25,-37,-4,-49r-40,-18v-30,14,-18,38,8,50","w":196},"\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","w":180},"\u00a6":{"d":"108,-118r-36,0r0,-134r36,0r0,134xm108,62r-36,0r0,-134r36,0r0,134","w":180},"\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":"30,-161v5,-71,91,-115,154,-72r0,52v-36,-33,-85,-34,-96,20r88,0r-8,25r-83,0r0,25r75,0r-8,24r-65,0v9,60,67,54,99,17r0,53v-61,48,-153,7,-156,-70r-30,0r8,-24r19,0v-1,-5,-1,-20,0,-25r-27,0r8,-25r22,0","w":196},"\u00a2":{"d":"19,-87v-1,-60,52,-96,117,-85r17,-48r26,0r-20,54r7,3r0,41v-8,-4,-15,-7,-21,-8r-31,88v23,3,30,-1,55,-10r0,40v-22,10,-43,14,-70,11r-18,48r-25,0r19,-52v-32,-13,-55,-40,-56,-82xm123,-133v-43,-11,-68,60,-31,84","w":196},"\u00a3":{"d":"87,-53v30,-4,65,15,96,1r0,48v-26,21,-69,-2,-101,-2v-13,0,-33,4,-60,10r23,-105r-18,0r0,-43r28,0v19,-75,47,-112,106,-106r22,47v-47,-12,-67,17,-75,59r22,0r0,43r-32,0","w":196},"\u0192":{"d":"72,-156v1,-71,34,-107,105,-90r-6,40v-35,-11,-40,19,-44,50r30,0r-5,37r-30,0v-19,81,4,224,-116,191r5,-38v24,5,35,-8,39,-36r17,-117r-28,0r5,-37r28,0","w":196},"\u00a5":{"d":"235,-246r-50,71r31,0r0,24r-48,0r-18,26r66,0r0,24r-76,0r0,101r-54,0r0,-101r-77,0r0,-24r67,0r-18,-26r-49,0r0,-24r32,0r-50,-71r64,0r58,86r60,-86r62,0","w":225},"\u00aa":{"d":"13,-234v31,-19,111,-26,107,27v3,19,-11,64,18,50r0,21v-19,9,-50,17,-56,-4v-23,20,-81,19,-76,-19v4,-32,33,-32,74,-45v-2,-33,-50,-20,-67,-1r0,-29xm80,-186v-18,7,-31,9,-34,24v1,17,23,14,34,5r0,-29","w":139},"\u00ba":{"d":"75,-248v38,0,69,23,69,60v0,37,-30,62,-69,61v-38,0,-68,-24,-68,-61v0,-37,31,-60,68,-60xm75,-155v17,0,28,-14,28,-33v0,-19,-10,-33,-28,-32v-17,0,-28,14,-28,32v0,18,11,33,28,33","w":150},"\u00b9":{"d":"83,-98r-37,0r0,-148r37,0r0,148","w":129},"\u00b2":{"d":"113,-206v-2,34,-23,50,-48,77r55,0r0,31r-113,0r0,-5v36,-40,59,-54,68,-97v-5,-31,-42,-23,-65,-4r0,-30v35,-24,105,-20,103,28","w":129},"\u00b3":{"d":"17,-240v30,-15,94,-10,92,29v0,14,-8,26,-24,34v52,21,26,81,-30,81v-18,0,-33,-3,-44,-9r0,-29v20,15,64,20,64,-7v0,-13,-9,-21,-27,-21r0,-26v17,0,25,-7,25,-19v-1,-23,-40,-17,-56,-8r0,-25","w":129},"\u2044":{"d":"120,-250r-151,254r-29,0r150,-254r30,0","w":60},"\u2215":{"d":"120,-250r-151,254r-29,0r150,-254r30,0","w":60},"\u00bc":{"d":"298,-34r-14,0r0,34r-33,0r0,-34r-64,0r0,-23r74,-82r23,0r0,84r14,0r0,21xm243,-250r-150,254r-30,0r150,-254r30,0xm79,-108r-35,0r0,-138r35,0r0,138xm251,-98r-38,43r38,0r0,-43","w":307},"\u00bd":{"d":"193,-126v34,-23,98,-20,99,26v0,18,-16,42,-47,72r53,0r0,28r-107,0r0,-4v35,-39,55,-51,64,-91v-5,-29,-41,-23,-62,-4r0,-27xm243,-250r-150,254r-30,0r150,-254r30,0xm79,-108r-35,0r0,-138r35,0r0,138","w":307},"\u00be":{"d":"298,-34r-14,0r0,34r-33,0r0,-34r-64,0r0,-23r74,-82r23,0r0,84r14,0r0,21xm243,-250r-150,254r-30,0r150,-254r30,0xm16,-240v29,-15,89,-11,88,27v0,13,-8,23,-23,31v51,20,24,77,-28,77v-18,0,-32,-3,-43,-9r0,-27v18,13,60,18,61,-7v0,-12,-8,-18,-25,-19r0,-25v16,0,23,-7,23,-18v-1,-21,-37,-17,-53,-7r0,-23xm251,-98r-38,43r38,0r0,-43","w":307},"\u2030":{"d":"435,-142v40,0,73,34,73,73v0,39,-33,73,-73,73v-40,0,-74,-33,-74,-73v0,-41,34,-73,74,-73xm267,-142v40,0,74,33,74,73v0,40,-34,73,-74,73v-40,0,-73,-33,-73,-73v0,-41,33,-73,73,-73xm273,-250r-167,254r-29,0r166,-254r30,0xm82,-250v39,0,75,35,74,74v0,39,-35,73,-74,73v-39,0,-73,-33,-73,-73v0,-41,33,-74,73,-74xm434,-35v17,0,33,-16,33,-34v0,-19,-14,-33,-33,-33v-19,0,-34,15,-34,33v0,19,15,34,34,34xm267,-35v17,0,34,-15,34,-34v0,-18,-15,-33,-34,-33v-19,0,-33,15,-33,33v0,18,15,34,33,34xm82,-143v17,0,35,-15,34,-33v0,-19,-15,-34,-34,-34v-18,0,-33,16,-33,34v0,18,15,33,33,33","w":516},"\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}}});
