jQuery(document).ready(function(){
	Cufon.replace('div.nav>ul>li>a', { fontFamily: 'arlekino', hover: true });
	setTimeout(function(){rollOver('.nav>ul','current-menu-item',true)},100);
	rollOver('.sub-nav','current-menu-item');
	initHover('.video-row .video');
	initPhotos();
	initVideos();
	initTooltip();
	jQuery('.drop .photo>a,.video-album .video a,.fancy-opener').fancybox({
		'padding' : 2,
		'margin' : 12,
		'overlayColor': '#000'
	});
	jQuery('.tooltip .scroll').jScrollPane({
		verticalDragMinHeight:107,
		verticalDragMaxHeight:107
	});
	jQuery('div.room-gallery').gallery({
		duration: 500,
		listOfSlides: '.wrap > ul > li'
	});
	jQuery('div.room-galleries').gallery({
		duration: 500,
		listOfSlides: '.room-photo img',
		switcher: '.room-gallery ul>li',
		effect:true,
		descr: '.room-description .item',
		nextBtn: 'a.none',
		prevBtn: 'a.none',
		IE:true
	});
});
function initHover(_els){
	var els = jQuery(_els);
	var hoverClass = 'hover';
	els.mouseenter(function(){jQuery(this).addClass(hoverClass);}).mouseleave(function(){jQuery(this).removeClass(hoverClass);});
}
function initTooltip(){
	var holder = jQuery('.about-item');
	var activeClass = 'active';
	var wrapper = jQuery('#wrapper');
	holder.each(function(){
		var _this = jQuery(this);
		var overlay = _this.find('.overlay');
		var tooltip = _this.find('.tooltip');
		overlay.click(function(){
			if (_this.hasClass(activeClass)) {
				_this.removeClass(activeClass);
			} else {
				holder.filter('.'+activeClass).removeClass(activeClass);
				_this.addClass(activeClass);
				if (tooltip.outerHeight() + tooltip.offset().top > wrapper.outerHeight()) tooltip.addClass('bottom-tooltip');
			}
			return false;
		});
		jQuery('body').bind('mousedown', function(e){
			if(tooltip&& tooltip.is(':visible')){
				e = e || event;
				var t = e.target || e.srcElement;
				t = jQuery(t);
				if(t.parents('.about-item').length == 0){
				holder.removeClass(activeClass);
			}};
		});
	});
}
function initVideos(){
	var holder = jQuery('.video-album .video');
	var activeClass = 'active';
	holder.each(function(){
		var _this = jQuery(this);
		var link = _this.find('a');
		link.click(function(){
			if (!_this.hasClass(activeClass)) {
				holder.filter('.'+activeClass).removeClass(activeClass);
				_this.addClass(activeClass);
			}
			return false;
		})
	});
}
function initPhotos() {
	var _links = jQuery('.album');
	_links.each(function() {
		var _link = jQuery(this);
		var _href = _link.attr('title');
		var _tab = jQuery('#'+_href).css({position:'static'});

		if(_link.hasClass('active')) _tab.show();
		else _tab.hide();

		_link.click(function(e){
			if (!_link.hasClass('active')) {
				_links.filter('.active').each(function(){
					jQuery('#' + jQuery(this).removeClass('active').attr('title')).hide();
				});
				_link.addClass('active');
				_tab.show();
			} else {
				_link.removeClass('active');
				_tab.hide();
			}
			e.preventDefault();
		});
	});
}
function rollOver(_nav,_class,flag){
	var nav = jQuery(_nav);
	var navEls = nav.find('>li');
	var showDuration = 300;
	var activeClass = _class;
	var _width = 0;
	navEls.each(function(){
		var _this = jQuery(this);
		_width+=jQuery(this).outerWidth();
	});
	_width = nav.width() - _width;
	navEls.each(function(){
		var el = jQuery(this);
		if (flag) {
			var _hold = el.find('strong').css({
				paddingLeft:parseInt(_width/navEls.length/2),
				paddingRight:parseInt(_width/navEls.length/2)
			});
		}
		if (!el.hasClass(activeClass)) {
			var hover = el.find('span');
			hover.css({
				display:'block',
				opacity:0
			});
			el.mouseenter(function(){
				hover.animate({
					opacity:1
				},{
					queue:false,
					duration:showDuration
				});
			}).mouseleave(function(){
				hover.animate({
					opacity:0
				},{
					queue:false,
					duration:showDuration
				});
			});
		}
	});
	nav.css({'position':'static'});
}
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

;(function(b){var m,t,u,f,D,j,E,n,z,A,q=0,e={},o=[],p=0,d={},l=[],G=null,v=new Image,J=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,W=/[^\.]\.(swf)\s*$/i,K,L=1,y=0,s="",r,i,h=false,B=b.extend(b("<div/>")[0],{prop:0}),M=b.browser.msie&&b.browser.version<7&&!window.XMLHttpRequest,N=function(){t.hide();v.onerror=v.onload=null;G&&G.abort();m.empty()},O=function(){if(false===e.onError(o,q,e)){t.hide();h=false}else{e.titleShow=false;e.width="auto";e.height="auto";m.html('<p id="fancybox-error">The requested content cannot be loaded.<br />Please try again later.</p>');
F()}},I=function(){var a=o[q],c,g,k,C,P,w;N();e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));w=e.onStart(o,q,e);if(w===false)h=false;else{if(typeof w=="object")e=b.extend(e,w);k=e.title||(a.nodeName?b(a).attr("title"):a.title)||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(k===""&&e.orig&&e.titleFromAlt)k=e.orig.attr("alt");c=e.href||(a.nodeName?b(a).attr("href"):a.href)||null;if(/^(?:javascript)/i.test(c)||
c=="#")c=null;if(e.type){g=e.type;if(!c)c=e.content}else if(e.content)g="html";else if(c)g=c.match(J)?"image":c.match(W)?"swf":b(a).hasClass("iframe")?"iframe":c.indexOf("#")===0?"inline":"ajax";if(g){if(g=="inline"){a=c.substr(c.indexOf("#"));g=b(a).length>0?"inline":"ajax"}e.type=g;e.href=c;e.title=k;if(e.autoDimensions)if(e.type=="html"||e.type=="inline"||e.type=="ajax"){e.width="auto";e.height="auto"}else e.autoDimensions=false;if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=
false;e.enableEscapeButton=false;e.showCloseButton=false}e.padding=parseInt(e.padding,10);e.margin=parseInt(e.margin,10);m.css("padding",e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(j.children())});switch(g){case "html":m.html(e.content);F();break;case "inline":if(b(a).parent().is("#fancybox-content")===true){h=false;break}b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(j.children())}).bind("fancybox-cancel",
function(){b(this).replaceWith(m.children())});b(a).appendTo(m);F();break;case "image":h=false;b.fancybox.showActivity();v=new Image;v.onerror=function(){O()};v.onload=function(){h=true;v.onerror=v.onload=null;e.width=v.width;e.height=v.height;b("<img />").attr({id:"fancybox-img",src:v.src,alt:e.title}).appendTo(m);Q()};v.src=c;break;case "swf":e.scrolling="no";C='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+e.width+'" height="'+e.height+'"><param name="movie" value="'+c+
'"></param>';P="";b.each(e.swf,function(x,H){C+='<param name="'+x+'" value="'+H+'"></param>';P+=" "+x+'="'+H+'"'});C+='<embed src="'+c+'" type="application/x-shockwave-flash" width="'+e.width+'" height="'+e.height+'"'+P+"></embed></object>";m.html(C);F();break;case "ajax":h=false;b.fancybox.showActivity();e.ajax.win=e.ajax.success;G=b.ajax(b.extend({},e.ajax,{url:c,data:e.ajax.data||{},error:function(x){x.status>0&&O()},success:function(x,H,R){if((typeof R=="object"?R:G).status==200){if(typeof e.ajax.win==
"function"){w=e.ajax.win(c,x,H,R);if(w===false){t.hide();return}else if(typeof w=="string"||typeof w=="object")x=w}m.html(x);F()}}}));break;case "iframe":Q()}}else O()}},F=function(){var a=e.width,c=e.height;a=a.toString().indexOf("%")>-1?parseInt((b(window).width()-e.margin*2)*parseFloat(a)/100,10)+"px":a=="auto"?"auto":a+"px";c=c.toString().indexOf("%")>-1?parseInt((b(window).height()-e.margin*2)*parseFloat(c)/100,10)+"px":c=="auto"?"auto":c+"px";m.wrapInner('<div style="width:'+a+";height:"+c+
";overflow: "+(e.scrolling=="auto"?"auto":e.scrolling=="yes"?"scroll":"hidden")+';position:relative;"></div>');e.width=m.width();e.height=m.height();Q()},Q=function(){var a,c;t.hide();if(f.is(":visible")&&false===d.onCleanup(l,p,d)){b.event.trigger("fancybox-cancel");h=false}else{h=true;b(j.add(u)).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");f.is(":visible")&&d.titlePosition!=="outside"&&f.css("height",f.height());l=o;p=q;d=e;if(d.overlayShow){u.css({"background-color":d.overlayColor,
opacity:d.overlayOpacity,cursor:d.hideOnOverlayClick?"pointer":"auto",height:b(document).height()});if(!u.is(":visible")){M&&b("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"});u.show()}}else u.hide();i=X();s=d.title||"";y=0;n.empty().removeAttr("style").removeClass();if(d.titleShow!==false){if(b.isFunction(d.titleFormat))a=d.titleFormat(s,l,p,d);else a=s&&s.length?
d.titlePosition=="float"?'<table id="fancybox-title-float-wrap" cellpadding="0" cellspacing="0"><tr><td id="fancybox-title-float-left"></td><td id="fancybox-title-float-main">'+s+'</td><td id="fancybox-title-float-right"></td></tr></table>':'<div id="fancybox-title-'+d.titlePosition+'">'+s+"</div>":false;s=a;if(!(!s||s==="")){n.addClass("fancybox-title-"+d.titlePosition).html(s).appendTo("body").show();switch(d.titlePosition){case "inside":n.css({width:i.width-d.padding*2,marginLeft:d.padding,marginRight:d.padding});
y=n.outerHeight(true);n.appendTo(D);i.height+=y;break;case "over":n.css({marginLeft:d.padding,width:i.width-d.padding*2,bottom:d.padding}).appendTo(D);break;case "float":n.css("left",parseInt((n.width()-i.width-40)/2,10)*-1).appendTo(f);break;default:n.css({width:i.width-d.padding*2,paddingLeft:d.padding,paddingRight:d.padding}).appendTo(f)}}}n.hide();if(f.is(":visible")){b(E.add(z).add(A)).hide();a=f.position();r={top:a.top,left:a.left,width:f.width(),height:f.height()};c=r.width==i.width&&r.height==
i.height;j.fadeTo(d.changeFade,0.3,function(){var g=function(){j.html(m.contents()).fadeTo(d.changeFade,1,S)};b.event.trigger("fancybox-change");j.empty().removeAttr("filter").css({"border-width":d.padding,width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2});if(c)g();else{B.prop=0;b(B).animate({prop:1},{duration:d.changeSpeed,easing:d.easingChange,step:T,complete:g})}})}else{f.removeAttr("style");j.css("border-width",d.padding);if(d.transitionIn=="elastic"){r=V();j.html(m.contents());
f.show();if(d.opacity)i.opacity=0;B.prop=0;b(B).animate({prop:1},{duration:d.speedIn,easing:d.easingIn,step:T,complete:S})}else{d.titlePosition=="inside"&&y>0&&n.show();j.css({width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2}).html(m.contents());f.css(i).fadeIn(d.transitionIn=="none"?0:d.speedIn,S)}}}},Y=function(){if(d.enableEscapeButton||d.enableKeyboardNav)b(document).bind("keydown.fb",function(a){if(a.keyCode==27&&d.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if((a.keyCode==
37||a.keyCode==39)&&d.enableKeyboardNav&&a.target.tagName!=="INPUT"&&a.target.tagName!=="TEXTAREA"&&a.target.tagName!=="SELECT"){a.preventDefault();b.fancybox[a.keyCode==37?"prev":"next"]()}});if(d.showNavArrows){if(d.cyclic&&l.length>1||p!==0)z.show();if(d.cyclic&&l.length>1||p!=l.length-1)A.show()}else{z.hide();A.hide()}},S=function(){if(!b.support.opacity){j.get(0).style.removeAttribute("filter");f.get(0).style.removeAttribute("filter")}e.autoDimensions&&j.css("height","auto");f.css("height","auto");
s&&s.length&&n.show();d.showCloseButton&&E.show();Y();d.hideOnContentClick&&j.bind("click",b.fancybox.close);d.hideOnOverlayClick&&u.bind("click",b.fancybox.close);b(window).bind("resize.fb",b.fancybox.resize);d.centerOnScroll&&b(window).bind("scroll.fb",b.fancybox.center);if(d.type=="iframe")b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" '+(b.browser.msie?'allowtransparency="true""':"")+' scrolling="'+e.scrolling+'" src="'+d.href+'"></iframe>').appendTo(j);
f.show();h=false;b.fancybox.center();d.onComplete(l,p,d);var a,c;if(l.length-1>p){a=l[p+1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}if(p>0){a=l[p-1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}},T=function(a){var c={width:parseInt(r.width+(i.width-r.width)*a,10),height:parseInt(r.height+(i.height-r.height)*a,10),top:parseInt(r.top+(i.top-r.top)*a,10),left:parseInt(r.left+(i.left-r.left)*a,10)};if(typeof i.opacity!=="undefined")c.opacity=a<0.5?0.5:a;f.css(c);
j.css({width:c.width-d.padding*2,height:c.height-y*a-d.padding*2})},U=function(){return[b(window).width()-d.margin*2,b(window).height()-d.margin*2,b(document).scrollLeft()+d.margin,b(document).scrollTop()+d.margin]},X=function(){var a=U(),c={},g=d.autoScale,k=d.padding*2;c.width=d.width.toString().indexOf("%")>-1?parseInt(a[0]*parseFloat(d.width)/100,10):d.width+k;c.height=d.height.toString().indexOf("%")>-1?parseInt(a[1]*parseFloat(d.height)/100,10):d.height+k;if(g&&(c.width>a[0]||c.height>a[1]))if(e.type==
"image"||e.type=="swf"){g=d.width/d.height;if(c.width>a[0]){c.width=a[0];c.height=parseInt((c.width-k)/g+k,10)}if(c.height>a[1]){c.height=a[1];c.width=parseInt((c.height-k)*g+k,10)}}else{c.width=Math.min(c.width,a[0]);c.height=Math.min(c.height,a[1])}c.top=parseInt(Math.max(a[3]-20,a[3]+(a[1]-c.height-40)*0.5),10);c.left=parseInt(Math.max(a[2]-20,a[2]+(a[0]-c.width-40)*0.5),10);return c},V=function(){var a=e.orig?b(e.orig):false,c={};if(a&&a.length){c=a.offset();c.top+=parseInt(a.css("paddingTop"),
10)||0;c.left+=parseInt(a.css("paddingLeft"),10)||0;c.top+=parseInt(a.css("border-top-width"),10)||0;c.left+=parseInt(a.css("border-left-width"),10)||0;c.width=a.width();c.height=a.height();c={width:c.width+d.padding*2,height:c.height+d.padding*2,top:c.top-d.padding-20,left:c.left-d.padding-20}}else{a=U();c={width:d.padding*2,height:d.padding*2,top:parseInt(a[3]+a[1]*0.5,10),left:parseInt(a[2]+a[0]*0.5,10)}}return c},Z=function(){if(t.is(":visible")){b("div",t).css("top",L*-40+"px");L=(L+1)%12}else clearInterval(K)};
b.fn.fancybox=function(a){if(!b(this).length)return this;b(this).data("fancybox",b.extend({},a,b.metadata?b(this).metadata():{})).unbind("click.fb").bind("click.fb",function(c){c.preventDefault();if(!h){h=true;b(this).blur();o=[];q=0;c=b(this).attr("rel")||"";if(!c||c==""||c==="nofollow")o.push(this);else{o=b("a[rel="+c+"], area[rel="+c+"]");q=o.index(this)}I()}});return this};b.fancybox=function(a,c){var g;if(!h){h=true;g=typeof c!=="undefined"?c:{};o=[];q=parseInt(g.index,10)||0;if(b.isArray(a)){for(var k=
0,C=a.length;k<C;k++)if(typeof a[k]=="object")b(a[k]).data("fancybox",b.extend({},g,a[k]));else a[k]=b({}).data("fancybox",b.extend({content:a[k]},g));o=jQuery.merge(o,a)}else{if(typeof a=="object")b(a).data("fancybox",b.extend({},g,a));else a=b({}).data("fancybox",b.extend({content:a},g));o.push(a)}if(q>o.length||q<0)q=0;I()}};b.fancybox.showActivity=function(){clearInterval(K);t.show();K=setInterval(Z,66)};b.fancybox.hideActivity=function(){t.hide()};b.fancybox.next=function(){return b.fancybox.pos(p+
1)};b.fancybox.prev=function(){return b.fancybox.pos(p-1)};b.fancybox.pos=function(a){if(!h){a=parseInt(a);o=l;if(a>-1&&a<l.length){q=a;I()}else if(d.cyclic&&l.length>1){q=a>=l.length?0:l.length-1;I()}}};b.fancybox.cancel=function(){if(!h){h=true;b.event.trigger("fancybox-cancel");N();e.onCancel(o,q,e);h=false}};b.fancybox.close=function(){function a(){u.fadeOut("fast");n.empty().hide();f.hide();b.event.trigger("fancybox-cleanup");j.empty();d.onClosed(l,p,d);l=e=[];p=q=0;d=e={};h=false}if(!(h||f.is(":hidden"))){h=
true;if(d&&false===d.onCleanup(l,p,d))h=false;else{N();b(E.add(z).add(A)).hide();b(j.add(u)).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");j.find("iframe").attr("src",M&&/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank");d.titlePosition!=="inside"&&n.empty();f.stop();if(d.transitionOut=="elastic"){r=V();var c=f.position();i={top:c.top,left:c.left,width:f.width(),height:f.height()};if(d.opacity)i.opacity=1;n.empty().hide();B.prop=1;
b(B).animate({prop:0},{duration:d.speedOut,easing:d.easingOut,step:T,complete:a})}else f.fadeOut(d.transitionOut=="none"?0:d.speedOut,a)}}};b.fancybox.resize=function(){u.is(":visible")&&u.css("height",b(document).height());b.fancybox.center(true)};b.fancybox.center=function(a){var c,g;if(!h){g=a===true?1:0;c=U();!g&&(f.width()>c[0]||f.height()>c[1])||f.stop().animate({top:parseInt(Math.max(c[3]-20,c[3]+(c[1]-j.height()-40)*0.5-d.padding)),left:parseInt(Math.max(c[2]-20,c[2]+(c[0]-j.width()-40)*0.5-
d.padding))},typeof a=="number"?a:200)}};b.fancybox.init=function(){if(!b("#fancybox-wrap").length){b("body").append(m=b('<div id="fancybox-tmp"></div>'),t=b('<div id="fancybox-loading"><div></div></div>'),u=b('<div id="fancybox-overlay"></div>'),f=b('<div id="fancybox-wrap"></div>'));D=b('<div id="fancybox-outer"></div>').append('<div class="fancybox-bg" id="fancybox-bg-n"></div><div class="fancybox-bg" id="fancybox-bg-ne"></div><div class="fancybox-bg" id="fancybox-bg-e"></div><div class="fancybox-bg" id="fancybox-bg-se"></div><div class="fancybox-bg" id="fancybox-bg-s"></div><div class="fancybox-bg" id="fancybox-bg-sw"></div><div class="fancybox-bg" id="fancybox-bg-w"></div><div class="fancybox-bg" id="fancybox-bg-nw"></div>').appendTo(f);
D.append(j=b('<div id="fancybox-content"></div>'),E=b('<a id="fancybox-close"></a>'),n=b('<div id="fancybox-title"></div>'),z=b('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),A=b('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));E.click(b.fancybox.close);t.click(b.fancybox.cancel);z.click(function(a){a.preventDefault();b.fancybox.prev()});A.click(function(a){a.preventDefault();b.fancybox.next()});
b.fn.mousewheel&&f.bind("mousewheel.fb",function(a,c){if(h)a.preventDefault();else if(b(a.target).get(0).clientHeight==0||b(a.target).get(0).scrollHeight===b(a.target).get(0).clientHeight){a.preventDefault();b.fancybox[c>0?"prev":"next"]()}});b.support.opacity||f.addClass("fancybox-ie");if(M){t.addClass("fancybox-ie6");f.addClass("fancybox-ie6");b('<iframe id="fancybox-hide-sel-frame" src="'+(/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank")+'" scrolling="no" border="0" frameborder="0" tabindex="-1"></iframe>').prependTo(D)}}};
b.fn.fancybox.defaults={padding:10,margin:40,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.7,overlayColor:"#777",titleShow:true,titlePosition:"float",titleFormat:null,titleFromAlt:false,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",easingIn:"swing",
easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,enableKeyboardNav:true,onStart:function(){},onCancel:function(){},onComplete:function(){},onCleanup:function(){},onClosed:function(){},onError:function(){}};b(document).ready(function(){b.fancybox.init()})})(jQuery);
/*
 * jScrollPane - v2.0.0beta9 - 2011-02-04
 * http://jscrollpane.kelvinluck.com/
 *
 * Copyright (c) 2010 Kelvin Luck
 * Dual licensed under the MIT and GPL licenses.
 */
(function(b,a,c){b.fn.jScrollPane=function(f){function d(D,N){var ay,P=this,X,aj,w,al,S,Y,z,r,az,aE,au,j,I,i,k,Z,T,ap,W,u,B,aq,ae,am,G,m,at,ax,y,av,aH,g,K,ai=true,O=true,aG=false,l=false,ao=D.clone(false,false).empty(),ab=b.fn.mwheelIntent?"mwheelIntent.jsp":"mousewheel.jsp";aH=D.css("paddingTop")+" "+D.css("paddingRight")+" "+D.css("paddingBottom")+" "+D.css("paddingLeft");g=(parseInt(D.css("paddingLeft"),10)||0)+(parseInt(D.css("paddingRight"),10)||0);function ar(aQ){var aO,aP,aK,aM,aL,aJ,aI,aN;ay=aQ;if(X===c){aI=D.scrollTop();aN=D.scrollLeft();D.css({overflow:"hidden",padding:0});aj=D.innerWidth()+g;w=D.innerHeight();D.width(aj);X=b('<div class="jspPane" />').css("padding",aH).append(D.children());al=b('<div class="jspContainer" />').css({width:aj+"px",height:w+"px"}).append(X).appendTo(D)}else{D.css("width","");aJ=D.innerWidth()+g!=aj||D.outerHeight()!=w;if(aJ){aj=D.innerWidth()+g;w=D.innerHeight();al.css({width:aj+"px",height:w+"px"})}if(!aJ&&K==S&&X.outerHeight()==Y){D.width(aj);return}K=S;X.css("width","");D.width(aj);al.find(">.jspVerticalBar,>.jspHorizontalBar").remove().end()}aO=X.clone(false,false).css("position","absolute");aP=b('<div style="width:1px; position: relative;" />').append(aO);b("body").append(aP);S=Math.max(X.outerWidth(),aO.outerWidth());aP.remove();Y=X.outerHeight();z=S/aj;r=Y/w;az=r>1;aE=z>1;if(!(aE||az)){D.removeClass("jspScrollable");X.css({top:0,width:al.width()-g});o();E();Q();x();ah()}else{D.addClass("jspScrollable");aK=ay.maintainPosition&&(I||Z);if(aK){aM=aC();aL=aA()}aF();A();F();if(aK){M(aM,false);L(aL,false)}J();af();an();if(ay.enableKeyboardNavigation){R()}if(ay.clickOnTrack){q()}C();if(ay.hijackInternalLinks){n()}}if(ay.autoReinitialise&&!av){av=setInterval(function(){ar(ay)},ay.autoReinitialiseDelay)}else{if(!ay.autoReinitialise&&av){clearInterval(av)}}aI&&D.scrollTop(0)&&L(aI,false);aN&&D.scrollLeft(0)&&M(aN,false);D.trigger("jsp-initialised",[aE||az])}function aF(){if(az){al.append(b('<div class="jspVerticalBar" />').append(b('<div class="jspCap jspCapTop" />'),b('<div class="jspTrack" />').append(b('<div class="jspDrag" />').append(b('<div class="jspDragTop" />'),b('<div class="jspDragBottom" />'))),b('<div class="jspCap jspCapBottom" />')));T=al.find(">.jspVerticalBar");ap=T.find(">.jspTrack");au=ap.find(">.jspDrag");if(ay.showArrows){aq=b('<a class="jspArrow jspArrowUp" />').bind("mousedown.jsp",aD(0,-1)).bind("click.jsp",aB);ae=b('<a class="jspArrow jspArrowDown" />').bind("mousedown.jsp",aD(0,1)).bind("click.jsp",aB);if(ay.arrowScrollOnHover){aq.bind("mouseover.jsp",aD(0,-1,aq));ae.bind("mouseover.jsp",aD(0,1,ae))}ak(ap,ay.verticalArrowPositions,aq,ae)}u=w;al.find(">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow").each(function(){u-=b(this).outerHeight()});au.hover(function(){au.addClass("jspHover")},function(){au.removeClass("jspHover")}).bind("mousedown.jsp",function(aI){b("html").bind("dragstart.jsp selectstart.jsp",aB);au.addClass("jspActive");var s=aI.pageY-au.position().top;b("html").bind("mousemove.jsp",function(aJ){U(aJ.pageY-s,false)}).bind("mouseup.jsp mouseleave.jsp",aw);return false});p()}}function p(){ap.height(u+"px");I=0;W=ay.verticalGutter+ap.outerWidth();X.width(aj-W-g);if(T.position().left===0){X.css("margin-left",W+"px")}}function A(){if(aE){al.append(b('<div class="jspHorizontalBar" />').append(b('<div class="jspCap jspCapLeft" />'),b('<div class="jspTrack" />').append(b('<div class="jspDrag" />').append(b('<div class="jspDragLeft" />'),b('<div class="jspDragRight" />'))),b('<div class="jspCap jspCapRight" />')));am=al.find(">.jspHorizontalBar");G=am.find(">.jspTrack");i=G.find(">.jspDrag");if(ay.showArrows){ax=b('<a class="jspArrow jspArrowLeft" />').bind("mousedown.jsp",aD(-1,0)).bind("click.jsp",aB);y=b('<a class="jspArrow jspArrowRight" />').bind("mousedown.jsp",aD(1,0)).bind("click.jsp",aB);
if(ay.arrowScrollOnHover){ax.bind("mouseover.jsp",aD(-1,0,ax));y.bind("mouseover.jsp",aD(1,0,y))}ak(G,ay.horizontalArrowPositions,ax,y)}i.hover(function(){i.addClass("jspHover")},function(){i.removeClass("jspHover")}).bind("mousedown.jsp",function(aI){b("html").bind("dragstart.jsp selectstart.jsp",aB);i.addClass("jspActive");var s=aI.pageX-i.position().left;b("html").bind("mousemove.jsp",function(aJ){V(aJ.pageX-s,false)}).bind("mouseup.jsp mouseleave.jsp",aw);return false});m=al.innerWidth();ag()}}function ag(){al.find(">.jspHorizontalBar>.jspCap:visible,>.jspHorizontalBar>.jspArrow").each(function(){m-=b(this).outerWidth()});G.width(m+"px");Z=0}function F(){if(aE&&az){var aI=G.outerHeight(),s=ap.outerWidth();u-=aI;b(am).find(">.jspCap:visible,>.jspArrow").each(function(){m+=b(this).outerWidth()});m-=s;w-=s;aj-=aI;G.parent().append(b('<div class="jspCorner" />').css("width",aI+"px"));p();ag()}if(aE){X.width((al.outerWidth()-g)+"px")}Y=X.outerHeight();r=Y/w;if(aE){at=Math.ceil(1/z*m);if(at>ay.horizontalDragMaxWidth){at=ay.horizontalDragMaxWidth}else{if(at<ay.horizontalDragMinWidth){at=ay.horizontalDragMinWidth}}i.width(at+"px");k=m-at;ad(Z)}if(az){B=Math.ceil(1/r*u);if(B>ay.verticalDragMaxHeight){B=ay.verticalDragMaxHeight}else{if(B<ay.verticalDragMinHeight){B=ay.verticalDragMinHeight}}au.height(B+"px");j=u-B;ac(I)}}function ak(aJ,aL,aI,s){var aN="before",aK="after",aM;if(aL=="os"){aL=/Mac/.test(navigator.platform)?"after":"split"}if(aL==aN){aK=aL}else{if(aL==aK){aN=aL;aM=aI;aI=s;s=aM}}aJ[aN](aI)[aK](s)}function aD(aI,s,aJ){return function(){H(aI,s,this,aJ);this.blur();return false}}function H(aL,aK,aO,aN){aO=b(aO).addClass("jspActive");var aM,aJ,aI=true,s=function(){if(aL!==0){P.scrollByX(aL*ay.arrowButtonSpeed)}if(aK!==0){P.scrollByY(aK*ay.arrowButtonSpeed)}aJ=setTimeout(s,aI?ay.initialDelay:ay.arrowRepeatFreq);aI=false};s();aM=aN?"mouseout.jsp":"mouseup.jsp";aN=aN||b("html");aN.bind(aM,function(){aO.removeClass("jspActive");aJ&&clearTimeout(aJ);aJ=null;aN.unbind(aM)})}function q(){x();if(az){ap.bind("mousedown.jsp",function(aN){if(aN.originalTarget===c||aN.originalTarget==aN.currentTarget){var aL=b(this),aO=aL.offset(),aM=aN.pageY-aO.top-I,aJ,aI=true,s=function(){var aR=aL.offset(),aS=aN.pageY-aR.top-B/2,aP=w*ay.scrollPagePercent,aQ=j*aP/(Y-w);if(aM<0){if(I-aQ>aS){P.scrollByY(-aP)}else{U(aS)}}else{if(aM>0){if(I+aQ<aS){P.scrollByY(aP)}else{U(aS)}}else{aK();return}}aJ=setTimeout(s,aI?ay.initialDelay:ay.trackClickRepeatFreq);aI=false},aK=function(){aJ&&clearTimeout(aJ);aJ=null;b(document).unbind("mouseup.jsp",aK)};s();b(document).bind("mouseup.jsp",aK);return false}})}if(aE){G.bind("mousedown.jsp",function(aN){if(aN.originalTarget===c||aN.originalTarget==aN.currentTarget){var aL=b(this),aO=aL.offset(),aM=aN.pageX-aO.left-Z,aJ,aI=true,s=function(){var aR=aL.offset(),aS=aN.pageX-aR.left-at/2,aP=aj*ay.scrollPagePercent,aQ=k*aP/(S-aj);if(aM<0){if(Z-aQ>aS){P.scrollByX(-aP)}else{V(aS)}}else{if(aM>0){if(Z+aQ<aS){P.scrollByX(aP)}else{V(aS)}}else{aK();return}}aJ=setTimeout(s,aI?ay.initialDelay:ay.trackClickRepeatFreq);aI=false},aK=function(){aJ&&clearTimeout(aJ);aJ=null;b(document).unbind("mouseup.jsp",aK)};s();b(document).bind("mouseup.jsp",aK);return false}})}}function x(){if(G){G.unbind("mousedown.jsp")}if(ap){ap.unbind("mousedown.jsp")}}function aw(){b("html").unbind("dragstart.jsp selectstart.jsp mousemove.jsp mouseup.jsp mouseleave.jsp");if(au){au.removeClass("jspActive")}if(i){i.removeClass("jspActive")}}function U(s,aI){if(!az){return}if(s<0){s=0}else{if(s>j){s=j}}if(aI===c){aI=ay.animateScroll}if(aI){P.animate(au,"top",s,ac)}else{au.css("top",s);ac(s)}}function ac(aI){if(aI===c){aI=au.position().top}al.scrollTop(0);I=aI;var aL=I===0,aJ=I==j,aK=aI/j,s=-aK*(Y-w);if(ai!=aL||aG!=aJ){ai=aL;aG=aJ;D.trigger("jsp-arrow-change",[ai,aG,O,l])}v(aL,aJ);X.css("top",s);D.trigger("jsp-scroll-y",[-s,aL,aJ]).trigger("scroll")}function V(aI,s){if(!aE){return}if(aI<0){aI=0}else{if(aI>k){aI=k}}if(s===c){s=ay.animateScroll}if(s){P.animate(i,"left",aI,ad)
}else{i.css("left",aI);ad(aI)}}function ad(aI){if(aI===c){aI=i.position().left}al.scrollTop(0);Z=aI;var aL=Z===0,aK=Z==k,aJ=aI/k,s=-aJ*(S-aj);if(O!=aL||l!=aK){O=aL;l=aK;D.trigger("jsp-arrow-change",[ai,aG,O,l])}t(aL,aK);X.css("left",s);D.trigger("jsp-scroll-x",[-s,aL,aK]).trigger("scroll")}function v(aI,s){if(ay.showArrows){aq[aI?"addClass":"removeClass"]("jspDisabled");ae[s?"addClass":"removeClass"]("jspDisabled")}}function t(aI,s){if(ay.showArrows){ax[aI?"addClass":"removeClass"]("jspDisabled");y[s?"addClass":"removeClass"]("jspDisabled")}}function L(s,aI){var aJ=s/(Y-w);U(aJ*j,aI)}function M(aI,s){var aJ=aI/(S-aj);V(aJ*k,s)}function aa(aU,aP,aJ){var aN,aK,aL,s=0,aT=0,aI,aO,aR,aQ,aS;try{aN=b(aU)}catch(aM){return}aK=aN.outerHeight();aL=aN.outerWidth();al.scrollTop(0);al.scrollLeft(0);while(!aN.is(".jspPane")){s+=aN.position().top;aT+=aN.position().left;aN=aN.offsetParent();if(/^body|html$/i.test(aN[0].nodeName)){return}}aI=aA();aO=aI+w;if(s<aI||aP){aQ=s-ay.verticalGutter}else{if(s+aK>aO){aQ=s-w+aK+ay.verticalGutter}}if(aQ){L(aQ,aJ)}viewportLeft=aC();aR=viewportLeft+aj;if(aT<viewportLeft||aP){aS=aT-ay.horizontalGutter}else{if(aT+aL>aR){aS=aT-aj+aL+ay.horizontalGutter}}if(aS){M(aS,aJ)}}function aC(){return -X.position().left}function aA(){return -X.position().top}function af(){al.unbind(ab).bind(ab,function(aL,aM,aK,aI){var aJ=Z,s=I;P.scrollBy(aK*ay.mouseWheelSpeed,-aI*ay.mouseWheelSpeed,false);return aJ==Z&&s==I})}function o(){al.unbind(ab)}function aB(){return false}function J(){X.find(":input,a").unbind("focus.jsp").bind("focus.jsp",function(s){aa(s.target,false)})}function E(){X.find(":input,a").unbind("focus.jsp")}function R(){var s,aI;X.focus(function(){D.focus()});D.attr("tabindex",0).unbind("keydown.jsp keypress.jsp").bind("keydown.jsp",function(aM){if(aM.target!==this){return}var aL=Z,aK=I;switch(aM.keyCode){case 40:case 38:case 34:case 32:case 33:case 39:case 37:s=aM.keyCode;aJ();break;case 35:L(Y-w);s=null;break;case 36:L(0);s=null;break}aI=aM.keyCode==s&&aL!=Z||aK!=I;return !aI}).bind("keypress.jsp",function(aK){if(aK.keyCode==s){aJ()}return !aI});if(ay.hideFocus){D.css("outline","none");if("hideFocus" in al[0]){D.attr("hideFocus",true)}}else{D.css("outline","");if("hideFocus" in al[0]){D.attr("hideFocus",false)}}function aJ(){var aL=Z,aK=I;switch(s){case 40:P.scrollByY(ay.keyboardSpeed,false);break;case 38:P.scrollByY(-ay.keyboardSpeed,false);break;case 34:case 32:P.scrollByY(w*ay.scrollPagePercent,false);break;case 33:P.scrollByY(-w*ay.scrollPagePercent,false);break;case 39:P.scrollByX(ay.keyboardSpeed,false);break;case 37:P.scrollByX(-ay.keyboardSpeed,false);break}aI=aL!=Z||aK!=I;return aI}}function Q(){D.attr("tabindex","-1").removeAttr("tabindex").unbind("keydown.jsp keypress.jsp")}function C(){if(location.hash&&location.hash.length>1){var aJ,aI;try{aJ=b(location.hash)}catch(s){return}if(aJ.length&&X.find(location.hash)){if(al.scrollTop()===0){aI=setInterval(function(){if(al.scrollTop()>0){aa(location.hash,true);b(document).scrollTop(al.position().top);clearInterval(aI)}},50)}else{aa(location.hash,true);b(document).scrollTop(al.position().top)}}}}function ah(){b("a.jspHijack").unbind("click.jsp-hijack").removeClass("jspHijack")}function n(){ah();b("a[href^=#]").addClass("jspHijack").bind("click.jsp-hijack",function(){var s=this.href.split("#"),aI;if(s.length>1){aI=s[1];if(aI.length>0&&X.find("#"+aI).length>0){aa("#"+aI,true);return false}}})}function an(){var aJ,aI,aL,aK,aM,s=false;al.unbind("touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick").bind("touchstart.jsp",function(aN){var aO=aN.originalEvent.touches[0];aJ=aC();aI=aA();aL=aO.pageX;aK=aO.pageY;aM=false;s=true}).bind("touchmove.jsp",function(aQ){if(!s){return}var aP=aQ.originalEvent.touches[0],aO=Z,aN=I;P.scrollTo(aJ+aL-aP.pageX,aI+aK-aP.pageY);aM=aM||Math.abs(aL-aP.pageX)>5||Math.abs(aK-aP.pageY)>5;return aO==Z&&aN==I}).bind("touchend.jsp",function(aN){s=false}).bind("click.jsp-touchclick",function(aN){if(aM){aM=false;return false}})}function h(){var s=aA(),aI=aC();
D.removeClass("jspScrollable").unbind(".jsp");D.replaceWith(ao.append(X.children()));ao.scrollTop(s);ao.scrollLeft(aI)}b.extend(P,{reinitialise:function(aI){aI=b.extend({},ay,aI);ar(aI)},scrollToElement:function(aJ,aI,s){aa(aJ,aI,s)},scrollTo:function(aJ,s,aI){M(aJ,aI);L(s,aI)},scrollToX:function(aI,s){M(aI,s)},scrollToY:function(s,aI){L(s,aI)},scrollToPercentX:function(aI,s){M(aI*(S-aj),s)},scrollToPercentY:function(aI,s){L(aI*(Y-w),s)},scrollBy:function(aI,s,aJ){P.scrollByX(aI,aJ);P.scrollByY(s,aJ)},scrollByX:function(s,aJ){var aI=aC()+s,aK=aI/(S-aj);V(aK*k,aJ)},scrollByY:function(s,aJ){var aI=aA()+s,aK=aI/(Y-w);U(aK*j,aJ)},positionDragX:function(s,aI){V(s,aI)},positionDragY:function(aI,s){V(aI,s)},animate:function(aI,aL,s,aK){var aJ={};aJ[aL]=s;aI.animate(aJ,{duration:ay.animateDuration,ease:ay.animateEase,queue:false,step:aK})},getContentPositionX:function(){return aC()},getContentPositionY:function(){return aA()},getContentWidth:function(){return S()},getContentHeight:function(){return Y()},getPercentScrolledX:function(){return aC()/(S-aj)},getPercentScrolledY:function(){return aA()/(Y-w)},getIsScrollableH:function(){return aE},getIsScrollableV:function(){return az},getContentPane:function(){return X},scrollToBottom:function(s){U(j,s)},hijackInternalLinks:function(){n()},destroy:function(){h()}});ar(N)}f=b.extend({},b.fn.jScrollPane.defaults,f);b.each(["mouseWheelSpeed","arrowButtonSpeed","trackClickSpeed","keyboardSpeed"],function(){f[this]=f[this]||f.speed});var e;this.each(function(){var g=b(this),h=g.data("jsp");if(h){h.reinitialise(f)}else{h=new d(g,f);g.data("jsp",h)}e=e?e.add(g):g});return e};b.fn.jScrollPane.defaults={showArrows:false,maintainPosition:true,clickOnTrack:true,autoReinitialise:false,autoReinitialiseDelay:500,verticalDragMinHeight:0,verticalDragMaxHeight:99999,horizontalDragMinWidth:0,horizontalDragMaxWidth:99999,animateScroll:false,animateDuration:300,animateEase:"linear",hijackInternalLinks:false,verticalGutter:4,horizontalGutter:4,mouseWheelSpeed:0,arrowButtonSpeed:0,arrowRepeatFreq:50,arrowScrollOnHover:false,trackClickSpeed:0,trackClickRepeatFreq:70,verticalArrowPositions:"split",horizontalArrowPositions:"split",enableKeyboardNavigation:true,hideFocus:false,keyboardSpeed:0,initialDelay:300,speed:30,scrollPagePercent:0.8}})(jQuery,this);
/*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
 * Licensed under the MIT License (LICENSE.txt).
 *
 * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
 * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
 * Thanks to: Seamus Leahy for adding deltaX and deltaY
 *
 * Version: 3.0.4
 * 
 * Requires: 1.2.2+
 */

(function($) {

var types = ['DOMMouseScroll', 'mousewheel'];

$.event.special.mousewheel = {
    setup: function() {
        if ( this.addEventListener ) {
            for ( var i=types.length; i; ) {
                this.addEventListener( types[--i], handler, false );
            }
        } else {
            this.onmousewheel = handler;
        }
    },
    
    teardown: function() {
        if ( this.removeEventListener ) {
            for ( var i=types.length; i; ) {
                this.removeEventListener( types[--i], handler, false );
            }
        } else {
            this.onmousewheel = null;
        }
    }
};

$.fn.extend({
    mousewheel: function(fn) {
        return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
    },
    
    unmousewheel: function(fn) {
        return this.unbind("mousewheel", fn);
    }
});


function handler(event) {
    var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0;
    event = $.event.fix(orgEvent);
    event.type = "mousewheel";
    
    // Old school scrollwheel delta
    if ( event.wheelDelta ) { delta = event.wheelDelta/120; }
    if ( event.detail     ) { delta = -event.detail/3; }
    
    // New school multidimensional scroll (touchpads) deltas
    deltaY = delta;
    
    // Gecko
    if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) {
        deltaY = 0;
        deltaX = -1*delta;
    }
    
    // Webkit
    if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; }
    if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; }
    
    // Add event and delta to the front of the arguments
    args.unshift(event, delta, deltaX, deltaY);
    
    return $.event.handle.apply(this, args);
}

})(jQuery);
(function($) {
	$.fn.gallery = function(options) { return new Gallery(this.get(0), options); };
	
	function Gallery(context, options) { this.init(context, options); };
	
	Gallery.prototype = {
		options:{},
		init: function (context, options){
			this.options = $.extend({
				duration: 700,
				slideElement: 1,
				autoRotation: false,
				effect: false,
				listOfSlides: 'ul > li',
				descr:false,
				switcher: false,
				disableBtn: false,
				nextBtn: 'a.link-next, a.btn-next, a.next',
				prevBtn: 'a.link-prev, a.btn-prev, a.prev',
				circle: true,
				direction: false,
				event: 'click',
				IE: false
			}, options || {});
			var _el = $(context).find(this.options.listOfSlides);
			if (this.options.effect) this.list = _el;
			else this.list = _el.parent();
			if (this.options.switcher) this.switcher = $(context).find(this.options.switcher);
			if (this.options.descr) this.descr = $(context).find(this.options.descr);
			this.nextBtn = $(context).find(this.options.nextBtn);
			this.prevBtn = $(context).find(this.options.prevBtn);
			this.count = _el.index(_el.filter(':last'));
			
			if (this.options.switcher) this.active = this.switcher.index(this.switcher.filter('.active:eq(0)'));
			else this.active = _el.index(_el.filter('.active:eq(0)'));
			if (this.active < 0) this.active = 0;
			this.last = this.active;
			
			this.woh = _el.outerWidth(true);
			if (!this.options.direction) this.installDirections(this.list.parent().width());
			else {
				this.woh = _el.outerHeight(true);
				this.installDirections(this.list.parent().height());
			}
			
			if (!this.options.effect) {
				this.rew = this.count - this.wrapHolderW + 1;
				if (!this.options.direction) this.list.css({marginLeft: -(this.woh * this.active)});
				else this.list.css({marginTop: -(this.woh * this.active)});
			}
			else {
				this.rew = this.count;
				this.list.css({opacity: 0}).removeClass('active').eq(this.active).addClass('active').css({opacity: 1}).css('opacity', 'auto');
				if (this.options.switcher) this.switcher.removeClass('active').eq(this.active).addClass('active');
			}
			
			if (this.options.disableBtn) {
				if (this.count < this.wrapHolderW) this.nextBtn.addClass(this.options.disableBtn);
				if (this.active == 0) this.prevBtn.addClass(this.options.disableBtn);
			}
			
			this.initEvent(this, this.nextBtn, this.prevBtn, true);
			this.initEvent(this, this.prevBtn, this.nextBtn, false);
			
			if (this.options.autoRotation) this.runTimer(this);
			
			if (this.options.switcher) this.initEventSwitcher(this, this.switcher);
			if (this.options.descr) this.descr.hide().eq(this.active).show();
		},
		installDirections: function(temp){
			this.wrapHolderW = Math.floor(temp / this.woh);
			if (((this.wrapHolderW - 1) * this.woh + this.woh / 2) > temp) this.wrapHolderWwrapHolderW--;
		},
		fadeElement: function(){
			if ($.browser.msie && this.options.IE){
				this.list.eq(this.last).css({opacity:0});
				this.list.removeClass('active').eq(this.active).addClass('active').css({opacity:'auto'});
			}
			else{
				this.list.eq(this.last).animate({opacity:0}, {queue:false, duration: this.options.duration});
				this.list.removeClass('active').eq(this.active).addClass('active').animate({
					opacity:1
				}, {queue:false, duration: this.options.duration, complete: function(){
					$(this).css('opacity','auto');
				}});
			}
			if (this.options.descr) this.descr.hide().eq(this.active).show();
			
			if (this.options.switcher) this.switcher.removeClass('active').eq(this.active).addClass('active');
			this.last = this.active;
		},
		scrollElement: function(){
			if (!this.options.direction) this.list.animate({marginLeft: -(this.woh * this.active)}, {queue:false, duration: this.options.duration});
			else this.list.animate({marginTop: -(this.woh * this.active)}, {queue:false, duration: this.options.duration});
			if (this.options.switcher) this.switcher.removeClass('active').eq(this.active).addClass('active');
		},
		runTimer: function($this){
			if($this._t) clearTimeout($this._t);
			$this._t = setInterval(function(){
				$this.toPrepare($this, true);
			}, this.options.autoRotation);
		},
		initEventSwitcher: function($this, el){
			el.bind($this.options.event, function(){
				$this.active = $this.switcher.index($(this));
				if($this._t) clearTimeout($this._t);
				if (!$this.options.effect) $this.scrollElement();
				else $this.fadeElement();
				if ($this.options.autoRotation) $this.runTimer($this);
				return false;
			});
		},
		initEvent: function($this, addEventEl, addDisClass, dir){
			addEventEl.bind($this.options.event, function(){
				if($this._t) clearTimeout($this._t);
				if ($this.options.disableBtn &&($this.count > $this.wrapHolderW)) addDisClass.removeClass($this.options.disableBtn);
				$this.toPrepare($this, dir);
				if ($this.options.autoRotation) $this.runTimer($this);
				return false;
			});
		},
		toPrepare: function($this, side){
			if (($this.active == $this.rew) && $this.options.circle && side) $this.active = -$this.options.slideElement;
			if (($this.active == 0) && $this.options.circle && !side) $this.active = $this.rew + $this.options.slideElement;
			for (var i = 0; i < $this.options.slideElement; i++){
				if (side) {
					if ($this.active + 1 > $this.rew) {
						if ($this.options.disableBtn && ($this.count > $this.wrapHolderW)) $this.nextBtn.addClass($this.options.disableBtn);
					}
					else $this.active++;
				}
				else{
					if ($this.active - 1 < 0) {
						if ($this.options.disableBtn && ($this.count > $this.wrapHolderW)) $this.prevBtn.addClass($this.options.disableBtn);
					}
					else $this.active--;
				}
			};
			if ($this.active == $this.rew && side) if ($this.options.disableBtn &&($this.count > $this.wrapHolderW)) $this.nextBtn.addClass($this.options.disableBtn);
			if ($this.active == 0 && !side) if ($this.options.disableBtn &&($this.count > $this.wrapHolderW)) $this.prevBtn.addClass($this.options.disableBtn);
			if (!$this.options.effect) $this.scrollElement();
			else $this.fadeElement();
		},
		stop: function(){
			if (this._t) clearTimeout(this._t);
		},
		play: function(){
			if (this._t) clearTimeout(this._t);
			if (this.options.autoRotation) this.runTimer(this);
		}
	}
}(jQuery));
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) Gophmann A.L., 2006. All rights reserved.
 * 
 * Trademark:
 * Arlekino is a trademark of Gophmann A.L..
 * 
 * Manufacturer:
 * Gophmann A.L.
 * 
 * Designer:
 * Gophmann A.L.
 */
Cufon.registerFont({"w":64,"face":{"font-family":"arlekino","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","cap-height":"2","bbox":"-233.314 -334 513.02 263.231","underline-thickness":"4.5","underline-position":"-27.675","unicode-range":"U+0020-U+0451"},"glyphs":{" ":{"w":130},"\"":{"d":"85,-260v22,13,31,66,-8,74v3,-11,16,-14,14,-22v-2,-11,-17,-27,-32,-19r-3,-2v3,-2,17,-10,19,-14v-1,-2,8,-18,10,-17xm32,-262v22,14,33,65,-7,74v3,-11,15,-14,13,-22v-2,-11,-16,-27,-31,-19r-3,-2v2,-2,18,-10,19,-14v-1,-2,8,-18,9,-17","w":114},"$":{"d":"128,-167v45,15,76,36,76,88v0,49,-37,98,-95,96v-3,18,-20,24,-29,36v2,-10,4,-23,6,-38v-32,-6,-63,-24,-65,-55v-2,-31,44,-57,76,-56r3,-26v-28,-9,-43,-19,-44,-52v0,-31,26,-61,59,-59v2,-24,19,-32,31,-46v-4,18,-7,36,-10,52v17,3,14,0,28,-16v2,16,6,39,12,71v-5,-3,-33,-37,-42,-38v-2,13,-4,28,-6,43xm112,-216v-22,-1,-39,3,-38,23v0,6,11,13,32,19xm110,6v57,7,101,-69,56,-107v-8,-6,-23,-12,-43,-16r-3,26v56,12,40,68,-7,66v-1,14,-2,24,-3,31xm114,-34v13,-7,21,-31,5,-43v-1,9,-3,23,-5,43xm90,-33v-15,-6,-8,-23,3,-26r3,-29v-42,-5,-64,47,-37,75v7,7,17,12,28,15","w":207},"&":{"d":"135,-116v0,-57,73,-65,105,-29r33,10v1,17,3,6,-11,12v-9,3,-18,6,-24,11v-25,83,-38,107,-135,112v-78,4,-133,-75,-74,-128r26,-27v-25,-7,-51,-27,-51,-56v0,-45,56,-65,107,-64v36,1,48,12,48,48v0,18,-26,34,-48,32v-25,-2,-34,-9,-33,-41v0,-1,6,-5,17,-11v-1,11,-1,21,4,28v11,5,16,8,16,8v27,-5,14,-37,-6,-45r-26,-3v-28,13,-39,11,-39,44v0,31,35,55,65,38v18,-1,28,-7,28,6v-41,18,-93,22,-93,83v0,37,34,64,71,64v60,1,103,-31,103,-88v0,-28,-7,-35,-35,-35v-19,0,-37,13,-36,31v9,19,27,28,52,8v1,21,-17,27,-32,28v-15,0,-32,-20,-32,-36","w":278},"'":{"d":"32,-262v22,14,33,65,-7,74v3,-11,15,-14,13,-22v-2,-11,-16,-27,-31,-19r-3,-2v2,-2,18,-10,19,-14v-1,-2,8,-18,9,-17"},"(":{"d":"92,-288v-1,7,-13,13,-18,20v-52,60,-50,196,-6,264r-31,31v-48,-73,-47,-221,15,-275","w":80},")":{"d":"59,-288v48,72,47,222,-14,276v-14,11,-28,31,-42,38v70,-51,76,-205,25,-283","w":80},"*":{"d":"104,-252r-28,35r25,64r-46,-40r-38,47r8,-59r-41,-20r44,-12r12,-51r19,44","w":106},",":{"d":"31,-41v6,9,25,23,21,42v-3,13,-10,29,-28,33v7,-16,22,-21,5,-37v-10,-9,-16,-4,-26,-7v12,-4,23,-20,28,-31"},"-":{"d":"69,-131v98,0,105,14,179,23v11,-1,32,0,28,-14v4,-4,8,-2,8,4v2,13,-46,28,-60,27v-67,-6,-137,-30,-202,-15v-11,5,-10,13,-3,18v-9,2,-12,-4,-12,-10v-1,-17,43,-33,62,-33","w":291},".":{"d":"32,-50r22,30v0,2,-8,9,-23,20v-1,-12,-11,-24,-25,-17r-2,-2v11,-6,22,-21,28,-31"},"\/":{"d":"126,-275v-55,43,-51,97,-56,199v-3,41,-18,73,-43,97r-36,0v51,-49,42,-104,50,-206v3,-39,21,-69,49,-90r36,0","w":107},"0":{"d":"4,-89v0,-101,54,-177,160,-159v46,8,65,53,78,87v13,34,-5,110,-19,131v-12,19,-45,70,-93,66v-63,-6,-126,-51,-126,-125xm119,-238v-78,-6,-96,139,-55,201v19,30,41,54,87,55v26,-18,43,-25,54,-70v22,-86,-21,-181,-86,-186","w":251},"1":{"d":"98,-12v4,0,10,5,6,12r-91,0r0,-10v35,-18,24,-69,24,-170v0,-8,0,-31,-13,-29r-19,2r0,-11r86,-41v10,28,-16,37,-11,84v5,53,-10,136,18,163","w":109},"2":{"d":"286,-68v4,-1,17,26,16,30v4,22,-86,38,-114,38v-13,0,-113,-16,-126,-14v-16,-2,-48,30,-60,14v24,-19,75,-85,104,-104v49,-31,79,-56,96,-71v25,-23,37,-72,-9,-75v-51,-3,-64,34,-90,53v4,-18,8,-46,14,-85v9,10,12,18,21,21v45,-22,120,0,114,50v-10,88,-126,120,-169,174v14,20,2,9,54,19v19,3,34,4,45,4v25,0,118,-14,99,-50v1,-3,2,-4,5,-4","w":306},"3":{"d":"172,-177v42,9,84,26,84,72v0,80,-62,147,-148,147v-45,0,-105,-27,-105,-68v0,-36,51,-66,90,-66v27,0,73,22,73,47v0,19,-29,37,-50,37v-15,0,-42,-11,-41,-24v1,-15,20,-27,31,-8v-15,8,-17,21,0,24v13,1,25,-19,25,-32v0,-18,-23,-35,-42,-35v-33,0,-54,22,-54,56v0,31,40,57,73,56v68,-3,108,-58,103,-127v5,-23,-65,-67,-88,-64v18,-8,49,-37,49,-59v0,-45,-72,-58,-100,-30v-11,6,-23,42,-36,46v4,-18,8,-45,14,-84v5,6,14,20,21,20v50,-17,140,-11,145,38v-5,29,-15,32,-44,54","w":262},"4":{"d":"200,-93v21,-4,77,-53,111,-34r-31,31v-30,-9,-43,-2,-80,11v4,64,-10,88,37,108v-1,12,3,15,-14,9v-3,-4,-75,-2,-82,-5v-8,-16,45,-16,38,-36v1,-1,2,-23,3,-68v-75,29,-150,3,-177,-48v51,-48,107,-84,156,-127v27,-1,58,2,82,-2v6,0,4,6,3,11v-17,4,-41,10,-48,24v3,40,2,83,2,126xm180,-215v-10,13,-89,74,-109,87v27,27,64,39,111,38","w":316},"5":{"d":"98,-165v10,10,36,2,53,3v61,0,99,26,99,77v0,78,-61,125,-142,127v-45,2,-105,-27,-105,-68v0,-36,51,-66,90,-66v27,0,73,22,73,47v0,19,-29,37,-50,37v-15,0,-42,-11,-41,-24v1,-15,20,-27,31,-8v-15,8,-17,21,0,24v13,1,25,-19,25,-32v0,-18,-23,-35,-42,-35v-33,0,-54,22,-54,56v0,31,40,57,73,56v65,-2,100,-53,104,-116v4,-61,-101,-56,-162,-45r1,-60v-2,-40,-6,-38,-34,-60v0,-2,-1,-7,1,-7v44,8,92,8,141,3v17,-2,26,-18,38,-37v6,21,15,53,26,96v-20,-23,-60,-37,-119,-40v-6,20,-6,46,-6,72","w":258},"6":{"d":"150,-260v25,1,59,25,75,1r10,-21v6,29,9,74,24,95v-20,1,-31,-26,-47,-38v-20,-15,-43,-24,-72,-24v-66,0,-79,81,-76,159v2,62,28,129,105,128v16,0,29,-3,39,-8v29,-51,-2,-122,-58,-122v-22,0,-47,15,-69,30v23,-27,51,-58,97,-60v68,-4,96,98,48,142v-25,23,-36,49,-90,47v-98,-5,-119,-88,-127,-175v-8,-85,57,-156,141,-154","w":258},"7":{"d":"43,-286v24,50,134,31,195,29v-2,2,-1,4,0,7v-44,40,-74,146,-115,206v-12,34,-45,55,-51,101v0,6,4,9,12,11r0,10r-103,2v-2,-11,6,-12,12,-15v56,-41,75,-85,111,-156v32,-64,50,-105,46,-144v-49,1,-127,8,-133,48v-3,0,-7,-3,-9,-4v3,-22,21,-78,26,-100","w":242},"8":{"d":"172,-177v47,-4,84,6,91,44v-9,85,-103,142,-198,138v-34,-2,-63,-19,-63,-50v0,-43,24,-76,71,-100v-61,-11,-94,-68,-44,-112v38,-34,92,-34,146,-14v63,23,45,67,-3,94xm95,-155v35,-9,74,-30,77,-66v5,-56,-108,-66,-120,-13v-4,20,-8,47,13,62v11,8,20,15,30,17xm142,-161v-61,16,-92,47,-95,116v-2,40,55,43,89,28v58,-26,83,-48,83,-99v0,-25,-50,-46,-77,-45","w":269},"9":{"d":"156,-279v115,-5,174,133,125,240v-37,80,-104,157,-214,157v-40,0,-86,-25,-86,-62v0,-39,47,-54,55,-21v3,11,-14,0,-15,2v-11,0,-28,13,-27,24v0,24,33,36,97,36v95,0,149,-133,151,-243v2,-79,-43,-142,-123,-112v-41,29,-65,39,-65,86v0,45,27,72,80,80v27,-4,52,-27,75,-69r12,-6v-41,71,-48,90,-117,93v-54,2,-95,-44,-95,-98v0,-67,85,-103,147,-107","w":303},":":{"d":"34,-119r21,30v0,2,-8,9,-23,20v-1,-12,-10,-24,-24,-17r-3,-2v3,-3,17,-9,19,-14v-1,-2,8,-18,10,-17xm32,-50r22,30v0,2,-8,9,-23,20v-1,-12,-11,-24,-25,-17r-2,-2v11,-6,22,-21,28,-31"},";":{"d":"34,-119r21,30v0,2,-8,9,-23,20v-1,-12,-10,-24,-24,-17r-3,-2v3,-3,17,-9,19,-14v-1,-2,8,-18,10,-17xm31,-41v6,9,25,23,21,42v-3,13,-10,29,-28,33v7,-16,22,-21,5,-37v-10,-9,-16,-4,-26,-7v12,-4,23,-20,28,-31"},"=":{"d":"60,-152v81,0,83,23,144,23v10,0,26,-1,22,-14v3,-5,7,-1,7,5v2,12,-35,27,-49,26v-47,-4,-96,-29,-142,-17v-14,-6,-34,8,-22,20v-7,2,-10,-4,-9,-9v-2,-16,32,-34,49,-34xm61,-103v81,0,84,15,144,22v10,-1,26,-1,22,-14v4,-3,7,0,7,5v2,12,-35,27,-49,26v-47,-6,-115,-34,-162,-13v-8,4,-7,12,-2,17v-7,2,-10,-4,-9,-10v-2,-16,32,-33,49,-33","w":238},"?":{"d":"100,-279v41,2,96,56,73,103v-17,35,-17,38,-61,51v-24,7,-38,47,-16,71v-38,-11,-67,-40,-34,-77v9,-17,56,-16,66,-31v33,-23,24,-93,-12,-97v-50,-6,-79,38,-109,60v4,-18,8,-46,14,-85v3,4,15,23,21,21xm39,-20v5,-25,69,-26,73,0v-3,28,-69,26,-73,0","w":182},"@":{"w":360},"A":{"d":"189,107v16,-75,189,-60,189,20v0,49,-81,76,-143,73v-124,-6,-221,-85,-229,-200v-7,-104,88,-222,172,-244v-52,-4,-117,24,-165,37v0,-2,58,-66,58,-77r7,0v0,29,63,31,105,32v27,2,86,-15,115,-8v-10,9,-33,11,-30,34v7,60,4,123,4,186v0,11,10,37,21,35v-3,2,4,2,0,5v-42,-10,-51,-8,-110,4v1,-9,23,-12,24,-20v5,-10,14,-97,14,-114v0,-14,-36,-12,-57,-12v-30,0,-87,30,-98,50v-4,7,-16,78,-16,90v0,96,86,191,190,191v47,0,102,-21,102,-62v0,-37,-27,-61,-64,-61v-22,0,-48,17,-48,38v0,14,15,36,28,35v20,-2,18,-18,0,-26v14,-18,33,-10,37,7v-10,40,-106,31,-106,-13xm94,-155v53,-19,72,-32,126,-22v0,-32,3,-39,-13,-66v-48,8,-92,47,-113,88","w":301},"B":{"d":"172,-177v47,-4,86,6,91,44v8,65,-103,131,-184,135v-9,4,-42,10,-65,9r-1,-4v58,-25,28,-141,34,-217v2,-30,-13,-43,-38,-38r0,-5v32,-5,86,-23,116,-26v37,-4,94,17,91,48v-3,29,-15,32,-44,54xm92,-153v39,-6,75,-31,80,-68v3,-24,-37,-47,-62,-47v-26,0,-15,22,-15,39v0,48,-1,73,-3,76xm94,-6v67,-11,135,-48,125,-110v-6,-39,-93,-62,-124,-27v-9,40,-2,92,-1,137","w":269},"C":{"d":"272,23v15,-38,60,-14,55,20v-15,91,-166,69,-227,16v-46,-40,-88,-83,-91,-165v-3,-86,57,-156,141,-154v25,1,59,25,75,1r10,-21v6,29,9,74,24,95v-20,1,-31,-26,-47,-38v-20,-15,-43,-24,-72,-24v-60,0,-79,69,-75,143v5,88,66,189,152,189v64,0,97,-13,97,-37v0,-15,-22,-32,-40,-20v-1,-1,-2,-2,-2,-5","w":258},"D":{"d":"99,-254v119,-24,191,83,144,190v-21,48,-61,62,-122,68v-28,-6,-82,-10,-108,1v-2,0,-2,-4,-2,-6v11,3,21,-24,20,-35v-1,-20,5,-169,5,-187v0,-22,-19,-24,-30,-33v16,-12,66,7,93,2xm95,-11v67,28,123,-36,117,-113v-4,-52,-21,-125,-78,-119v-4,0,-17,1,-39,4v-26,48,-10,171,0,228","w":261},"E":{"d":"224,-146v5,-1,12,12,12,17v0,23,-34,48,-57,48v-30,0,-56,-44,-81,-56v-4,0,-13,6,-26,18v2,-15,33,-44,51,-43v34,9,57,50,93,47v9,0,10,-17,8,-31xm204,40v26,1,116,-23,118,-41v2,1,3,2,3,4v-24,37,-86,56,-134,56v-96,0,-184,-80,-182,-174v2,-68,51,-125,112,-137r23,12v16,4,27,-27,31,-29v2,14,1,78,16,89v0,4,0,8,-2,12v-16,-19,-37,-53,-71,-56v-29,-2,-56,76,-54,109v6,68,28,147,100,151v16,1,30,4,40,4","w":241},"F":{"d":"159,-256v17,-2,26,-18,38,-37v6,21,15,53,26,96v-20,-23,-60,-37,-119,-40v-6,20,-6,46,-6,72v24,14,56,-3,69,-25r-10,79v-14,-15,-23,-51,-59,-40v1,57,-11,138,38,145v0,4,0,6,-1,6v-37,-4,-73,-10,-109,-2v36,-32,25,-99,25,-190v0,-41,-6,-38,-34,-60v0,-2,-1,-7,1,-7v44,8,92,8,141,3","w":171},"G":{"d":"118,-86v10,-19,45,-52,72,-25v12,8,28,14,48,17v-1,11,-20,64,-27,69v-34,27,-95,96,-96,140v0,31,18,47,47,50v-20,10,-25,13,-34,34v-39,-31,-43,-89,-7,-137r47,-63v-94,16,-151,-61,-151,-138v0,-61,57,-108,114,-118v1,-2,23,12,24,11v18,2,23,-17,31,-25v3,14,1,67,17,77r-2,8v-16,-18,-39,-47,-72,-49v-30,-1,-58,63,-57,96v1,48,28,132,84,124v24,-4,53,-29,60,-50v-41,6,-61,-63,-98,-21","w":238},"H":{"d":"202,-102v3,44,-10,71,25,87r0,15r-88,0v-2,-3,-4,-7,-4,-12v31,-6,28,-51,28,-96v0,-32,-10,-39,-43,-41v-60,-4,-46,49,-46,106v0,10,17,31,27,31v0,5,-2,9,-4,12r-88,0r0,-15v35,-17,23,-42,25,-87r4,-116v0,-3,-6,-10,-19,-22r0,-14r88,0v2,3,4,7,4,12v-31,11,-31,32,-30,88v3,0,28,-14,38,-12v9,-1,31,12,36,12v1,-57,2,-76,-30,-88v0,-5,2,-9,4,-12r88,0r0,14v-13,12,-19,19,-19,22v0,9,1,48,4,116","w":235},"I":{"d":"32,-156v0,-50,4,-71,-23,-88r0,-10r89,0v2,2,3,5,3,8v-40,20,-24,121,-24,182v0,33,6,48,24,57v0,3,-1,6,-4,8r-89,0r0,-10v34,-25,24,-38,24,-147","w":109},"J":{"d":"87,-201v0,73,-28,204,30,227v4,0,12,-5,25,-15v-20,39,-47,55,-88,108v-43,55,-60,85,-124,91v-33,3,-69,-25,-69,-56v0,-33,49,-78,68,-37r-1,10v-19,-9,-35,13,-33,31v4,49,65,44,99,14v31,-28,62,-71,88,-108v-65,-23,-34,-162,-38,-245v-2,-52,-11,-75,-44,-69r1,-10v42,9,91,4,134,-2v-2,2,-1,3,0,5v-23,8,-48,23,-48,56","w":145},"K":{"d":"82,-139v16,-12,86,-81,73,-111v13,-4,55,2,74,-7r1,4v-29,30,-64,67,-96,90v42,50,71,137,122,169v67,43,112,63,193,55v-64,39,-181,2,-225,-35v-38,-33,-77,-129,-120,-168v-24,20,-22,2,-22,40v0,33,-6,96,21,94v0,3,-2,6,-4,8r-88,0r0,-10v32,-28,24,-40,24,-148v0,-54,4,-65,-24,-87r0,-11r89,0v2,2,4,5,4,8v-31,11,-23,67,-22,109","w":242},"L":{"d":"219,3v3,0,16,27,16,30v1,22,-48,35,-77,32r-110,-10v-12,-1,-42,25,-55,24v22,-13,37,-61,37,-97r-3,-206v4,-5,-20,-12,-18,-30r89,0v2,2,3,5,3,8v-8,-1,-31,23,-29,31v-5,89,14,192,-13,261v57,0,157,24,155,-39v1,-3,2,-4,5,-4","w":98},"M":{"d":"228,-252v28,-1,58,2,82,-2v6,0,4,6,3,11v-17,4,-41,10,-48,24v5,45,1,101,2,155v2,61,-6,63,37,87v-1,12,3,15,-14,9v-3,-4,-75,-2,-82,-5v-9,-16,45,-16,38,-36v1,-12,7,-153,2,-190v-21,34,-18,35,-42,77r-50,87r-92,-161r1,187v-7,19,51,20,38,36v-35,-1,-60,6,-93,8v-3,-2,-3,-7,-3,-12v71,-23,23,-154,40,-242v-10,-15,-24,-20,-49,-24v-2,-6,-3,-12,6,-12v12,0,64,5,79,3v20,29,27,60,49,92v14,20,21,36,25,43v21,-40,42,-66,59,-112v4,-10,8,-17,12,-23","w":316},"N":{"d":"134,-256v31,0,63,1,87,-6r5,4v-10,16,-34,17,-32,47v4,73,-28,207,27,239v2,15,-15,6,-23,4v-60,-78,-88,-148,-135,-234r1,193v-7,19,48,23,38,36v-35,2,-74,1,-92,8v-3,-1,-2,-7,-2,-11v69,-20,26,-146,39,-244v-8,-15,-24,-21,-48,-25v-1,-4,-4,-9,3,-9r81,1v38,47,62,117,91,175v-5,-64,23,-160,-40,-168r0,-10","w":225},"O":{"d":"4,-89v0,-101,54,-177,160,-159v46,8,65,53,78,87v13,34,-5,110,-19,131v-12,19,-45,70,-93,66v-63,-6,-126,-51,-126,-125xm119,-238v-78,-6,-96,139,-55,201v19,30,41,54,87,55v26,-18,43,-25,54,-70v22,-86,-21,-181,-86,-186","w":251},"P":{"d":"7,-232v100,-40,224,-26,232,71v6,64,-50,98,-118,97v-7,-2,-20,-11,-23,-2v6,40,-9,90,26,104v-12,7,-28,-3,-42,-3v-23,0,-41,6,-53,19v-5,0,-8,1,-8,-5v33,-30,36,-61,34,-121v-3,-73,5,-116,-15,-145v-8,-12,-17,-6,-32,-4v-2,-4,-3,-5,-1,-11xm128,-76v33,0,65,-23,65,-69v0,-52,-43,-86,-87,-91v-2,0,-7,1,-14,4v-4,37,-1,51,0,110v1,33,6,46,36,46","w":248},"Q":{"d":"212,-35v30,18,104,95,149,46v4,0,10,-2,8,4v2,13,-33,30,-45,29v-59,-2,-109,-28,-145,-57v-70,35,-171,-18,-171,-99v0,-116,98,-177,197,-129v11,-2,43,53,44,65v15,48,-13,116,-37,141xm83,-52v-5,-23,15,-39,36,-39v27,0,51,16,78,40v47,-76,-1,-186,-72,-191v-84,-6,-95,143,-42,190xm96,-59v0,31,38,44,72,36v-9,-8,-64,-81,-72,-36","w":257},"R":{"d":"50,-248v77,-19,210,-29,210,53v0,35,-28,62,-84,81v52,27,98,96,149,123v79,42,128,60,188,58v0,7,1,6,-11,7v-131,7,-210,-26,-277,-99v-45,-49,-69,-74,-121,-93v3,74,-16,107,67,108v0,6,1,12,-7,10v-52,-1,-126,-7,-158,13r-6,0v5,-13,58,-41,56,-65v-3,-70,25,-172,-42,-188v-10,-2,-19,-13,-6,-15xm146,-127v34,0,62,-18,64,-49v3,-49,-57,-80,-101,-61v0,46,-27,110,37,110","w":310},"S":{"d":"153,-247v8,-1,14,-14,21,-21v3,19,8,47,15,85v-13,-2,-30,-38,-41,-41v-19,-14,-84,-23,-81,16v8,22,104,38,115,55v80,55,27,195,-74,195v-45,0,-105,-27,-105,-68v0,-36,51,-66,90,-66v27,0,73,22,73,47v0,19,-29,37,-50,37v-15,0,-42,-11,-41,-24v1,-15,20,-27,31,-8v-15,8,-17,21,0,24v13,1,25,-19,25,-32v0,-18,-23,-35,-42,-35v-33,0,-54,22,-54,56v0,31,40,56,73,56v44,0,88,-36,90,-75v5,-98,-152,-46,-152,-139v0,-38,31,-72,68,-71v5,-1,35,10,39,9","w":225},"T":{"d":"46,-273v23,41,158,12,195,1v12,-3,10,-35,23,-23v6,18,13,41,28,52v-5,12,-3,2,-26,-5v-29,-18,-69,-6,-95,0v-13,44,-7,170,-7,253v0,17,13,23,33,28v-2,11,-24,1,-34,3v-11,-4,-67,24,-73,17v1,-5,37,-25,32,-40r4,-242v5,-26,-39,-9,-51,-12v-29,1,-49,28,-65,36v-3,0,-4,-1,-4,-4v8,-12,31,-44,40,-64","w":194},"U":{"d":"187,-257v27,4,60,5,81,-3v-2,4,2,4,3,7v-19,13,-26,17,-39,41v11,73,-1,197,-29,214v-24,37,-94,57,-135,19v-43,-38,-47,-59,-47,-158v0,-45,21,-90,-18,-107v0,-1,1,-5,2,-13v49,7,65,9,104,3v2,0,4,3,4,9v-8,5,-23,12,-36,26v-28,29,-19,195,6,223v17,20,73,26,86,7v18,-16,30,-24,35,-68v2,-21,4,-38,4,-51v-5,-97,8,-131,-23,-136v1,-3,1,-7,2,-13","w":249},"V":{"d":"190,-262v27,2,55,6,78,-3v-2,5,6,4,3,8v-63,37,-88,176,-112,255v0,9,4,25,-4,30v-30,-55,-97,-254,-149,-279r1,-11v17,0,83,17,103,3v9,13,-23,17,-18,34v9,35,33,65,51,119v4,12,5,12,17,43v33,-90,49,-140,49,-153v0,-16,-6,-33,-22,-35","w":211},"W":{"d":"293,-254v12,3,35,-14,36,1v-44,20,-65,106,-87,154v-17,36,-25,71,-31,102v-11,-26,-28,-64,-48,-116v-16,26,-26,82,-36,119v-29,-52,-79,-237,-138,-252r-5,-14v62,7,64,9,105,4v2,0,3,3,3,8v-8,0,-11,7,-11,21v-1,55,42,108,56,154r18,-60v-8,-30,-35,-111,-53,-109r0,-12r125,0v0,5,-4,9,-12,13r-28,59v-1,21,25,84,34,100v1,-12,48,-105,45,-128v-3,-14,-6,-35,-22,-36r2,-12xm188,-238v0,-15,-13,-6,-17,3v0,8,2,19,6,34v8,-9,11,-21,11,-37","w":292},"X":{"d":"216,-263v44,4,56,4,88,-2v-1,1,4,2,4,6v-32,8,-53,41,-78,61v-10,8,-27,30,-53,61v21,35,91,117,126,128r-1,9v-20,0,-93,-13,-116,-2v-2,0,-4,-3,-4,-7v39,-27,27,-16,-4,-61v-15,-22,-27,-36,-34,-44v2,2,-72,78,-69,83v2,11,15,19,25,22r-3,9v-44,-2,-56,-4,-88,2v1,-1,-4,-2,-4,-6v54,-17,93,-81,129,-122v-20,-34,-91,-117,-124,-128r1,-9v20,0,93,13,116,2v2,0,3,3,3,7v-37,31,-26,11,5,60r32,44v3,-5,17,-19,39,-45v29,-34,40,-30,24,-52v-6,-7,-23,-3,-14,-16","w":312},"Y":{"d":"152,-262v26,9,83,17,114,4r-4,12v-72,37,-118,179,-162,265v-45,89,-102,165,-171,219v-59,46,-144,28,-147,-45v-1,-32,32,-55,62,-59v-10,18,-31,24,-26,59v3,22,19,67,49,56v99,-38,161,-120,227,-258v-26,-74,-62,-225,-117,-244v1,-4,-5,-6,-2,-9v37,6,76,10,115,1v-1,2,-13,8,-20,20v-1,37,37,139,51,184v17,-37,58,-121,62,-152v2,-18,-29,-47,-31,-53","w":226},"Z":{"d":"284,3v4,-1,17,26,16,30v3,22,-87,38,-115,38v-12,0,-112,-15,-125,-13v-17,-3,-48,29,-60,13v20,-16,159,-200,156,-305v-49,1,-127,8,-133,48v-20,-5,-1,-29,4,-54v4,-20,11,-37,14,-50v14,8,15,23,35,30v47,17,122,3,168,6r0,5v-47,47,-77,125,-114,206r-41,89r91,11v26,-2,117,-14,98,-49v1,-3,3,-5,6,-5","w":172},"`":{"d":"38,-242v1,6,25,13,16,17v-25,-10,-46,24,-18,37v1,3,-1,5,-4,4v-35,-15,-25,-57,-4,-74v2,-1,11,14,10,16"},"a":{"d":"188,-8v0,2,3,7,1,8v-24,0,-48,-4,-70,0v9,-19,19,-67,18,-95v-1,-18,-5,-26,-17,-18v-43,-2,-58,28,-65,61v0,23,35,41,63,39v-30,25,-107,14,-107,-29v0,-51,82,-62,113,-80v8,-6,-1,-21,-9,-20v-12,-2,-102,30,-114,28v11,-11,27,-29,39,-48v9,17,52,15,81,11v41,9,48,24,48,87v0,27,-2,51,19,56","w":191},"b":{"d":"78,-132v37,-37,108,-9,108,48v0,68,-81,112,-123,60v-12,14,-33,35,-57,37v45,-33,29,-130,29,-204v0,-37,3,-35,-31,-37r-2,-4v27,-9,61,-17,77,-34r4,0v-5,47,-17,83,-5,134xm109,-12v22,0,40,-26,40,-49v0,-38,-18,-68,-51,-72v-17,5,-24,9,-24,38v0,29,-2,42,-6,62v-2,9,29,21,41,21","w":187},"c":{"d":"38,-76v0,44,44,79,88,58v7,-4,7,-4,22,-11v-42,60,-145,20,-145,-52v0,-44,61,-83,110,-63v4,1,12,-9,23,-7v-6,14,-2,32,0,51v-2,1,-5,2,-8,2v-3,-23,-26,-38,-52,-38v-23,0,-38,34,-38,60","w":150},"d":{"d":"116,-133v-3,-51,24,-104,-31,-99r-1,-3v26,-10,59,-18,77,-34r5,0v-19,76,-11,124,-11,206v0,35,10,60,30,76v-26,-2,-43,-21,-57,-37v-25,44,-90,14,-108,-10v-32,-42,-4,-121,49,-115v19,-3,35,14,47,16xm82,-12v17,-2,54,-11,39,-33v-11,-15,10,-88,-28,-88v-53,0,-76,114,-11,121","w":184},"e":{"d":"42,-82v-1,43,36,81,81,64v10,-3,17,-4,20,-4v-9,13,-39,22,-64,22v-34,0,-74,-37,-74,-70v0,-76,71,-104,116,-61v13,13,19,28,19,45v-23,11,-73,-4,-98,4xm44,-91v20,-2,41,1,61,1v9,-21,-15,-53,-32,-53v-11,0,-38,37,-29,52","w":147},"f":{"d":"117,-242v42,-31,140,-16,115,44v-16,-8,-36,5,-49,8v5,-29,-4,-49,-33,-49v-48,0,-79,41,-73,90v32,1,20,0,59,-18v-4,23,5,58,8,75v-16,4,-17,-32,-40,-36v-15,-9,-17,-9,-30,-3v2,6,6,90,13,105v5,10,16,18,35,21v0,19,-57,-2,-66,2v-9,-1,-38,10,-46,3v19,-14,30,-19,30,-62v0,-53,8,-98,-46,-93v47,-9,91,-63,123,-87","w":146},"g":{"d":"114,-167v30,11,37,21,82,33v-1,9,-34,-4,-34,15r-1,108v-15,90,-123,165,-216,173v-65,6,-97,-33,-139,-54r0,-6v33,-3,72,5,97,-6r4,3v-4,3,-19,12,-18,18v-3,10,47,26,58,24v80,-8,174,-70,183,-148v-59,18,-126,-10,-123,-77v3,-57,67,-84,111,-47v-1,-8,-2,-20,-4,-36xm84,-12v23,0,42,-5,37,-33v-6,-34,8,-88,-26,-88v-33,0,-52,35,-52,72v0,23,18,50,41,49","w":180},"h":{"d":"84,-270v-3,35,-24,95,-8,139v10,-6,40,-22,53,-22v30,-1,59,23,58,52v-3,50,-14,48,-41,88r30,6r0,7v-27,3,-51,-3,-74,0v18,-10,54,-39,54,-73v0,-32,-20,-55,-53,-55v-50,0,-30,61,-30,105v0,11,8,14,8,24v-34,-8,-31,-21,-68,-1r-3,-2v16,-13,28,-17,25,-63v0,0,-1,5,-1,-50v0,-50,11,-102,-32,-108v26,-8,56,-28,77,-47r5,0","w":188},"i":{"d":"46,-220v9,-1,22,13,21,22v1,9,-13,26,-23,24v-10,0,-25,-14,-25,-24v-1,-6,20,-23,27,-22xm71,-172v0,35,-9,59,-9,97v0,22,8,66,20,68r5,6v-14,5,-66,-13,-79,1v-8,-13,10,-14,18,-19v3,-22,15,-97,-10,-110r0,-5v25,-7,41,-19,50,-38r5,0","w":90},"j":{"d":"34,-219v8,-1,21,15,21,22v0,9,-14,25,-24,25v-9,0,-26,-14,-24,-25v-1,-6,21,-24,27,-22xm70,-7v5,-4,14,-16,19,-3v-66,39,-84,177,-186,179v-24,-5,-60,-16,-56,-50v-4,-32,48,-65,62,-31r-1,9v-16,-11,-30,11,-30,28v0,20,20,29,41,29v47,0,97,-83,119,-131v-14,-23,-20,-19,-20,-67v0,-33,6,-70,-15,-84r0,-5v25,-7,42,-19,51,-38v6,-2,5,4,5,9v-3,27,-10,57,-10,88v0,22,7,67,21,67","w":80},"k":{"d":"52,-63v-3,-47,5,-128,-17,-155v-6,-2,-47,2,-33,-11v53,-9,69,-23,103,-44v3,8,-5,17,-8,24v-8,17,-15,109,-6,152v19,-12,55,-39,40,-66v24,3,51,-15,76,-18r1,5v-10,11,-33,29,-67,54v23,27,58,114,98,120r0,7v-21,-1,-72,-20,-87,0v-2,0,-5,-5,-8,-13v7,1,17,-14,17,-20v0,-12,-16,-36,-48,-73v-43,11,-13,85,14,91r1,10v-38,1,-77,-4,-111,2r-4,-4v20,-14,42,-24,39,-61","w":237},"l":{"d":"63,-87v-4,35,-2,71,22,82v0,2,0,4,-1,5r-70,0v-4,-8,16,-16,16,-26r-3,-190v-6,-6,-16,-5,-26,-3v-1,-2,-1,-4,-1,-7v17,-4,48,-29,56,-43v11,-3,7,8,6,15","w":88},"m":{"d":"181,-13v20,7,44,-17,57,-27v2,9,3,22,6,39r-86,1v18,-28,51,-40,51,-83v0,-35,-32,-55,-57,-36v4,43,-9,108,-45,121v18,-31,35,-145,-33,-127v-21,14,-11,65,-12,103v-1,2,23,6,21,22v-23,-12,-54,3,-74,-2v15,-12,22,-12,22,-52v0,-33,2,-31,0,-78v-4,-2,-30,-8,-14,-15v20,4,53,-14,46,19v24,-28,65,-25,85,1v20,-16,24,-20,51,-22v19,-2,43,25,42,43v0,27,-41,81,-60,93","w":249},"n":{"d":"134,-8v13,2,49,-19,58,-27r6,39r-86,-4v21,-17,46,-40,46,-82v0,-29,-20,-43,-50,-43v-62,0,-41,99,-17,125v-24,4,-48,-14,-76,0v28,-17,28,-89,16,-123r-28,-1v20,-11,36,-8,66,-28v5,2,0,20,5,28v28,-17,50,-25,67,-25v32,0,47,15,47,45v0,30,-32,89,-54,96","w":202},"o":{"d":"87,-151v38,-2,78,36,78,72v0,54,-41,79,-106,79v-24,0,-54,-43,-54,-68v0,-51,38,-80,82,-83xm88,-10v62,-4,49,-128,-7,-128v-24,0,-39,39,-39,67v0,35,20,56,46,61","w":169},"p":{"d":"79,-131v45,-37,110,-12,110,47v0,53,-29,84,-80,84v-13,0,-24,-3,-33,-11v-6,81,15,184,-72,197v20,-17,21,-44,30,-76r1,-229v-8,-13,-16,-12,-33,-11r-2,-4v27,-9,60,-17,77,-33r5,0v0,8,-1,20,-3,36xm112,-12v23,1,41,-25,41,-49v0,-39,-22,-72,-52,-72v-32,0,-26,56,-26,87v0,31,6,32,37,34","w":197},"q":{"d":"178,-130r2,-1v-1,0,-1,1,-2,1xm119,-167v17,17,51,24,77,33v-7,10,-29,-2,-34,15v5,106,-19,244,30,305v-28,2,-65,-40,-66,-68r-5,-129v-52,32,-116,-15,-114,-73v2,-55,65,-87,111,-47v-1,-8,-2,-20,-4,-36r5,0xm84,-12v24,2,42,-6,37,-35v-6,-33,7,-87,-26,-86v-53,0,-77,116,-11,121","w":197},"r":{"d":"64,-140v21,-25,77,-12,77,24v0,24,-36,44,-50,19r0,-6v7,3,15,-3,14,-10v0,-12,-10,-20,-22,-20v-35,0,-22,67,-27,103v10,8,6,14,26,24v-8,19,-48,-4,-75,6r0,-7v30,-8,15,-74,15,-106v0,-18,-6,-27,-17,-27r0,-13v21,10,37,2,64,5v-2,1,-3,4,-5,8","w":144},"s":{"d":"131,-115v-9,-14,-31,-24,-54,-24v-23,0,-24,18,-3,21v36,6,84,23,84,66v0,31,-37,52,-70,52v-3,0,-31,-1,-85,-4r0,-5v18,-14,17,-42,34,-62v6,3,3,13,2,20v-4,44,84,59,100,11v0,-12,-11,-22,-32,-28v0,0,-1,2,-46,-13v-17,-6,-24,-17,-24,-31v2,-43,65,-38,104,-40v-10,9,-2,29,-2,37r-8,0","w":161},"t":{"d":"148,-236v-5,23,0,24,14,55v-30,-11,-42,-24,-71,-10v0,49,-4,139,7,170v2,6,10,12,24,16v0,2,2,6,0,6v-36,-4,-70,-3,-106,0v5,-10,28,-16,30,-32v5,-29,5,-105,5,-151v-11,-5,-30,2,-44,2r-2,-8v15,-3,37,0,47,-8v0,-19,-11,-38,-33,-29r0,-6v39,-9,69,-24,87,-44v3,2,3,3,3,5v-12,31,-18,51,-18,58v0,6,2,9,6,9v27,-6,24,-9,51,-33","w":126},"u":{"d":"146,-150v25,-2,27,8,59,-3r1,6v-16,7,-32,11,-28,42v5,40,-14,105,24,101r2,4r-67,0v3,-11,14,-13,11,-28v-24,32,-136,54,-143,-10v-5,-40,65,-78,102,-99v-22,-1,-78,17,-96,25v16,-10,25,-40,34,-51v15,9,15,19,44,18v7,0,38,-6,48,-5r1,5v-25,23,-89,42,-89,98v0,19,27,39,46,38v58,-3,57,-73,51,-141","w":211},"v":{"d":"122,-45r44,-83v-1,-2,-18,-18,-16,-23v40,9,35,2,68,-1v0,1,-1,3,1,3v-66,30,-76,94,-113,149v-16,0,-14,-12,-26,-32r-60,-98v-3,-4,-14,-9,-33,-16v-1,-7,4,-10,9,-6v31,0,61,13,87,0v-17,38,20,75,39,107","w":205},"w":{"d":"205,-45v7,-17,63,-82,38,-95v-5,-5,-9,-9,-9,-12v40,7,35,3,68,-2v0,1,-2,3,0,3v-54,30,-81,96,-113,151v-16,0,-12,-21,-24,-32r-20,-31v-18,17,-33,38,-43,63v-16,0,-11,-14,-25,-32v-29,-40,-28,-53,-59,-95v-6,-8,-22,-13,-33,-17v-1,-12,10,-6,17,-4v27,1,56,6,77,-2v-4,29,-9,38,17,72v14,18,20,30,22,33v3,0,23,-24,22,-27v-4,-9,-28,-72,-43,-71v-4,-2,-6,-4,-7,-6r125,-4v-5,12,-48,42,-48,55v0,1,12,19,38,53xm163,-109v9,-8,11,-27,2,-36r-16,4v0,15,6,18,14,32","w":287},"x":{"d":"70,1v-41,-8,-44,5,-70,-1v43,-21,56,-43,85,-71v-17,-24,-26,-65,-72,-76v0,-4,1,-7,4,-8v28,1,60,12,83,2v-1,17,-5,46,17,64v9,-14,50,-40,29,-53v-5,-5,-8,-8,-8,-12v38,6,39,2,64,-1r-1,2v1,0,3,1,6,0v-29,15,-57,39,-84,72v18,25,26,64,71,75v0,4,-1,7,-4,8v-28,-1,-60,-12,-83,-2v-5,-7,9,-26,-2,-42r-14,-20v-8,15,-53,39,-29,51v5,5,8,8,8,12","w":204},"y":{"d":"140,-153v24,-1,67,7,86,-5v1,18,-9,18,-18,25v-77,63,-133,281,-273,295v-67,7,-94,-35,-138,-54r0,-7v32,-3,71,7,95,-5r4,3v-2,2,-18,12,-17,18v-3,10,53,24,63,23v86,-18,121,-78,163,-145v-33,-38,-38,-57,-71,-116v-15,-15,-25,-23,-31,-24v-2,-12,12,-5,19,-4v25,0,57,-1,76,-6v3,0,5,3,8,7v-4,3,-9,5,-15,5v-7,10,-11,19,-11,27v-3,7,36,75,43,72v12,5,47,-65,44,-77v-1,-20,-8,-21,-27,-26r0,-6","w":199},"z":{"d":"65,-164v23,24,91,12,131,8r-6,14r-131,123v58,-1,86,-25,139,-29v-19,19,-30,29,-46,52v-9,-4,-12,-12,-35,-12v-29,0,-68,3,-115,10r6,-14r140,-116v-40,-14,-94,13,-130,16v18,-17,32,-29,47,-52","w":207},"!":{"d":"39,-20v6,-26,68,-25,73,0v-4,28,-68,27,-73,0xm121,-276v-2,16,-39,-8,-30,38v-3,52,0,108,-1,162v-6,13,-12,35,-25,29v8,-28,-7,-55,-7,-90r-1,-182r7,0v13,17,35,35,57,43","w":129},"\u0410":{"d":"189,107v16,-75,189,-60,189,20v0,49,-81,76,-143,73v-124,-6,-221,-85,-229,-200v-7,-104,88,-222,172,-244v-52,-4,-117,24,-165,37v0,-2,58,-66,58,-77r7,0v0,29,63,31,105,32v27,2,86,-15,115,-8v-10,9,-33,11,-30,34v7,60,4,123,4,186v0,11,10,37,21,35v-3,2,4,2,0,5v-42,-10,-51,-8,-110,4v1,-9,23,-12,24,-20v5,-10,14,-97,14,-114v0,-14,-36,-12,-57,-12v-30,0,-87,30,-98,50v-4,7,-16,78,-16,90v0,96,86,191,190,191v47,0,102,-21,102,-62v0,-37,-27,-61,-64,-61v-22,0,-48,17,-48,38v0,14,15,36,28,35v20,-2,18,-18,0,-26v14,-18,33,-10,37,7v-10,40,-106,31,-106,-13xm94,-155v53,-19,72,-32,126,-22v0,-32,3,-39,-13,-66v-48,8,-92,47,-113,88","w":301},"\u0411":{"d":"93,0v-22,2,-47,13,-78,11v2,-11,23,-9,24,-28v17,-45,12,-113,12,-175v0,-41,-6,-38,-34,-60v0,-6,-1,-7,7,-6v45,8,88,5,135,2v23,-2,25,-22,38,-37r26,96v-20,-23,-60,-37,-119,-40v-3,20,-7,49,-3,69v51,-13,159,-26,163,35v4,62,-87,126,-171,133xm222,-105v-3,-58,-91,-69,-126,-38v-9,41,0,92,0,137v64,-9,128,-51,126,-99","w":270},"\u0412":{"d":"172,-177v47,-4,86,6,91,44v8,65,-103,131,-184,135v-9,4,-42,10,-65,9r-1,-4v58,-25,28,-141,34,-217v2,-30,-13,-43,-38,-38r0,-5v32,-5,86,-23,116,-26v37,-4,94,17,91,48v-3,29,-15,32,-44,54xm92,-153v39,-6,75,-31,80,-68v3,-24,-37,-47,-62,-47v-26,0,-15,22,-15,39v0,48,-1,73,-3,76xm94,-6v67,-11,135,-48,125,-110v-6,-39,-93,-62,-124,-27v-9,40,-2,92,-1,137","w":269},"\u0413":{"d":"159,-256v17,-2,26,-18,38,-37v6,21,15,53,26,96v-20,-23,-60,-37,-119,-40v-11,45,-6,110,-6,164v0,31,12,67,38,67v0,4,0,6,-1,6v-37,-4,-73,-10,-109,-2v36,-32,25,-99,25,-190v0,-41,-6,-38,-34,-60v0,-2,-1,-7,1,-7v44,8,92,8,141,3","w":171},"\u0414":{"d":"17,-38r43,6v21,-102,84,-167,169,-206v-64,-1,-113,23,-165,37v10,-17,53,-59,58,-77r7,0v19,49,151,29,211,21r9,3v-13,11,-33,11,-29,42v8,59,-2,118,4,179r41,-5r-1,103r-8,2v7,-30,-4,-67,-37,-67r-214,-3v-50,-2,-86,17,-80,68v-5,9,-8,2,-10,-3xm263,-33v6,-59,22,-150,-4,-204v-92,21,-137,108,-156,203","w":379},"\u0415":{"d":"224,-146v5,-1,12,12,12,17v0,23,-34,48,-57,48v-30,0,-56,-44,-81,-56v-4,0,-13,6,-26,18v2,-15,33,-44,51,-43v34,9,57,50,93,47v9,0,10,-17,8,-31xm204,40v26,1,116,-23,118,-41v2,1,3,2,3,4v-24,37,-86,56,-134,56v-96,0,-184,-80,-182,-174v2,-68,51,-125,112,-137r23,12v16,4,27,-27,31,-29v2,14,1,78,16,89v0,4,0,8,-2,12v-16,-19,-37,-53,-71,-56v-29,-2,-56,76,-54,109v6,68,28,147,100,151v16,1,30,4,40,4","w":241},"\u0416":{"d":"151,1v4,-26,21,-27,21,-70r0,-59v-1,-1,-8,-6,-21,-15v-28,36,-67,72,-89,116v0,7,10,21,17,20v-6,26,-15,2,-35,4v-14,2,-49,10,-60,9r0,-7v63,-29,85,-122,138,-163v-37,-25,-67,-61,-97,-90v4,-8,22,4,28,1v24,0,40,0,48,2v-17,27,56,99,72,111v-4,-43,10,-86,-22,-104r0,-10r89,0v2,2,4,4,4,7v-33,10,-23,69,-22,110v27,-20,83,-78,75,-113v13,-4,54,2,73,-7v4,10,-13,15,-17,23v-25,24,-49,51,-78,71v52,42,75,133,138,163r0,7v-20,-1,-71,-20,-87,0v-3,0,-5,-5,-8,-13v37,-14,-4,-56,-15,-69r-57,-67v-36,11,-26,36,-26,86v0,32,8,48,23,49v0,3,-1,5,-4,8r-88,0","w":415},"\u0417":{"d":"132,-50v2,-49,-77,-44,-91,-8v-24,62,53,102,112,71v66,-17,59,-150,-24,-137v-8,1,-16,4,-23,10r4,-42v35,33,87,-9,77,-56v-7,-32,-76,-24,-93,-4v-8,9,-24,27,-33,29r22,-83v6,11,9,19,19,22r64,-9v32,3,60,18,60,50v0,35,-23,52,-47,69v55,10,88,87,43,133v-45,71,-267,43,-207,-57v28,-47,142,-47,152,17v-4,39,-82,47,-91,7v3,-14,21,-24,31,-6v-15,8,-19,21,-2,25v15,-2,26,-16,27,-31","w":244},"\u0418":{"d":"29,-211v1,-30,-21,-31,-32,-47v8,-8,26,2,38,2r54,0r0,10v-63,9,-34,95,-40,168v28,-59,54,-127,91,-175v30,3,61,-3,86,0r-2,8v-25,4,-38,9,-48,25v3,38,0,92,0,128v0,76,-5,94,39,116v0,4,1,10,-2,11v-21,-7,-54,-5,-92,-8v-11,-14,46,-16,38,-36v5,-47,1,-142,1,-193v-48,86,-74,156,-134,234v-8,2,-14,6,-24,4r0,-8v56,-41,23,-153,27,-239","w":225},"\u0419":{"d":"89,-256v-31,0,-63,1,-87,-6r-5,4v10,16,33,17,32,47v-3,85,28,198,-27,239v-1,15,16,6,24,4v60,-79,87,-148,134,-234r-1,193v8,20,-48,23,-38,36v35,2,74,1,92,8v3,-1,2,-7,2,-11v-70,-20,-25,-148,-39,-244v8,-15,24,-21,48,-25v1,-4,4,-9,-3,-9r-81,1v-38,47,-62,117,-91,175v5,-64,-23,-160,40,-168r0,-10xm169,-309v-12,33,-61,54,-92,19v-1,-4,-1,-7,4,-7v23,27,48,0,45,-24v0,0,-7,-9,-3,-12v5,3,15,17,23,18v3,-1,23,4,23,6","w":225},"\u041a":{"d":"82,-139v16,-12,86,-81,73,-111v13,-4,55,2,74,-7r1,4v-29,30,-64,67,-96,90v42,50,71,137,122,169v67,43,112,63,193,55v-64,39,-181,2,-225,-35v-38,-33,-77,-129,-120,-168v-24,20,-22,2,-22,40v0,33,-6,96,21,94v0,3,-2,6,-4,8r-88,0r0,-10v32,-28,24,-40,24,-148v0,-54,4,-65,-24,-87r0,-11r89,0v2,2,4,5,4,8v-31,11,-23,67,-22,109","w":256},"\u041b":{"d":"130,1v49,-23,48,-115,43,-192v-1,-17,-5,-27,-8,-28v-48,24,-83,62,-110,116v-21,24,-11,111,17,111v1,-2,2,-4,5,-7v4,32,3,47,-24,53v-26,-12,-39,-34,-39,-67v1,-79,73,-172,129,-207v-7,-10,-26,-10,-31,-22v37,-4,93,17,116,-7r7,6v-18,12,-23,22,-23,60r2,166v1,13,10,15,20,21v-5,18,-17,2,-29,2v-25,-2,-61,6,-75,-5","w":242},"\u041c":{"d":"228,-252v28,-1,58,2,82,-2v6,0,4,6,3,11v-17,4,-41,10,-48,24v5,45,1,101,2,155v2,61,-6,63,37,87v-1,12,3,15,-14,9v-3,-4,-75,-2,-82,-5v-9,-16,45,-16,38,-36v1,-12,7,-153,2,-190v-21,34,-18,35,-42,77r-50,87r-92,-161r1,187v-7,19,51,20,38,36v-35,-1,-60,6,-93,8v-3,-2,-3,-7,-3,-12v71,-23,23,-154,40,-242v-10,-15,-24,-20,-49,-24v-2,-6,-3,-12,6,-12v12,0,64,5,79,3v20,29,27,60,49,92v14,20,21,36,25,43v21,-40,42,-66,59,-112v4,-10,8,-17,12,-23","w":316},"\u041d":{"d":"202,-102v3,44,-10,71,25,87r0,15r-88,0v-2,-3,-4,-7,-4,-12v31,-6,28,-51,28,-96v0,-32,-10,-39,-43,-41v-60,-4,-46,49,-46,106v0,10,17,31,27,31v0,5,-2,9,-4,12r-88,0r0,-15v35,-17,23,-42,25,-87r4,-116v0,-3,-6,-10,-19,-22r0,-14r88,0v2,3,4,7,4,12v-31,11,-31,32,-30,88v3,0,28,-14,38,-12v9,-1,31,12,36,12v1,-57,2,-76,-30,-88v0,-5,2,-9,4,-12r88,0r0,14v-13,12,-19,19,-19,22v0,9,1,48,4,116","w":235},"\u041e":{"d":"4,-89v0,-101,54,-177,160,-159v46,8,65,53,78,87v13,34,-5,110,-19,131v-12,19,-45,70,-93,66v-63,-6,-126,-51,-126,-125xm119,-238v-78,-6,-96,139,-55,201v19,30,41,54,87,55v26,-18,43,-25,54,-70v22,-86,-21,-181,-86,-186","w":251},"\u041f":{"d":"157,-156v-1,-41,3,-76,-40,-76v-71,0,-32,95,-40,168v-3,28,5,49,24,57v0,3,-1,5,-4,8r-89,0v-3,-17,16,-16,18,-30v1,-4,25,-208,-17,-215r0,-10r214,0v2,2,3,5,3,8v-41,22,-24,118,-24,183v0,28,4,50,24,57v0,3,-2,5,-5,8r-88,0v-2,-17,14,-17,18,-30v4,-6,6,-49,6,-128","w":227},"\u0420":{"d":"7,-232v100,-40,224,-26,232,71v6,64,-50,98,-118,97v-7,-2,-20,-11,-23,-2v6,40,-9,90,26,104v-12,7,-28,-3,-42,-3v-23,0,-41,6,-53,19v-5,0,-8,1,-8,-5v33,-30,36,-61,34,-121v-3,-73,5,-116,-15,-145v-8,-12,-17,-6,-32,-4v-2,-4,-3,-5,-1,-11xm128,-76v33,0,65,-23,65,-69v0,-52,-43,-86,-87,-91v-2,0,-7,1,-14,4v-4,37,-1,51,0,110v1,33,6,46,36,46","w":248},"\u0421":{"d":"272,23v15,-38,60,-14,55,20v-15,91,-166,69,-227,16v-46,-40,-88,-83,-91,-165v-3,-86,57,-156,141,-154v25,1,59,25,75,1r10,-21v6,29,9,74,24,95v-20,1,-31,-26,-47,-38v-20,-15,-43,-24,-72,-24v-60,0,-79,69,-75,143v5,88,66,189,152,189v64,0,97,-13,97,-37v0,-15,-22,-32,-40,-20v-1,-1,-2,-2,-2,-5","w":258},"\u0422":{"d":"46,-273v23,41,158,12,195,1v12,-3,10,-35,23,-23v6,18,13,41,28,52v-5,12,-3,2,-26,-5v-29,-18,-69,-6,-95,0v-13,44,-7,170,-7,253v0,17,13,23,33,28v-2,11,-24,1,-34,3v-11,-4,-67,24,-73,17v1,-5,37,-25,32,-40r4,-242v5,-26,-39,-9,-51,-12v-29,1,-49,28,-65,36v-3,0,-4,-1,-4,-4v8,-12,31,-44,40,-64","w":194},"\u0423":{"d":"152,-262v26,9,83,17,114,4r-4,12v-72,37,-118,179,-162,265v-45,89,-102,165,-171,219v-59,46,-144,28,-147,-45v-1,-32,32,-55,62,-59v-10,18,-31,24,-26,59v3,22,19,67,49,56v99,-38,161,-120,227,-258v-26,-74,-62,-225,-117,-244v1,-4,-5,-6,-2,-9v37,6,76,10,115,1v-1,2,-13,8,-20,20v-1,37,37,139,51,184v17,-37,58,-121,62,-152v2,-18,-29,-47,-31,-53","w":226},"\u0424":{"d":"146,-56v-5,3,-11,5,-18,6v-70,-1,-123,-29,-123,-88v0,-64,50,-88,117,-87v7,2,12,6,21,7v0,-20,-21,-18,-19,-38r88,0v11,15,-19,16,-18,39v65,-22,144,8,141,79v-2,60,-64,94,-134,86v-3,-1,-6,-3,-9,-5v2,28,12,42,25,49v0,3,-2,6,-4,8r-89,0v-2,-21,22,-17,20,-41v1,-4,2,-10,2,-15xm290,-152v0,-55,-63,-77,-98,-49r0,133v51,8,98,-28,98,-84xm50,-152v0,56,47,91,95,84r-1,-133v-4,-8,-14,-13,-29,-13v-38,0,-65,18,-65,62","w":336},"\u0425":{"d":"216,-263v44,4,56,4,88,-2v-1,1,4,2,4,6v-32,8,-53,41,-78,61v-10,8,-27,30,-53,61v21,35,91,117,126,128r-1,9v-20,0,-93,-13,-116,-2v-2,0,-4,-3,-4,-7v39,-27,27,-16,-4,-61v-15,-22,-27,-36,-34,-44v2,2,-72,78,-69,83v2,11,15,19,25,22r-3,9v-44,-2,-56,-4,-88,2v1,-1,-4,-2,-4,-6v54,-17,93,-81,129,-122v-20,-34,-91,-117,-124,-128r1,-9v20,0,93,13,116,2v2,0,3,3,3,7v-37,31,-26,11,5,60r32,44v3,-5,17,-19,39,-45v29,-34,40,-30,24,-52v-6,-7,-23,-3,-14,-16","w":312},"\u0426":{"d":"155,200v-39,-30,-43,-90,-7,-137v15,-20,35,-38,44,-62v-52,-9,-129,5,-190,-1r0,-18v4,0,10,3,11,-2v18,-21,14,-42,14,-138v0,-39,3,-79,-23,-92r0,-11r88,0v2,2,4,6,4,9v-43,24,-20,122,-24,186v-2,25,4,38,11,48r35,0v28,-25,19,-40,19,-144v0,-50,3,-72,-23,-88r0,-10r89,0v2,2,4,5,4,8v-41,18,-22,120,-25,182v-2,42,9,55,48,50v-12,23,-30,30,-52,60v-23,33,-36,57,-36,76v0,31,18,48,47,51v-20,9,-24,13,-34,33","w":234},"\u0427":{"d":"177,-99v-79,48,-179,-17,-153,-116v7,-26,-29,-23,-22,-47v35,3,68,8,103,3v12,21,-40,20,-35,54v-4,33,-6,82,19,91v11,12,35,13,56,13v21,-10,35,-20,33,-55v-3,-42,1,-74,-23,-88r0,-10r88,0v2,2,4,5,4,8v-41,20,-21,118,-24,183v-1,28,5,48,23,57v0,3,-1,5,-4,8r-88,0v-3,-18,16,-16,17,-31v3,-4,5,-27,6,-70","w":248},"\u0428":{"d":"137,-162v0,-50,3,-72,-23,-88r0,-10r89,0v2,2,4,5,4,8v-41,18,-25,120,-25,182v0,26,4,40,13,50r33,-1v27,-23,18,-41,18,-143v0,-50,2,-71,-23,-88r0,-10r89,0v2,2,3,5,3,8v-39,21,-20,119,-24,183v-1,25,5,38,12,48r11,-1v8,42,-57,23,-102,23r-210,1r0,-18v4,0,10,3,11,-2v18,-21,14,-42,14,-138v0,-39,3,-79,-23,-92r0,-11r88,0v2,2,4,6,4,9v-43,24,-20,122,-24,186v-2,25,4,38,11,48r35,0v28,-25,19,-40,19,-144","w":324},"\u0429":{"d":"137,-162v0,-50,3,-72,-23,-88r0,-10r89,0v2,2,4,5,4,8v-41,18,-25,120,-25,182v0,28,4,42,16,52r26,0v32,-24,22,-40,22,-146v0,-50,2,-71,-23,-88r0,-10r89,0v2,2,3,5,3,8v-39,21,-24,119,-24,183v0,40,8,57,46,49v1,0,1,2,1,3v-24,25,-90,94,-88,134v1,31,19,48,48,51v-20,10,-25,13,-34,34v-40,-30,-44,-91,-7,-137v16,-19,34,-39,45,-61v-90,-15,-201,3,-300,-2r0,-18v4,0,10,3,11,-2v18,-21,14,-42,14,-138v0,-39,3,-79,-23,-92r0,-11r88,0v2,2,4,6,4,9v-43,24,-20,122,-24,186v-2,25,4,38,11,48r35,0v28,-25,19,-40,19,-144","w":338},"\u042a":{"d":"146,9v52,9,99,-36,99,-90v0,-46,-28,-66,-67,-67v-61,-2,-28,95,-32,157xm62,0v73,13,42,-109,42,-190v0,-18,-4,-33,-9,-44v-44,3,-77,19,-99,44r26,-95v16,55,93,29,141,20v3,0,5,1,8,3v-33,16,-18,59,-23,105v3,7,16,-1,23,-3v89,-10,152,74,102,144v-37,53,-141,53,-212,27v-1,-4,-1,-8,1,-11","w":297},"\u042b":{"d":"97,-160v2,9,16,-1,23,-2v90,-12,155,75,102,143v-41,53,-125,56,-211,27v-2,-5,-3,-6,0,-10v22,8,36,-4,40,-19v6,-27,4,-116,2,-172v-2,-43,-12,-53,-36,-80v0,-5,3,-5,8,-5v19,21,57,21,87,11v3,0,5,0,8,2v-33,16,-18,63,-23,105xm110,10v42,-7,84,-41,84,-94v0,-45,-33,-67,-67,-67v-30,0,-35,14,-35,47v1,60,-1,74,4,110v7,2,12,4,14,4xm266,-156v0,-50,4,-71,-23,-88r0,-10r89,0v2,2,4,5,4,8v-42,19,-25,121,-25,183v0,33,7,47,24,57v0,3,-1,6,-4,8r-88,0r0,-10v31,-27,23,-39,23,-148","w":344},"\u042c":{"d":"97,-160v2,9,16,-1,23,-2v90,-12,155,75,102,143v-41,53,-125,56,-211,27v-2,-5,-3,-6,0,-10v22,8,36,-4,40,-19v6,-27,4,-116,2,-172v-2,-43,-12,-53,-36,-80v0,-5,3,-5,8,-5v19,21,57,21,87,11v3,0,5,0,8,2v-33,16,-18,63,-23,105xm110,10v42,-7,84,-41,84,-94v0,-45,-33,-67,-67,-67v-30,0,-35,14,-35,47v1,60,-1,74,4,110v7,2,12,4,14,4","w":248},"\u042d":{"d":"131,-107v-23,50,-121,10,-88,-30v1,43,32,28,49,8v2,1,33,-47,46,-47v19,-5,54,17,59,30v-31,-14,-28,-21,-44,6v-9,16,-17,27,-22,33xm99,-247v1,2,19,-20,20,-18v117,-1,186,134,118,240v-44,69,-142,111,-240,69v-12,-5,-21,-8,-15,-17v28,20,131,23,162,-1v83,-19,79,-167,33,-231v-50,-69,-92,-6,-105,38v-3,-3,-4,-6,-5,-10v13,-20,-5,-82,-5,-91v4,0,22,29,37,21","w":266},"\u042e":{"d":"146,-157v8,-85,109,-140,190,-90v27,29,59,78,43,144v-14,61,-19,65,-58,107v-11,7,-34,20,-54,18v-79,-6,-147,-68,-123,-168v-66,-19,-78,28,-70,103v1,10,17,31,27,31v0,5,-2,9,-4,12r-88,0r0,-15v35,-17,23,-42,25,-87r4,-116v0,-3,-6,-10,-19,-22r0,-14r88,0v2,3,4,7,4,12v-31,11,-31,32,-30,88v12,-7,48,-20,65,-3xm256,-252v-78,-6,-97,139,-55,201v20,29,41,53,86,55v25,-16,44,-26,55,-70v21,-84,-21,-181,-86,-186","w":387},"\u042f":{"d":"274,14v-33,-21,-112,-13,-165,-12r1,-11v83,-4,62,-30,66,-108v-64,17,-124,106,-177,143v-55,39,-144,60,-232,48v-2,-9,6,-5,11,-5v54,0,155,-37,214,-87v44,-38,64,-68,112,-94v-56,-19,-84,-47,-84,-82v0,-82,136,-71,210,-52v17,0,39,-13,50,-2v-22,18,-52,20,-56,55v-5,38,1,99,0,143v-1,24,52,51,56,64r-6,0xm171,-236v-45,-18,-104,13,-101,62v2,31,30,48,64,48v64,0,37,-64,37,-110","w":282},"\u0430":{"d":"188,-8v0,2,3,7,1,8v-24,0,-48,-4,-70,0v9,-19,19,-67,18,-95v-1,-18,-5,-26,-17,-18v-43,-2,-58,28,-65,61v0,23,35,41,63,39v-30,25,-107,14,-107,-29v0,-51,82,-62,113,-80v8,-6,-1,-21,-9,-20v-12,-2,-102,30,-114,28v11,-11,27,-29,39,-48v9,17,52,15,81,11v41,9,48,24,48,87v0,27,-2,51,19,56","w":191},"\u0431":{"d":"68,-33v19,35,87,21,81,-28v7,-47,-43,-94,-73,-57v-2,29,-2,61,-8,85xm6,13v40,-27,27,-108,31,-171v-5,-7,-16,-9,-29,-9v6,-5,21,-8,28,-12v38,-23,55,-79,113,-79v32,0,60,20,46,54v-13,-7,-28,2,-38,7v3,-25,-1,-44,-27,-44v-51,0,-69,62,-52,109v37,-36,108,-9,108,48v0,68,-81,112,-123,60v-13,15,-33,35,-57,37","w":187},"\u0432":{"d":"164,-26v-14,58,-118,14,-156,28v-10,-15,25,-7,20,-28r1,-111v-2,-9,-12,-12,-14,-21v25,-6,41,-17,50,-33v12,1,0,21,2,32v32,-15,81,-1,81,36v0,14,-12,27,-23,33v25,12,40,28,39,64xm65,-74v0,24,1,56,11,68v29,4,55,-2,55,-30v0,-34,-25,-48,-66,-38xm64,-85v29,-1,65,-6,52,-41v-6,-17,-25,-32,-50,-24v-3,20,-2,42,-2,65","w":179},"\u0433":{"d":"162,-122v-17,1,-62,-14,-83,-19v-40,4,-13,68,-23,111v9,9,11,17,26,24v-5,18,-49,-5,-75,6r0,-7v31,-14,15,-70,15,-116v0,-15,-4,-25,-17,-27r0,-13v32,2,95,13,110,-11v13,20,30,37,47,52","w":158},"\u0434":{"d":"114,-167v30,11,37,21,82,33v-1,9,-34,-4,-34,15r-1,108v-15,90,-123,165,-216,173v-65,6,-97,-33,-139,-54r0,-6v33,-3,72,5,97,-6r4,3v-4,3,-19,12,-18,18v-3,10,47,26,58,24v80,-8,174,-70,183,-148v-59,18,-126,-10,-123,-77v3,-57,67,-84,111,-47v-1,-8,-2,-20,-4,-36xm84,-12v23,0,42,-5,37,-33v-6,-34,8,-88,-26,-88v-33,0,-52,35,-52,72v0,23,18,50,41,49","w":180},"\u0435":{"d":"42,-82v-1,43,36,81,81,64v10,-3,17,-4,20,-4v-9,13,-39,22,-64,22v-34,0,-74,-37,-74,-70v0,-76,71,-104,116,-61v13,13,19,28,19,45v-23,11,-73,-4,-98,4xm44,-91v20,-2,41,1,61,1v9,-21,-15,-53,-32,-53v-11,0,-38,37,-29,52","w":147},"\u0436":{"d":"104,-126v-26,-19,-49,-36,-67,-54v15,-11,53,19,77,14v-14,23,16,49,34,62v-3,-31,3,-102,-16,-117v-6,-2,-46,3,-33,-10v52,-8,70,-25,103,-45v-15,34,-24,110,-14,176v19,-12,54,-39,40,-65v23,2,54,-16,76,-18r1,4v-17,18,-41,36,-67,54v30,38,52,104,98,121r0,6v-28,0,-67,-20,-87,0v-3,0,-5,-4,-8,-12v7,0,17,-14,17,-21v0,-12,-16,-36,-48,-73v-42,12,-14,85,14,91r1,10r-111,2v-7,-5,-4,-9,6,-12v27,-10,32,-43,28,-81v-5,-3,-12,-7,-15,-10v-32,37,-49,60,-49,72v-1,7,10,22,18,21v-7,25,-16,2,-36,4v-17,2,-44,7,-59,9r0,-7v46,-16,68,-85,97,-121","w":340},"\u0437":{"d":"116,-56v0,-24,-37,-27,-62,-20r0,-17v41,12,78,-24,48,-52v-29,-10,-57,7,-66,29v-10,3,-8,-6,-7,-14v2,-8,4,-21,-3,-26v43,11,112,-27,117,36v-4,16,-18,27,-35,33v24,1,44,9,43,36v-3,61,-85,54,-143,46v8,-19,6,-48,23,-62v7,2,3,13,2,20v2,23,19,34,42,32v23,-2,41,-17,41,-41","w":157},"\u0438":{"d":"146,-150v25,-2,27,8,59,-3r1,6v-16,7,-32,11,-28,42v5,40,-14,105,24,101r2,4r-67,0v3,-11,14,-13,11,-28v-24,32,-136,54,-143,-10v-5,-40,65,-78,102,-99v-22,-1,-78,17,-96,25v16,-10,25,-40,34,-51v15,9,15,19,44,18v7,0,38,-6,48,-5r1,5v-25,23,-89,42,-89,98v0,19,27,39,46,38v58,-3,57,-73,51,-141","w":211},"\u0439":{"d":"146,-150v25,-2,27,8,59,-3r1,6v-16,7,-32,11,-28,42v5,40,-14,105,24,101r2,4r-67,0v3,-11,14,-13,11,-28v-24,32,-136,54,-143,-10v-5,-40,65,-78,102,-99v-22,-1,-78,17,-96,25v16,-10,25,-40,34,-51v15,9,15,19,44,18v7,0,38,-6,48,-5r1,5v-25,23,-89,42,-89,98v0,19,27,39,46,38v58,-3,57,-73,51,-141xm161,-204v10,4,26,10,5,19v-22,18,-56,11,-63,-19v11,3,13,15,21,14v11,-2,27,-15,21,-31v5,-4,10,15,16,17","w":211},"\u043a":{"d":"52,-63v-3,-47,5,-128,-17,-155v-6,-2,-47,2,-33,-11v53,-9,69,-23,103,-44v3,8,-5,17,-8,24v-8,17,-15,109,-6,152v19,-12,55,-39,40,-66v24,3,51,-15,76,-18r1,5v-10,11,-33,29,-67,54v23,27,58,114,98,120r0,7v-21,-1,-72,-20,-87,0v-2,0,-5,-5,-8,-13v7,1,17,-14,17,-20v0,-12,-16,-36,-48,-73v-43,11,-13,85,14,91r1,10v-38,1,-77,-4,-111,2r-4,-4v20,-14,42,-24,39,-61","w":237},"\u043b":{"d":"167,2v-24,-6,-48,1,-75,0v-1,-14,21,-14,21,-27v10,-23,-2,-77,1,-115v-62,7,-87,77,-69,140v6,24,16,39,27,21v4,28,3,50,-24,53v-78,-42,-21,-183,25,-217r-21,2v1,-6,-5,-17,5,-15v38,-3,83,7,112,-6r0,13v-29,5,-15,71,-19,110v-2,22,4,26,17,34r0,7","w":179},"\u043c":{"d":"228,3v-12,-14,-64,3,-79,-1v2,-2,4,-4,5,-7v21,-10,23,-82,18,-118v-24,21,-39,55,-56,84r-53,-91v1,41,-5,110,19,124v-1,5,7,6,4,9v-25,0,-60,-13,-78,0r-3,-10r21,-9v3,-34,15,-98,-10,-116r0,-5v25,-7,41,-19,50,-38v23,19,30,62,51,85r47,-83v2,-1,4,-2,6,-2v9,19,25,32,50,39r0,5v-26,18,-12,80,-10,115r21,9","w":232},"\u043d":{"d":"71,-172v1,31,-10,54,-9,86v24,-1,52,3,74,0r-1,-64v25,-2,27,8,59,-3r0,6v-32,4,-30,46,-28,87v2,37,-2,55,25,56r2,4r-67,0v14,-12,10,-43,11,-68r-75,-1v0,28,11,65,25,71v-23,4,-61,-13,-79,1r-3,-10r21,-9v3,-24,15,-99,-10,-113r0,-5v25,-7,41,-19,50,-38r5,0","w":200},"\u043e":{"d":"87,-151v38,-2,78,36,78,72v0,54,-41,79,-106,79v-24,0,-54,-43,-54,-68v0,-51,38,-80,82,-83xm88,-10v62,-4,49,-128,-7,-128v-24,0,-39,39,-39,67v0,35,20,56,46,61","w":169},"\u043f":{"d":"134,-8v13,2,49,-19,58,-27r6,39r-86,-4v21,-17,46,-40,46,-82v0,-29,-20,-43,-50,-43v-62,0,-41,99,-17,125v-24,4,-48,-14,-76,0v28,-17,28,-89,16,-123r-28,-1v23,-12,35,-8,66,-28v5,2,0,20,5,28v28,-17,50,-25,67,-25v32,0,47,15,47,45v0,30,-32,89,-54,96","w":202},"\u0440":{"d":"79,-131v45,-37,110,-12,110,47v0,53,-29,84,-80,84v-13,0,-24,-3,-33,-11v-6,81,15,184,-72,197v20,-17,21,-44,30,-76r1,-229v-8,-13,-16,-12,-33,-11r-2,-4v27,-9,60,-17,77,-33r5,0v0,8,-1,20,-3,36xm112,-12v23,1,41,-25,41,-49v0,-39,-22,-72,-52,-72v-32,0,-26,56,-26,87v0,31,6,32,37,34","w":197},"\u0441":{"d":"38,-76v0,44,44,79,88,58v7,-4,7,-4,22,-11v-42,60,-145,20,-145,-52v0,-44,61,-83,110,-63v4,1,12,-9,23,-7v-6,14,-2,32,0,51v-2,1,-5,2,-8,2v-3,-23,-26,-38,-52,-38v-23,0,-38,34,-38,60","w":150},"\u0442":{"d":"181,-13v20,7,44,-17,57,-27v2,9,3,22,6,39r-86,1v18,-28,51,-40,51,-83v0,-35,-32,-55,-57,-36v4,43,-9,108,-45,121v18,-31,35,-145,-33,-127v-21,14,-11,65,-12,103v-1,2,23,6,21,22v-23,-12,-54,3,-74,-2v15,-12,22,-12,22,-52v0,-33,2,-31,0,-78v-4,-2,-30,-8,-14,-15v20,4,53,-14,46,19v24,-28,65,-25,85,1v20,-16,24,-20,51,-22v19,-2,43,25,42,43v0,27,-41,81,-60,93","w":249},"\u0443":{"d":"140,-153v24,-1,67,7,86,-5v1,18,-9,18,-18,25v-77,63,-133,281,-273,295v-67,7,-94,-35,-138,-54r0,-7v32,-3,71,7,95,-5r4,3v-2,2,-18,12,-17,18v-3,10,53,24,63,23v86,-18,121,-78,163,-145v-33,-38,-38,-57,-71,-116v-15,-15,-25,-23,-31,-24v-2,-12,12,-5,19,-4v25,0,57,-1,76,-6v3,0,5,3,8,7v-4,3,-9,5,-15,5v-7,10,-11,19,-11,27v-3,7,36,75,43,72v12,5,47,-65,44,-77v-1,-20,-8,-21,-27,-26r0,-6","w":226},"\u0444":{"d":"13,-38v-25,-67,40,-134,104,-100r3,19v3,-44,-1,-74,-48,-67v74,-19,93,-99,179,-104v39,-2,76,21,59,61v-18,-8,-35,4,-49,8v5,-29,-3,-51,-33,-50v-72,2,-79,71,-73,147v38,-46,117,-24,116,40v-1,53,-29,84,-80,84v-13,0,-24,-4,-33,-11v2,71,-5,159,31,198v-28,2,-65,-40,-66,-67r-5,-138v-31,26,-88,25,-105,-20xm81,-136v-65,6,-40,123,15,120v32,-1,23,-54,23,-88v0,-31,-6,-35,-38,-32xm194,-12v23,1,41,-26,41,-49v0,-40,-22,-72,-52,-72v-35,0,-23,62,-25,101v3,19,11,19,36,20","w":281},"\u0445":{"d":"70,1v-41,-8,-44,5,-70,-1v43,-21,56,-43,85,-71v-17,-24,-26,-65,-72,-76v0,-4,1,-7,4,-8v28,1,60,12,83,2v-1,17,-5,46,17,64v9,-14,50,-40,29,-53v-5,-5,-8,-8,-8,-12v38,6,39,2,64,-1r-1,2v1,0,3,1,6,0v-29,15,-57,39,-84,72v18,25,26,64,71,75v0,4,-1,7,-4,8v-28,-1,-60,-12,-83,-2v-5,-10,10,-26,-2,-42r-14,-20v-8,15,-53,39,-29,51v5,5,8,8,8,12","w":204},"\u0446":{"d":"45,-163v17,22,58,18,92,13r1,5v-25,22,-89,43,-89,98v0,19,27,39,46,38v47,-3,62,-54,51,-112r0,-29v26,-2,26,8,59,-3r1,6v-43,6,-29,81,-25,126v1,16,27,14,23,34v-5,22,-18,42,-41,42v-35,0,-81,-23,-71,38v-11,-4,-24,-13,-36,-5v-14,-47,39,-74,76,-50v28,18,74,-3,60,-35v-13,-7,-37,-1,-55,-3v3,-11,14,-13,11,-28v-24,32,-133,54,-143,-10v-6,-40,72,-79,100,-99v-21,0,-76,17,-94,25v16,-10,25,-39,34,-51","w":211},"\u0447":{"d":"42,-163v16,23,58,18,92,13v-18,23,-72,26,-68,71v3,33,63,36,78,8r-1,-79v25,-1,26,8,58,-3r1,6v-34,3,-30,48,-28,87v3,37,-5,55,24,56r2,4r-66,0v11,-13,11,-31,10,-57v-24,24,-115,29,-115,-16v0,-38,47,-48,75,-67v-30,4,-73,19,-97,28v16,-11,25,-40,35,-51","w":211},"\u0448":{"d":"172,-162v17,23,58,18,92,13r1,5v-25,22,-89,43,-89,98v0,19,27,40,46,38v33,-3,53,-30,52,-77r-1,-64v26,-2,26,8,59,-3r1,6v-34,4,-31,46,-29,87v2,38,-2,53,25,57r2,3r-67,0v4,-9,15,-15,10,-28v-22,28,-105,50,-135,10v-28,27,-123,32,-128,-22v-4,-41,69,-75,100,-99v-21,0,-76,18,-94,26v16,-10,25,-40,34,-52v18,23,56,18,92,14r1,5v-24,22,-95,42,-89,97v3,33,52,52,80,24v-19,-51,55,-85,99,-112v-24,-1,-78,17,-96,26v16,-11,24,-40,34,-52","w":337},"\u0449":{"d":"172,-162v17,23,58,18,92,13r1,5v-25,22,-89,43,-89,98v0,19,27,40,46,38v33,-3,53,-30,52,-77r-1,-64v26,-2,26,8,59,-3r1,6v-46,1,-29,104,-22,137v37,14,10,69,-22,67v-36,-2,-79,-20,-71,38v-11,-3,-23,-14,-35,-5v-16,-46,38,-74,76,-50v24,16,62,3,63,-25v1,-26,-36,-13,-58,-15v4,-9,15,-15,10,-28v-22,28,-105,50,-135,10v-28,27,-123,32,-128,-22v-4,-41,69,-75,100,-99v-21,0,-76,18,-94,26v16,-10,25,-40,34,-52v18,23,56,18,92,14r1,5v-24,22,-95,42,-89,97v3,33,52,52,80,24v-19,-51,55,-85,99,-112v-24,-1,-78,17,-96,26v16,-11,24,-40,34,-52","w":337},"\u044a":{"d":"167,-46v4,-37,-43,-63,-63,-37v1,35,-4,78,28,78v23,0,33,-19,35,-41xm199,-54v-3,60,-69,52,-130,52v-9,0,-16,1,-19,5r-3,-10r21,-9v3,-25,14,-102,-11,-117v-29,4,-44,18,-56,38r17,-81v9,48,72,23,95,4v0,29,-6,55,-9,81v29,-34,98,-14,95,37","w":207},"\u044b":{"d":"215,-172v0,36,-10,58,-10,97v0,23,9,70,21,71r4,6v-14,4,-66,-13,-78,1v-8,-13,9,-14,17,-19v3,-24,15,-99,-10,-112r0,-5v25,-7,42,-20,51,-39r5,0xm157,-57v-2,63,-71,54,-130,54v-9,0,-16,2,-19,6r-3,-10r21,-9v3,-24,15,-99,-10,-113r0,-5v25,-7,41,-19,50,-38v6,-2,5,4,5,9v0,23,-8,45,-8,68v29,-35,96,-13,94,38xm126,-46v4,-37,-41,-69,-64,-41v1,36,-4,79,28,82v22,-2,34,-19,36,-41","w":232},"\u044c":{"d":"157,-57v-2,63,-71,54,-130,54v-9,0,-16,2,-19,6r-3,-10r21,-9v3,-24,15,-99,-10,-113r0,-5v25,-7,41,-19,50,-38v6,-2,5,4,5,9v0,23,-8,45,-8,68v29,-35,96,-13,94,38xm126,-46v4,-37,-41,-69,-64,-41v1,36,-4,79,28,82v22,-2,34,-19,36,-41","w":167},"\u044d":{"d":"3,-29v44,36,112,7,109,-46v-54,-8,-58,12,-85,21v8,-14,11,-34,19,-48v12,21,21,23,66,21v-1,-25,-15,-55,-37,-55v-26,0,-49,16,-53,38v-3,0,-5,-1,-7,-2v3,-19,5,-37,0,-51v10,-2,19,8,23,7v49,-19,110,18,110,63v0,67,-84,107,-139,62","w":150},"\u044e":{"d":"71,-172v1,32,-11,53,-9,86r40,0v5,-40,42,-67,81,-67v44,0,76,30,78,72v3,53,-42,85,-106,79v-34,-3,-44,-41,-57,-65r-36,-2v1,26,4,54,20,63v-1,5,7,6,4,9v-25,0,-60,-13,-78,0r-3,-10r21,-9v3,-24,15,-99,-10,-113r0,-5v25,-7,41,-19,50,-38r5,0xm144,-43v23,52,88,27,81,-33v-3,-32,-15,-64,-48,-64v-37,0,-48,64,-33,97xm130,-68v-2,-1,-3,1,-1,1v1,0,1,-1,1,-1","w":264},"\u044f":{"d":"23,-88v-43,-72,57,-91,120,-74v9,0,16,-2,19,-6r3,10v-39,9,-20,79,-22,125v0,20,6,31,24,32r2,3r-74,0v15,-13,9,-45,13,-68v-48,-2,-78,27,-72,76v1,17,11,37,27,25v7,43,-46,36,-55,14v-19,-51,22,-99,59,-118v-17,-2,-34,-9,-44,-19xm67,-156v-38,8,-26,80,17,80v7,0,15,-1,24,-4v0,-38,8,-86,-41,-76","w":174},"\u0401":{"d":"224,-146v5,-1,12,12,12,17v0,23,-34,48,-57,48v-30,0,-56,-44,-81,-56v-4,0,-13,6,-26,18v2,-15,33,-44,51,-43v34,9,57,50,93,47v9,0,10,-17,8,-31xm204,40v26,1,116,-23,118,-41v2,1,3,2,3,4v-24,37,-86,56,-134,56v-96,0,-184,-80,-182,-174v2,-68,51,-125,112,-137r23,12v16,4,27,-27,31,-29v2,14,1,78,16,89v0,4,0,8,-2,12v-16,-19,-37,-53,-71,-56v-29,-2,-56,76,-54,109v6,68,28,147,100,151v16,1,30,4,40,4xm177,-334r22,30v0,2,-8,9,-23,20v-1,-12,-11,-24,-25,-17r-2,-2v13,-5,21,-21,28,-31xm108,-331r22,30v0,2,-8,9,-23,20v-1,-12,-11,-24,-25,-17r-3,-2v3,-2,17,-10,19,-14v-1,-2,8,-18,10,-17","w":241},"\u0451":{"d":"42,-82v-1,43,36,81,81,64v10,-3,17,-4,20,-4v-9,13,-39,22,-64,22v-34,0,-74,-37,-74,-70v0,-76,71,-104,116,-61v13,13,19,28,19,45v-23,11,-73,-4,-98,4xm44,-91v20,-2,41,1,61,1v9,-21,-15,-53,-32,-53v-11,0,-38,37,-29,52xm117,-224r22,30v0,2,-8,9,-23,20v-1,-12,-11,-24,-25,-17r-2,-3v12,-4,22,-20,28,-30xm48,-221r22,30v0,2,-8,9,-23,20v-1,-12,-11,-24,-25,-17r-2,-3v12,-5,22,-20,28,-30","w":147},"\u00a0":{"w":130}}});

