
var passwordObj = null;
function starteZForm()
{
$("input[name^='ContentObjectAttribute_data_user_password_confirm']").attr("disabled", true);
}
function fieldEvents(obj)
{
var attrName = $(obj).attr('name');
$(obj).select();
if(attrName.indexOf("data_user_password") != -1)
{
if(attrName.indexOf("data_user_password_confirm") == -1)
{
$("input[name^='ContentObjectAttribute_data_user_password_confirm']").attr("disabled", false);
}
}
}
function validate(obj)
{
var attrName = $(obj).attr('name');
var value =  $(obj).attr('value');
if(attrName.indexOf("data_user_email") != -1)
{
var required = isRequired(obj);
if ( !  validateRequired(required, value) )
{
setRequiredErrorMessage(obj, required, value);
}
else
{
var check = validateEmail(value);
updateValidationResponse('email', obj, check);
}
}
else if(attrName.indexOf("data_integer") != -1)
{
var required = isRequired(obj);
if ( !  validateRequired(required, value) )
{
setRequiredErrorMessage(obj, required, value);
}
else
{
var check = validateInteger(value);
updateValidationResponse('integer', obj, check);
}
}
else if(attrName.indexOf("data_float") != -1)
{
var required = isRequired(obj);
if ( !  validateRequired(required, value) )
{
setRequiredErrorMessage(obj, required, value);
}
else
{
var check = validateFloat(value);
updateValidationResponse('float', obj, check);
}
}
else if(attrName.indexOf("data_user_password") != -1)
{
if(attrName.indexOf("data_user_password_confirm") == -1)
{
passwordObj = obj;
if( $(obj).attr('value') == '')
{
$("input[name^='ContentObjectAttribute_data_user_password_confirm']").attr("disabled", true);
}
}
else
{
var check = validatePasswordConfirm(obj);
updateValidationResponse('passwordconfirm', obj, check);
}
}
else if(attrName.indexOf("data_user_login") != -1)
{
setRequiredErrorMessage(obj, 1, value);
}
else if(attrName.indexOf("ezstring_data_text") != -1)
{
var required = isRequired(obj);
setRequiredErrorMessage(obj, required, value);
}
else if(attrName.indexOf("data_text") != -1)
{
var required = isRequired(obj);
setRequiredErrorMessage(obj, required, value);
}
else{}
}
function validatePasswordConfirm(obj)
{
if(passwordObj != null)
{
if( $(passwordObj).attr('value') == $(obj).attr('value') )
return 1;
else
return 0;
}
else
return 0;
}
function validateRequired(required, value)
{
if(required)
{
if(value == "")
return 0;
else
return 1;
}
else
return 1;
}
function isRequired(obj)
{
var parent = $(obj).parent();
var flagChildren = 0;
var requiredSpam = $(parent).find("span[class='required_field']");
requiredSpam.each(function(index) {
flagChildren = 1;
});
return flagChildren;
}
function setRequiredErrorMessage(obj, required, value)
{
var parent = $(obj).parent();
if ( !  validateRequired(required, value) )
{
var errorMsg = buildErrorMessage('required');
setError(parent, errorMsg);
}
else
{
cleanErrorMessages(parent);
}
}
function updateValidationResponse(type, obj, check)
{
var parent = $(obj).parent();
if(check == 0)
{
var errorMsg = buildErrorMessage(type);
setError(parent, errorMsg);
}
else
{
cleanErrorMessages(parent);
}
}
function setError(parent, errorMsg)
{
var spanElements = parent.children('span');
spanElements.each(function(index) {
if( $(this).attr('class') == 'error_strings' )
{
$(this).remove();
}
});
$(parent).append(errorMsg);
}
function cleanErrorMessages(parent)
{
var spanElements = parent.children('span');
spanElements.each(function(index) {
if( $(this).attr('class') == 'error_strings' )
{
$(this).remove();
}
});
}
function validateEmail(email)
{
var splitted = email.match("^(.+)@(.+)$");
if(splitted == null) return false;
if(splitted[1] != null )
{
var regexp_user=/^\"?[\w-_\.]*\"?$/;
if(splitted[1].match(regexp_user) == null) return false;
}
if(splitted[2] != null)
{
var regexp_domain=/^[\w-\.]*\.[A-Za-z]{2,4}$/;
if(splitted[2].match(regexp_domain) == null)
{
var regexp_ip =/^\[\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\]$/;
if(splitted[2].match(regexp_ip) == null) return false;
}// if
return 1;
}
return 0;
}
function validateInteger(val)
{
var IsFound = /^-?\d+$/.test(val);
if(IsFound)
{
if(!(parseInt(val) <= 0))
return 1;
else
return 0;
}
else
return 0;
}
function validateFloat(val)
{
if( isNaN(val) )
return 0;
else
return 1;
}
function TestRegExp(objValue,strRegExp,strError)
{
var ret = true;
if( objValue.value.length > 0 &&
!objValue.value.match(strRegExp) )
{
if(!strError || strError.length ==0)
{
strError = objValue.name+": Invalid characters found ";
}//if
sfm_show_error_msg(strError,objValue);
ret = 0;
}//if
return ret;
}
function buildErrorMessage(type)
{
var htmlmessage = "<span class='error_strings'>";
if(type == 'email')
{
htmlmessage+= "enter a valid email address";
}
else if(type == 'integer')
{
htmlmessage+= "enter a valid integer number and greater than 0";
}
else if(type == 'float')
{
htmlmessage+= "enter a valid float";
}
else if(type == 'password')
{
htmlmessage+= "Your pasword confirmation doesn't match";
}
else if(type == 'required')
{
htmlmessage+= "This field must be filled";
}
else if(type == 'passwordconfirm')
{
htmlmessage+= "Password confirm didn't match";
}
else{}
htmlmessage+="</span>";
return htmlmessage;
}
(function(f){f.fn.qtip=function(B,u){var y,t,A,s,x,w,v,z;if(typeof B=="string"){if(typeof f(this).data("qtip")!=="object"){f.fn.qtip.log.error.call(self,1,f.fn.qtip.constants.NO_TOOLTIP_PRESENT,false)}if(B=="api"){return f(this).data("qtip").interfaces[f(this).data("qtip").current]}else{if(B=="interfaces"){return f(this).data("qtip").interfaces}}}else{if(!B){B={}}if(typeof B.content!=="object"||(B.content.jquery&&B.content.length>0)){B.content={text:B.content}}if(typeof B.content.title!=="object"){B.content.title={text:B.content.title}}if(typeof B.position!=="object"){B.position={corner:B.position}}if(typeof B.position.corner!=="object"){B.position.corner={target:B.position.corner,tooltip:B.position.corner}}if(typeof B.show!=="object"){B.show={when:B.show}}if(typeof B.show.when!=="object"){B.show.when={event:B.show.when}}if(typeof B.show.effect!=="object"){B.show.effect={type:B.show.effect}}if(typeof B.hide!=="object"){B.hide={when:B.hide}}if(typeof B.hide.when!=="object"){B.hide.when={event:B.hide.when}}if(typeof B.hide.effect!=="object"){B.hide.effect={type:B.hide.effect}}if(typeof B.style!=="object"){B.style={name:B.style}}B.style=c(B.style);s=f.extend(true,{},f.fn.qtip.defaults,B);s.style=a.call({options:s},s.style);s.user=f.extend(true,{},B)}return f(this).each(function(){if(typeof B=="string"){w=B.toLowerCase();A=f(this).qtip("interfaces");if(typeof A=="object"){if(u===true&&w=="destroy"){while(A.length>0){A[A.length-1].destroy()}}else{if(u!==true){A=[f(this).qtip("api")]}for(y=0;y<A.length;y++){if(w=="destroy"){A[y].destroy()}else{if(A[y].status.rendered===true){if(w=="show"){A[y].show()}else{if(w=="hide"){A[y].hide()}else{if(w=="focus"){A[y].focus()}else{if(w=="disable"){A[y].disable(true)}else{if(w=="enable"){A[y].disable(false)}}}}}}}}}}}else{v=f.extend(true,{},s);v.hide.effect.length=s.hide.effect.length;v.show.effect.length=s.show.effect.length;if(v.position.container===false){v.position.container=f(document.body)}if(v.position.target===false){v.position.target=f(this)}if(v.show.when.target===false){v.show.when.target=f(this)}if(v.hide.when.target===false){v.hide.when.target=f(this)}t=f.fn.qtip.interfaces.length;for(y=0;y<t;y++){if(typeof f.fn.qtip.interfaces[y]=="undefined"){t=y;break}}x=new d(f(this),v,t);f.fn.qtip.interfaces[t]=x;if(typeof f(this).data("qtip")=="object"){if(typeof f(this).attr("qtip")==="undefined"){f(this).data("qtip").current=f(this).data("qtip").interfaces.length}f(this).data("qtip").interfaces.push(x)}else{f(this).data("qtip",{current:0,interfaces:[x]})}if(v.content.prerender===false&&v.show.when.event!==false&&v.show.ready!==true){v.show.when.target.bind(v.show.when.event+".qtip-"+t+"-create",{qtip:t},function(C){z=f.fn.qtip.interfaces[C.data.qtip];z.options.show.when.target.unbind(z.options.show.when.event+".qtip-"+C.data.qtip+"-create");z.cache.mouse={x:C.pageX,y:C.pageY};p.call(z);z.options.show.when.target.trigger(z.options.show.when.event)})}else{x.cache.mouse={x:v.show.when.target.offset().left,y:v.show.when.target.offset().top};p.call(x)}}})};function d(u,t,v){var s=this;s.id=v;s.options=t;s.status={animated:false,rendered:false,disabled:false,focused:false};s.elements={target:u.addClass(s.options.style.classes.target),tooltip:null,wrapper:null,content:null,contentWrapper:null,title:null,button:null,tip:null,bgiframe:null};s.cache={mouse:{},position:{},toggle:0};s.timers={};f.extend(s,s.options.api,{show:function(y){var x,z;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"show")}if(s.elements.tooltip.css("display")!=="none"){return s}s.elements.tooltip.stop(true,false);x=s.beforeShow.call(s,y);if(x===false){return s}function w(){if(s.options.position.type!=="static"){s.focus()}s.onShow.call(s,y);if(f.browser.msie){s.elements.tooltip.get(0).style.removeAttribute("filter")}}s.cache.toggle=1;if(s.options.position.type!=="static"){s.updatePosition(y,(s.options.show.effect.length>0))}if(typeof s.options.show.solo=="object"){z=f(s.options.show.solo)}else{if(s.options.show.solo===true){z=f("div.qtip").not(s.elements.tooltip)}}if(z){z.each(function(){if(f(this).qtip("api").status.rendered===true){f(this).qtip("api").hide()}})}if(typeof s.options.show.effect.type=="function"){s.options.show.effect.type.call(s.elements.tooltip,s.options.show.effect.length);s.elements.tooltip.queue(function(){w();f(this).dequeue()})}else{switch(s.options.show.effect.type.toLowerCase()){case"fade":s.elements.tooltip.fadeIn(s.options.show.effect.length,w);break;case"slide":s.elements.tooltip.slideDown(s.options.show.effect.length,function(){w();if(s.options.position.type!=="static"){s.updatePosition(y,true)}});break;case"grow":s.elements.tooltip.show(s.options.show.effect.length,w);break;default:s.elements.tooltip.show(null,w);break}s.elements.tooltip.addClass(s.options.style.classes.active)}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_SHOWN,"show")},hide:function(y){var x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"hide")}else{if(s.elements.tooltip.css("display")==="none"){return s}}clearTimeout(s.timers.show);s.elements.tooltip.stop(true,false);x=s.beforeHide.call(s,y);if(x===false){return s}function w(){s.onHide.call(s,y)}s.cache.toggle=0;if(typeof s.options.hide.effect.type=="function"){s.options.hide.effect.type.call(s.elements.tooltip,s.options.hide.effect.length);s.elements.tooltip.queue(function(){w();f(this).dequeue()})}else{switch(s.options.hide.effect.type.toLowerCase()){case"fade":s.elements.tooltip.fadeOut(s.options.hide.effect.length,w);break;case"slide":s.elements.tooltip.slideUp(s.options.hide.effect.length,w);break;case"grow":s.elements.tooltip.hide(s.options.hide.effect.length,w);break;default:s.elements.tooltip.hide(null,w);break}s.elements.tooltip.removeClass(s.options.style.classes.active)}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_HIDDEN,"hide")},updatePosition:function(w,x){var C,G,L,J,H,E,y,I,B,D,K,A,F,z;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updatePosition")}else{if(s.options.position.type=="static"){return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.CANNOT_POSITION_STATIC,"updatePosition")}}G={position:{left:0,top:0},dimensions:{height:0,width:0},corner:s.options.position.corner.target};L={position:s.getPosition(),dimensions:s.getDimensions(),corner:s.options.position.corner.tooltip};if(s.options.position.target!=="mouse"){if(s.options.position.target.get(0).nodeName.toLowerCase()=="area"){J=s.options.position.target.attr("coords").split(",");for(C=0;C<J.length;C++){J[C]=parseInt(J[C])}H=s.options.position.target.parent("map").attr("name");E=f('img[usemap="#'+H+'"]:first').offset();G.position={left:Math.floor(E.left+J[0]),top:Math.floor(E.top+J[1])};switch(s.options.position.target.attr("shape").toLowerCase()){case"rect":G.dimensions={width:Math.ceil(Math.abs(J[2]-J[0])),height:Math.ceil(Math.abs(J[3]-J[1]))};break;case"circle":G.dimensions={width:J[2]+1,height:J[2]+1};break;case"poly":G.dimensions={width:J[0],height:J[1]};for(C=0;C<J.length;C++){if(C%2==0){if(J[C]>G.dimensions.width){G.dimensions.width=J[C]}if(J[C]<J[0]){G.position.left=Math.floor(E.left+J[C])}}else{if(J[C]>G.dimensions.height){G.dimensions.height=J[C]}if(J[C]<J[1]){G.position.top=Math.floor(E.top+J[C])}}}G.dimensions.width=G.dimensions.width-(G.position.left-E.left);G.dimensions.height=G.dimensions.height-(G.position.top-E.top);break;default:return f.fn.qtip.log.error.call(s,4,f.fn.qtip.constants.INVALID_AREA_SHAPE,"updatePosition");break}G.dimensions.width-=2;G.dimensions.height-=2}else{if(s.options.position.target.add(document.body).length===1){G.position={left:f(document).scrollLeft(),top:f(document).scrollTop()};G.dimensions={height:f(window).height(),width:f(window).width()}}else{if(typeof s.options.position.target.attr("qtip")!=="undefined"){G.position=s.options.position.target.qtip("api").cache.position}else{G.position=s.options.position.target.offset()}G.dimensions={height:s.options.position.target.outerHeight(),width:s.options.position.target.outerWidth()}}}y=f.extend({},G.position);if(G.corner.search(/right/i)!==-1){y.left+=G.dimensions.width}if(G.corner.search(/bottom/i)!==-1){y.top+=G.dimensions.height}if(G.corner.search(/((top|bottom)Middle)|center/)!==-1){y.left+=(G.dimensions.width/2)}if(G.corner.search(/((left|right)Middle)|center/)!==-1){y.top+=(G.dimensions.height/2)}}else{G.position=y={left:s.cache.mouse.x,top:s.cache.mouse.y};G.dimensions={height:1,width:1}}if(L.corner.search(/right/i)!==-1){y.left-=L.dimensions.width}if(L.corner.search(/bottom/i)!==-1){y.top-=L.dimensions.height}if(L.corner.search(/((top|bottom)Middle)|center/)!==-1){y.left-=(L.dimensions.width/2)}if(L.corner.search(/((left|right)Middle)|center/)!==-1){y.top-=(L.dimensions.height/2)}I=(f.browser.msie)?1:0;B=(f.browser.msie&&parseInt(f.browser.version.charAt(0))===6)?1:0;if(s.options.style.border.radius>0){if(L.corner.search(/Left/)!==-1){y.left-=s.options.style.border.radius}else{if(L.corner.search(/Right/)!==-1){y.left+=s.options.style.border.radius}}if(L.corner.search(/Top/)!==-1){y.top-=s.options.style.border.radius}else{if(L.corner.search(/Bottom/)!==-1){y.top+=s.options.style.border.radius}}}if(I){if(L.corner.search(/top/)!==-1){y.top-=I}else{if(L.corner.search(/bottom/)!==-1){y.top+=I}}if(L.corner.search(/left/)!==-1){y.left-=I}else{if(L.corner.search(/right/)!==-1){y.left+=I}}if(L.corner.search(/leftMiddle|rightMiddle/)!==-1){y.top-=1}}if(s.options.position.adjust.screen===true){y=o.call(s,y,G,L)}if(s.options.position.target==="mouse"&&s.options.position.adjust.mouse===true){if(s.options.position.adjust.screen===true&&s.elements.tip){K=s.elements.tip.attr("rel")}else{K=s.options.position.corner.tooltip}y.left+=(K.search(/right/i)!==-1)?-6:6;y.top+=(K.search(/bottom/i)!==-1)?-6:6}if(!s.elements.bgiframe&&f.browser.msie&&parseInt(f.browser.version.charAt(0))==6){f("select, object").each(function(){A=f(this).offset();A.bottom=A.top+f(this).height();A.right=A.left+f(this).width();if(y.top+L.dimensions.height>=A.top&&y.left+L.dimensions.width>=A.left){k.call(s)}})}y.left+=s.options.position.adjust.x;y.top+=s.options.position.adjust.y;F=s.getPosition();if(y.left!=F.left||y.top!=F.top){z=s.beforePositionUpdate.call(s,w);if(z===false){return s}s.cache.position=y;if(x===true){s.status.animated=true;s.elements.tooltip.animate(y,200,"swing",function(){s.status.animated=false})}else{s.elements.tooltip.css(y)}s.onPositionUpdate.call(s,w);if(typeof w!=="undefined"&&w.type&&w.type!=="mousemove"){f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_POSITION_UPDATED,"updatePosition")}}return s},updateWidth:function(w){var x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateWidth")}else{if(w&&typeof w!=="number"){return f.fn.qtip.log.error.call(s,2,"newWidth must be of type number","updateWidth")}}x=s.elements.contentWrapper.siblings().add(s.elements.tip).add(s.elements.button);if(!w){if(typeof s.options.style.width.value=="number"){w=s.options.style.width.value}else{s.elements.tooltip.css({width:"auto"});x.hide();if(f.browser.msie){s.elements.wrapper.add(s.elements.contentWrapper.children()).css({zoom:"normal"})}w=s.getDimensions().width+1;if(!s.options.style.width.value){if(w>s.options.style.width.max){w=s.options.style.width.max}if(w<s.options.style.width.min){w=s.options.style.width.min}}}}if(w%2!==0){w-=1}s.elements.tooltip.width(w);x.show();if(s.options.style.border.radius){s.elements.tooltip.find(".qtip-betweenCorners").each(function(y){f(this).width(w-(s.options.style.border.radius*2))})}if(f.browser.msie){s.elements.wrapper.add(s.elements.contentWrapper.children()).css({zoom:"1"});s.elements.wrapper.width(w);if(s.elements.bgiframe){s.elements.bgiframe.width(w).height(s.getDimensions.height)}}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_WIDTH_UPDATED,"updateWidth")},updateStyle:function(w){var z,A,x,y,B;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateStyle")}else{if(typeof w!=="string"||!f.fn.qtip.styles[w]){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.STYLE_NOT_DEFINED,"updateStyle")}}s.options.style=a.call(s,f.fn.qtip.styles[w],s.options.user.style);s.elements.content.css(q(s.options.style));if(s.options.content.title.text!==false){s.elements.title.css(q(s.options.style.title,true))}s.elements.contentWrapper.css({borderColor:s.options.style.border.color});if(s.options.style.tip.corner!==false){if(f("<canvas>").get(0).getContext){z=s.elements.tooltip.find(".qtip-tip canvas:first");x=z.get(0).getContext("2d");x.clearRect(0,0,300,300);y=z.parent("div[rel]:first").attr("rel");B=b(y,s.options.style.tip.size.width,s.options.style.tip.size.height);h.call(s,z,B,s.options.style.tip.color||s.options.style.border.color)}else{if(f.browser.msie){z=s.elements.tooltip.find('.qtip-tip [nodeName="shape"]');z.attr("fillcolor",s.options.style.tip.color||s.options.style.border.color)}}}if(s.options.style.border.radius>0){s.elements.tooltip.find(".qtip-betweenCorners").css({backgroundColor:s.options.style.border.color});if(f("<canvas>").get(0).getContext){A=g(s.options.style.border.radius);s.elements.tooltip.find(".qtip-wrapper canvas").each(function(){x=f(this).get(0).getContext("2d");x.clearRect(0,0,300,300);y=f(this).parent("div[rel]:first").attr("rel");r.call(s,f(this),A[y],s.options.style.border.radius,s.options.style.border.color)})}else{if(f.browser.msie){s.elements.tooltip.find('.qtip-wrapper [nodeName="arc"]').each(function(){f(this).attr("fillcolor",s.options.style.border.color)})}}}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_STYLE_UPDATED,"updateStyle")},updateContent:function(A,y){var z,x,w;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateContent")}else{if(!A){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.NO_CONTENT_PROVIDED,"updateContent")}}z=s.beforeContentUpdate.call(s,A);if(typeof z=="string"){A=z}else{if(z===false){return}}if(f.browser.msie){s.elements.contentWrapper.children().css({zoom:"normal"})}if(A.jquery&&A.length>0){A.clone(true).appendTo(s.elements.content).show()}else{s.elements.content.html(A)}x=s.elements.content.find("img[complete=false]");if(x.length>0){w=0;x.each(function(C){f('<img src="'+f(this).attr("src")+'" />').load(function(){if(++w==x.length){B()}})})}else{B()}function B(){s.updateWidth();if(y!==false){if(s.options.position.type!=="static"){s.updatePosition(s.elements.tooltip.is(":visible"),true)}if(s.options.style.tip.corner!==false){n.call(s)}}}s.onContentUpdate.call(s);return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_CONTENT_UPDATED,"loadContent")},loadContent:function(w,z,A){var y;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"loadContent")}y=s.beforeContentLoad.call(s);if(y===false){return s}if(A=="post"){f.post(w,z,x)}else{f.get(w,z,x)}function x(B){s.onContentLoad.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_CONTENT_LOADED,"loadContent");s.updateContent(B)}return s},updateTitle:function(w){if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateTitle")}else{if(!w){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.NO_CONTENT_PROVIDED,"updateTitle")}}returned=s.beforeTitleUpdate.call(s);if(returned===false){return s}if(s.elements.button){s.elements.button=s.elements.button.clone(true)}s.elements.title.html(w);if(s.elements.button){s.elements.title.prepend(s.elements.button)}s.onTitleUpdate.call(s);return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_TITLE_UPDATED,"updateTitle")},focus:function(A){var y,x,w,z;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"focus")}else{if(s.options.position.type=="static"){return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.CANNOT_FOCUS_STATIC,"focus")}}y=parseInt(s.elements.tooltip.css("z-index"));x=6000+f("div.qtip[qtip]").length-1;if(!s.status.focused&&y!==x){z=s.beforeFocus.call(s,A);if(z===false){return s}f("div.qtip[qtip]").not(s.elements.tooltip).each(function(){if(f(this).qtip("api").status.rendered===true){w=parseInt(f(this).css("z-index"));if(typeof w=="number"&&w>-1){f(this).css({zIndex:parseInt(f(this).css("z-index"))-1})}f(this).qtip("api").status.focused=false}});s.elements.tooltip.css({zIndex:x});s.status.focused=true;s.onFocus.call(s,A);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_FOCUSED,"focus")}return s},disable:function(w){if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"disable")}if(w){if(!s.status.disabled){s.status.disabled=true;f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_DISABLED,"disable")}else{f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.TOOLTIP_ALREADY_DISABLED,"disable")}}else{if(s.status.disabled){s.status.disabled=false;f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_ENABLED,"disable")}else{f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.TOOLTIP_ALREADY_ENABLED,"disable")}}return s},destroy:function(){var w,x,y;x=s.beforeDestroy.call(s);if(x===false){return s}if(s.status.rendered){s.options.show.when.target.unbind("mousemove.qtip",s.updatePosition);s.options.show.when.target.unbind("mouseout.qtip",s.hide);s.options.show.when.target.unbind(s.options.show.when.event+".qtip");s.options.hide.when.target.unbind(s.options.hide.when.event+".qtip");s.elements.tooltip.unbind(s.options.hide.when.event+".qtip");s.elements.tooltip.unbind("mouseover.qtip",s.focus);s.elements.tooltip.remove()}else{s.options.show.when.target.unbind(s.options.show.when.event+".qtip-create")}if(typeof s.elements.target.data("qtip")=="object"){y=s.elements.target.data("qtip").interfaces;if(typeof y=="object"&&y.length>0){for(w=0;w<y.length-1;w++){if(y[w].id==s.id){y.splice(w,1)}}}}delete f.fn.qtip.interfaces[s.id];if(typeof y=="object"&&y.length>0){s.elements.target.data("qtip").current=y.length-1}else{s.elements.target.removeData("qtip")}s.onDestroy.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_DESTROYED,"destroy");return s.elements.target},getPosition:function(){var w,x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"getPosition")}w=(s.elements.tooltip.css("display")!=="none")?false:true;if(w){s.elements.tooltip.css({visiblity:"hidden"}).show()}x=s.elements.tooltip.offset();if(w){s.elements.tooltip.css({visiblity:"visible"}).hide()}return x},getDimensions:function(){var w,x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"getDimensions")}w=(!s.elements.tooltip.is(":visible"))?true:false;if(w){s.elements.tooltip.css({visiblity:"hidden"}).show()}x={height:s.elements.tooltip.outerHeight(),width:s.elements.tooltip.outerWidth()};if(w){s.elements.tooltip.css({visiblity:"visible"}).hide()}return x}})}function p(){var s,w,u,t,v,y,x;s=this;s.beforeRender.call(s);s.status.rendered=true;s.elements.tooltip='<div qtip="'+s.id+'" class="qtip '+(s.options.style.classes.tooltip||s.options.style)+'"style="display:none; -moz-border-radius:0; -webkit-border-radius:0; border-radius:0;position:'+s.options.position.type+';">  <div class="qtip-wrapper" style="position:relative; overflow:hidden; text-align:left;">    <div class="qtip-contentWrapper" style="overflow:hidden;">       <div class="qtip-content '+s.options.style.classes.content+'"></div></div></div></div>';s.elements.tooltip=f(s.elements.tooltip);s.elements.tooltip.appendTo(s.options.position.container);s.elements.tooltip.data("qtip",{current:0,interfaces:[s]});s.elements.wrapper=s.elements.tooltip.children("div:first");s.elements.contentWrapper=s.elements.wrapper.children("div:first").css({background:s.options.style.background});s.elements.content=s.elements.contentWrapper.children("div:first").css(q(s.options.style));if(f.browser.msie){s.elements.wrapper.add(s.elements.content).css({zoom:1})}if(s.options.hide.when.event=="unfocus"){s.elements.tooltip.attr("unfocus",true)}if(typeof s.options.style.width.value=="number"){s.updateWidth()}if(f("<canvas>").get(0).getContext||f.browser.msie){if(s.options.style.border.radius>0){m.call(s)}else{s.elements.contentWrapper.css({border:s.options.style.border.width+"px solid "+s.options.style.border.color})}if(s.options.style.tip.corner!==false){e.call(s)}}else{s.elements.contentWrapper.css({border:s.options.style.border.width+"px solid "+s.options.style.border.color});s.options.style.border.radius=0;s.options.style.tip.corner=false;f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.CANVAS_VML_NOT_SUPPORTED,"render")}if((typeof s.options.content.text=="string"&&s.options.content.text.length>0)||(s.options.content.text.jquery&&s.options.content.text.length>0)){u=s.options.content.text}else{if(typeof s.elements.target.attr("title")=="string"&&s.elements.target.attr("title").length>0){u=s.elements.target.attr("title").replace("\\n","<br />");s.elements.target.attr("title","")}else{if(typeof s.elements.target.attr("alt")=="string"&&s.elements.target.attr("alt").length>0){u=s.elements.target.attr("alt").replace("\\n","<br />");s.elements.target.attr("alt","")}else{u=" ";f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.NO_VALID_CONTENT,"render")}}}if(s.options.content.title.text!==false){j.call(s)}s.updateContent(u);l.call(s);if(s.options.show.ready===true){s.show()}if(s.options.content.url!==false){t=s.options.content.url;v=s.options.content.data;y=s.options.content.method||"get";s.loadContent(t,v,y)}s.onRender.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_RENDERED,"render")}function m(){var F,z,t,B,x,E,u,G,D,y,w,C,A,s,v;F=this;F.elements.wrapper.find(".qtip-borderBottom, .qtip-borderTop").remove();t=F.options.style.border.width;B=F.options.style.border.radius;x=F.options.style.border.color||F.options.style.tip.color;E=g(B);u={};for(z in E){u[z]='<div rel="'+z+'" style="'+((z.search(/Left/)!==-1)?"left":"right")+":0; position:absolute; height:"+B+"px; width:"+B+'px; overflow:hidden; line-height:0.1px; font-size:1px">';if(f("<canvas>").get(0).getContext){u[z]+='<canvas height="'+B+'" width="'+B+'" style="vertical-align: top"></canvas>'}else{if(f.browser.msie){G=B*2+3;u[z]+='<v:arc stroked="false" fillcolor="'+x+'" startangle="'+E[z][0]+'" endangle="'+E[z][1]+'" style="width:'+G+"px; height:"+G+"px; margin-top:"+((z.search(/bottom/)!==-1)?-2:-1)+"px; margin-left:"+((z.search(/Right/)!==-1)?E[z][2]-3.5:-1)+'px; vertical-align:top; display:inline-block; behavior:url(#default#VML)"></v:arc>'}}u[z]+="</div>"}D=F.getDimensions().width-(Math.max(t,B)*2);y='<div class="qtip-betweenCorners" style="height:'+B+"px; width:"+D+"px; overflow:hidden; background-color:"+x+'; line-height:0.1px; font-size:1px;">';w='<div class="qtip-borderTop" dir="ltr" style="height:'+B+"px; margin-left:"+B+'px; line-height:0.1px; font-size:1px; padding:0;">'+u.topLeft+u.topRight+y;F.elements.wrapper.prepend(w);C='<div class="qtip-borderBottom" dir="ltr" style="height:'+B+"px; margin-left:"+B+'px; line-height:0.1px; font-size:1px; padding:0;">'+u.bottomLeft+u.bottomRight+y;F.elements.wrapper.append(C);if(f("<canvas>").get(0).getContext){F.elements.wrapper.find("canvas").each(function(){A=E[f(this).parent("[rel]:first").attr("rel")];r.call(F,f(this),A,B,x)})}else{if(f.browser.msie){F.elements.tooltip.append('<v:image style="behavior:url(#default#VML);"></v:image>')}}s=Math.max(B,(B+(t-B)));v=Math.max(t-B,0);F.elements.contentWrapper.css({border:"0px solid "+x,borderWidth:v+"px "+s+"px"})}function r(u,w,s,t){var v=u.get(0).getContext("2d");v.fillStyle=t;v.beginPath();v.arc(w[0],w[1],s,0,Math.PI*2,false);v.fill()}function e(v){var t,s,x,u,w;t=this;if(t.elements.tip!==null){t.elements.tip.remove()}s=t.options.style.tip.color||t.options.style.border.color;if(t.options.style.tip.corner===false){return}else{if(!v){v=t.options.style.tip.corner}}x=b(v,t.options.style.tip.size.width,t.options.style.tip.size.height);t.elements.tip='<div class="'+t.options.style.classes.tip+'" dir="ltr" rel="'+v+'" style="position:absolute; height:'+t.options.style.tip.size.height+"px; width:"+t.options.style.tip.size.width+'px; margin:0 auto; line-height:0.1px; font-size:1px;">';if(f("<canvas>").get(0).getContext){t.elements.tip+='<canvas height="'+t.options.style.tip.size.height+'" width="'+t.options.style.tip.size.width+'"></canvas>'}else{if(f.browser.msie){u=t.options.style.tip.size.width+","+t.options.style.tip.size.height;w="m"+x[0][0]+","+x[0][1];w+=" l"+x[1][0]+","+x[1][1];w+=" "+x[2][0]+","+x[2][1];w+=" xe";t.elements.tip+='<v:shape fillcolor="'+s+'" stroked="false" filled="true" path="'+w+'" coordsize="'+u+'" style="width:'+t.options.style.tip.size.width+"px; height:"+t.options.style.tip.size.height+"px; line-height:0.1px; display:inline-block; behavior:url(#default#VML); vertical-align:"+((v.search(/top/)!==-1)?"bottom":"top")+'"></v:shape>';t.elements.tip+='<v:image style="behavior:url(#default#VML);"></v:image>';t.elements.contentWrapper.css("position","relative")}}t.elements.tooltip.prepend(t.elements.tip+"</div>");t.elements.tip=t.elements.tooltip.find("."+t.options.style.classes.tip).eq(0);if(f("<canvas>").get(0).getContext){h.call(t,t.elements.tip.find("canvas:first"),x,s)}if(v.search(/top/)!==-1&&f.browser.msie&&parseInt(f.browser.version.charAt(0))===6){t.elements.tip.css({marginTop:-4})}n.call(t,v)}function h(t,v,s){var u=t.get(0).getContext("2d");u.fillStyle=s;u.beginPath();u.moveTo(v[0][0],v[0][1]);u.lineTo(v[1][0],v[1][1]);u.lineTo(v[2][0],v[2][1]);u.fill()}function n(u){var t,w,s,x,v;t=this;if(t.options.style.tip.corner===false||!t.elements.tip){return}if(!u){u=t.elements.tip.attr("rel")}w=positionAdjust=(f.browser.msie)?1:0;t.elements.tip.css(u.match(/left|right|top|bottom/)[0],0);if(u.search(/top|bottom/)!==-1){if(f.browser.msie){if(parseInt(f.browser.version.charAt(0))===6){positionAdjust=(u.search(/top/)!==-1)?-3:1}else{positionAdjust=(u.search(/top/)!==-1)?1:2}}if(u.search(/Middle/)!==-1){t.elements.tip.css({left:"50%",marginLeft:-(t.options.style.tip.size.width/2)})}else{if(u.search(/Left/)!==-1){t.elements.tip.css({left:t.options.style.border.radius-w})}else{if(u.search(/Right/)!==-1){t.elements.tip.css({right:t.options.style.border.radius+w})}}}if(u.search(/top/)!==-1){t.elements.tip.css({top:-positionAdjust})}else{t.elements.tip.css({bottom:positionAdjust})}}else{if(u.search(/left|right/)!==-1){if(f.browser.msie){positionAdjust=(parseInt(f.browser.version.charAt(0))===6)?1:((u.search(/left/)!==-1)?1:2)}if(u.search(/Middle/)!==-1){t.elements.tip.css({top:"50%",marginTop:-(t.options.style.tip.size.height/2)})}else{if(u.search(/Top/)!==-1){t.elements.tip.css({top:t.options.style.border.radius-w})}else{if(u.search(/Bottom/)!==-1){t.elements.tip.css({bottom:t.options.style.border.radius+w})}}}if(u.search(/left/)!==-1){t.elements.tip.css({left:-positionAdjust})}else{t.elements.tip.css({right:positionAdjust})}}}s="padding-"+u.match(/left|right|top|bottom/)[0];x=t.options.style.tip.size[(s.search(/left|right/)!==-1)?"width":"height"];t.elements.tooltip.css("padding",0);t.elements.tooltip.css(s,x);if(f.browser.msie&&parseInt(f.browser.version.charAt(0))==6){v=parseInt(t.elements.tip.css("margin-top"))||0;v+=parseInt(t.elements.content.css("margin-top"))||0;t.elements.tip.css({marginTop:v})}}function j(){var s=this;if(s.elements.title!==null){s.elements.title.remove()}s.elements.title=f('<div class="'+s.options.style.classes.title+'">').css(q(s.options.style.title,true)).css({zoom:(f.browser.msie)?1:0}).prependTo(s.elements.contentWrapper);if(s.options.content.title.text){s.updateTitle.call(s,s.options.content.title.text)}if(s.options.content.title.button!==false&&typeof s.options.content.title.button=="string"){s.elements.button=f('<a class="'+s.options.style.classes.button+'" style="float:right; position: relative"></a>').css(q(s.options.style.button,true)).html(s.options.content.title.button).prependTo(s.elements.title).click(function(t){if(!s.status.disabled){s.hide(t)}})}}function l(){var t,v,u,s;t=this;v=t.options.show.when.target;u=t.options.hide.when.target;if(t.options.hide.fixed){u=u.add(t.elements.tooltip)}if(t.options.hide.when.event=="inactive"){s=["click","dblclick","mousedown","mouseup","mousemove","mouseout","mouseenter","mouseleave","mouseover"];function y(z){if(t.status.disabled===true){return}clearTimeout(t.timers.inactive);t.timers.inactive=setTimeout(function(){f(s).each(function(){u.unbind(this+".qtip-inactive");t.elements.content.unbind(this+".qtip-inactive")});t.hide(z)},t.options.hide.delay)}}else{if(t.options.hide.fixed===true){t.elements.tooltip.bind("mouseover.qtip",function(){if(t.status.disabled===true){return}clearTimeout(t.timers.hide)})}}function x(z){if(t.status.disabled===true){return}if(t.options.hide.when.event=="inactive"){f(s).each(function(){u.bind(this+".qtip-inactive",y);t.elements.content.bind(this+".qtip-inactive",y)});y()}clearTimeout(t.timers.show);clearTimeout(t.timers.hide);t.timers.show=setTimeout(function(){t.show(z)},t.options.show.delay)}function w(z){if(t.status.disabled===true){return}if(t.options.hide.fixed===true&&t.options.hide.when.event.search(/mouse(out|leave)/i)!==-1&&f(z.relatedTarget).parents("div.qtip[qtip]").length>0){z.stopPropagation();z.preventDefault();clearTimeout(t.timers.hide);return false}clearTimeout(t.timers.show);clearTimeout(t.timers.hide);t.elements.tooltip.stop(true,true);t.timers.hide=setTimeout(function(){t.hide(z)},t.options.hide.delay)}if((t.options.show.when.target.add(t.options.hide.when.target).length===1&&t.options.show.when.event==t.options.hide.when.event&&t.options.hide.when.event!=="inactive")||t.options.hide.when.event=="unfocus"){t.cache.toggle=0;v.bind(t.options.show.when.event+".qtip",function(z){if(t.cache.toggle==0){x(z)}else{w(z)}})}else{v.bind(t.options.show.when.event+".qtip",x);if(t.options.hide.when.event!=="inactive"){u.bind(t.options.hide.when.event+".qtip",w)}}if(t.options.position.type.search(/(fixed|absolute)/)!==-1){t.elements.tooltip.bind("mouseover.qtip",t.focus)}if(t.options.position.target==="mouse"&&t.options.position.type!=="static"){v.bind("mousemove.qtip",function(z){t.cache.mouse={x:z.pageX,y:z.pageY};if(t.status.disabled===false&&t.options.position.adjust.mouse===true&&t.options.position.type!=="static"&&t.elements.tooltip.css("display")!=="none"){t.updatePosition(z)}})}}function o(u,v,A){var z,s,x,y,t,w;z=this;if(A.corner=="center"){return v.position}s=f.extend({},u);y={x:false,y:false};t={left:(s.left<f.fn.qtip.cache.screen.scroll.left),right:(s.left+A.dimensions.width+2>=f.fn.qtip.cache.screen.width+f.fn.qtip.cache.screen.scroll.left),top:(s.top<f.fn.qtip.cache.screen.scroll.top),bottom:(s.top+A.dimensions.height+2>=f.fn.qtip.cache.screen.height+f.fn.qtip.cache.screen.scroll.top)};x={left:(t.left&&(A.corner.search(/right/i)!=-1||(A.corner.search(/right/i)==-1&&!t.right))),right:(t.right&&(A.corner.search(/left/i)!=-1||(A.corner.search(/left/i)==-1&&!t.left))),top:(t.top&&A.corner.search(/top/i)==-1),bottom:(t.bottom&&A.corner.search(/bottom/i)==-1)};if(x.left){if(z.options.position.target!=="mouse"){s.left=v.position.left+v.dimensions.width}else{s.left=z.cache.mouse.x}y.x="Left"}else{if(x.right){if(z.options.position.target!=="mouse"){s.left=v.position.left-A.dimensions.width}else{s.left=z.cache.mouse.x-A.dimensions.width}y.x="Right"}}if(x.top){if(z.options.position.target!=="mouse"){s.top=v.position.top+v.dimensions.height}else{s.top=z.cache.mouse.y}y.y="top"}else{if(x.bottom){if(z.options.position.target!=="mouse"){s.top=v.position.top-A.dimensions.height}else{s.top=z.cache.mouse.y-A.dimensions.height}y.y="bottom"}}if(s.left<0){s.left=u.left;y.x=false}if(s.top<0){s.top=u.top;y.y=false}if(z.options.style.tip.corner!==false){s.corner=new String(A.corner);if(y.x!==false){s.corner=s.corner.replace(/Left|Right|Middle/,y.x)}if(y.y!==false){s.corner=s.corner.replace(/top|bottom/,y.y)}if(s.corner!==z.elements.tip.attr("rel")){e.call(z,s.corner)}}return s}function q(u,t){var v,s;v=f.extend(true,{},u);for(s in v){if(t===true&&s.search(/(tip|classes)/i)!==-1){delete v[s]}else{if(!t&&s.search(/(width|border|tip|title|classes|user)/i)!==-1){delete v[s]}}}return v}function c(s){if(typeof s.tip!=="object"){s.tip={corner:s.tip}}if(typeof s.tip.size!=="object"){s.tip.size={width:s.tip.size,height:s.tip.size}}if(typeof s.border!=="object"){s.border={width:s.border}}if(typeof s.width!=="object"){s.width={value:s.width}}if(typeof s.width.max=="string"){s.width.max=parseInt(s.width.max.replace(/([0-9]+)/i,"$1"))}if(typeof s.width.min=="string"){s.width.min=parseInt(s.width.min.replace(/([0-9]+)/i,"$1"))}if(typeof s.tip.size.x=="number"){s.tip.size.width=s.tip.size.x;delete s.tip.size.x}if(typeof s.tip.size.y=="number"){s.tip.size.height=s.tip.size.y;delete s.tip.size.y}return s}function a(){var s,t,u,x,v,w;s=this;u=[true,{}];for(t=0;t<arguments.length;t++){u.push(arguments[t])}x=[f.extend.apply(f,u)];while(typeof x[0].name=="string"){x.unshift(c(f.fn.qtip.styles[x[0].name]))}x.unshift(true,{classes:{tooltip:"qtip-"+(arguments[0].name||"defaults")}},f.fn.qtip.styles.defaults);v=f.extend.apply(f,x);w=(f.browser.msie)?1:0;v.tip.size.width+=w;v.tip.size.height+=w;if(v.tip.size.width%2>0){v.tip.size.width+=1}if(v.tip.size.height%2>0){v.tip.size.height+=1}if(v.tip.corner===true){v.tip.corner=(s.options.position.corner.tooltip==="center")?false:s.options.position.corner.tooltip}return v}function b(v,u,t){var s={bottomRight:[[0,0],[u,t],[u,0]],bottomLeft:[[0,0],[u,0],[0,t]],topRight:[[0,t],[u,0],[u,t]],topLeft:[[0,0],[0,t],[u,t]],topMiddle:[[0,t],[u/2,0],[u,t]],bottomMiddle:[[0,0],[u,0],[u/2,t]],rightMiddle:[[0,0],[u,t/2],[0,t]],leftMiddle:[[u,0],[u,t],[0,t/2]]};s.leftTop=s.bottomRight;s.rightTop=s.bottomLeft;s.leftBottom=s.topRight;s.rightBottom=s.topLeft;return s[v]}function g(s){var t;if(f("<canvas>").get(0).getContext){t={topLeft:[s,s],topRight:[0,s],bottomLeft:[s,0],bottomRight:[0,0]}}else{if(f.browser.msie){t={topLeft:[-90,90,0],topRight:[-90,90,-s],bottomLeft:[90,270,0],bottomRight:[90,270,-s]}}}return t}function k(){var s,t,u;s=this;u=s.getDimensions();t='<iframe class="qtip-bgiframe" frameborder="0" tabindex="-1" src="javascript:false" style="display:block; position:absolute; z-index:-1; filter:alpha(opacity=\'0\'); border: 1px solid red; height:'+u.height+"px; width:"+u.width+'px" />';s.elements.bgiframe=s.elements.wrapper.prepend(t).children(".qtip-bgiframe:first")}f(document).ready(function(){f.fn.qtip.cache={screen:{scroll:{left:f(window).scrollLeft(),top:f(window).scrollTop()},width:f(window).width(),height:f(window).height()}};var s;f(window).bind("resize scroll",function(t){clearTimeout(s);s=setTimeout(function(){if(t.type==="scroll"){f.fn.qtip.cache.screen.scroll={left:f(window).scrollLeft(),top:f(window).scrollTop()}}else{f.fn.qtip.cache.screen.width=f(window).width();f.fn.qtip.cache.screen.height=f(window).height()}for(i=0;i<f.fn.qtip.interfaces.length;i++){var u=f.fn.qtip.interfaces[i];if(u.status.rendered===true&&(u.options.position.type!=="static"||u.options.position.adjust.scroll&&t.type==="scroll"||u.options.position.adjust.resize&&t.type==="resize")){u.updatePosition(t,true)}}},100)});f(document).bind("mousedown.qtip",function(t){if(f(t.target).parents("div.qtip").length===0){f(".qtip[unfocus]").each(function(){var u=f(this).qtip("api");if(f(this).is(":visible")&&!u.status.disabled&&f(t.target).add(u.elements.target).length>1){u.hide(t)}})}})});f.fn.qtip.interfaces=[];f.fn.qtip.log={error:function(){return this}};f.fn.qtip.constants={};f.fn.qtip.defaults={content:{prerender:false,text:false,url:false,data:null,title:{text:false,button:false}},position:{target:false,corner:{target:"bottomRight",tooltip:"topLeft"},adjust:{x:0,y:0,mouse:true,screen:false,scroll:true,resize:true},type:"absolute",container:false},show:{when:{target:false,event:"mouseover"},effect:{type:"fade",length:100},delay:140,solo:false,ready:false},hide:{when:{target:false,event:"mouseout"},effect:{type:"fade",length:100},delay:0,fixed:false},api:{beforeRender:function(){},onRender:function(){},beforePositionUpdate:function(){},onPositionUpdate:function(){},beforeShow:function(){},onShow:function(){},beforeHide:function(){},onHide:function(){},beforeContentUpdate:function(){},onContentUpdate:function(){},beforeContentLoad:function(){},onContentLoad:function(){},beforeTitleUpdate:function(){},onTitleUpdate:function(){},beforeDestroy:function(){},onDestroy:function(){},beforeFocus:function(){},onFocus:function(){}}};f.fn.qtip.styles={defaults:{background:"white",color:"#111",overflow:"hidden",textAlign:"left",width:{min:0,max:250},padding:"5px 9px",border:{width:1,radius:0,color:"#d3d3d3"},tip:{corner:false,color:false,size:{width:13,height:13},opacity:1},title:{background:"#e1e1e1",fontWeight:"bold",padding:"7px 12px"},button:{cursor:"pointer"},classes:{target:"",tip:"qtip-tip",title:"qtip-title",button:"qtip-button",content:"qtip-content",active:"qtip-active"}},cream:{border:{width:3,radius:0,color:"#F9E98E"},title:{background:"#F0DE7D",color:"#A27D35"},background:"#FBF7AA",color:"#A27D35",classes:{tooltip:"qtip-cream"}},light:{border:{width:3,radius:0,color:"#E2E2E2"},title:{background:"#f1f1f1",color:"#454545"},background:"white",color:"#454545",classes:{tooltip:"qtip-light"}},dark:{border:{width:3,radius:0,color:"#303030"},title:{background:"#404040",color:"#f3f3f3"},background:"#505050",color:"#f3f3f3",classes:{tooltip:"qtip-dark"}},red:{border:{width:3,radius:0,color:"#CE6F6F"},title:{background:"#f28279",color:"#9C2F2F"},background:"#F79992",color:"#9C2F2F",classes:{tooltip:"qtip-red"}},green:{border:{width:3,radius:0,color:"#A9DB66"},title:{background:"#b9db8c",color:"#58792E"},background:"#CDE6AC",color:"#58792E",classes:{tooltip:"qtip-green"}},blue:{border:{width:3,radius:0,color:"#ADD9ED"},title:{background:"#D0E9F5",color:"#5E99BD"},background:"#E5F6FE",color:"#4D9FBF",classes:{tooltip:"qtip-blue"}}}})(jQuery);
thumbsOffset = new Array();
thumbsWidth = new Array();
$(function(){
if($('#sidenav').length > 0 && jQuery.browser.msie) {
$('#sidenav li')
.mouseenter(function(){$(this).addClass('sfhover')})
.mouseleave(function(){$(this).removeClass('sfhover')});
}
if($('#product_btn').length > 0 && jQuery.browser.msie) {
$('#product_btn li')
.mouseenter(function(){$(this).addClass('sfhover')})
.mouseleave(function(){$(this).removeClass('sfhover')});
}
});
$(window).load(function () {
});
function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external")
anchor.target = "_blank";
}
}
function init() {
externalLinks();
}
window.onload = init;
;(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"> »</span>'].join('')),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl();},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}},o.delay);},getMenu=function($menu){var menu=$menu.parents(['ul.',c.menuClass,':first'].join(''))[0];sf.op=sf.o[menu.serial];return menu;},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone());};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(' ')).filter('li:has(ul)').removeClass(o.pathClass);});sf.o[s]=sf.op=o;$('li:has(ul)',this)[($.fn.hoverIntent&&!o.disableHI)?'hoverIntent':'hover'](over,out).each(function(){if(o.autoArrows)addArrow($('>a:first-child',this));}).not('.'+c.bcClass).hideSuperfishUl();var $a=$('a',this);$a.each(function(i){var $li=$a.eq(i).parents('li');$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});});o.onInit.call(this);}).each(function(){var menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7))menuClasses.push(c.shadowClass);$(this).addClass(menuClasses.join(' '));});};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined)
this.toggleClass(sf.c.shadowClass+'-off');};sf.c={bcClass:'sf-breadcrumb',menuClass:'sf-js-enabled',anchorClass:'sf-with-ul',arrowClass:'sf-sub-indicator',shadowClass:'sf-shadow'};sf.defaults={hoverClass:'sfHover',pathClass:'overideThisToUse',pathLevels:1,delay:800,animation:{opacity:'show'},speed:'normal',autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:'';o.retainPath=false;var $ul=$(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass).find('>ul').hide().css('visibility','hidden');o.onHide.call($ul);return this;},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+'-off',$ul=this.addClass(o.hoverClass).find('>ul:hidden').css('visibility','visible');sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul);});return this;}});})(jQuery);
(function(c){function p(e,b,a){var d=this,l=e.add(this),h=e.find(a.tabs),i=b.jquery?b:e.children(b),j;h.length||(h=e.children());i.length||(i=e.parent().find(b));i.length||(i=c(b));c.extend(this,{click:function(f,g){var k=h.eq(f);if(typeof f=="string"&&f.replace("#","")){k=h.filter("[href*="+f.replace("#","")+"]");f=Math.max(h.index(k),0)}if(a.rotate){var n=h.length-1;if(f<0)return d.click(n,g);if(f>n)return d.click(0,g)}if(!k.length){if(j>=0)return d;f=a.initialIndex;k=h.eq(f)}if(f===j)return d;
g=g||c.Event();g.type="onBeforeClick";l.trigger(g,[f]);if(!g.isDefaultPrevented()){o[a.effect].call(d,f,function(){g.type="onClick";l.trigger(g,[f])});j=f;h.removeClass(a.current);k.addClass(a.current);return d}},getConf:function(){return a},getTabs:function(){return h},getPanes:function(){return i},getCurrentPane:function(){return i.eq(j)},getCurrentTab:function(){return h.eq(j)},getIndex:function(){return j},next:function(){return d.click(j+1)},prev:function(){return d.click(j-1)},destroy:function(){h.unbind(a.event).removeClass(a.current);
i.find("a[href^=#]").unbind("click.T");return d}});c.each("onBeforeClick,onClick".split(","),function(f,g){c.isFunction(a[g])&&c(d).bind(g,a[g]);d[g]=function(k){c(d).bind(g,k);return d}});if(a.history&&c.fn.history){c.tools.history.init(h);a.event="history"}h.each(function(f){c(this).bind(a.event,function(g){d.click(f,g);return g.preventDefault()})});i.find("a[href^=#]").bind("click.T",function(f){d.click(c(this).attr("href"),f)});if(location.hash)d.click(location.hash);else if(a.initialIndex===
0||a.initialIndex>0)d.click(a.initialIndex)}c.tools=c.tools||{version:"1.2.3"};c.tools.tabs={conf:{tabs:"a",current:"current",onBeforeClick:null,onClick:null,effect:"default",initialIndex:0,event:"click",rotate:false,history:false},addEffect:function(e,b){o[e]=b}};var o={"default":function(e,b){this.getPanes().hide().eq(e).show();b.call()},fade:function(e,b){var a=this.getConf(),d=a.fadeOutSpeed,l=this.getPanes();d?l.fadeOut(d):l.hide();l.eq(e).fadeIn(a.fadeInSpeed,b)},slide:function(e,b){this.getPanes().slideUp(200);
this.getPanes().eq(e).slideDown(400,b)},ajax:function(e,b){this.getPanes().eq(0).load(this.getTabs().eq(e).attr("href"),b)}},m;c.tools.tabs.addEffect("horizontal",function(e,b){m||(m=this.getPanes().eq(0).width());this.getCurrentPane().animate({width:0},function(){c(this).hide()});this.getPanes().eq(e).animate({width:m},function(){c(this).show();b.call()})});c.fn.tabs=function(e,b){var a=this.data("tabs");if(a){a.destroy();this.removeData("tabs")}if(c.isFunction(b))b={onBeforeClick:b};b=c.extend({},
c.tools.tabs.conf,b);this.each(function(){a=new p(c(this),e,b);c(this).data("tabs",a)});return b.api?a:this}})(jQuery);
(function(d){function r(g,a){function p(f){var e=d(f);return e.length<2?e:g.parent().find(f)}var c=this,j=g.add(this),b=g.data("tabs"),h,l,m,n=false,o=p(a.next).click(function(){b.next()}),k=p(a.prev).click(function(){b.prev()});d.extend(c,{getTabs:function(){return b},getConf:function(){return a},play:function(){if(!h){var f=d.Event("onBeforePlay");j.trigger(f);if(f.isDefaultPrevented())return c;n=false;h=setInterval(b.next,a.interval);j.trigger("onPlay");b.next()}},pause:function(){if(!h)return c;
var f=d.Event("onBeforePause");j.trigger(f);if(f.isDefaultPrevented())return c;h=clearInterval(h);m=clearInterval(m);j.trigger("onPause")},stop:function(){c.pause();n=true}});d.each("onBeforePlay,onPlay,onBeforePause,onPause".split(","),function(f,e){d.isFunction(a[e])&&c.bind(e,a[e]);c[e]=function(s){return c.bind(e,s)}});if(a.autopause){var t=b.getTabs().add(o).add(k).add(b.getPanes());t.hover(function(){c.pause();l=clearInterval(l)},function(){n||(l=setTimeout(c.play,a.interval))})}if(a.autoplay)m=
setTimeout(c.play,a.interval);else c.stop();a.clickable&&b.getPanes().click(function(){b.next()});if(!b.getConf().rotate){var i=a.disabledClass;b.getIndex()||k.addClass(i);b.onBeforeClick(function(f,e){if(e){k.removeClass(i);e==b.getTabs().length-1?o.addClass(i):o.removeClass(i)}else k.addClass(i)})}}var q;q=d.tools.tabs.slideshow={conf:{next:".forward",prev:".backward",disabledClass:"disabled",autoplay:false,autopause:true,interval:3E3,clickable:true,api:false}};d.fn.slideshow=function(g){var a=
this.data("slideshow");if(a)return a;g=d.extend({},q.conf,g);this.each(function(){a=new r(d(this),g);d(this).data("slideshow",a)});return g.api?a:this}})(jQuery);
(function(f){function p(a,b,c){var h=c.relative?a.position().top:a.offset().top,e=c.relative?a.position().left:a.offset().left,i=c.position[0];h-=b.outerHeight()-c.offset[0];e+=a.outerWidth()+c.offset[1];var j=b.outerHeight()+a.outerHeight();if(i=="center")h+=j/2;if(i=="bottom")h+=j;i=c.position[1];a=b.outerWidth()+a.outerWidth();if(i=="center")e-=a/2;if(i=="left")e-=a;return{top:h,left:e}}function t(a,b){var c=this,h=a.add(c),e,i=0,j=0,m=a.attr("title"),q=n[b.effect],k,r=a.is(":input"),u=r&&a.is(":checkbox, :radio, select, :button, :submit"),
s=a.attr("type"),l=b.events[s]||b.events[r?u?"widget":"input":"def"];if(!q)throw'Nonexistent effect "'+b.effect+'"';l=l.split(/,\s*/);if(l.length!=2)throw"Tooltip: bad events configuration for "+s;a.bind(l[0],function(d){clearTimeout(i);if(b.predelay)j=setTimeout(function(){c.show(d)},b.predelay);else c.show(d)}).bind(l[1],function(d){clearTimeout(j);if(b.delay)i=setTimeout(function(){c.hide(d)},b.delay);else c.hide(d)});if(m&&b.cancelDefault){a.removeAttr("title");a.data("title",m)}f.extend(c,{show:function(d){if(!e){if(m)e=
f(b.layout).addClass(b.tipClass).appendTo(document.body).hide().append(m);else if(b.tip)e=f(b.tip).eq(0);else{e=a.next();e.length||(e=a.parent().next())}if(!e.length)throw"Cannot find tooltip for "+a;}if(c.isShown())return c;e.stop(true,true);var g=p(a,e,b);d=d||f.Event();d.type="onBeforeShow";h.trigger(d,[g]);if(d.isDefaultPrevented())return c;g=p(a,e,b);e.css({position:"absolute",top:g.top,left:g.left});k=true;q[0].call(c,function(){d.type="onShow";k="full";h.trigger(d)});g=b.events.tooltip.split(/,\s*/);
e.bind(g[0],function(){clearTimeout(i);clearTimeout(j)});g[1]&&!a.is("input:not(:checkbox, :radio), textarea")&&e.bind(g[1],function(o){o.relatedTarget!=a[0]&&a.trigger(l[1].split(" ")[0])});return c},hide:function(d){if(!e||!c.isShown())return c;d=d||f.Event();d.type="onBeforeHide";h.trigger(d);if(!d.isDefaultPrevented()){k=false;n[b.effect][1].call(c,function(){d.type="onHide";k=false;h.trigger(d)});return c}},isShown:function(d){return d?k=="full":k},getConf:function(){return b},getTip:function(){return e},
getTrigger:function(){return a}});f.each("onHide,onBeforeShow,onShow,onBeforeHide".split(","),function(d,g){f.isFunction(b[g])&&f(c).bind(g,b[g]);c[g]=function(o){f(c).bind(g,o);return c}})}f.tools=f.tools||{version:"1.2.3"};f.tools.tooltip={conf:{effect:"toggle",fadeOutSpeed:"fast",predelay:0,delay:30,opacity:1,tip:0,position:["top","center"],offset:[0,0],relative:false,cancelDefault:true,events:{def:"mouseenter,mouseleave",input:"focus,blur",widget:"focus mouseenter,blur mouseleave",tooltip:"mouseenter,mouseleave"},
layout:"<div/>",tipClass:"tooltip"},addEffect:function(a,b,c){n[a]=[b,c]}};var n={toggle:[function(a){var b=this.getConf(),c=this.getTip();b=b.opacity;b<1&&c.css({opacity:b});c.show();a.call()},function(a){this.getTip().hide();a.call()}],fade:[function(a){var b=this.getConf();this.getTip().fadeTo(b.fadeInSpeed,b.opacity,a)},function(a){this.getTip().fadeOut(this.getConf().fadeOutSpeed,a)}]};f.fn.tooltip=function(a){var b=this.data("tooltip");if(b)return b;a=f.extend(true,{},f.tools.tooltip.conf,a);
if(typeof a.position=="string")a.position=a.position.split(/,?\s/);this.each(function(){b=new t(f(this),a);f(this).data("tooltip",b)});return a.api?b:this}})(jQuery);
(function(d){var i=d.tools.tooltip;d.extend(i.conf,{direction:"up",bounce:false,slideOffset:10,slideInSpeed:200,slideOutSpeed:200,slideFade:!d.browser.msie});var e={up:["-","top"],down:["+","top"],left:["-","left"],right:["+","left"]};i.addEffect("slide",function(g){var a=this.getConf(),f=this.getTip(),b=a.slideFade?{opacity:a.opacity}:{},c=e[a.direction]||e.up;b[c[1]]=c[0]+"="+a.slideOffset;a.slideFade&&f.css({opacity:0});f.show().animate(b,a.slideInSpeed,g)},function(g){var a=this.getConf(),f=a.slideOffset,
b=a.slideFade?{opacity:0}:{},c=e[a.direction]||e.up,h=""+c[0];if(a.bounce)h=h=="+"?"-":"+";b[c[1]]=h+"="+f;this.getTip().animate(b,a.slideOutSpeed,function(){d(this).hide();g.call()})})})(jQuery);
(function(g){function j(a){var c=g(window),d=c.width()+c.scrollLeft(),h=c.height()+c.scrollTop();return[a.offset().top<=c.scrollTop(),d<=a.offset().left+a.width(),h<=a.offset().top+a.height(),c.scrollLeft()>=a.offset().left]}function k(a){for(var c=a.length;c--;)if(a[c])return false;return true}var i=g.tools.tooltip;i.dynamic={conf:{classNames:"top right bottom left"}};g.fn.dynamic=function(a){if(typeof a=="number")a={speed:a};a=g.extend({},i.dynamic.conf,a);var c=a.classNames.split(/\s/),d;this.each(function(){var h=
g(this).tooltip().onBeforeShow(function(e,f){e=this.getTip();var b=this.getConf();d||(d=[b.position[0],b.position[1],b.offset[0],b.offset[1],g.extend({},b)]);g.extend(b,d[4]);b.position=[d[0],d[1]];b.offset=[d[2],d[3]];e.css({visibility:"hidden",position:"absolute",top:f.top,left:f.left}).show();f=j(e);if(!k(f)){if(f[2]){g.extend(b,a.top);b.position[0]="top";e.addClass(c[0])}if(f[3]){g.extend(b,a.right);b.position[1]="right";e.addClass(c[1])}if(f[0]){g.extend(b,a.bottom);b.position[0]="bottom";e.addClass(c[2])}if(f[1]){g.extend(b,
a.left);b.position[1]="left";e.addClass(c[3])}if(f[0]||f[2])b.offset[0]*=-1;if(f[1]||f[3])b.offset[1]*=-1}e.css({visibility:"visible"}).hide()});h.onBeforeShow(function(){var e=this.getConf();this.getTip();setTimeout(function(){e.position=[d[0],d[1]];e.offset=[d[2],d[3]]},0)});h.onHide(function(){var e=this.getTip();e.removeClass(a.classNames)});ret=h});return a.api?ret:this}})(jQuery);
(function(b){function h(c){if(c){var a=d.contentWindow.document;a.open().close();a.location.hash=c}}var g,d,f,i;b.tools=b.tools||{version:"1.2.3"};b.tools.history={init:function(c){if(!i){if(b.browser.msie&&b.browser.version<"8"){if(!d){d=b("<iframe/>").attr("src","javascript:false;").hide().get(0);b("body").append(d);setInterval(function(){var a=d.contentWindow.document;a=a.location.hash;g!==a&&b.event.trigger("hash",a)},100);h(location.hash||"#")}}else setInterval(function(){var a=location.hash;
a!==g&&b.event.trigger("hash",a)},100);f=!f?c:f.add(c);c.click(function(a){var e=b(this).attr("href");d&&h(e);if(e.slice(0,1)!="#"){location.href="#"+e;return a.preventDefault()}});i=true}}};b(window).bind("hash",function(c,a){a?f.filter(function(){var e=b(this).attr("href");return e==a||e==a.replace("#","")}).trigger("history",[a]):f.eq(0).trigger("history",[a]);g=a;window.location.hash=g});b.fn.history=function(c){b.tools.history.init(this);return this.bind("history",c)}})(jQuery);
(function(b){function c(a){switch(a.type){case "mousemove":return b.extend(a.data,{clientX:a.clientX,clientY:a.clientY,pageX:a.pageX,pageY:a.pageY});case "DOMMouseScroll":b.extend(a,a.data);a.delta=-a.detail/3;break;case "mousewheel":a.delta=a.wheelDelta/120;break}a.type="wheel";return b.event.handle.call(this,a,a.delta)}b.fn.mousewheel=function(a){return this[a?"bind":"trigger"]("wheel",a)};b.event.special.wheel={setup:function(){b.event.add(this,d,c,{})},teardown:function(){b.event.remove(this,
d,c)}};var d=!b.browser.mozilla?"mousewheel":"DOMMouseScroll"+(b.browser.version<"1.9"?" mousemove":"")})(jQuery);
(function($){$.fn.jCarouselLite=function(o){o=$.extend({btnPrev:null,btnNext:null,btnGo:null,mouseWheel:false,auto:null,speed:200,easing:null,vertical:false,circular:true,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null},o||{});return this.each(function(){var b=false,animCss=o.vertical?"top":"left",sizeCss=o.vertical?"height":"width";var c=$(this),ul=$("ul",c),tLi=$("li",ul),tl=tLi.size(),v=o.visible;if(o.circular){ul.prepend(tLi.slice(tl-v-1+1).clone()).append(tLi.slice(0,v).clone());o.start+=v}var f=$("li",ul),itemLength=f.size(),curr=o.start;c.css("visibility","visible");f.css({overflow:"hidden",float:o.vertical?"none":"left"});ul.css({margin:"0",padding:"0",position:"relative","list-style-type":"none","z-index":"1"});c.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"});var g=o.vertical?height(f):width(f);var h=g*itemLength;var j=g*v;f.css({width:f.width(),height:f.height()});ul.css(sizeCss,h+"px").css(animCss,-(curr*g));c.css(sizeCss,j+"px");if(o.btnPrev)$(o.btnPrev).click(function(){return go(curr-o.scroll)});if(o.btnNext)$(o.btnNext).click(function(){return go(curr+o.scroll)});if(o.btnGo)$.each(o.btnGo,function(i,a){$(a).click(function(){return go(o.circular?o.visible+i:i)})});if(o.mouseWheel&&c.mousewheel)c.mousewheel(function(e,d){return d>0?go(curr-o.scroll):go(curr+o.scroll)});if(o.auto)setInterval(function(){go(curr+o.scroll)},o.auto+o.speed);function vis(){return f.slice(curr).slice(0,v)};function go(a){if(!b){if(o.beforeStart)o.beforeStart.call(this,vis());if(o.circular){if(a<=o.start-v-1){ul.css(animCss,-((itemLength-(v*2))*g)+"px");curr=a==o.start-v-1?itemLength-(v*2)-1:itemLength-(v*2)-o.scroll}else if(a>=itemLength-v+1){ul.css(animCss,-((v)*g)+"px");curr=a==itemLength-v+1?v+1:v+o.scroll}else curr=a}else{if(a<0||a>itemLength-v)return;else curr=a}b=true;ul.animate(animCss=="left"?{left:-(curr*g)}:{top:-(curr*g)},o.speed,o.easing,function(){if(o.afterEnd)o.afterEnd.call(this,vis());b=false});if(!o.circular){$(o.btnPrev+","+o.btnNext).removeClass("disabled");$((curr-o.scroll<0&&o.btnPrev)||(curr+o.scroll>itemLength-v&&o.btnNext)||[]).addClass("disabled")}}return false}})};function css(a,b){return parseInt($.css(a[0],b))||0};function width(a){return a[0].offsetWidth+css(a,'marginLeft')+css(a,'marginRight')};function height(a){return a[0].offsetHeight+css(a,'marginTop')+css(a,'marginBottom')}})(jQuery);
$(function(){
$("#nav, #slider_container, a.small_button, a.large_button, #author_bio, input.submit, button").after("<div class='clear'></div>");
$("#body_content, .folio1, #content, #header, .post, #sgl_post .post_image_container, .post_widgets, .post_share,  ul#comments_container li .comment_container, #comment_form_container #comment_form, .full .folio3, #footer, .featured_box").append('<div class="clear"></div>');
});
$(window).ready(function(){
$("ul#nav").superfish({
animation:		{height:'show', opacity:'show'},
delay:			300,
autoArrows:		true,
dropShadows:	false
});
$("a.go, a.play, a.zoom, a.view, a.read_more, a.external, a.arrow_left, a.arrow_right, a.read_article, a.zoom_rounded").hover(function(){
$("img", this).stop().animate({ "opacity": 0.3 }, 400);
}, function() {
$("img", this).stop().animate({ "opacity": 1 }, 250);
});
$("#body_content img.with_caption").each(function(){
var	caption = $(this).attr("title");
var imgWidth = $(this).outerWidth();
$(this).wrap('<span class="image_caption"></span>');
$('span.image_caption').append('<span class="caption">' + caption + '</span>');
$('span.image_caption').css('width', imgWidth - 2);
if($(this).hasClass('alignleft')){
$('span.image_caption').addClass('alignleft');
$(this).removeClass('alignleft');
} else if($(this).hasClass('alignright')){
$('span.image_caption').addClass('alignright')
$(this).removeClass('alignright');
}
if($(this).hasClass('noTopMargin')){
$('span.image_caption').addClass('noTopMargin');
$(this).removeClass('noTopMargin');
}
if($(this).hasClass('noBottomMargin')){
$('span.image_caption').addClass('noBottomMargin');
$(this).removeClass('noBottomMargin');
}
if($(this).hasClass('noLeftMargin')){
$('span.image_caption').addClass('noLeftMargin');
$(this).removeClass('noLeftMargin');
}
if($(this).hasClass('noRightMargin')){
$('span.image_caption').addClass('noRightMargin');
$(this).removeClass('noRightMargin');
}
})
$("#slider_container").prepend('<span id="slider_bottom_shadow"></span>');
$("ul#nav li > ul.subnav li:last-child").addClass("last_item");
$("div.post:last").addClass("last");
$("#front_boxes").append("<div class='clear front_box_bottom'></div>");
$(".success_notice, .error_notice, .warning_notice").click(function(){
$(this).fadeOut('fast', function(){
$(this).remove();
});
});
var isIE7 = (navigator.appVersion.indexOf("MSIE 7.")==-1) ? false : true;
if (isIE7) {
$('a.small_button.view, a.large_button.view, a.small_button.arrow, a.large_button.arrow, a.small_button.external_link, a.large_button.external_link').wrapInner('<span class="button_content"></span>');
$('a.small_button.view, a.large_button.view').append('<span class="view_icon"></span>');
$('a.small_button.arrow, a.large_button.arrow').append('<span class="arrow_icon"></span>');
$('a.small_button.external_link, a.large_button.external_link').append('<span class="external_link_icon"></span>');
} else {
$('a.small_button.view, a.large_button.view').append('<span class="view_icon"></span>');
$('a.small_button.arrow, a.large_button.arrow').append('<span class="arrow_icon"></span>');
$('a.small_button.external_link, a.large_button.external_link').append('<span class="external_link_icon"></span>');
}
$("ul.widget_tabs li:first-child a").addClass("first_tab");
$("ul.widget_tabs li:last-child a").addClass("last_tab");
$('ul.widget_tabs li a').wrap('<span />');
$("ul.widget_tabs").tabs("div.widget_tabs_content > div.tab_content", {
effect: 'slide'
});
});
function xeroClearFieldValue(){
var inactive = "inactive";
var active = "active";
var focused = "focused";
$("label.auto_clear").each(function(){
obj = document.getElementById($(this).attr("for"));
if(($(obj).attr("type") == "text") || (obj.tagName.toLowerCase() == "textarea")){
$(obj).addClass(inactive);
var text = $(this).text();
$(this).css("display","none");
$(obj).val(text);
$(obj).focus(function(){
$(this).addClass(focused);
$(this).removeClass(inactive);
$(this).removeClass(active);
if($(this).val() == text) $(this).val("");
});
$(obj).blur(function(){
$(this).removeClass(focused);
if($(this).val() == "") {
$(this).val(text);
$(this).addClass(inactive);
} else {
$(this).addClass(active);
};
});
};
});
};
function xeroContactForm(){
$('#contact_form').submit(function(){
$('.required', this).removeClass('error')
$('em.error').remove();
var error = false;
$('.required', this).each(function() {
var fieldName = $(this).attr('name');
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if( $.trim($(this).val()) == '' ) {
$(this).parent().append('<em class="error">Please enter your ' + fieldName + '.</em>');
$(this).addClass('error');
error = true;
} else if( $(this).hasClass('email') ) {
if(!emailReg.test(jQuery.trim($(this).val()))) {
$(this).parent().append('<em class="error">Please enter a valid '+fieldName+'.</em>');
$(this).addClass('error');
error = true;
}
}
});
if(!error){
$("li #submit", this).after('<span id="form_loading"></span>');
var formValues = $(this).serialize();
$.post($(this).attr('action'), formValues, function(data){
$("#contact_form").before(data);
$("#form_loading").fadeOut(400, function(){
$(this).remove()
});
$("#contact_form").fadeOut(900, function(){
$(this).remove()
});
});
}
return false
});
}
$(document).ready(function(){
xeroClearFieldValue();
});
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());
Cufon.registerFont({"w":556,"face":{"font-family":"MaxLF","font-weight":500,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"13","bbox":"-65 -990 997 216","underline-thickness":"50","underline-position":"-75","stemh":"64","stemv":"79","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":310},"!":{"d":"182,-742r-7,526v0,5,-4,9,-9,9r-55,0v-6,0,-10,-4,-10,-9r-7,-507v0,-8,5,-11,13,-13r66,-16r1,0v4,0,8,5,8,10xm182,-15v0,10,-5,15,-14,15r-60,0v-9,0,-15,-5,-15,-15r0,-112v0,-10,6,-15,15,-15r60,0v9,0,14,5,14,15r0,112","w":270},"\"":{"d":"269,-730r-14,219v-1,5,-5,10,-10,10r-48,0v-5,0,-10,-5,-10,-10r0,-219v0,-5,5,-9,10,-9r62,0v5,0,10,4,10,9xm129,-730r-14,219v0,5,-4,10,-9,10r-48,0v-6,0,-10,-5,-10,-10r0,-219v0,-5,4,-9,10,-9r62,0v5,0,10,4,9,9","w":317},"#":{"d":"621,-537r-10,62v-1,5,-4,9,-9,9r-99,0r-26,163r96,0v4,0,9,4,9,8r0,1r-10,62v-1,5,-4,9,-9,9r-99,0r-34,214v-1,5,-5,9,-10,9r-58,0v-4,0,-9,-4,-9,-8r0,-1r34,-214r-124,0r-34,214v-1,5,-5,9,-10,9r-58,0v-4,0,-9,-4,-9,-8r0,-1r34,-214r-96,0v-5,0,-9,-4,-9,-8r0,-1r10,-62v1,-5,4,-9,9,-9r99,0r26,-163r-96,0v-4,0,-9,-4,-9,-8r0,-1r10,-62v1,-5,4,-9,9,-9r99,0r30,-184v0,-5,5,-9,10,-9r57,0v5,0,10,4,10,8r0,1r-30,184r124,0r30,-184v0,-5,5,-9,10,-9r57,0v5,0,10,4,10,8r0,1r-30,184r96,0v4,0,9,4,9,8r0,1xm426,-466r-124,0r-26,163r124,0","w":702,"k":{"7":56,"4":56,"3":45,"2":56}},"$":{"d":"611,-212v0,153,-110,208,-231,220r0,102v0,9,-7,15,-15,15r-54,0v-8,0,-14,-6,-14,-15r0,-99v-105,-4,-186,-29,-207,-35v-8,-2,-13,-9,-13,-16v0,-1,1,-3,1,-4r11,-44v1,-5,10,-9,15,-9r2,0v20,4,122,32,231,32v91,0,188,-31,188,-140v0,-104,-92,-118,-205,-132v-116,-15,-260,-40,-260,-207v0,-151,114,-197,237,-205r0,-100v0,-9,6,-15,14,-15r54,0v8,0,15,6,15,15r0,101v94,5,168,27,186,33v9,3,13,9,13,16r0,4r-11,44v-2,5,-10,9,-15,9r-2,0v-20,-4,-108,-30,-217,-30v-86,0,-187,19,-187,121v0,102,101,122,197,135v120,16,267,24,267,204","w":666},"%":{"d":"806,-177v0,96,-17,190,-162,190v-145,0,-162,-94,-162,-190v0,-96,17,-191,162,-191v145,0,162,95,162,191xm343,-561v0,96,-17,190,-161,190v-145,0,-162,-94,-162,-190v0,-96,17,-191,162,-191v144,0,161,95,161,191xm674,-703r-475,703v-1,2,-4,3,-7,3v-2,0,-3,0,-5,-1r-33,-23v-3,-2,-4,-5,-4,-8v0,-1,1,-3,2,-5r474,-703v2,-3,5,-4,7,-4v2,0,4,1,5,2r34,23v2,1,4,4,4,7v0,2,-1,4,-2,6xm738,-177v0,-84,-11,-134,-94,-134v-83,0,-94,50,-94,134v0,83,11,133,94,133v83,0,94,-50,94,-133xm275,-562v0,-83,-11,-133,-94,-133v-83,0,-93,50,-93,133v0,84,11,134,93,134v83,0,94,-50,94,-134","w":825},"&":{"d":"706,-18r0,1v0,5,-4,10,-8,11v-22,7,-65,19,-122,19v-99,0,-146,-43,-146,-139r0,-224v-2,5,-4,6,-10,6v-62,6,-125,7,-174,20v-62,17,-104,51,-104,126v0,98,89,134,178,134v36,0,51,-4,68,-6r6,0v6,0,12,1,13,8r7,44v1,4,1,6,1,9v0,6,-2,9,-10,12v-7,2,-39,10,-90,10v-129,0,-260,-50,-260,-206v0,-169,147,-171,158,-176r0,-25v-28,-7,-145,-24,-145,-166v0,-122,87,-192,249,-192v47,0,70,5,100,11v8,2,10,5,10,12v0,2,0,5,-1,9r-7,45v-1,6,-7,8,-13,8r-6,0v-17,-2,-41,-7,-70,-7v-101,0,-175,26,-175,124v0,57,34,90,88,109v46,15,110,20,177,25v7,0,8,0,10,5r0,-180v0,-9,5,-11,12,-13r60,-14r3,0v7,0,10,7,10,13r0,184r152,9v9,1,15,6,15,15r0,34v0,9,-6,14,-15,15r-152,10r0,216v0,55,26,67,78,67v31,0,69,-8,90,-13r3,0v5,0,10,3,11,9","w":720},"'":{"d":"129,-730r-14,242v0,5,-4,10,-9,10r-48,0v-6,0,-10,-5,-10,-10r0,-242v0,-5,4,-9,10,-9r62,0v5,0,10,4,9,9","w":177},"(":{"d":"248,93v2,2,2,4,2,6v0,3,-1,6,-3,8r-39,35v-3,3,-7,5,-10,5v-5,0,-10,-5,-16,-14v-78,-116,-120,-291,-120,-469v0,-177,42,-353,120,-468v6,-9,11,-14,16,-14v3,0,7,1,10,5r39,34v2,2,3,5,3,8v0,3,0,5,-2,7v-75,120,-102,285,-102,428v0,143,27,309,102,429","w":293,"k":{"j":-40}},")":{"d":"231,-336v0,178,-42,353,-119,469v-6,9,-11,14,-17,14v-3,0,-6,-2,-10,-5r-39,-35v-2,-2,-3,-5,-3,-8v0,-2,1,-4,2,-6v75,-120,102,-286,102,-429v0,-143,-27,-308,-102,-428v-1,-2,-2,-4,-2,-7v0,-3,1,-6,3,-8r39,-34v4,-4,7,-5,10,-5v6,0,11,5,17,14v77,115,119,291,119,468","w":293},"*":{"d":"542,-533v0,5,-3,9,-8,9r-1,0r-147,-8r96,114v2,2,3,4,3,6v0,3,-2,6,-4,8r-44,33v-2,2,-3,2,-5,2v-3,0,-7,-2,-8,-4r-80,-126r-79,126v-1,2,-5,4,-8,4v-2,0,-3,0,-5,-2r-44,-33v-2,-2,-4,-5,-4,-8v0,-2,1,-4,3,-6r94,-114r-147,8v-5,0,-9,-4,-9,-9r0,-56v0,-5,4,-10,9,-10r147,10r-95,-114v-2,-2,-3,-4,-3,-7v0,-3,2,-5,4,-7r45,-34v1,-1,3,-1,4,-1v4,0,7,2,8,4r80,125r79,-125v1,-2,5,-4,8,-4v2,0,3,0,5,1r44,34v3,2,4,4,4,7v0,3,-1,5,-2,7r-95,114r146,-10r1,0v5,0,8,5,8,10r0,56","w":687},"+":{"d":"528,-303v0,9,-6,15,-15,15r-184,0r1,183v0,9,-7,15,-15,15r-46,0v-9,0,-15,-6,-15,-14r0,-184r-184,0v-9,0,-15,-6,-15,-15r0,-44v0,-9,7,-15,16,-15r183,0r0,-185v0,-9,6,-15,15,-15r45,0v9,0,15,7,15,15r0,185r184,0v8,0,15,6,15,14r0,45","w":584,"k":{"7":68,"4":20,"3":80,"2":56,"1":20}},",":{"d":"219,-90r-34,191v-2,10,-3,13,-15,13r-47,0v-6,0,-13,-1,-13,-10r0,-2r13,-191v1,-10,3,-13,15,-13r68,0v6,0,13,1,13,9r0,3","w":329,"k":{"\u00ff":90,"\u00fd":90,"y":90,"w":90,"v":100,"W":130,"V":150,"T":160,"9":30,"7":60,"4":20,"1":40}},"-":{"d":"341,-251v0,9,-6,15,-15,15r-261,0v-9,0,-15,-6,-15,-15r0,-45v0,-9,6,-15,15,-15r261,0v9,0,15,6,15,15r0,45","w":391},".":{"d":"223,-15v0,9,-6,15,-15,15r-87,0v-9,0,-15,-6,-15,-15r0,-64v0,-9,6,-15,15,-15r87,0v9,0,15,6,15,15r0,64","w":329,"k":{"\u00ff":90,"\u00fd":90,"\u00dd":150,"y":90,"w":90,"v":100,"Y":150,"W":130,"V":150,"T":160,"9":30,"7":40,"4":20,"1":40}},"\/":{"d":"321,-768r-218,814v-1,4,-5,7,-9,7v-1,0,-1,0,-2,-1r-58,-13v-4,-1,-6,-5,-6,-9r0,-3r218,-814v1,-4,5,-7,9,-7v1,0,1,0,2,1r58,13v4,1,6,5,6,9r0,3","w":349,"k":{"1":-50}},"0":{"d":"675,-369v0,193,-33,382,-310,382v-278,0,-310,-189,-310,-382v0,-193,32,-383,310,-383v277,0,310,190,310,383xm584,-370v0,-193,-27,-308,-220,-308v-192,0,-218,116,-218,308v0,193,26,309,218,309v193,0,220,-116,220,-309","w":729,"k":{"\u00a5":-30,"\u00a2":-30,"=":-30,"9":-10,"8":-20,"7":20,"6":-35,"5":-35,"4":15,"3":20,"1":-20,"0":-15,"%":-40}},"1":{"d":"237,-742r0,726v0,9,-8,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-637r-116,-8v-9,-1,-16,-5,-16,-13r0,-37v0,-9,7,-12,16,-13r190,-28r1,0v4,0,10,6,10,10","w":337,"k":{"\u00a5":-30,"\u00a2":-30,"9":-40,"8":-50,"7":-20,"6":-60,"5":-45,"3":-10,"2":-20,"1":-75,"0":-50,"%":-40}},"2":{"d":"598,-62r0,46v0,9,-7,16,-16,16r-488,0v-9,0,-16,-7,-16,-16r0,-58v0,-47,13,-67,49,-93r127,-95v79,-60,225,-145,225,-259v0,-124,-77,-154,-183,-154v-108,0,-178,24,-212,33r-4,0v-6,0,-12,-3,-14,-12r-11,-45r0,-3v0,-7,7,-11,12,-13v15,-6,104,-37,237,-37v150,0,264,56,264,235v0,130,-118,212,-227,290r-178,129r0,20r419,0v9,0,16,7,16,16","w":646,"k":{"\u00a5":-30,"\u00a2":-30,"}":-20,"]":-20,"9":-25,"8":-30,"6":-30,"5":-45,"4":25,"2":15,"1":-30,"0":-30,")":-20,"%":-40}},"3":{"d":"580,-193v0,156,-131,206,-260,206v-122,0,-209,-25,-242,-38v-8,-3,-12,-7,-12,-13v0,-2,0,-4,1,-5r14,-48v2,-4,6,-7,11,-7v3,0,5,1,8,1v70,24,150,34,215,34v89,0,178,-37,178,-135v0,-134,-107,-132,-246,-146v-8,0,-16,-4,-16,-13r0,-47v0,-9,7,-12,16,-12v145,-11,233,-29,233,-134v0,-98,-74,-125,-175,-125v-91,0,-166,21,-219,37v-3,1,-5,1,-7,1v-6,0,-10,-2,-12,-8r-12,-45v-1,-3,-1,-6,-1,-8v0,-6,3,-10,10,-13v41,-17,134,-41,254,-41v162,0,249,70,249,192v0,142,-117,159,-145,166r0,25v11,5,158,7,158,176","w":635,"k":{"\u00a5":-30,"\u00a2":-30,"9":-15,"8":-35,"6":-38,"5":-43,"4":15,"3":25,"2":-15,"1":-30,"0":-30,"\/":-20,")":-20,"%":-40}},"4":{"d":"660,-244r0,43v0,9,-7,16,-16,16r-93,0r0,169v0,9,-8,16,-16,16r-54,0v-8,0,-16,-7,-16,-16r0,-169r-394,0v-9,0,-16,-6,-16,-15r0,-54v0,-3,0,-9,3,-13r334,-466v2,-3,7,-6,10,-6r133,0v9,0,16,7,16,16r0,463r93,0v9,0,16,8,16,16xm465,-259r0,-409r-30,0r-297,409r327,0","w":714,"k":{"9":20,"8":-10,"7":25,"6":-10,"4":40,"3":40,"2":10,"0":-10,",":20}},"5":{"d":"569,-222v0,162,-114,235,-279,235v-117,0,-206,-19,-221,-25v-6,-3,-9,-6,-9,-11v0,-1,1,-3,1,-4r9,-48v1,-5,3,-9,9,-9r4,0v24,6,93,21,197,21v105,0,203,-28,203,-161v0,-66,-34,-156,-184,-156v-98,0,-198,33,-215,38r-7,0v-6,0,-11,-1,-14,-5v-3,-3,-8,-6,-8,-13r0,-1r24,-367v1,-5,7,-11,13,-11r431,0v8,0,15,7,15,16r0,45v0,8,-6,15,-15,15r-367,0r-14,232v0,0,94,-26,159,-26v149,0,268,67,268,235","w":624,"k":{"\u00a5":-30,"\u00a2":-30,"=":-20,"9":10,"8":-10,"7":20,"6":-15,"5":-20,"4":15,"3":25,"1":-10,"0":-20,"%":-30}},"6":{"d":"619,-230v0,168,-112,243,-279,243v-233,0,-284,-124,-285,-380r0,-8v-1,-230,50,-377,320,-377v112,0,188,23,188,23v5,0,9,5,9,9r0,2r-11,56v-1,5,-5,8,-9,8r-2,0v-69,-15,-116,-21,-189,-21v-155,0,-216,72,-220,238v0,0,111,-39,207,-39v161,0,271,71,271,246xm531,-231v0,-120,-73,-169,-187,-169v-60,0,-144,14,-201,35r0,36v-2,199,54,268,198,268v128,0,190,-52,190,-170","w":674,"k":{"\u00a5":-30,"\u00a2":-20,"=":-25,"9":10,"8":-10,"7":20,"6":-10,"5":-20,"4":15,"3":25,"2":10,"1":-10,"0":-15,"%":-30}},"7":{"d":"566,-670v0,7,-1,16,-6,23v-183,237,-253,415,-329,636v-1,4,-8,11,-16,11r-56,0v-14,0,-17,-8,-17,-14r0,-3v66,-209,188,-463,337,-645r-443,0v-9,0,-16,-7,-16,-16r0,-45v0,-9,7,-16,16,-16r515,0v9,0,15,7,15,16r0,53","w":602,"k":{"\u00f7":48,"\u00d7":75,"\u00a5":-30,"\u00a2":40,"=":69,";":88,":":88,"9":15,"8":10,"6":10,"5":-15,"4":80,"3":20,"2":30,"1":-25,"0":10,".":160,",":160,"+":83,"%":-30}},"8":{"d":"650,-202v0,145,-97,215,-298,215v-200,0,-297,-70,-297,-215v0,-118,97,-160,166,-164r0,-28v-18,-4,-153,-8,-153,-158v0,-157,143,-200,284,-200v142,0,285,43,285,200v0,150,-135,155,-153,159r0,28v69,4,166,45,166,163xm563,-201v0,-112,-109,-141,-212,-141v-102,0,-209,29,-209,141v0,103,74,140,212,140v138,0,209,-37,209,-140xm550,-549v0,-96,-67,-129,-196,-129v-130,0,-199,33,-199,129v0,105,100,132,196,132v97,0,199,-27,199,-132","w":705,"k":{"\u00a5":-30,"\u00a2":-30,"=":-40,"9":-10,"8":-15,"7":15,"6":-20,"5":-25,"4":15,"3":25,"1":-20,"0":-15,"%":-40}},"9":{"d":"619,-371r0,3v0,12,-1,24,-1,35v0,261,-97,346,-309,346v-112,0,-185,-23,-185,-23v-4,0,-9,-5,-9,-9r0,-2r11,-55v1,-5,5,-8,10,-8r2,0v69,15,112,21,185,21v155,0,206,-73,209,-239v0,0,-104,39,-207,39v-160,0,-270,-71,-270,-245v0,-169,112,-244,279,-244v243,0,284,145,285,381xm531,-410v1,-199,-54,-268,-199,-268v-128,0,-189,52,-189,170v0,120,73,169,187,169v60,0,144,-14,201,-35r0,-36","w":674,"k":{"\u00a5":-30,"\u00a2":-30,"=":-30,"9":-15,"8":-30,"7":15,"6":-35,"5":-40,"4":15,"3":30,"2":-10,"1":-20,"0":-30,"%":-40}},":":{"d":"223,-446v0,9,-6,15,-15,15r-87,0v-9,0,-15,-6,-15,-15r0,-64v0,-9,6,-15,15,-15r87,0v9,0,15,6,15,15r0,64xm223,-15v0,9,-6,15,-15,15r-87,0v-9,0,-15,-6,-15,-15r0,-64v0,-9,6,-15,15,-15r87,0v9,0,15,6,15,15r0,64","w":329,"k":{"\u00dd":60,"Y":60,"W":50,"V":60,"T":80,"7":88,"1":20}},";":{"d":"215,-90r-34,191v-2,10,-3,13,-15,13r-47,0v-7,0,-14,-1,-13,-10r0,-2r13,-191v1,-10,3,-13,14,-13r68,0v7,0,14,1,14,9r0,3xm223,-446v0,9,-5,15,-14,15r-88,0v-8,0,-15,-6,-15,-15r0,-64v0,-9,7,-15,15,-15r88,0v9,0,14,6,14,15r0,64","w":329,"k":{"\u00dd":60,"Y":60,"W":50,"V":60,"T":80,"7":88,"1":20}},"<":{"d":"525,-106r-24,51v-2,3,-5,4,-8,4v-2,0,-4,0,-5,-1r-424,-224v-3,-2,-5,-6,-5,-9r0,-59v0,-5,1,-8,5,-10r424,-226v1,-1,3,-1,5,-1v3,0,6,1,8,4r24,51v1,1,1,3,1,4v0,4,-1,6,-5,8r-383,198r383,198v4,2,5,4,5,8v0,1,0,3,-1,4","w":584},"=":{"d":"509,-421r0,48v0,9,-7,15,-15,15r-404,0v-8,0,-15,-6,-15,-15r0,-48v0,-9,6,-15,15,-15r404,0v9,0,15,6,15,15xm509,-265r0,48v0,9,-7,15,-15,15r-404,0v-8,0,-15,-6,-15,-15r0,-48v0,-9,6,-15,15,-15r404,0v9,0,15,6,15,15","w":584,"k":{"9":-10,"8":-40,"7":56,"6":-30,"5":-20,"3":68,"1":30,"0":-30}},">":{"d":"525,-286v0,4,-2,8,-5,10r-423,224v-2,1,-4,1,-6,1v-3,0,-6,-1,-8,-4r-24,-51v-1,-1,-1,-3,-1,-4v0,-4,1,-6,5,-8r383,-198r-383,-198v-4,-2,-5,-4,-5,-8v0,-1,0,-3,1,-4r24,-51v2,-3,5,-4,8,-4v2,0,4,0,6,1r423,226v4,2,5,5,5,10r0,58","w":584},"?":{"d":"513,-578v0,103,-87,148,-110,165v-38,27,-108,53,-108,122v0,35,3,44,6,66r0,2v0,9,-6,12,-17,12r-51,0v-9,0,-12,-1,-15,-13v-2,-10,-7,-35,-7,-61v0,-112,50,-127,125,-181v19,-14,89,-50,89,-115v0,-82,-83,-94,-147,-94v-79,0,-158,22,-175,26v-5,1,-9,2,-12,2v-4,0,-7,-2,-9,-11r-11,-46v-1,-2,-1,-3,-1,-4v0,-5,3,-9,11,-12v13,-5,110,-32,199,-32v142,0,233,52,233,174xm306,-15v0,10,-5,15,-15,15r-60,0v-9,0,-15,-5,-15,-15r0,-112v0,-10,6,-15,15,-15r60,0v10,0,15,5,15,15r0,112","w":584},"@":{"d":"823,-368v0,35,-2,68,-5,99v0,6,-5,12,-13,12r-44,0v-8,0,-13,-7,-13,-13r0,-1v2,-30,5,-62,5,-97v0,-112,-14,-192,-61,-243v-46,-50,-123,-74,-251,-74v-126,0,-202,23,-248,72v-48,51,-63,130,-63,245v0,221,55,314,311,314v37,0,72,-5,102,-7r1,0v7,0,12,7,12,13r0,42v0,8,-6,12,-13,13v-30,3,-65,6,-101,6v-301,0,-382,-123,-382,-381v0,-259,81,-384,382,-384v301,0,381,125,381,384xm618,-243v0,57,-12,72,-69,85v-23,6,-61,12,-103,12v-67,0,-186,-2,-186,-135v0,-54,15,-83,41,-100v27,-19,68,-23,100,-28r146,-24r0,-34v0,-26,-1,-43,-26,-53v-14,-6,-36,-9,-71,-9v-53,0,-95,11,-145,23r-6,0v-5,0,-10,-2,-12,-9r-7,-35r0,-3v0,-8,7,-12,11,-13v26,-10,94,-25,166,-25v57,0,94,8,118,21v43,24,43,62,43,104r0,223xm548,-218r0,-157r-141,24v-43,7,-74,10,-74,67v0,75,61,80,113,80v34,0,70,-4,102,-14","w":883},"A":{"d":"684,-19v0,2,1,5,1,7v0,7,-4,12,-11,12r-62,0v-5,0,-13,-5,-14,-10r-108,-304r-286,0r-105,306v-2,5,-10,8,-15,8r-62,0v-7,0,-11,-5,-11,-11v0,-3,1,-6,2,-8r258,-707v2,-7,13,-13,18,-13r123,0v6,0,16,6,18,13xm467,-387r-101,-282r-40,0r-99,282r240,0","w":697,"k":{"\u00ff":30,"\u00fd":30,"\u00dd":50,"y":30,"w":20,"v":30,"g":-7,"Y":50,"W":25,"V":35,"T":60,"M":-10,"J":-20}},"B":{"d":"667,-193v0,134,-89,193,-249,193r-312,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,7,-16,16,-16r325,0v151,0,212,59,212,181v0,104,-49,145,-124,161r0,27v97,12,148,61,148,177xm580,-202v0,-94,-39,-136,-159,-139r-246,-6r0,274r252,0v117,0,153,-57,153,-129xm557,-543v0,-81,-37,-123,-126,-123r-256,0r0,255r244,-9v87,-4,138,-33,138,-123","w":712,"k":{"\u00dd":10,"\u00dc":-5,"\u00db":-5,"\u00da":-5,"\u00d9":-5,"\u00d6":-7,"\u00d5":-7,"\u00d4":-7,"\u00d3":-7,"\u00d2":-7,"\u00c7":-10,"Y":10,"V":12,"U":-5,"T":15,"Q":-7,"O":-7,"J":-15,"G":-10,"C":-10}},"C":{"d":"614,-52v0,1,1,4,1,7v0,5,-3,12,-16,16v-44,14,-118,36,-229,36v-247,0,-315,-135,-315,-378v0,-243,68,-377,315,-377v111,0,185,22,229,36v13,4,16,11,16,16v0,3,-1,6,-1,6r-9,38v-2,10,-7,13,-13,13v-3,0,-7,-1,-11,-2v-48,-13,-122,-31,-206,-31v-188,0,-232,92,-232,300v0,208,44,302,232,302v84,0,158,-16,206,-30v4,-1,8,-1,11,-1v6,0,11,3,13,12","w":653,"k":{"\u00dd":-10,"\u00c5":-10,"\u00c4":-10,"\u00c3":-10,"\u00c2":-10,"\u00c1":-10,"\u00c0":-10,"Z":-25,"Y":-10,"X":-15,"S":-20,"M":-15,"J":-30,"A":-10}},"D":{"d":"713,-370v0,323,-125,370,-341,370r-266,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,7,-16,16,-16r266,0v216,0,341,47,341,369xm626,-372v0,-267,-87,-294,-266,-294r-185,0r0,592r185,0v179,0,266,-31,266,-298","w":768,"k":{"\u00dd":25,"\u00c6":20,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Z":15,"Y":25,"X":20,"V":12,"T":20,"A":20}},"E":{"d":"572,-16v0,9,-7,16,-15,16r-451,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,8,-16,16,-16r450,0v9,0,16,7,16,16r0,43v0,9,-7,16,-16,16r-381,0r0,240r367,0v9,0,15,7,15,16r0,44v0,9,-6,16,-15,16r-367,0r0,273r382,0v8,0,15,7,15,16r0,43","w":627,"k":{"\u00d6":-5,"\u00d5":-5,"\u00d4":-5,"\u00d3":-5,"\u00d2":-5,"\u00c7":-10,"Z":-20,"X":-30,"S":-25,"O":-5,"M":-13,"J":-20,"G":-10,"C":-10}},"F":{"d":"550,-678v0,9,-7,16,-15,16r-360,0r0,288r328,0v8,0,15,7,15,16r0,47v0,8,-7,16,-15,16r-328,0r0,279v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,7,-16,16,-16r428,0v9,0,16,7,16,16r0,45","w":574,"k":{"\u00ff":15,"\u00fd":15,"\u00e6":15,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"\u00dd":10,"\u00c5":30,"\u00c4":30,"\u00c3":30,"\u00c2":30,"\u00c1":30,"\u00c0":30,"z":20,"x":15,"w":15,"v":15,"a":15,"Y":10,"X":10,"A":30,".":140,",":140}},"G":{"d":"663,-686r-9,38v-2,8,-6,11,-13,11v-4,0,-7,0,-11,-1v-46,-11,-126,-38,-240,-38v-202,0,-248,91,-248,307v0,225,49,308,269,308v85,0,160,-18,160,-18r0,-260r-135,-15v-5,-1,-9,-4,-9,-9r0,-52v0,-5,5,-9,10,-9r207,0v9,0,12,4,12,13r0,299v0,56,-4,81,-47,97v-52,20,-158,28,-200,28v-261,0,-354,-96,-354,-382v0,-246,64,-383,334,-383v138,0,246,35,260,41v10,4,15,7,15,16v0,2,0,5,-1,9","w":733,"k":{"\u00dd":10,"\u00c5":-10,"\u00c4":-10,"\u00c3":-10,"\u00c2":-10,"\u00c1":-10,"\u00c0":-10,"Y":10,"A":-10}},"H":{"d":"699,-16v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-328r-439,0r0,328v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-713v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,317r439,0r0,-307v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,723","w":789},"I":{"d":"175,-16v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-713v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,723","w":265},"J":{"d":"180,45v0,106,-56,145,-164,145v-43,0,-52,-1,-66,-3v-4,0,-15,0,-15,-13r0,-35v0,-13,6,-15,10,-15r2,1v0,0,27,-2,48,-3v68,-1,100,-12,100,-80r0,-771v0,-8,5,-11,13,-13r60,-10r2,0v8,0,10,7,10,13r0,784","w":270,"k":{"J":-30}},"K":{"d":"625,-14v1,1,2,3,2,4v0,5,-5,10,-10,10r-92,0v-4,0,-10,-4,-12,-6r-301,-332r-37,0r0,322v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,7,-16,16,-16r53,0v9,0,16,7,16,16r0,307r37,0r287,-317v2,-2,8,-6,12,-6r80,2v5,0,10,5,10,10v0,1,-1,3,-2,4r-317,342","w":633,"k":{"\u00dd":10,"\u00d6":15,"\u00d5":15,"\u00d4":15,"\u00d3":15,"\u00d2":15,"\u00c7":15,"j":-20,"Y":10,"V":10,"R":-10,"Q":15,"P":-10,"O":15,"M":-10,"J":-15,"G":15,"C":15}},"L":{"d":"557,-16v0,9,-6,16,-15,16r-436,0v-9,0,-16,-7,-16,-16r0,-713v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,661r367,0v9,0,15,7,15,16r0,46","w":572,"k":{"\u00ff":50,"\u00fd":50,"\u00dd":116,"\u00dc":30,"\u00db":30,"\u00da":30,"\u00d9":30,"\u00d6":30,"\u00d5":20,"\u00d4":30,"\u00d3":30,"\u00d2":30,"\u00c7":45,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"y":50,"w":50,"v":50,"Y":116,"W":60,"V":90,"U":30,"T":130,"S":30,"Q":30,"O":30,"L":20,"J":-20,"G":45,"C":45,"A":10}},"M":{"d":"908,-16r0,2v1,8,-8,14,-16,14r-53,0v-8,0,-15,-7,-16,-16r-60,-652r-37,0r-180,509v-3,8,-10,16,-19,16r-83,0v-9,0,-17,-8,-19,-16r-174,-509r-37,0r-58,652v-1,9,-7,16,-16,16r-49,0v-8,0,-16,-6,-16,-15r0,-1r58,-707v1,-9,7,-16,16,-16r156,0v9,0,17,8,19,16r163,509r171,-509v3,-8,10,-16,19,-16r155,0v9,0,15,7,16,16","w":983,"k":{"\u00dd":10,"\u00c5":-10,"\u00c4":-10,"\u00c3":-10,"\u00c2":-10,"\u00c1":-10,"\u00c0":-10,"Y":10,"T":10,"J":-10,"A":-10}},"N":{"d":"737,-16v0,9,-7,16,-16,16r-121,0v-9,0,-15,-8,-19,-16r-370,-653r-36,0r0,653v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,7,-16,16,-16r152,0v9,0,15,8,19,16r367,657r8,0r0,-660v0,-9,5,-13,13,-13r58,0v11,0,14,6,14,13r0,710","w":827},"O":{"d":"714,-370v0,222,-49,383,-329,383v-281,0,-330,-161,-330,-383v0,-221,49,-382,330,-382v280,0,329,161,329,382xm626,-370v0,-186,-20,-306,-242,-306v-222,0,-240,121,-240,307v0,186,18,306,240,306v222,0,242,-121,242,-307","w":769,"k":{"\u00dd":15,"Y":15,"W":-10,"T":20}},"P":{"d":"653,-520v0,59,-9,123,-53,168v-53,52,-138,59,-211,59v-17,0,-32,-1,-47,-1r-167,-2r0,280v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,7,-16,16,-16r314,0v70,0,138,9,182,55v32,32,51,84,51,164xm566,-519v0,-56,-13,-91,-36,-113v-29,-28,-74,-34,-126,-34r-229,0r0,307r169,-6v79,-3,144,-3,183,-37v25,-21,39,-57,39,-117","w":694,"k":{"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00f1":25,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"\u00e6":40,"\u00e5":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"\u00dd":10,"\u00c6":55,"\u00c5":55,"\u00c4":55,"\u00c3":55,"\u00c2":55,"\u00c1":55,"\u00c0":55,"z":15,"u":25,"t":15,"s":25,"r":25,"q":40,"p":25,"o":40,"n":25,"m":25,"l":15,"k":15,"i":15,"h":15,"e":40,"d":40,"c":40,"b":15,"a":40,"Z":40,"Y":10,"X":30,"W":10,"V":10,"T":32,"M":10,"A":55,".":250,",":250}},"Q":{"d":"714,-370v0,212,-46,369,-296,382r25,96r168,0v9,0,16,6,16,15r0,51v0,9,-7,16,-16,16r-95,0v-107,0,-138,-39,-166,-133r-14,-46v-237,-18,-281,-173,-281,-381v0,-221,49,-382,330,-382v280,0,329,161,329,382xm626,-370v0,-186,-20,-306,-242,-306v-222,0,-240,121,-240,307v0,186,18,306,240,306v222,0,242,-121,242,-307","w":769,"k":{"\u00dd":15,"Y":15,"W":-10,"T":20}},"R":{"d":"669,-16r0,1v0,7,-6,15,-14,15r-56,0v-11,0,-15,-4,-16,-14r-9,-148v-6,-93,-57,-137,-177,-140r-222,-5r0,291v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,7,-16,16,-16r320,0v145,0,229,54,229,205v0,105,-38,163,-157,178r0,26v71,9,156,18,164,176xm568,-521v0,-95,-36,-145,-133,-145r-260,0r0,293r212,-7v99,-4,181,-21,181,-141","w":729,"k":{"\u00dd":5,"\u00d6":-10,"\u00d5":-10,"\u00d4":-10,"\u00d3":-10,"\u00d2":-10,"\u00c7":-10,"\u00c5":-10,"\u00c4":-10,"\u00c3":-10,"\u00c2":-10,"\u00c1":-10,"\u00c0":-10,"y":-13,"Y":5,"W":-5,"T":32,"S":-13,"Q":-10,"O":-10,"M":-10,"G":-10,"C":-10,"A":-10}},"S":{"d":"602,-212v0,178,-147,223,-291,223v-117,0,-208,-28,-230,-35v-8,-2,-13,-9,-13,-16v0,-1,1,-3,1,-4r11,-44v1,-5,10,-9,15,-9r2,0v20,4,122,32,231,32v91,0,188,-31,188,-140v0,-104,-86,-118,-199,-132v-116,-15,-257,-40,-257,-207v0,-167,138,-206,274,-206v117,0,208,28,229,35v9,3,13,9,13,16r0,4r-11,44v-2,5,-10,9,-15,9r-2,0v-20,-4,-108,-30,-217,-30v-86,0,-187,19,-187,121v0,102,101,122,197,135v120,16,261,24,261,204","w":657,"k":{"\u00dd":10,"Y":10,"X":10,"V":10,"T":20}},"T":{"d":"607,-680v0,9,-7,16,-16,16r-243,0r0,648v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-648r-243,0v-9,0,-16,-7,-16,-16r0,-43v0,-9,7,-16,16,-16r571,0v9,0,16,7,16,16r0,43","w":611,"k":{"\u00ff":80,"\u00fd":90,"\u00fc":94,"\u00fb":94,"\u00fa":94,"\u00f9":94,"\u00f8":100,"\u00f6":94,"\u00f5":94,"\u00f4":94,"\u00f3":94,"\u00f2":94,"\u00f1":94,"\u00eb":94,"\u00ea":94,"\u00e9":94,"\u00e8":94,"\u00e7":94,"\u00e6":94,"\u00e5":94,"\u00e4":94,"\u00e3":94,"\u00e2":94,"\u00e1":94,"\u00e0":94,"\u00dd":-12,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"\u00c6":56,"\u00c5":56,"\u00c4":56,"\u00c3":56,"\u00c2":56,"\u00c1":56,"\u00c0":56,"z":90,"y":90,"x":90,"w":90,"v":90,"u":94,"s":94,"r":94,"q":94,"p":94,"o":94,"n":94,"m":94,"f":30,"e":94,"d":94,"c":94,"a":94,"Y":-12,"X":10,"T":100,"S":10,"Q":20,"O":20,"M":10,"J":25,"G":20,"C":20,"A":56,";":80,":":80,".":160,"-":60,",":160}},"U":{"d":"670,-271v0,145,-30,284,-295,284v-233,0,-295,-105,-295,-278r0,-464v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,481v0,124,37,195,210,195v141,0,210,-48,210,-177r0,-489v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,468","w":750,"k":{"\u00dd":-10,"Y":-10,"V":-10}},"V":{"d":"663,-722r-238,706v-3,9,-10,16,-19,16r-125,0v-9,0,-16,-7,-19,-16r-247,-706v-1,-2,-1,-3,-1,-5v0,-6,5,-12,11,-12r66,0v7,0,13,3,16,9r218,659r37,0r209,-659v2,-6,9,-9,16,-9r66,0v6,0,10,6,10,12r0,5","w":677,"k":{"\u00ff":14,"\u00fd":14,"\u00fc":35,"\u00fb":35,"\u00fa":35,"\u00f9":35,"\u00f8":55,"\u00f6":35,"\u00f5":35,"\u00f4":35,"\u00f3":35,"\u00f2":35,"\u00f1":35,"\u00ef":-30,"\u00ee":-30,"\u00eb":35,"\u00ea":35,"\u00e9":35,"\u00e8":35,"\u00e7":35,"\u00e6":35,"\u00e5":35,"\u00e4":35,"\u00e3":35,"\u00e2":35,"\u00e1":35,"\u00e0":35,"\u00dc":-10,"\u00db":-10,"\u00da":-10,"\u00d9":-10,"\u00c6":43,"\u00c5":35,"\u00c4":35,"\u00c3":35,"\u00c2":35,"\u00c1":35,"\u00c0":35,"z":14,"y":14,"x":14,"w":14,"v":14,"u":35,"s":35,"r":35,"q":35,"p":35,"o":35,"n":35,"m":35,"e":35,"d":35,"c":35,"a":35,"U":-10,"A":35,";":60,":":60,".":100,"-":30,",":100}},"W":{"d":"967,-722r-146,706v-2,9,-10,16,-19,16r-132,0v-9,0,-17,-7,-19,-16r-154,-592r-154,592v-2,9,-10,16,-19,16r-129,0v-9,0,-17,-7,-19,-16r-146,-706r0,-4v0,-7,3,-13,10,-13r65,0v7,0,15,2,16,9r119,657r36,0r157,-590v2,-9,10,-16,19,-16r91,0v9,0,17,7,19,16r158,590r36,0r120,-657v1,-7,9,-9,16,-9r66,0v6,0,9,6,9,13r0,4","w":997,"k":{"\u00ff":14,"\u00fd":14,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":35,"\u00f6":35,"\u00f5":35,"\u00f4":35,"\u00f3":35,"\u00f2":35,"\u00f1":30,"\u00ef":-30,"\u00ee":-30,"\u00eb":35,"\u00ea":35,"\u00e9":35,"\u00e8":35,"\u00e7":35,"\u00e6":35,"\u00e5":35,"\u00e4":35,"\u00e3":35,"\u00e2":35,"\u00e1":35,"\u00e0":35,"\u00d6":-10,"\u00d5":-10,"\u00d4":-10,"\u00d3":-10,"\u00d2":-10,"\u00c7":-10,"\u00c5":25,"\u00c4":25,"\u00c3":25,"\u00c2":25,"\u00c1":25,"\u00c0":25,"z":14,"y":14,"x":14,"w":14,"v":14,"u":25,"s":30,"r":30,"q":35,"p":35,"o":35,"n":30,"m":30,"e":35,"d":35,"c":35,"a":35,"S":-10,"O":-10,"G":-10,"C":-10,"A":25,";":50,":":50,".":100,",":100}},"X":{"d":"660,-17v1,2,1,3,1,5v0,6,-5,12,-11,12r-69,0v-6,0,-12,-4,-14,-7r-231,-338r-236,338v-2,4,-7,7,-13,7r-74,0v-6,0,-11,-6,-11,-11v0,-2,1,-4,2,-5r266,-372r-236,-334v-1,-2,-1,-4,-1,-5v0,-6,5,-12,11,-12r71,0v7,0,12,3,16,9r205,301r202,-302v4,-6,9,-8,16,-8r70,0v6,0,11,6,11,12v0,1,0,3,-2,5r-230,334","w":663,"k":{"\u00ff":15,"\u00fd":15,"y":15,"v":20,"T":5,"J":-25}},"Y":{"d":"623,-722r-273,416r0,290v0,9,-7,16,-16,16r-53,0v-8,0,-16,-7,-16,-16r0,-291r-270,-415v-1,-2,-2,-4,-2,-5v0,-6,6,-12,12,-12r69,0v7,0,12,3,16,9r221,350r218,-351v4,-6,8,-8,15,-8r70,0v5,0,11,6,11,12v0,1,-1,3,-2,5","w":618,"k":{"\u00ff":50,"\u00fd":50,"\u00fc":60,"\u00fb":60,"\u00fa":60,"\u00f9":60,"\u00f8":80,"\u00f6":70,"\u00f5":70,"\u00f4":70,"\u00f3":70,"\u00f2":70,"\u00f1":60,"\u00ef":-30,"\u00ee":-30,"\u00eb":70,"\u00ea":70,"\u00e9":70,"\u00e8":70,"\u00e7":70,"\u00e6":80,"\u00e5":80,"\u00e4":70,"\u00e3":70,"\u00e2":70,"\u00e1":80,"\u00e0":80,"\u00dc":-10,"\u00db":-10,"\u00da":-10,"\u00d9":-10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"z":50,"y":50,"x":60,"w":60,"v":60,"u":60,"s":70,"r":60,"q":70,"p":70,"o":70,"n":60,"m":60,"g":80,"e":70,"d":70,"c":70,"a":80,"U":-10,"T":-15,"Q":10,"O":10,"G":10,"C":10,"A":50,";":60,":":60,".":150,"-":70,",":150}},"Z":{"d":"593,-59r0,43v0,9,-6,16,-15,16r-520,0v-9,0,-15,-7,-15,-16r0,-43v0,-19,4,-19,11,-29r425,-576r-424,0v-8,0,-15,-7,-15,-16r0,-43v0,-9,7,-16,15,-16r514,0v8,0,15,7,15,16r0,50v0,12,-3,15,-8,23r-431,575r433,0v9,0,15,7,15,16","w":633,"k":{"\u00fc":15,"\u00fb":15,"\u00fa":15,"\u00f9":15,"\u00f6":15,"\u00f5":15,"\u00f4":15,"\u00f3":15,"\u00f2":15,"\u00eb":15,"\u00ea":15,"\u00e9":15,"\u00e8":15,"\u00e7":15,"v":15,"u":15,"s":15,"q":15,"o":15,"e":15,"d":15,"c":15}},"[":{"d":"237,97r-18,44v-2,4,-4,6,-7,6v-1,0,-2,0,-3,-1r-125,-38v-5,-2,-9,-9,-9,-15r0,-857v0,-6,4,-13,9,-14r124,-39v1,0,2,-1,3,-1v4,0,6,3,8,6r18,44v0,1,1,2,1,3v0,4,-2,7,-6,9r-79,35r0,771r80,36v3,1,5,3,5,6v0,2,0,3,-1,5","w":299,"k":{"j":-50}},"\\":{"d":"327,87r0,4v0,3,-2,7,-6,8r-54,19r-3,0v-4,0,-7,-3,-9,-6r-305,-894v0,-2,-1,-3,-1,-4v0,-4,2,-7,6,-9r55,-18r3,0v3,0,7,2,8,6","w":276},"]":{"d":"224,93v0,6,-4,13,-9,15r-125,38v-1,1,-2,1,-3,1v-3,0,-5,-2,-7,-6r-18,-44v-1,-2,-1,-3,-1,-5v0,-3,2,-5,5,-6r80,-36r0,-771r-79,-35v-4,-2,-6,-5,-6,-9v0,-1,0,-2,1,-3r18,-44v2,-3,4,-6,8,-6v1,0,2,1,3,1r124,38v5,2,9,10,9,15r0,857","w":299},"^":{"d":"538,-323v1,2,2,4,2,6v0,3,-2,6,-5,8r-46,23v-2,0,-3,1,-5,1v-3,0,-7,-2,-9,-5r-184,-372r-182,372v-2,3,-6,5,-9,5v-2,0,-3,-1,-5,-1r-46,-23v-3,-2,-5,-5,-5,-8v0,-2,1,-4,2,-6r207,-410v1,-3,6,-6,10,-6r58,0v4,0,9,3,10,6","w":584},"_":{"d":"500,125r-500,0r0,-50r500,0r0,50","w":500},"`":{"d":"256,-637r-31,38v-2,2,-5,4,-7,4v-2,0,-4,-1,-5,-2r-136,-99v-3,-2,-4,-5,-4,-7v0,-2,1,-4,2,-5r32,-40v2,-3,5,-4,7,-4v2,0,4,1,5,2r135,101v2,2,3,4,3,7v0,2,0,4,-1,5","w":331},"a":{"d":"486,-104v0,70,-14,86,-83,103v-29,6,-77,14,-130,14v-86,0,-229,-3,-229,-165v0,-134,74,-141,173,-157r189,-31r0,-47v0,-32,-1,-58,-36,-71v-19,-8,-47,-12,-91,-12v-77,0,-144,19,-185,29v-2,0,-4,1,-6,1v-4,0,-8,-2,-10,-8r-9,-45r0,-2v0,-8,7,-11,10,-12v32,-12,118,-31,209,-31v71,0,117,10,146,26v51,27,52,74,52,121r0,287xm407,-69r0,-208r-184,31v-48,9,-97,11,-97,90v0,100,82,107,148,107v44,0,91,-6,133,-20","w":551,"k":{"z":5,"v":10,"f":-5}},"b":{"d":"525,-264v0,195,-53,277,-234,277v-71,0,-136,-12,-169,-23v-50,-17,-52,-42,-52,-79r0,-637v0,-8,5,-11,12,-12r54,-14r3,0v7,0,10,7,10,13r0,173r-10,57v0,0,98,-29,174,-29v166,0,212,85,212,274xm443,-262v0,-161,-28,-211,-143,-211v-62,0,-151,24,-151,24r0,381v0,0,55,18,140,18v115,0,154,-54,154,-212","w":569,"k":{"\u00ff":10,"\u00fd":10,"\u00f6":-10,"\u00f5":-10,"\u00f4":-10,"\u00f3":-10,"\u00f2":-10,"\u00eb":-10,"\u00ea":-10,"\u00e9":-10,"\u00e8":-10,"\u00e7":-10,"y":10,"x":10,"v":10,"t":-10,"q":-10,"o":-10,"e":-10,"d":-10,"c":-10}},"c":{"d":"443,-31v0,2,1,3,1,5v0,9,-7,11,-10,13v-25,11,-95,26,-154,26v-187,0,-236,-88,-236,-275v0,-188,49,-276,236,-276v59,0,129,15,154,26v3,2,10,4,10,13v0,2,-1,4,-1,5r-7,34v-2,8,-5,12,-12,12v-1,0,-3,-1,-6,-1v-21,-6,-81,-24,-134,-24v-120,0,-158,51,-158,210v0,160,38,211,158,211v53,0,113,-16,134,-22v3,0,5,-1,6,-1v7,0,10,4,12,12","w":478,"k":{"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"z":-5,"j":-10,"a":5}},"d":{"d":"499,-86v0,37,0,65,-63,79v-32,8,-74,20,-153,20v-194,0,-239,-88,-239,-276v0,-192,53,-275,233,-275v69,0,119,11,153,20r-10,-58r0,-150v0,-8,5,-11,13,-12r54,-14r3,0v7,0,9,7,9,13r0,653xm420,-69r0,-388v0,0,-63,-18,-135,-18v-110,0,-159,35,-159,213v0,190,58,212,160,212v74,0,134,-19,134,-19","w":569,"k":{"f":-7}},"e":{"d":"507,-273r0,49v-1,5,-8,13,-13,13r-367,0v0,55,10,86,31,112v29,37,78,48,148,48v62,0,100,-12,147,-25v2,-1,4,-2,6,-2v4,0,8,3,10,9r11,38r0,4v0,5,-4,8,-10,11v-40,16,-106,29,-172,29v-196,0,-254,-91,-254,-275v0,-169,34,-276,232,-276v105,0,166,32,199,89v26,45,32,107,32,176xm424,-278v-1,-38,-3,-75,-12,-112v-18,-64,-57,-85,-138,-85v-80,0,-119,21,-136,85v-10,37,-11,76,-12,113","k":{"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"a":7}},"f":{"d":"377,-723r-5,35v-1,8,-6,11,-14,11v-20,-4,-57,-11,-96,-11v-27,0,-48,3,-62,14v-13,10,-20,26,-20,53r0,96r148,0v9,0,15,6,15,15r0,34v0,9,-6,15,-15,15r-148,0r0,446v0,9,-5,15,-14,15r-50,0v-9,0,-15,-6,-15,-15r0,-446r-78,0v-9,0,-15,-6,-15,-15r0,-34v0,-9,6,-15,15,-15r78,0r0,-88v0,-96,47,-139,145,-139v53,0,95,10,118,15v7,2,13,6,13,13r0,1","w":352,"k":{"\u00ff":-10,"\u00fd":-10,"\u00f8":25,"\u00f6":15,"\u00f5":15,"\u00f4":15,"\u00f3":15,"\u00f2":15,"\u00f1":15,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":15,"\u00e6":15,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"y":-10,"w":-10,"v":-10,"s":10,"r":15,"q":15,"p":15,"o":15,"n":15,"m":15,"g":30,"f":48,"e":15,"d":15,"c":15,"a":15,"7":-30,"1":-30,".":100,"'":-40,"\"":-40}},"g":{"d":"571,-488v1,2,2,3,2,4v0,2,-2,3,-5,6v-22,15,-47,21,-71,21v-16,0,-17,-1,-40,-5v0,0,43,36,43,107v0,142,-88,183,-220,183r-74,0v-52,0,-64,26,-64,52v0,42,29,53,73,53r151,0v96,0,164,29,164,118v0,124,-100,165,-243,165v-166,0,-242,-33,-242,-134v0,-78,53,-93,102,-103r0,-11v-45,-10,-84,-15,-84,-86v0,-61,33,-76,110,-88v-47,-15,-113,-28,-113,-149v0,-137,90,-183,219,-183v62,0,87,10,125,21v11,2,23,4,37,4v15,0,32,-3,46,-7v18,-5,38,-14,52,-21v3,-1,6,-3,8,-3v2,0,4,2,5,6xm421,-355v0,-93,-55,-123,-141,-123v-87,0,-141,30,-141,123v0,92,54,121,141,121v86,0,141,-29,141,-121xm451,63v0,-58,-50,-63,-94,-63r-135,0v-51,0,-98,16,-98,76v0,69,72,78,164,78v62,0,163,-9,163,-91","w":574,"k":{"\u00f1":5,"\u00e6":10,"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"z":-10,"r":5,"p":8,"n":5,"m":5,"l":5,"k":5,"j":-45,"h":5,"b":12,"a":10}},"h":{"d":"510,-15v0,9,-5,15,-15,15r-49,0v-9,0,-15,-6,-15,-15r0,-370v0,-66,-25,-89,-95,-89v-93,0,-187,28,-187,28r0,431v0,9,-5,15,-14,15r-50,0v-9,0,-15,-6,-15,-15r0,-711v0,-8,5,-11,12,-12r54,-14r3,0v7,0,10,7,10,13r0,173r-10,58v55,-16,141,-30,199,-30v119,0,172,37,172,144r0,379","w":575,"k":{"\u00eb":-5,"\u00ea":-5,"\u00e9":-5,"\u00e8":-5,"\u00e7":-5,"v":10,"s":-8,"q":-5,"f":-5,"e":-5,"d":-5,"c":-5}},"i":{"d":"164,-15v0,9,-6,15,-15,15r-49,0v-9,0,-15,-6,-15,-15r0,-495v0,-9,6,-15,15,-15r49,0v9,0,15,6,15,15r0,495xm164,-629v0,8,-6,14,-15,14r-49,0v-9,0,-15,-6,-15,-14r0,-108v0,-9,6,-15,15,-15r49,0v9,0,15,6,15,15r0,108","w":249,"k":{"f":-10}},"j":{"d":"159,76v0,98,-52,134,-152,134v-40,0,-43,-1,-56,-3v-4,0,-16,-2,-16,-13r0,-33v0,-14,8,-16,13,-16v0,0,20,1,39,1v65,0,93,-11,93,-75r0,-581v0,-9,7,-15,15,-15r50,0v9,0,14,6,14,15r0,586xm159,-629v0,8,-5,14,-14,14r-50,0v-9,0,-15,-6,-15,-14r0,-108v0,-9,6,-15,15,-15r50,0v9,0,14,6,14,15r0,108","w":239,"k":{"j":-50,"f":-10}},"k":{"d":"497,-14v1,1,2,3,2,5v0,5,-5,9,-10,9r-83,0v-4,0,-6,-2,-8,-5r-208,-227r-41,0r0,217v0,9,-5,15,-14,15r-50,0v-9,0,-15,-6,-15,-15r0,-711v0,-8,5,-11,12,-12r54,-14r3,0v7,0,10,7,10,13r0,447r41,0r202,-228v2,-3,4,-5,8,-5r72,2v5,0,10,4,10,9v0,2,-1,4,-2,5r-220,241","w":513,"k":{"\u00fc":8,"\u00fb":8,"\u00fa":8,"\u00f9":8,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00f0":15,"\u00ef":-10,"\u00ee":-10,"\u00ed":-10,"\u00ec":-10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":10,"\u00e6":10,"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"u":8,"t":8,"q":10,"p":10,"o":10,"g":20,"f":8,"e":10,"d":10,"c":10,"a":10}},"l":{"d":"248,-16v0,2,1,3,1,4v0,7,-5,9,-8,10v-8,4,-35,12,-71,12v-60,0,-100,-29,-100,-103r0,-633v0,-8,5,-11,12,-12r54,-14r3,0v7,0,10,7,10,13r0,644v0,36,25,41,45,41v14,0,30,-2,35,-4r5,0v3,0,6,1,7,7","w":268,"k":{"\u00ff":30,"\u00fd":30,"y":30,"f":-10}},"m":{"d":"871,-15v0,9,-6,15,-15,15r-49,0v-10,0,-16,-6,-16,-15r0,-370v0,-66,-24,-89,-94,-89v-93,0,-188,28,-188,28r0,431v0,10,-4,15,-14,15r-49,0v-9,0,-15,-6,-15,-15r0,-370v0,-66,-25,-89,-95,-89v-93,0,-187,28,-187,28r0,431v0,9,-5,15,-14,15r-50,0v-9,0,-15,-6,-15,-15r0,-415v0,-40,2,-58,52,-75v52,-18,152,-33,216,-33v63,0,108,12,136,38v56,-22,164,-38,225,-38v119,0,172,37,172,144r0,379","w":935,"k":{"\u00eb":-5,"\u00ea":-5,"\u00e9":-5,"\u00e8":-5,"\u00e7":-5,"v":10,"s":-8,"q":-5,"f":-5,"e":-5,"d":-5,"c":-5}},"n":{"d":"510,-15v0,9,-6,15,-15,15r-49,0v-9,0,-15,-6,-15,-15r0,-370v0,-66,-25,-89,-95,-89v-93,0,-187,28,-187,28r0,431v0,9,-5,15,-14,15r-50,0v-9,0,-15,-6,-15,-15r0,-415v0,-40,2,-58,52,-75v52,-18,152,-33,216,-33v119,0,172,37,172,144r0,379","w":575,"k":{"\u00eb":-5,"\u00ea":-5,"\u00e9":-5,"\u00e8":-5,"\u00e7":-5,"v":10,"s":-8,"q":-5,"f":-5,"e":-5,"d":-5,"c":-5}},"o":{"d":"512,-262v0,150,-24,275,-234,275v-209,0,-234,-125,-234,-275v0,-151,25,-276,234,-276v210,0,234,125,234,276xm429,-262v0,-127,-6,-212,-151,-212v-145,0,-151,85,-151,212v0,126,6,211,151,211v145,0,151,-85,151,-211","k":{"\u00ff":10,"\u00fd":10,"\u00eb":-10,"\u00ea":-10,"\u00e9":-10,"\u00e8":-10,"\u00e7":-10,"y":10,"x":10,"v":10,"q":-10,"e":-10,"d":-10,"c":-10}},"p":{"d":"525,-262v0,194,-53,275,-235,275v-60,0,-116,-9,-152,-19r11,59r0,131v0,8,-5,11,-12,13r-54,13r-3,0v-7,0,-10,-7,-10,-13r0,-625v0,-41,2,-59,52,-77v52,-19,129,-33,194,-33v180,0,209,112,209,276xm443,-260v0,-190,-51,-213,-148,-213v-60,0,-146,24,-146,24r0,381v0,0,55,19,140,19v115,0,154,-53,154,-211","w":569,"k":{"\u00ff":10,"\u00fd":10,"\u00f6":-10,"\u00f5":-10,"\u00f4":-10,"\u00f3":-10,"\u00f2":-10,"\u00eb":-10,"\u00ea":-10,"\u00e9":-10,"\u00e8":-10,"\u00e7":-10,"y":10,"v":10,"t":-10,"q":-10,"o":-10,"e":-10,"d":-10,"c":-10}},"q":{"d":"499,184v0,8,-5,11,-12,13r-54,13r-3,0v-7,0,-10,-7,-10,-13r0,-145r11,-58v-32,8,-74,19,-148,19v-194,0,-239,-87,-239,-275v0,-192,53,-276,233,-276v74,0,127,13,160,21v47,12,62,28,62,75r0,626xm420,-69r0,-388v0,0,-63,-17,-135,-17v-110,0,-159,34,-159,213v0,190,58,211,160,211v74,0,134,-19,134,-19","w":569,"k":{"j":-60,"g":-5,"f":-7}},"r":{"d":"334,-480v0,7,-2,12,-9,12v-66,0,-120,5,-176,19r0,434v0,9,-5,15,-14,15r-50,0v0,0,-15,-6,-15,-15r0,-417v0,-44,9,-57,43,-73v44,-20,134,-33,182,-33r25,0v5,0,14,2,14,15r0,43","w":339,"k":{"\u00ff":-15,"\u00fd":-15,"\u00fc":-8,"\u00fb":-8,"\u00fa":-8,"\u00f9":-8,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00f0":10,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":5,"\u00e6":10,"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"z":-15,"y":-15,"x":-5,"w":-20,"v":-20,"u":-8,"t":-20,"s":-10,"q":5,"p":10,"o":5,"g":10,"f":-30,"e":5,"d":5,"c":5,"a":10,".":60,"-":-20,",":60}},"s":{"d":"446,-149v0,130,-100,162,-216,162v-88,0,-164,-29,-177,-34v-4,-2,-8,-4,-8,-10r0,-3r10,-39v1,-5,4,-9,11,-9r5,0v8,3,79,29,161,29v85,0,134,-27,134,-88v0,-83,-64,-80,-142,-92v-49,-8,-174,-17,-174,-149v0,-129,115,-156,203,-156v86,0,152,18,163,21v7,1,10,6,10,11r0,2r-7,44v-1,6,-5,8,-9,8r-2,0v-14,-1,-88,-19,-147,-19v-72,0,-132,20,-132,83v0,68,68,76,130,84v90,12,187,19,187,155","w":485,"k":{"\u00eb":-5,"\u00ea":-5,"\u00e9":-5,"\u00e8":-5,"\u00e7":-5,"\u00d8":-20,"\u00c6":-10,"t":-10,"q":-5,"e":-5,"d":-5,"c":-5}},"t":{"d":"346,-18r0,2v0,4,-4,9,-8,10v-22,7,-65,19,-122,19v-99,0,-146,-43,-146,-139r0,-550v0,-8,5,-11,12,-12r54,-14r3,0v7,0,10,7,10,13r0,164r168,0v9,0,15,6,15,15r0,34v0,9,-6,15,-15,15r-168,0r0,343v0,55,30,67,82,67v31,0,71,-8,92,-13r3,0v5,0,9,3,11,9","w":360,"k":{"\u00fc":-12,"\u00fb":-12,"\u00fa":-12,"\u00f9":-12,"z":-5,"u":-12}},"u":{"d":"505,-196v0,99,-14,209,-220,209v-176,0,-220,-75,-220,-207r0,-318v0,-8,5,-11,13,-13r54,-13r3,0v7,0,9,7,9,13r0,339v0,94,33,136,141,136v130,0,140,-64,140,-139r0,-323v0,-8,6,-11,13,-13r54,-13r3,0v7,0,10,7,10,13r0,329","w":569,"k":{"f":-10}},"v":{"d":"491,-510r-159,494v-3,10,-11,16,-20,16r-105,0v-10,0,-18,-6,-21,-16r-166,-491v-1,-2,-1,-4,-1,-5v0,-7,4,-13,10,-13r60,0v10,0,13,6,15,13r142,454r26,0r128,-454v2,-7,7,-13,17,-13r62,0v7,0,12,5,12,12r0,3","w":511,"k":{"t":-15,"f":-30,".":100,",":100}},"w":{"d":"776,-509r-128,493v-2,10,-11,16,-21,16r-111,0v-9,0,-18,-6,-20,-16r-98,-429r-2,0r-102,429v-3,10,-11,16,-21,16r-110,0v-10,0,-18,-6,-21,-16r-122,-491v0,-2,-1,-3,-1,-5v0,-7,4,-13,10,-13r59,0v10,0,14,6,15,13r101,454r26,0r101,-431v2,-10,11,-16,21,-16r91,0v10,0,18,6,21,16r99,431r26,0r102,-454v1,-7,5,-13,14,-13r59,0v7,0,12,6,12,12r0,4","w":796,"k":{"t":-15,"f":-30,".":90,",":90}},"x":{"d":"485,-20v2,2,3,5,3,8v0,7,-5,12,-11,12r-66,0v-5,0,-12,-4,-15,-8r-143,-214r-144,214v-3,4,-9,8,-14,8r-67,0v-7,0,-11,-5,-11,-12v0,-3,1,-6,3,-8r182,-252r-168,-234v-2,-2,-2,-5,-2,-8v0,-5,3,-11,8,-11r70,0v10,0,15,7,19,13r124,189r125,-189v4,-6,9,-13,18,-13r70,0v5,0,9,6,9,12v0,2,-1,5,-3,7r-172,231","w":505,"k":{"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00f0":10,"t":-15,"o":10,"g":5,"f":-30}},"y":{"d":"491,-510r-185,587v-29,93,-59,133,-166,133v-32,0,-51,-1,-70,-4v-9,-2,-11,-7,-11,-11r0,-44v0,-5,5,-10,11,-10r1,0v10,0,38,1,58,1v51,0,80,-10,96,-66r23,-76r-41,0v-9,0,-17,-6,-20,-16r-167,-493v0,-2,-1,-3,-1,-4v0,-6,6,-12,12,-12r59,0v10,0,13,6,15,13r142,454r26,0r128,-454v1,-7,7,-13,16,-13r63,0v6,0,12,5,12,12v0,1,0,2,-1,3","w":503,"k":{"\u00e6":10,"\u00e5":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"z":-10,"t":-20,"j":-20,"f":-30,"a":10,".":90,",":90}},"z":{"d":"448,-15v0,9,-6,15,-15,15r-377,0v-9,0,-15,-6,-15,-15r0,-48v0,-10,2,-12,9,-21r308,-377r-308,0v-9,0,-15,-6,-15,-15r0,-34v0,-9,6,-15,15,-15r381,0v9,0,15,6,15,15r0,49v0,6,-1,11,-8,19r-309,378r304,0v9,0,15,6,15,15r0,34","w":483,"k":{"\u00ff":-10,"\u00fd":-10,"y":-10,"t":-10,"f":-20}},"{":{"d":"295,96r-18,45v-1,3,-4,5,-7,5r-3,0r-125,-39v-4,-1,-9,-9,-9,-14r0,-278v0,-74,-9,-104,-69,-114v-5,0,-9,-4,-9,-9r0,-53v0,-5,4,-9,9,-9v60,-10,69,-40,69,-114r0,-281v0,-5,5,-12,9,-14r124,-39r3,0v4,0,7,2,8,6r18,43v1,1,1,3,1,4v0,3,-2,7,-6,8r-78,36r0,253v0,104,-67,118,-76,124r0,19v9,6,76,20,76,124r0,251r79,35v4,2,5,4,5,7v0,1,0,3,-1,4","w":357,"k":{"j":-50}},"|":{"d":"155,147v0,9,-6,15,-15,15r-45,0v-9,0,-15,-6,-15,-15r0,-914v0,-9,6,-15,15,-15r45,0v9,0,15,6,15,15r0,914","w":235},"}":{"d":"302,-308v0,5,-4,9,-9,9v-60,10,-69,40,-69,114r0,278v0,5,-4,13,-9,14r-125,39r-3,0v-3,0,-5,-2,-7,-5r-18,-45v-1,-1,-1,-3,-1,-4v0,-3,2,-5,5,-7r80,-35r0,-251v0,-104,66,-118,75,-124r0,-19v-9,-6,-75,-20,-75,-124r0,-253r-79,-36v-4,-1,-6,-5,-6,-8v0,-1,0,-3,1,-4r18,-43v2,-4,4,-6,8,-6r3,0r124,39v5,2,9,9,9,14r0,281v0,74,9,104,69,114v5,0,9,4,9,9r0,53","w":357},"~":{"d":"508,-296v0,5,-3,7,-7,10v-22,19,-76,59,-126,59v-29,0,-56,-12,-83,-24v-30,-13,-55,-28,-81,-28v-32,0,-61,22,-87,42v-3,2,-7,5,-11,5v-5,0,-7,-4,-10,-8r-25,-39v-1,-2,-2,-6,-2,-8v0,-5,3,-7,7,-10v22,-19,76,-60,126,-60v29,0,56,13,83,25v30,13,55,28,81,28v32,0,61,-22,87,-42v3,-2,7,-5,11,-5v5,0,7,4,10,8r25,39v1,2,2,6,2,8","w":584},"\u00a0":{"w":310},"\u00a1":{"d":"182,4v0,4,-4,9,-8,9r-1,0r-66,-16v-8,-2,-13,-5,-13,-12r0,-1r7,-506v0,-5,4,-10,9,-10r55,0v6,0,10,5,10,10xm182,-611v0,9,-5,15,-14,15r-60,0v-9,0,-15,-6,-15,-15r0,-113v0,-9,6,-15,15,-15r60,0v9,0,14,6,14,15r0,113","w":270},"\u00a2":{"d":"443,-31v0,2,1,3,1,5v0,9,-7,11,-10,13v-20,9,-71,21,-121,25r0,71v0,9,-6,15,-15,15r-44,0v-9,0,-15,-6,-15,-15r0,-72v-153,-12,-195,-101,-195,-273v0,-173,42,-262,195,-274r0,-75v0,-9,6,-15,14,-15r45,0v8,0,15,6,15,15r0,74v50,4,101,16,121,25v3,2,10,4,10,13v0,2,-1,3,-1,5r-7,32v-2,8,-5,12,-12,12v-1,0,-3,-1,-6,-1v-21,-6,-81,-22,-134,-22v-120,0,-158,51,-158,210v0,160,38,211,158,211v53,0,113,-16,134,-22v3,0,5,-1,6,-1v7,0,10,4,12,12","w":478},"\u00a3":{"d":"604,-712r-10,54v-1,5,-6,7,-11,7v0,0,-101,-25,-179,-25v-78,0,-172,16,-172,127v0,51,26,151,30,167r235,0v9,0,16,7,16,16r0,42v0,9,-7,16,-16,16r-221,0v0,0,10,33,10,85v0,95,-58,132,-81,147r382,-1v9,0,16,8,16,16r0,45v0,9,-7,16,-16,16r-513,0v-9,0,-14,-5,-14,-14r0,-52v0,-8,0,-12,13,-15v74,-13,125,-66,125,-145v0,-71,-52,-229,-52,-313v0,-156,95,-213,255,-213v99,0,193,25,193,25v6,3,11,5,11,12v0,1,0,2,-1,3","w":664,"k":{"7":-20,"4":25,"1":-20}},"\u00a4":{"d":"528,-191v2,2,2,4,2,6v0,2,-1,5,-2,6r-41,45v-3,2,-6,4,-9,4v-1,0,-3,0,-4,-2r-46,-43v-24,13,-56,23,-97,23v-41,0,-73,-10,-97,-23r-46,43v-1,2,-3,2,-4,2v-3,0,-6,-2,-9,-4r-41,-45v-1,-1,-2,-4,-2,-6v0,-2,0,-4,2,-6r47,-44v-13,-30,-19,-65,-19,-100v0,-35,6,-70,19,-101r-47,-44v-2,-1,-2,-3,-2,-5v0,-3,1,-5,2,-7r41,-44v3,-3,6,-5,9,-5v1,0,3,1,4,2r46,44v24,-14,56,-23,97,-23v41,0,73,9,97,23r46,-44v1,-1,3,-2,4,-2v3,0,6,2,9,5r41,44v1,2,2,4,2,7v0,2,0,4,-2,5r-47,44v13,31,19,66,19,101v0,35,-6,70,-19,100xm435,-335v0,-80,-21,-125,-104,-125v-84,0,-104,45,-104,125v0,80,20,124,104,124v83,0,104,-44,104,-124","w":662},"\u00a5":{"d":"603,-722r-236,377r169,0v9,0,15,6,15,15r0,40v0,9,-6,15,-15,15r-472,0v-9,0,-15,-6,-15,-15r0,-40v0,-9,6,-15,15,-15r166,0r-235,-377v-1,-2,-2,-4,-2,-5v0,-6,6,-12,12,-12r69,0v7,0,12,3,16,9r211,350r208,-351v4,-6,8,-8,15,-8r70,0v5,0,11,6,11,12v0,1,-1,3,-2,5xm511,-163v0,9,-6,15,-15,15r-153,0r0,132v0,9,-8,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-132r-154,0v-9,0,-15,-6,-15,-15r0,-40v0,-9,6,-15,15,-15r392,0v9,0,15,6,15,15r0,40","w":598,"k":{"9":-30,"8":-30,"7":-30,"6":-30,"5":-30,"3":-30,"1":-40,"0":-20}},"\u00a6":{"d":"168,-180r0,340v0,8,-6,15,-15,15r-45,0v-9,0,-15,-6,-15,-15r0,-340v0,-9,6,-15,15,-15r45,0v9,0,15,6,15,15xm168,-660r0,340v0,8,-6,15,-15,15r-45,0v-9,0,-15,-6,-15,-15r0,-340v0,-9,6,-15,15,-15r45,0v9,0,15,7,15,15","w":260},"\u00a7":{"d":"618,-270v0,96,-68,134,-131,151r0,19v34,12,102,33,102,134v0,67,-29,118,-79,144v-43,23,-85,32,-177,32v-89,0,-196,-28,-209,-33v-4,-2,-9,-4,-9,-10v0,-1,1,-2,1,-3r10,-40v1,-4,4,-9,11,-9v1,0,3,0,5,1v8,2,111,30,194,30v110,0,171,-26,171,-112v0,-71,-52,-88,-110,-98v-21,-3,-45,-6,-71,-10v-144,-20,-242,-38,-242,-191v0,-95,68,-134,131,-150r0,-19v-35,-13,-102,-33,-102,-134v0,-67,29,-126,78,-152v44,-23,86,-32,178,-32v87,0,164,18,175,20v7,2,10,7,10,11r0,2r-7,45v-1,6,-5,7,-9,7r-1,0v-15,-1,-112,-21,-171,-21v-111,0,-171,33,-171,119v0,72,51,88,110,98v21,4,45,7,71,11v143,20,242,38,242,190xm291,-157r68,9v100,0,176,-26,176,-121v0,-84,-63,-100,-125,-109v-21,-3,-67,-9,-67,-9v-100,0,-177,27,-177,122v0,84,63,99,125,108","w":701},"\u00a8":{"d":"383,-729r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10xm193,-729r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10","w":457},"\u00a9":{"d":"823,-368v0,258,-80,381,-381,381v-301,0,-382,-123,-382,-381v0,-259,81,-384,382,-384v301,0,381,125,381,384xm753,-369v0,-119,-16,-199,-69,-250v-47,-45,-122,-66,-243,-66v-120,0,-195,21,-242,65v-53,51,-69,133,-69,252v0,118,16,200,69,251v46,44,122,63,242,63v121,0,196,-19,243,-64v53,-50,69,-132,69,-251xm590,-558r-6,27v-2,8,-7,13,-14,13v-2,0,-4,0,-6,-1v-35,-10,-71,-19,-108,-19v-93,0,-122,38,-122,165v0,127,29,165,122,165v42,0,90,-13,108,-18v2,0,4,-1,6,-1v7,0,12,5,14,13r6,26r0,5v0,4,-1,7,-3,10v-2,2,-5,4,-7,5v-21,10,-79,22,-127,22v-155,0,-195,-75,-195,-227v0,-152,40,-226,195,-226v25,0,104,7,130,23v5,3,7,8,7,13r0,5","w":883},"\u00aa":{"d":"348,-500v0,44,-10,56,-55,66v-18,4,-47,9,-80,9v-51,0,-145,-1,-145,-103v0,-78,54,-87,110,-96r111,-17r0,-17v0,-16,-1,-29,-20,-36v-11,-4,-27,-7,-52,-7v-38,0,-75,9,-111,17v-3,0,-5,1,-7,1v-4,0,-7,-1,-8,-7r-8,-30r0,-3v0,-7,7,-9,10,-10v20,-8,73,-19,129,-19v62,0,94,11,111,30v15,18,15,41,15,62r0,160xm289,-483r0,-111r-105,17v-27,4,-54,9,-54,47v0,53,43,57,83,57v25,0,52,-3,76,-10xm360,-354r0,24v0,9,-6,15,-15,15r-259,0v-9,0,-15,-6,-15,-15r0,-24v0,-9,6,-14,14,-14r260,0v9,0,15,5,15,14","w":436},"\u00ab":{"d":"461,-79v1,1,2,3,2,4v0,4,-2,7,-5,9r-39,28v-1,1,-3,1,-4,1v-4,0,-7,-2,-9,-5r-165,-240v-1,-2,-2,-4,-2,-7v0,-2,1,-4,2,-6r165,-241v2,-3,5,-5,9,-5v1,0,3,0,4,1r39,28v3,2,5,5,5,9v0,1,-1,3,-2,4r-149,210xm276,-79v1,1,2,3,2,4v0,4,-2,7,-5,9r-39,28v-1,1,-3,1,-4,1v-4,0,-7,-2,-9,-5r-165,-240v-1,-2,-2,-4,-2,-7v0,-2,1,-4,2,-6r165,-241v2,-3,5,-5,9,-5v1,0,3,0,4,1r39,28v3,2,5,5,5,9v0,1,-1,3,-2,4r-149,210","w":517},"\u00ac":{"d":"529,-156v0,9,-5,15,-14,15r-46,0v-8,0,-15,-6,-15,-15r0,-160r-384,0v-9,0,-15,-6,-15,-15r0,-45v0,-9,6,-15,15,-15r444,0v9,0,15,6,15,15r0,220","w":584},"\u00ae":{"d":"823,-368v0,258,-80,381,-381,381v-301,0,-382,-123,-382,-381v0,-259,81,-384,382,-384v301,0,381,125,381,384xm753,-369v0,-119,-16,-199,-69,-250v-47,-45,-122,-66,-243,-66v-120,0,-195,21,-242,65v-53,51,-69,133,-69,252v0,118,16,200,69,251v46,44,122,63,242,63v121,0,196,-19,243,-64v53,-50,69,-132,69,-251xm628,-171v0,6,-4,13,-11,13r-49,0v-9,0,-13,-3,-13,-12r-6,-84v-3,-50,-29,-69,-97,-72r-100,-5r0,158v0,9,-7,15,-15,15r-43,0v-10,0,-15,-10,-15,-15r0,-394v0,-10,8,-20,19,-20r182,0v87,0,140,33,140,125v0,59,-24,85,-89,97r0,14v20,3,41,6,58,19v19,14,33,37,35,82xm546,-455v0,-46,-15,-66,-61,-66r-133,0r0,135r106,-4v61,-2,88,-10,88,-65","w":883},"\u00af":{"d":"390,-681r-7,47v-1,5,-3,9,-7,9v-21,-8,-78,-29,-141,-29v-63,0,-121,21,-141,29v-4,0,-7,-4,-8,-9r-7,-47r0,-1v0,-4,2,-6,7,-8v22,-8,83,-29,149,-29v66,0,126,21,148,29v5,2,7,4,7,8r0,1","w":469},"\u00b0":{"d":"350,-602v0,83,-68,150,-150,150v-83,0,-149,-67,-150,-150v0,-82,67,-150,150,-150v82,0,150,68,150,150xm288,-602v0,-47,-41,-88,-89,-88v-47,0,-87,41,-87,88v0,49,40,88,88,88v48,0,88,-39,88,-88","w":400},"\u00b1":{"d":"514,-319v0,8,-6,14,-15,14r-170,0r0,147v0,9,-6,15,-15,15r-45,0v-8,0,-14,-6,-14,-14r0,-147r-169,0v-9,0,-15,-6,-15,-15r0,-44v0,-9,7,-15,15,-15r169,0r0,-148v0,-9,6,-15,15,-15r45,0v9,0,15,7,15,15r0,147r169,0v8,0,15,6,15,15r0,45xm514,-60r0,45v0,9,-7,15,-16,15r-413,0v-8,0,-15,-6,-15,-15r0,-45v0,-9,6,-15,15,-15r414,0v9,0,15,6,15,15","w":584},"\u00b2":{"d":"399,-344r0,33v0,8,-3,13,-11,13r-299,0v-9,0,-13,-2,-13,-11r0,-55v0,-25,8,-38,23,-49r112,-78v40,-29,110,-66,110,-123v0,-69,-43,-81,-107,-81v-47,0,-86,10,-131,22r-4,0v-7,0,-11,-4,-12,-11r-7,-27v0,-2,-1,-3,-1,-4v0,-7,5,-11,10,-13v10,-4,68,-24,151,-24v94,0,169,27,169,137v0,86,-81,130,-141,171r-109,73r0,14r249,0v8,0,11,5,11,13","w":489},"\u00b3":{"d":"393,-419v0,97,-87,126,-169,126v-72,0,-128,-12,-134,-14v-7,-3,-11,-5,-11,-12r0,-3r6,-34v1,-5,4,-7,9,-7v3,0,6,1,9,1v10,2,59,11,114,11v46,0,108,-12,108,-71v0,-58,-39,-69,-86,-76v-18,-2,-36,-4,-57,-6v-8,-1,-15,-4,-15,-12r0,-26v0,-11,8,-11,14,-11v88,-9,136,-20,136,-75v0,-51,-40,-66,-101,-66v-55,0,-97,12,-130,21v-3,1,-6,1,-8,1v-6,0,-9,-3,-11,-8r-7,-31v-1,-3,-1,-5,-1,-6v0,-5,3,-7,10,-10v26,-11,84,-25,157,-25v101,0,158,42,158,118v0,61,-34,84,-88,96r0,16v61,10,97,38,97,103","w":472},"\u00b4":{"d":"256,-708v1,1,1,3,1,5v0,2,-1,5,-3,7r-136,99v-1,1,-3,2,-5,2v-2,0,-5,-2,-7,-4r-31,-38v-1,-1,-2,-3,-2,-5v0,-3,1,-5,4,-7r135,-101v1,-1,3,-2,5,-2v2,0,5,1,7,4","w":331},"\u00b5":{"d":"512,-129v0,115,-54,142,-160,142v-90,0,-141,-11,-214,-36r11,58r0,149v0,8,-5,11,-12,13r-54,13r-3,0v-7,0,-10,-7,-10,-13r0,-709v0,-8,5,-11,13,-13r53,-13r4,0v7,0,9,7,9,13r0,440v0,0,84,31,185,31v85,0,99,-25,99,-97r0,-361v0,-8,5,-11,12,-13r54,-13r3,0v8,0,10,7,10,13r0,396","w":577},"\u00b6":{"d":"446,182v0,5,-3,12,-8,13r-57,15r-2,0v-4,0,-9,-5,-9,-9r0,-486r-98,2r-13,0v-119,0,-215,-35,-215,-226v0,-145,56,-230,228,-230r160,0v5,0,14,10,14,15r0,906xm370,-351r0,-318r-98,0v-116,0,-143,41,-143,160v0,138,66,154,143,156xm600,162v0,5,-3,12,-8,13r-57,15r-2,0v-4,0,-8,-5,-8,-9r0,-905v0,-5,3,-12,8,-13r57,-15r2,0v4,0,8,4,8,9r0,905","w":670,"k":{"j":-30,"J":-30}},"\u00b7":{"d":"129,-248v0,9,-6,15,-14,15r-60,0v-9,0,-15,-6,-15,-15r0,-72v0,-9,6,-15,15,-15r60,0v8,0,14,6,14,15r0,72","w":169},"\u00b8":{"d":"246,118v0,61,-41,82,-97,82v-45,0,-65,-7,-71,-8v-4,-1,-7,-4,-6,-9r0,-1r2,-25v1,-5,4,-7,9,-7r2,0v6,0,24,5,48,5v21,0,43,-6,43,-36v0,-31,-22,-37,-43,-37v-24,0,-42,5,-48,5r-2,0v-5,1,-8,-2,-9,-6r-3,-26r0,-1v-1,-5,2,-7,6,-8v6,-2,22,-9,76,-9v68,0,93,34,93,81","w":317},"\u00b9":{"d":"227,-308v0,9,-5,11,-14,11r-37,0v-9,0,-13,-2,-13,-11r0,-370r-80,-4v-7,-1,-13,-1,-13,-12r0,-28v0,-11,5,-12,10,-13r134,-17r1,0v7,0,12,5,12,12r0,432","w":373},"\u00ba":{"d":"367,-589v0,88,-16,163,-148,163v-132,0,-147,-75,-147,-163v0,-87,15,-163,147,-163v132,0,148,76,148,163xm307,-589v0,-72,-4,-115,-88,-115v-83,0,-87,43,-87,115v0,72,4,116,87,116v84,0,88,-44,88,-116xm364,-354r0,24v0,9,-6,15,-15,15r-259,0v-9,0,-15,-6,-15,-15r0,-24v0,-9,6,-14,14,-14r260,0v9,0,15,5,15,14","w":435},"\u00bb":{"d":"461,-295v2,2,2,4,2,6v0,3,0,5,-2,7r-164,240v-2,3,-6,5,-9,5v-2,0,-4,0,-5,-1r-39,-28v-3,-2,-5,-5,-5,-9v0,-1,1,-3,2,-4r150,-210r-150,-210v-1,-1,-2,-3,-2,-4v0,-4,2,-7,5,-9r39,-28v1,-1,3,-1,5,-1v3,0,7,2,9,5xm276,-295v2,2,2,4,2,6v0,3,0,5,-2,7r-164,240v-2,3,-6,5,-9,5v-2,0,-4,0,-5,-1r-39,-28v-3,-2,-5,-5,-5,-9v0,-1,1,-3,2,-4r150,-210r-150,-210v-1,-1,-2,-3,-2,-4v0,-4,2,-7,5,-9r39,-28v1,-1,3,-1,5,-1v3,0,7,2,9,5","w":517},"\u00bc":{"d":"881,-150r0,29v0,9,-2,14,-11,14r-56,0r0,95v0,9,-4,12,-13,12r-37,0v-9,0,-14,-2,-14,-12r0,-95r-242,0v-9,0,-12,-5,-12,-14r0,-35v0,0,0,-8,3,-12r201,-276v2,-3,7,-6,11,-6r90,0v8,0,13,2,13,12r0,275r56,0v9,0,11,5,11,13xm690,-703r-475,703v-1,2,-4,3,-7,3v-2,0,-4,0,-5,-1r-33,-23v-3,-2,-4,-5,-4,-8v0,-1,0,-3,1,-5r475,-703v1,-3,4,-4,7,-4v2,0,4,1,5,2r33,23v3,1,4,4,4,7v0,2,0,4,-1,6xm227,-310v0,9,-5,12,-14,12r-37,0v-9,0,-13,-2,-13,-12r0,-368r-80,-4v-7,-1,-13,-1,-13,-12r0,-28v0,-11,5,-12,10,-13r134,-17r1,0v7,0,12,5,12,12r0,430xm750,-163r0,-233r-20,0r-166,233r186,0","w":961},"\u00bd":{"d":"910,-46r0,33v0,8,-3,13,-12,13r-298,0v-9,0,-14,-3,-14,-12r0,-54v0,-25,9,-38,24,-49r112,-78v40,-29,109,-66,109,-124v0,-69,-42,-80,-107,-80v-46,0,-86,10,-130,22r-5,0v-6,0,-10,-4,-11,-11r-7,-27v-1,-2,-1,-3,-1,-4v0,-7,5,-11,10,-13v10,-4,68,-24,151,-24v94,0,168,27,168,137v0,86,-80,130,-140,171r-109,73r0,14r248,0v9,0,12,5,12,13xm690,-703r-475,703v-1,2,-4,3,-7,3v-2,0,-4,0,-5,-1r-33,-23v-3,-2,-4,-5,-4,-8v0,-1,0,-3,1,-5r475,-703v1,-3,4,-4,7,-4v2,0,4,1,5,2r33,23v3,1,4,4,4,7v0,2,0,4,-1,6xm227,-308v0,9,-5,11,-14,11r-37,0v-9,0,-13,-2,-13,-11r0,-370r-80,-4v-7,-1,-13,-1,-13,-12r0,-28v0,-11,5,-12,10,-13r134,-17r1,0v7,0,12,5,12,12r0,432","w":1000},"\u00be":{"d":"997,-150r0,29v0,9,-3,13,-12,13r-56,0r0,96v0,9,-4,12,-13,12r-37,0v-9,0,-13,-3,-13,-12r0,-96r-243,0v-9,0,-12,-4,-12,-13r0,-35v0,0,0,-8,3,-12r201,-277v2,-2,7,-5,11,-5r90,0v9,0,13,2,13,11r0,276r56,0v9,0,12,5,12,13xm393,-419v0,97,-87,126,-169,126v-72,0,-128,-12,-134,-14v-7,-3,-11,-5,-11,-12r0,-3r6,-34v1,-5,4,-7,9,-7v3,0,6,1,9,1v10,2,59,11,114,11v46,0,108,-12,108,-71v0,-58,-39,-69,-86,-76v-18,-2,-36,-4,-57,-6v-8,-1,-15,-4,-15,-12r0,-26v0,-11,8,-11,14,-11v88,-9,136,-20,136,-75v0,-51,-40,-66,-101,-66v-55,0,-97,12,-130,21v-3,1,-6,1,-8,1v-6,0,-9,-3,-11,-8r-7,-31v-1,-3,-1,-5,-1,-6v0,-5,3,-7,10,-10v26,-11,84,-25,157,-25v101,0,158,42,158,118v0,61,-34,84,-88,96r0,16v61,10,97,38,97,103xm805,-703r-475,703v-1,2,-4,3,-7,3v-2,0,-3,0,-5,-1r-33,-23v-3,-2,-4,-5,-4,-8v0,-1,1,-3,2,-5r474,-703v2,-3,5,-4,7,-4v2,0,4,1,5,2r34,23v2,1,4,4,4,7v0,2,-1,4,-2,6xm866,-163r0,-233r-21,0r-166,233r187,0","w":1077},"\u00bf":{"d":"513,-35v1,1,1,3,1,4v0,5,-3,9,-11,12v-13,5,-110,32,-199,32v-142,0,-233,-53,-233,-174v0,-103,87,-148,110,-165v38,-28,108,-53,108,-122v0,-35,-3,-44,-6,-66r0,-3v0,-8,6,-11,17,-11r51,0v9,0,12,1,15,13v2,10,7,35,7,61v0,112,-50,127,-125,181v-19,14,-89,50,-89,115v0,82,83,94,147,94v79,0,158,-22,175,-26v5,-1,9,-2,12,-2v4,0,7,2,9,11xm371,-612v0,9,-6,15,-15,15r-60,0v-10,0,-15,-6,-15,-15r0,-112v0,-10,5,-15,15,-15r60,0v9,0,15,5,15,15r0,112","w":584},"\u00c0":{"d":"684,-19v0,2,1,5,1,7v0,7,-4,12,-11,12r-62,0v-5,0,-13,-5,-14,-10r-108,-304r-286,0r-105,306v-2,5,-10,8,-15,8r-62,0v-7,0,-11,-5,-11,-11v0,-3,1,-6,2,-8r258,-707v2,-7,13,-13,18,-13r123,0v6,0,16,6,18,13xm467,-387r-101,-282r-40,0r-99,282r240,0xm429,-844r-31,38v-2,2,-5,4,-8,4v-1,0,-3,-1,-5,-2r-135,-99v-3,-2,-4,-5,-4,-7v0,-2,1,-4,2,-5r31,-40v3,-3,5,-4,8,-4v2,0,3,1,5,2r135,101v2,2,3,4,3,7v0,2,0,4,-1,5","w":697,"k":{"\u00ff":30,"\u00fd":30,"\u00dd":50,"y":30,"w":20,"v":30,"g":-7,"Y":50,"W":25,"V":35,"T":60,"M":-10,"J":-20}},"\u00c1":{"d":"684,-19v0,2,1,5,1,7v0,7,-4,12,-11,12r-62,0v-5,0,-13,-5,-14,-10r-108,-304r-286,0r-105,306v-2,5,-10,8,-15,8r-62,0v-7,0,-11,-5,-11,-11v0,-3,1,-6,2,-8r258,-707v2,-7,13,-13,18,-13r123,0v6,0,16,6,18,13xm467,-387r-101,-282r-40,0r-99,282r240,0xm433,-915v2,1,2,3,2,5v0,2,-1,5,-3,7r-136,99v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-30,-38v-1,-1,-2,-3,-2,-5v0,-3,1,-5,4,-7r134,-101v2,-1,4,-2,5,-2v3,0,6,1,8,4","w":697,"k":{"\u00ff":30,"\u00fd":30,"\u00dd":50,"y":30,"w":20,"v":30,"g":-7,"Y":50,"W":25,"V":35,"T":60,"M":-10,"J":-20}},"\u00c2":{"d":"684,-19v0,2,1,5,1,7v0,7,-4,12,-11,12r-62,0v-5,0,-13,-5,-14,-10r-108,-304r-286,0r-105,306v-2,5,-10,8,-15,8r-62,0v-7,0,-11,-5,-11,-11v0,-3,1,-6,2,-8r258,-707v2,-7,13,-13,18,-13r123,0v6,0,16,6,18,13xm467,-387r-101,-282r-40,0r-99,282r240,0xm501,-844r-30,35v-2,2,-5,4,-7,4v-2,0,-4,-1,-5,-2r-112,-88r-112,88v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-29,-35v-2,-1,-2,-3,-2,-5v0,-3,1,-5,3,-7r136,-101r33,0r136,101v2,2,4,4,4,7v0,2,-1,4,-2,5","w":697,"k":{"\u00ff":30,"\u00fd":30,"\u00dd":50,"y":30,"w":20,"v":30,"g":-7,"Y":50,"W":25,"V":35,"T":60,"M":-10,"J":-20}},"\u00c3":{"d":"684,-19v0,2,1,5,1,7v0,7,-4,12,-11,12r-62,0v-5,0,-13,-5,-14,-10r-108,-304r-286,0r-105,306v-2,5,-10,8,-15,8r-62,0v-7,0,-11,-5,-11,-11v0,-3,1,-6,2,-8r258,-707v2,-7,13,-13,18,-13r123,0v6,0,16,6,18,13xm467,-387r-101,-282r-40,0r-99,282r240,0xm507,-882v0,4,-2,6,-4,8v-18,15,-59,46,-97,46v-23,0,-44,-10,-64,-19v-23,-10,-42,-22,-62,-22v-25,0,-47,17,-67,33v-2,1,-6,3,-8,3v-4,0,-6,-3,-8,-6r-19,-36v-1,-1,-1,-4,-1,-6v0,-3,2,-6,4,-8v17,-14,59,-45,97,-45v23,0,44,9,64,18v23,11,42,22,62,22v25,0,47,-16,67,-32v2,-2,5,-4,8,-4v4,0,6,3,8,6r19,36v1,2,1,4,1,6","w":697,"k":{"\u00ff":30,"\u00fd":30,"\u00dd":50,"y":30,"w":20,"v":30,"g":-7,"Y":50,"W":25,"V":35,"T":60,"M":-10,"J":-20}},"\u00c4":{"d":"684,-19v0,2,1,5,1,7v0,7,-4,12,-11,12r-62,0v-5,0,-13,-5,-14,-10r-108,-304r-286,0r-105,306v-2,5,-10,8,-15,8r-62,0v-7,0,-11,-5,-11,-11v0,-3,1,-6,2,-8r258,-707v2,-7,13,-13,18,-13r123,0v6,0,16,6,18,13xm467,-387r-101,-282r-40,0r-99,282r240,0xm501,-909r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10xm311,-909r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10","w":697,"k":{"\u00ff":30,"\u00fd":30,"\u00dd":50,"y":30,"w":20,"v":30,"g":-7,"Y":50,"W":25,"V":35,"T":60,"M":-10,"J":-20}},"\u00c5":{"d":"684,-19v0,2,1,5,1,7v0,7,-4,12,-11,12r-62,0v-5,0,-13,-5,-14,-10r-108,-304r-286,0r-105,306v-2,5,-10,8,-15,8r-62,0v-7,0,-11,-5,-11,-11v0,-3,1,-6,2,-8r258,-707v2,-7,13,-13,18,-13r123,0v6,0,16,6,18,13xm477,-874v0,85,-45,116,-126,116v-82,0,-127,-31,-127,-116v0,-86,45,-116,127,-116v81,0,126,30,126,116xm467,-387r-101,-282r-40,0r-99,282r240,0xm411,-875v0,-51,-11,-72,-60,-72v-50,0,-61,22,-61,73v0,51,11,73,61,73v49,0,60,-23,60,-74","w":697,"k":{"y":30,"w":20,"v":30,"g":-7,"Y":50,"W":25,"V":35,"T":60,"M":-10,"J":-20}},"\u00c6":{"d":"800,-16v0,9,-7,16,-15,16r-369,0v-9,0,-16,-7,-16,-16r0,-314r-186,0r-109,321v-1,5,-7,9,-12,9r-71,0v-4,0,-9,-3,-9,-8r0,-1r247,-717v2,-7,13,-13,18,-13r506,0v9,0,16,7,16,16r0,43v0,9,-7,16,-16,16r-299,0r0,258r286,0v9,0,15,7,15,16r0,44v0,9,-6,16,-15,16r-286,0r0,255r300,0v8,0,15,7,15,16r0,43xm400,-663r-77,0r-86,260r163,0r0,-260","w":855,"k":{"Z":-20,"X":-30,"S":-20,"O":-5,"M":-13,"J":-20,"G":-10,"C":-10}},"\u00c7":{"d":"614,-52v0,1,1,4,1,7v0,5,-3,12,-16,16v-44,14,-118,36,-229,36v-247,0,-315,-135,-315,-378v0,-243,68,-377,315,-377v111,0,185,22,229,36v13,4,16,11,16,16v0,3,-1,6,-1,6r-9,38v-2,10,-7,13,-13,13v-3,0,-7,-1,-11,-2v-48,-13,-122,-31,-206,-31v-188,0,-232,92,-232,300v0,208,44,302,232,302v84,0,158,-16,206,-30v4,-1,8,-1,11,-1v6,0,11,3,13,12xm478,118v0,61,-41,82,-97,82v-46,0,-66,-7,-71,-8v-4,-1,-7,-4,-7,-9r0,-1r3,-25v0,-4,3,-7,9,-7r2,0v6,1,23,5,48,5v21,0,43,-6,43,-36v0,-30,-22,-36,-43,-36v-25,0,-42,4,-48,5r-2,0v-6,0,-9,-3,-9,-7r-4,-25r0,-2v0,-4,3,-7,7,-8v6,-1,22,-8,76,-8v67,0,93,33,93,80","w":653,"k":{"\u00dd":-10,"\u00c4":-10,"\u00c3":-10,"\u00c2":-10,"\u00c1":-10,"\u00c0":-10,"Z":-25,"Y":-10,"X":-15,"S":-20,"M":-15,"J":-30,"A":-10}},"\u00c8":{"d":"572,-16v0,9,-7,16,-15,16r-451,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,8,-16,16,-16r450,0v9,0,16,7,16,16r0,43v0,9,-7,16,-16,16r-381,0r0,240r367,0v9,0,15,7,15,16r0,44v0,9,-6,16,-15,16r-367,0r0,273r382,0v8,0,15,7,15,16r0,43xm416,-844r-31,38v-2,2,-5,4,-8,4v-1,0,-3,-1,-5,-2r-135,-99v-3,-2,-4,-5,-4,-7v0,-2,1,-4,2,-5r31,-40v3,-3,5,-4,8,-4v2,0,3,1,5,2r135,101v2,2,3,4,3,7v0,2,0,4,-1,5","w":627,"k":{"\u00d6":-5,"\u00d5":-5,"\u00d4":-5,"\u00d3":-5,"\u00d2":-5,"\u00c7":-10,"Z":-20,"X":-30,"S":-25,"O":-5,"M":-13,"J":-20,"G":-10,"C":-10}},"\u00c9":{"d":"572,-16v0,9,-7,16,-15,16r-451,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,8,-16,16,-16r450,0v9,0,16,7,16,16r0,43v0,9,-7,16,-16,16r-381,0r0,240r367,0v9,0,15,7,15,16r0,44v0,9,-6,16,-15,16r-367,0r0,273r382,0v8,0,15,7,15,16r0,43xm440,-915v2,1,2,3,2,5v0,2,-1,5,-3,7r-136,99v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-30,-38v-1,-1,-2,-3,-2,-5v0,-3,1,-5,4,-7r134,-101v2,-1,4,-2,5,-2v3,0,6,1,8,4","w":627,"k":{"\u00d6":-5,"\u00d5":-5,"\u00d4":-5,"\u00d3":-5,"\u00d2":-5,"\u00c7":-10,"Z":-20,"X":-30,"S":-25,"O":-5,"M":-13,"J":-20,"G":-10,"C":-10}},"\u00ca":{"d":"572,-16v0,9,-7,16,-15,16r-451,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,8,-16,16,-16r450,0v9,0,16,7,16,16r0,43v0,9,-7,16,-16,16r-381,0r0,240r367,0v9,0,15,7,15,16r0,44v0,9,-6,16,-15,16r-367,0r0,273r382,0v8,0,15,7,15,16r0,43xm489,-844r-30,35v-2,2,-5,4,-7,4v-2,0,-4,-1,-5,-2r-112,-88r-112,88v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-29,-35v-2,-1,-2,-3,-2,-5v0,-3,1,-5,3,-7r136,-101r33,0r136,101v2,2,4,4,4,7v0,2,-1,4,-2,5","w":627,"k":{"\u00d6":-5,"\u00d5":-5,"\u00d4":-5,"\u00d3":-5,"\u00d2":-5,"\u00c7":-10,"Z":-20,"X":-30,"S":-25,"O":-5,"M":-13,"J":-20,"G":-10,"C":-10}},"\u00cb":{"d":"572,-16v0,9,-7,16,-15,16r-451,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,8,-16,16,-16r450,0v9,0,16,7,16,16r0,43v0,9,-7,16,-16,16r-381,0r0,240r367,0v9,0,15,7,15,16r0,44v0,9,-6,16,-15,16r-367,0r0,273r382,0v8,0,15,7,15,16r0,43xm294,-909r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10xm484,-909r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10","w":627,"k":{"\u00d6":-5,"\u00d5":-5,"\u00d4":-5,"\u00d3":-5,"\u00d2":-5,"\u00c7":-10,"Z":-20,"X":-30,"S":-25,"O":-5,"M":-13,"J":-20,"G":-10,"C":-10}},"\u00cc":{"d":"175,-16v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-713v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,723xm202,-844r-31,38v-2,2,-5,4,-8,4v-1,0,-3,-1,-5,-2r-135,-99v-3,-2,-4,-5,-4,-7v0,-2,1,-4,2,-5r31,-40v3,-3,5,-4,8,-4v2,0,3,1,5,2r135,101v2,2,3,4,3,7v0,2,0,4,-1,5","w":265},"\u00cd":{"d":"175,-16v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-713v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,723xm214,-915v2,1,2,3,2,5v0,2,-1,5,-3,7r-136,99v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-30,-38v-1,-1,-2,-3,-2,-5v0,-3,1,-5,4,-7r134,-101v2,-1,4,-2,5,-2v3,0,6,1,8,4","w":265},"\u00ce":{"d":"175,-16v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-713v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,723xm288,-844r-30,35v-2,2,-5,4,-7,4v-2,0,-4,-1,-5,-2r-112,-88r-112,88v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-29,-35v-2,-1,-2,-3,-2,-5v0,-3,1,-5,3,-7r136,-101r33,0r136,101v2,2,4,4,4,7v0,2,-1,4,-2,5","w":265},"\u00cf":{"d":"175,-16v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-713v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,723xm95,-909r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10xm285,-909r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10","w":265},"\u00d0":{"d":"728,-370v0,323,-125,370,-341,370r-266,0v-9,0,-16,-7,-16,-16r0,-321r-80,0v-9,0,-15,-9,-15,-18r0,-40v0,-9,6,-15,15,-15r80,0r0,-313v0,-9,7,-16,16,-16r266,0v216,0,341,47,341,369xm641,-372v0,-267,-87,-294,-266,-294r-185,0r0,256r263,0v9,0,15,6,15,15r0,40v0,9,-6,18,-15,18r-263,0r0,263r185,0v179,0,266,-31,266,-298","w":783,"k":{"Z":15}},"\u00d1":{"d":"737,-16v0,9,-7,16,-16,16r-121,0v-9,0,-15,-8,-19,-16r-370,-653r-36,0r0,653v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-707v0,-9,7,-16,16,-16r152,0v9,0,15,8,19,16r367,657r8,0r0,-660v0,-9,5,-13,13,-13r58,0v11,0,14,6,14,13r0,710xm596,-882v0,4,-2,6,-4,8v-18,15,-59,46,-97,46v-23,0,-44,-10,-64,-19v-23,-10,-42,-22,-62,-22v-25,0,-47,17,-67,33v-2,1,-6,3,-8,3v-4,0,-6,-3,-8,-6r-19,-36v-1,-1,-1,-4,-1,-6v0,-3,2,-6,4,-8v17,-14,59,-45,97,-45v23,0,44,9,64,18v23,11,42,22,62,22v25,0,47,-16,67,-32v2,-2,5,-4,8,-4v4,0,6,3,8,6r19,36v1,2,1,4,1,6","w":827},"\u00d2":{"d":"714,-370v0,222,-49,383,-329,383v-281,0,-330,-161,-330,-383v0,-221,49,-382,330,-382v280,0,329,161,329,382xm626,-370v0,-186,-20,-306,-242,-306v-222,0,-240,121,-240,307v0,186,18,306,240,306v222,0,242,-121,242,-307xm453,-844r-31,38v-2,2,-5,4,-8,4v-1,0,-3,-1,-5,-2r-135,-99v-3,-2,-4,-5,-4,-7v0,-2,1,-4,2,-5r31,-40v3,-3,5,-4,8,-4v2,0,3,1,5,2r135,101v2,2,3,4,3,7v0,2,0,4,-1,5","w":769,"k":{"\u00dd":15,"Y":15,"W":-10,"T":20}},"\u00d3":{"d":"714,-370v0,222,-49,383,-329,383v-281,0,-330,-161,-330,-383v0,-221,49,-382,330,-382v280,0,329,161,329,382xm626,-370v0,-186,-20,-306,-242,-306v-222,0,-240,121,-240,307v0,186,18,306,240,306v222,0,242,-121,242,-307xm470,-915v2,1,2,3,2,5v0,2,-1,5,-3,7r-136,99v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-30,-38v-1,-1,-2,-3,-2,-5v0,-3,1,-5,4,-7r134,-101v2,-1,4,-2,5,-2v3,0,6,1,8,4","w":769,"k":{"\u00dd":15,"Y":15,"W":-10,"T":20}},"\u00d4":{"d":"714,-370v0,222,-49,383,-329,383v-281,0,-330,-161,-330,-383v0,-221,49,-382,330,-382v280,0,329,161,329,382xm626,-370v0,-186,-20,-306,-242,-306v-222,0,-240,121,-240,307v0,186,18,306,240,306v222,0,242,-121,242,-307xm534,-844r-30,35v-2,2,-5,4,-7,4v-2,0,-4,-1,-5,-2r-112,-88r-112,88v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-29,-35v-2,-1,-2,-3,-2,-5v0,-3,1,-5,3,-7r136,-101r33,0r136,101v2,2,4,4,4,7v0,2,-1,4,-2,5","w":769,"k":{"\u00dd":15,"Y":15,"W":-10,"T":20}},"\u00d5":{"d":"714,-370v0,222,-49,383,-329,383v-281,0,-330,-161,-330,-383v0,-221,49,-382,330,-382v280,0,329,161,329,382xm626,-370v0,-186,-20,-306,-242,-306v-222,0,-240,121,-240,307v0,186,18,306,240,306v222,0,242,-121,242,-307xm539,-882v0,4,-2,6,-4,8v-18,15,-59,46,-97,46v-23,0,-44,-10,-64,-19v-23,-10,-42,-22,-62,-22v-25,0,-47,17,-67,33v-2,1,-6,3,-8,3v-4,0,-6,-3,-8,-6r-19,-36v-1,-1,-1,-4,-1,-6v0,-3,2,-6,4,-8v17,-14,59,-45,97,-45v23,0,44,9,64,18v23,11,42,22,62,22v25,0,47,-16,67,-32v2,-2,5,-4,8,-4v4,0,6,3,8,6r19,36v1,2,1,4,1,6","w":769,"k":{"\u00dd":15,"Y":15,"W":-10,"T":20}},"\u00d6":{"d":"714,-370v0,222,-49,383,-329,383v-281,0,-330,-161,-330,-383v0,-221,49,-382,330,-382v280,0,329,161,329,382xm626,-370v0,-186,-20,-306,-242,-306v-222,0,-240,121,-240,307v0,186,18,306,240,306v222,0,242,-121,242,-307xm529,-909r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10xm339,-909r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10","w":769,"k":{"\u00dd":15,"Y":15,"W":-10,"T":20}},"\u00d7":{"d":"516,-156v2,2,3,4,3,7v0,2,-1,5,-3,7r-41,40v-2,2,-5,3,-7,3v-3,0,-6,-1,-7,-2r-169,-174r-169,174v-1,1,-4,2,-7,2v-2,0,-5,-1,-7,-3r-41,-40v-2,-2,-3,-5,-3,-7v0,-3,1,-5,3,-7r175,-169r-175,-169v-2,-2,-3,-4,-3,-6v0,-3,1,-6,3,-8r41,-40v2,-2,5,-3,7,-3v3,0,6,1,7,2r169,174r169,-174v1,-1,4,-2,7,-2v2,0,5,1,7,3r41,40v2,2,3,5,3,8v0,2,-1,4,-3,6r-175,169","w":584,"k":{"7":68,"4":20,"3":70,"2":50,"1":20}},"\u00d8":{"d":"730,-719r-64,76v47,68,59,163,59,273v0,222,-49,383,-329,383v-109,0,-183,-24,-232,-67r-58,68v-2,2,-4,3,-7,3v-2,0,-4,-1,-6,-2r-37,-31v-2,-2,-4,-4,-4,-7v0,-1,1,-3,3,-6r65,-75v-43,-68,-54,-160,-54,-266v0,-221,49,-382,330,-382v102,0,174,22,224,60r59,-69v2,-3,4,-4,7,-4v2,0,4,1,6,2r37,31v3,3,4,5,4,7v0,2,-1,4,-3,6xm637,-370v0,-83,-4,-154,-29,-206r-392,461v36,33,92,52,179,52v222,0,242,-121,242,-307xm567,-630v-36,-30,-90,-46,-172,-46v-222,0,-240,121,-240,307v0,78,3,145,23,196","w":785},"\u00d9":{"d":"670,-271v0,145,-30,284,-295,284v-233,0,-295,-105,-295,-278r0,-464v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,481v0,124,37,195,210,195v141,0,210,-48,210,-177r0,-489v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,468xm436,-844r-31,38v-2,2,-5,4,-8,4v-1,0,-3,-1,-5,-2r-135,-99v-3,-2,-4,-5,-4,-7v0,-2,1,-4,2,-5r31,-40v3,-3,5,-4,8,-4v2,0,3,1,5,2r135,101v2,2,3,4,3,7v0,2,0,4,-1,5","w":750,"k":{"\u00dd":-10,"Y":-10,"V":-10}},"\u00da":{"d":"670,-271v0,145,-30,284,-295,284v-233,0,-295,-105,-295,-278r0,-464v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,481v0,124,37,195,210,195v141,0,210,-48,210,-177r0,-489v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,468xm470,-915v2,1,2,3,2,5v0,2,-1,5,-3,7r-136,99v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-30,-38v-1,-1,-2,-3,-2,-5v0,-3,1,-5,4,-7r134,-101v2,-1,4,-2,5,-2v3,0,6,1,8,4","w":750,"k":{"\u00dd":-10,"Y":-10,"V":-10}},"\u00db":{"d":"670,-271v0,145,-30,284,-295,284v-233,0,-295,-105,-295,-278r0,-464v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,481v0,124,37,195,210,195v141,0,210,-48,210,-177r0,-489v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,468xm525,-844r-30,35v-2,2,-5,4,-7,4v-2,0,-4,-1,-5,-2r-112,-88r-112,88v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-29,-35v-2,-1,-2,-3,-2,-5v0,-3,1,-5,3,-7r136,-101r33,0r136,101v2,2,4,4,4,7v0,2,-1,4,-2,5","w":750,"k":{"\u00dd":-10,"Y":-10,"V":-10}},"\u00dc":{"d":"670,-271v0,145,-30,284,-295,284v-233,0,-295,-105,-295,-278r0,-464v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,481v0,124,37,195,210,195v141,0,210,-48,210,-177r0,-489v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,468xm333,-909r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10xm523,-909r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10","w":750,"k":{"\u00dd":-10,"Y":-10,"V":-10}},"\u00dd":{"d":"623,-722r-273,416r0,290v0,9,-7,16,-16,16r-53,0v-8,0,-16,-7,-16,-16r0,-291r-270,-415v-1,-2,-2,-4,-2,-5v0,-6,6,-12,12,-12r69,0v7,0,12,3,16,9r221,350r218,-351v4,-6,8,-8,15,-8r70,0v5,0,11,6,11,12v0,1,-1,3,-2,5xm402,-915v1,1,1,3,1,5v0,2,-1,5,-3,7r-136,99v-1,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-30,-38v-1,-1,-2,-3,-2,-5v0,-3,1,-5,4,-7r134,-101v2,-1,4,-2,6,-2v2,0,5,1,7,4","w":618,"k":{"\u00ff":50,"\u00fd":50,"\u00fc":60,"\u00fb":60,"\u00fa":60,"\u00f9":60,"\u00f6":70,"\u00f5":70,"\u00f4":70,"\u00f3":70,"\u00f2":70,"\u00f1":60,"\u00ef":-30,"\u00eb":70,"\u00ea":70,"\u00e9":70,"\u00e8":70,"\u00e7":70,"\u00e4":70,"\u00e3":70,"\u00e2":70,"\u00e1":80,"\u00e0":80,"\u00dc":-10,"\u00db":-10,"\u00da":-10,"\u00d9":-10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"z":50,"y":50,"x":60,"w":60,"v":60,"u":60,"s":70,"r":60,"q":70,"p":70,"o":70,"n":60,"m":60,"g":80,"e":70,"d":70,"c":70,"a":80,"U":-10,"T":-15,"Q":10,"O":10,"G":10,"C":10,"A":50,";":60,":":60,".":150}},"\u00de":{"d":"653,-377v0,60,-9,124,-53,168v-53,52,-138,59,-211,59v-17,0,-33,0,-47,-1r-167,-2r0,137v0,9,-7,16,-16,16r-53,0v-9,0,-16,-7,-16,-16r0,-713v0,-8,5,-11,12,-13r60,-10r3,0v7,0,10,7,10,13r0,143r245,0v70,0,137,9,182,55v31,32,51,84,51,164xm566,-376v0,-56,-13,-91,-36,-113v-29,-28,-74,-33,-126,-33r-229,0r0,306r169,-6v82,-3,148,-3,187,-40v22,-22,35,-57,35,-114","w":694},"\u00df":{"d":"524,-171v0,121,-76,184,-194,184v-43,0,-90,-5,-130,-19v-4,-1,-8,-4,-8,-11v0,-1,1,-3,1,-5r7,-38v1,-5,7,-9,12,-9v1,0,2,1,3,1v14,3,61,15,106,15v66,0,122,-36,122,-107v0,-144,-164,-141,-164,-226v0,-79,115,-67,115,-185v0,-78,-49,-114,-123,-114v-81,0,-122,23,-122,110r0,759v0,8,-5,11,-12,13r-54,13r-3,0v-7,0,-10,-7,-10,-13r0,-772v0,-100,36,-177,198,-177v118,0,206,51,206,180v0,95,-49,129,-111,165v-8,4,-11,11,-11,17v0,7,4,13,12,17v57,28,160,63,160,202","w":567},"\u00e0":{"d":"486,-104v0,70,-14,86,-83,103v-29,6,-77,14,-130,14v-86,0,-229,-3,-229,-165v0,-134,74,-141,173,-157r189,-31r0,-47v0,-32,-1,-58,-36,-71v-19,-8,-47,-12,-91,-12v-77,0,-144,19,-185,29v-2,0,-4,1,-6,1v-4,0,-8,-2,-10,-8r-9,-45r0,-2v0,-8,7,-11,10,-12v32,-12,118,-31,209,-31v71,0,117,10,146,26v51,27,52,74,52,121r0,287xm407,-69r0,-208r-184,31v-48,9,-97,11,-97,90v0,100,82,107,148,107v44,0,91,-6,133,-20xm376,-637r-31,38v-2,2,-5,4,-8,4v-1,0,-3,-1,-5,-2r-135,-99v-3,-2,-4,-5,-4,-7v0,-2,1,-4,2,-5r31,-40v3,-3,5,-4,8,-4v2,0,3,1,5,2r135,101v2,2,3,4,3,7v0,2,0,4,-1,5","w":551,"k":{"z":5,"v":10,"f":-5}},"\u00e1":{"d":"486,-104v0,70,-14,86,-83,103v-29,6,-77,14,-130,14v-86,0,-229,-3,-229,-165v0,-134,74,-141,173,-157r189,-31r0,-47v0,-32,-1,-58,-36,-71v-19,-8,-47,-12,-91,-12v-77,0,-144,19,-185,29v-2,0,-4,1,-6,1v-4,0,-8,-2,-10,-8r-9,-45r0,-2v0,-8,7,-11,10,-12v32,-12,118,-31,209,-31v71,0,117,10,146,26v51,27,52,74,52,121r0,287xm407,-69r0,-208r-184,31v-48,9,-97,11,-97,90v0,100,82,107,148,107v44,0,91,-6,133,-20xm385,-708v2,1,2,3,2,5v0,2,-1,5,-3,7r-136,99v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-30,-38v-1,-1,-2,-3,-2,-5v0,-3,1,-5,4,-7r134,-101v2,-1,4,-2,5,-2v3,0,6,1,8,4","w":551,"k":{"z":5,"v":10,"f":-5}},"\u00e2":{"d":"486,-104v0,70,-14,86,-83,103v-29,6,-77,14,-130,14v-86,0,-229,-3,-229,-165v0,-134,74,-141,173,-157r189,-31r0,-47v0,-32,-1,-58,-36,-71v-19,-8,-47,-12,-91,-12v-77,0,-144,19,-185,29v-2,0,-4,1,-6,1v-4,0,-8,-2,-10,-8r-9,-45r0,-2v0,-8,7,-11,10,-12v32,-12,118,-31,209,-31v71,0,117,10,146,26v51,27,52,74,52,121r0,287xm407,-69r0,-208r-184,31v-48,9,-97,11,-97,90v0,100,82,107,148,107v44,0,91,-6,133,-20xm433,-637r-30,35v-2,2,-5,4,-7,4v-2,0,-4,-1,-5,-2r-112,-88r-112,88v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-29,-35v-2,-1,-2,-3,-2,-5v0,-3,1,-5,3,-7r136,-101r33,0r136,101v2,2,4,4,4,7v0,2,-1,4,-2,5","w":551,"k":{"z":5,"v":10,"f":-5}},"\u00e3":{"d":"486,-104v0,70,-14,86,-83,103v-29,6,-77,14,-130,14v-86,0,-229,-3,-229,-165v0,-134,74,-141,173,-157r189,-31r0,-47v0,-32,-1,-58,-36,-71v-19,-8,-47,-12,-91,-12v-77,0,-144,19,-185,29v-2,0,-4,1,-6,1v-4,0,-8,-2,-10,-8r-9,-45r0,-2v0,-8,7,-11,10,-12v32,-12,118,-31,209,-31v71,0,117,10,146,26v51,27,52,74,52,121r0,287xm407,-69r0,-208r-184,31v-48,9,-97,11,-97,90v0,100,82,107,148,107v44,0,91,-6,133,-20xm440,-672v0,3,-2,6,-4,8v-18,14,-59,45,-97,45v-23,0,-44,-9,-64,-18v-23,-11,-42,-22,-62,-22v-25,0,-47,17,-67,33v-2,1,-6,3,-8,3v-4,0,-6,-3,-8,-6r-19,-36v-1,-2,-1,-4,-1,-6v0,-4,2,-6,4,-8v17,-14,59,-45,97,-45v23,0,44,9,64,18v23,11,42,22,62,22v25,0,47,-17,67,-33v2,-1,5,-3,8,-3v4,0,6,3,8,6r19,36v1,1,1,4,1,6","w":551,"k":{"z":5,"v":10,"f":-5}},"\u00e4":{"d":"486,-104v0,70,-14,86,-83,103v-29,6,-77,14,-130,14v-86,0,-229,-3,-229,-165v0,-134,74,-141,173,-157r189,-31r0,-47v0,-32,-1,-58,-36,-71v-19,-8,-47,-12,-91,-12v-77,0,-144,19,-185,29v-2,0,-4,1,-6,1v-4,0,-8,-2,-10,-8r-9,-45r0,-2v0,-8,7,-11,10,-12v32,-12,118,-31,209,-31v71,0,117,10,146,26v51,27,52,74,52,121r0,287xm407,-69r0,-208r-184,31v-48,9,-97,11,-97,90v0,100,82,107,148,107v44,0,91,-6,133,-20xm434,-695r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10xm244,-695r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10","w":551,"k":{"z":5,"v":10,"f":-5}},"\u00e5":{"d":"486,-104v0,70,-14,86,-83,103v-29,6,-77,14,-130,14v-86,0,-229,-3,-229,-165v0,-134,74,-141,173,-157r189,-31r0,-47v0,-32,-1,-58,-36,-71v-19,-8,-47,-12,-91,-12v-77,0,-144,19,-185,29v-2,0,-4,1,-6,1v-4,0,-8,-2,-10,-8r-9,-45r0,-2v0,-8,7,-11,10,-12v32,-12,118,-31,209,-31v71,0,117,10,146,26v51,27,52,74,52,121r0,287xm407,-69r0,-208r-184,31v-48,9,-97,11,-97,90v0,100,82,107,148,107v44,0,91,-6,133,-20xm406,-684v0,79,-42,108,-117,108v-76,0,-118,-29,-118,-108v0,-79,42,-107,118,-107v75,0,117,28,117,107xm345,-684v0,-47,-11,-67,-56,-67v-46,0,-57,20,-57,68v0,47,11,67,57,67v45,0,56,-21,56,-68","w":551,"k":{"z":5,"v":10,"f":-5}},"\u00e6":{"d":"865,-263v0,14,0,31,-1,49v0,5,-7,13,-12,13r-365,0v1,55,11,76,32,102v29,37,78,48,147,48v63,0,98,-12,145,-25v2,-1,4,-2,6,-2v4,0,7,3,9,9r12,38r0,4v0,5,-4,8,-10,11v-41,16,-115,29,-181,29v-147,0,-187,-68,-203,-100v-24,44,-56,100,-190,100v-96,0,-210,-21,-210,-167v0,-113,63,-137,156,-155r208,-42v0,-88,-49,-119,-129,-119v-68,0,-172,25,-188,29r-2,0v-5,0,-10,-5,-12,-12r-7,-40r0,-3v0,-5,3,-9,9,-11v19,-9,118,-31,189,-31v69,0,164,13,187,97v31,-66,85,-97,188,-97v105,0,157,32,190,89v26,45,32,117,32,186xm781,-268v-1,-38,-2,-85,-12,-122v-17,-64,-54,-85,-134,-85v-122,0,-148,72,-148,208xm409,-202r0,-85r-172,36v-59,12,-111,24,-111,97v0,83,62,104,137,104v75,0,146,-23,146,-152","w":914,"k":{"\u00e6":7,"\u00e5":7,"a":7}},"\u00e7":{"d":"443,-31v0,2,1,3,1,5v0,9,-7,11,-10,13v-25,11,-95,26,-154,26v-187,0,-236,-88,-236,-275v0,-188,49,-276,236,-276v59,0,129,15,154,26v3,2,10,4,10,13v0,2,-1,4,-1,5r-7,34v-2,8,-5,12,-12,12v-1,0,-3,-1,-6,-1v-21,-6,-81,-24,-134,-24v-120,0,-158,51,-158,210v0,160,38,211,158,211v53,0,113,-16,134,-22v3,0,5,-1,6,-1v7,0,10,4,12,12xm378,118v0,61,-40,82,-96,82v-46,0,-66,-7,-72,-8v-4,-1,-6,-4,-6,-9r0,-1r3,-25v0,-5,3,-7,9,-7r1,0v7,0,24,5,48,5v22,0,43,-6,43,-36v0,-31,-21,-37,-43,-37v-24,0,-41,5,-48,5r-1,0v-6,1,-9,-2,-9,-6r-4,-26r0,-1v0,-5,2,-7,6,-8v6,-2,22,-9,77,-9v67,0,92,34,92,81","w":478,"k":{"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"z":-5,"j":-20,"a":5}},"\u00e8":{"d":"507,-273r0,49v-1,5,-8,13,-13,13r-367,0v0,55,10,86,31,112v29,37,78,48,148,48v62,0,100,-12,147,-25v2,-1,4,-2,6,-2v4,0,8,3,10,9r11,38r0,4v0,5,-4,8,-10,11v-40,16,-106,29,-172,29v-196,0,-254,-91,-254,-275v0,-169,34,-276,232,-276v105,0,166,32,199,89v26,45,32,107,32,176xm424,-278v-1,-38,-3,-75,-12,-112v-18,-64,-57,-85,-138,-85v-80,0,-119,21,-136,85v-10,37,-11,76,-12,113xm362,-637r-31,38v-2,2,-5,4,-8,4v-1,0,-3,-1,-5,-2r-135,-99v-3,-2,-4,-5,-4,-7v0,-2,1,-4,2,-5r31,-40v3,-3,5,-4,8,-4v2,0,3,1,5,2r135,101v2,2,3,4,3,7v0,2,0,4,-1,5","k":{"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"a":7}},"\u00e9":{"d":"507,-273r0,49v-1,5,-8,13,-13,13r-367,0v0,55,10,86,31,112v29,37,78,48,148,48v62,0,100,-12,147,-25v2,-1,4,-2,6,-2v4,0,8,3,10,9r11,38r0,4v0,5,-4,8,-10,11v-40,16,-106,29,-172,29v-196,0,-254,-91,-254,-275v0,-169,34,-276,232,-276v105,0,166,32,199,89v26,45,32,107,32,176xm424,-278v-1,-38,-3,-75,-12,-112v-18,-64,-57,-85,-138,-85v-80,0,-119,21,-136,85v-10,37,-11,76,-12,113xm383,-708v2,1,2,3,2,5v0,2,-1,5,-3,7r-136,99v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-30,-38v-1,-1,-2,-3,-2,-5v0,-3,1,-5,4,-7r134,-101v2,-1,4,-2,5,-2v3,0,6,1,8,4","k":{"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"a":7}},"\u00ea":{"d":"507,-273r0,49v-1,5,-8,13,-13,13r-367,0v0,55,10,86,31,112v29,37,78,48,148,48v62,0,100,-12,147,-25v2,-1,4,-2,6,-2v4,0,8,3,10,9r11,38r0,4v0,5,-4,8,-10,11v-40,16,-106,29,-172,29v-196,0,-254,-91,-254,-275v0,-169,34,-276,232,-276v105,0,166,32,199,89v26,45,32,107,32,176xm424,-278v-1,-38,-3,-75,-12,-112v-18,-64,-57,-85,-138,-85v-80,0,-119,21,-136,85v-10,37,-11,76,-12,113xm436,-637r-30,35v-2,2,-5,4,-7,4v-2,0,-4,-1,-5,-2r-112,-88r-112,88v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-29,-35v-2,-1,-2,-3,-2,-5v0,-3,1,-5,3,-7r136,-101r33,0r136,101v2,2,4,4,4,7v0,2,-1,4,-2,5","k":{"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"a":7}},"\u00eb":{"d":"507,-273r0,49v-1,5,-8,13,-13,13r-367,0v0,55,10,86,31,112v29,37,78,48,148,48v62,0,100,-12,147,-25v2,-1,4,-2,6,-2v4,0,8,3,10,9r11,38r0,4v0,5,-4,8,-10,11v-40,16,-106,29,-172,29v-196,0,-254,-91,-254,-275v0,-169,34,-276,232,-276v105,0,166,32,199,89v26,45,32,107,32,176xm424,-278v-1,-38,-3,-75,-12,-112v-18,-64,-57,-85,-138,-85v-80,0,-119,21,-136,85v-10,37,-11,76,-12,113xm433,-695r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10xm243,-695r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10","k":{"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"a":7}},"\u00ec":{"d":"164,-15v0,9,-6,15,-15,15r-49,0v-9,0,-15,-6,-15,-15r0,-495v0,-9,6,-15,15,-15r49,0v9,0,15,6,15,15r0,495xm205,-637r-30,38v-3,2,-5,4,-8,4v-2,0,-3,-1,-5,-2r-136,-99v-2,-2,-3,-5,-3,-7v0,-2,0,-4,2,-5r31,-40v3,-3,5,-4,8,-4v2,0,3,1,5,2r135,101v2,2,3,4,3,7v0,2,0,4,-2,5","w":249},"\u00ed":{"d":"164,-15v0,9,-6,15,-15,15r-49,0v-9,0,-15,-6,-15,-15r0,-495v0,-9,6,-15,15,-15r49,0v9,0,15,6,15,15r0,495xm205,-708v2,1,2,3,2,5v0,2,-1,5,-3,7r-136,99v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-30,-38v-2,-1,-2,-3,-2,-5v0,-3,1,-5,3,-7r135,-101v2,-1,3,-2,5,-2v3,0,5,1,8,4","w":249},"\u00ee":{"d":"163,-15v0,9,-5,15,-14,15r-50,0v-8,0,-15,-6,-15,-15r0,-495v0,-9,7,-15,15,-15r50,0v9,0,14,6,14,15r0,495xm276,-637r-30,35v-2,2,-5,4,-8,4v-1,0,-3,-1,-5,-2r-112,-88r-111,88v-2,1,-4,2,-5,2v-3,0,-6,-2,-8,-4r-30,-35v-1,-1,-1,-3,-1,-5v0,-3,1,-5,3,-7r136,-101r33,0r136,101v2,2,3,4,3,7v0,2,0,4,-1,5","w":249},"\u00ef":{"d":"166,-15v0,9,-6,15,-15,15r-49,0v-9,0,-15,-6,-15,-15r0,-495v0,-9,6,-15,15,-15r49,0v9,0,15,6,15,15r0,495xm88,-695r0,54v0,6,-4,10,-9,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,9,4,9,10xm278,-695r0,54v0,6,-4,10,-9,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,9,4,9,10","w":249},"\u00f0":{"d":"512,-292r0,11v0,112,-4,294,-233,294v-207,0,-235,-146,-235,-267v0,-86,5,-267,234,-267v57,0,102,20,135,47v-15,-113,-84,-182,-117,-203r-104,66v-2,1,-3,1,-5,1v-2,0,-5,-1,-6,-3r-27,-30v-2,-1,-2,-2,-2,-4v0,-3,2,-5,4,-7r87,-55v-61,-28,-143,-29,-169,-30v-14,-1,-20,-4,-20,-16r0,-34v0,-17,11,-18,16,-18v72,0,165,10,238,52r90,-57v1,-1,3,-2,4,-2v3,0,5,1,7,3r27,31v1,2,2,3,2,4v0,3,-3,7,-6,8r-73,46v97,75,153,209,153,430xm428,-253v0,-104,-14,-204,-150,-204v-135,0,-151,100,-151,204v0,103,16,202,151,202v136,0,150,-99,150,-202","k":{"\u00ff":10,"\u00fd":10,"y":10,"x":10,"v":10}},"\u00f1":{"d":"510,-15v0,9,-6,15,-15,15r-49,0v-9,0,-15,-6,-15,-15r0,-370v0,-66,-25,-89,-95,-89v-93,0,-187,28,-187,28r0,431v0,9,-5,15,-14,15r-50,0v-9,0,-15,-6,-15,-15r0,-415v0,-40,2,-58,52,-75v52,-18,152,-33,216,-33v119,0,172,37,172,144r0,379xm455,-672v0,3,-2,6,-4,8v-18,14,-59,45,-97,45v-23,0,-44,-9,-64,-18v-23,-11,-42,-22,-62,-22v-25,0,-47,17,-67,33v-2,1,-6,3,-8,3v-4,0,-6,-3,-8,-6r-19,-36v-1,-2,-1,-4,-1,-6v0,-4,2,-6,4,-8v17,-14,59,-45,97,-45v23,0,44,9,64,18v23,11,42,22,62,22v25,0,47,-17,67,-33v2,-1,5,-3,8,-3v4,0,6,3,8,6r19,36v1,1,1,4,1,6","w":575,"k":{"\u00eb":-5,"\u00ea":-5,"\u00e9":-5,"\u00e8":-5,"v":10,"s":-8,"q":-5,"f":-5,"e":-5,"d":-5,"c":-5}},"\u00f2":{"d":"512,-262v0,150,-24,275,-234,275v-209,0,-234,-125,-234,-275v0,-151,25,-276,234,-276v210,0,234,125,234,276xm429,-262v0,-127,-6,-212,-151,-212v-145,0,-151,85,-151,212v0,126,6,211,151,211v145,0,151,-85,151,-211xm364,-637r-31,38v-2,2,-5,4,-8,4v-1,0,-3,-1,-5,-2r-135,-99v-3,-2,-4,-5,-4,-7v0,-2,1,-4,2,-5r31,-40v3,-3,5,-4,8,-4v2,0,3,1,5,2r135,101v2,2,3,4,3,7v0,2,0,4,-1,5","k":{"\u00ff":10,"\u00fd":10,"\u00e7":-10,"y":10,"x":10,"q":-10,"e":-10,"d":-10,"c":-10}},"\u00f3":{"d":"512,-262v0,150,-24,275,-234,275v-209,0,-234,-125,-234,-275v0,-151,25,-276,234,-276v210,0,234,125,234,276xm429,-262v0,-127,-6,-212,-151,-212v-145,0,-151,85,-151,212v0,126,6,211,151,211v145,0,151,-85,151,-211xm379,-708v2,1,2,3,2,5v0,2,-1,5,-3,7r-136,99v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-30,-38v-1,-1,-2,-3,-2,-5v0,-3,1,-5,4,-7r134,-101v2,-1,4,-2,5,-2v3,0,6,1,8,4","k":{"\u00ff":10,"\u00fd":10,"\u00e7":-10,"y":10,"x":10,"q":-10,"e":-10,"d":-10,"c":-10}},"\u00f4":{"d":"512,-262v0,150,-24,275,-234,275v-209,0,-234,-125,-234,-275v0,-151,25,-276,234,-276v210,0,234,125,234,276xm429,-262v0,-127,-6,-212,-151,-212v-145,0,-151,85,-151,212v0,126,6,211,151,211v145,0,151,-85,151,-211xm433,-637r-30,35v-2,2,-5,4,-7,4v-2,0,-4,-1,-5,-2r-112,-88r-112,88v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-29,-35v-2,-1,-2,-3,-2,-5v0,-3,1,-5,3,-7r136,-101r33,0r136,101v2,2,4,4,4,7v0,2,-1,4,-2,5","k":{"\u00ff":10,"\u00fd":10,"y":10,"x":10}},"\u00f5":{"d":"512,-262v0,150,-24,275,-234,275v-209,0,-234,-125,-234,-275v0,-151,25,-276,234,-276v210,0,234,125,234,276xm429,-262v0,-127,-6,-212,-151,-212v-145,0,-151,85,-151,212v0,126,6,211,151,211v145,0,151,-85,151,-211xm443,-672v0,3,-2,6,-4,8v-18,14,-59,45,-97,45v-23,0,-44,-9,-64,-18v-23,-11,-42,-22,-62,-22v-25,0,-47,17,-67,33v-2,1,-6,3,-8,3v-4,0,-6,-3,-8,-6r-19,-36v-1,-2,-1,-4,-1,-6v0,-4,2,-6,4,-8v17,-14,59,-45,97,-45v23,0,44,9,64,18v23,11,42,22,62,22v25,0,47,-17,67,-33v2,-1,5,-3,8,-3v4,0,6,3,8,6r19,36v1,1,1,4,1,6","k":{"\u00ff":10,"\u00fd":10,"y":10,"x":10}},"\u00f6":{"d":"512,-262v0,150,-24,275,-234,275v-209,0,-234,-125,-234,-275v0,-151,25,-276,234,-276v210,0,234,125,234,276xm429,-262v0,-127,-6,-212,-151,-212v-145,0,-151,85,-151,212v0,126,6,211,151,211v145,0,151,-85,151,-211xm428,-695r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10xm238,-695r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10","k":{"\u00ff":10,"\u00fd":10,"\u00e7":-10,"y":10,"x":10,"q":-10,"e":-10,"d":-10,"c":-10}},"\u00f7":{"d":"534,-346r0,45v0,9,-6,15,-15,15r-454,0v-9,0,-15,-6,-15,-15r0,-45v0,-9,6,-15,15,-15r454,0v9,0,15,6,15,15xm344,-555r0,104v0,6,-4,10,-9,10r-86,0v-5,0,-9,-4,-9,-10r0,-104v0,-6,4,-10,9,-10r86,0v5,0,9,4,9,10xm344,-197r0,105v0,5,-4,9,-9,9r-86,0v-5,0,-9,-4,-9,-9r0,-105v0,-5,4,-10,9,-10r86,0v5,0,9,5,9,10","w":584,"k":{"7":60}},"\u00f8":{"d":"553,-521r-57,67v31,50,37,117,37,192v0,150,-24,275,-234,275v-76,0,-127,-16,-162,-44r-53,61v-1,2,-4,3,-6,3v-2,0,-4,0,-6,-2r-27,-24v-2,-2,-4,-4,-4,-6v0,-2,1,-4,3,-6r57,-67v-30,-50,-36,-117,-36,-190v0,-151,24,-276,234,-276v75,0,127,16,162,44r52,-62v2,-2,4,-3,7,-3v2,0,4,1,5,2r27,24v3,2,4,4,4,6v0,2,-1,4,-3,6xm450,-262v0,-49,-1,-92,-10,-126r-256,301v22,23,58,36,115,36v145,0,151,-85,151,-211xm413,-438v-22,-23,-58,-36,-114,-36v-145,0,-151,85,-151,212v0,48,1,90,10,123","w":597},"\u00f9":{"d":"505,-196v0,99,-14,209,-220,209v-176,0,-220,-75,-220,-207r0,-318v0,-8,5,-11,13,-13r54,-13r3,0v7,0,9,7,9,13r0,339v0,94,33,136,141,136v130,0,140,-64,140,-139r0,-323v0,-8,6,-11,13,-13r54,-13r3,0v7,0,10,7,10,13r0,329xm370,-637r-31,38v-2,2,-5,4,-8,4v-1,0,-3,-1,-5,-2r-135,-99v-3,-2,-4,-5,-4,-7v0,-2,1,-4,2,-5r31,-40v3,-3,5,-4,8,-4v2,0,3,1,5,2r135,101v2,2,3,4,3,7v0,2,0,4,-1,5","w":569,"k":{"f":-10}},"\u00fa":{"d":"505,-196v0,99,-14,209,-220,209v-176,0,-220,-75,-220,-207r0,-318v0,-8,5,-11,13,-13r54,-13r3,0v7,0,9,7,9,13r0,339v0,94,33,136,141,136v130,0,140,-64,140,-139r0,-323v0,-8,6,-11,13,-13r54,-13r3,0v7,0,10,7,10,13r0,329xm384,-708v2,1,2,3,2,5v0,2,-1,5,-3,7r-136,99v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-30,-38v-1,-1,-2,-3,-2,-5v0,-3,1,-5,4,-7r134,-101v2,-1,4,-2,5,-2v3,0,6,1,8,4","w":569,"k":{"f":-10}},"\u00fb":{"d":"505,-196v0,99,-14,209,-220,209v-176,0,-220,-75,-220,-207r0,-318v0,-8,5,-11,13,-13r54,-13r3,0v7,0,9,7,9,13r0,339v0,94,33,136,141,136v130,0,140,-64,140,-139r0,-323v0,-8,6,-11,13,-13r54,-13r3,0v7,0,10,7,10,13r0,329xm440,-637r-30,35v-2,2,-5,4,-7,4v-2,0,-4,-1,-5,-2r-112,-88r-112,88v-2,1,-3,2,-5,2v-3,0,-5,-2,-8,-4r-29,-35v-2,-1,-2,-3,-2,-5v0,-3,1,-5,3,-7r136,-101r33,0r136,101v2,2,4,4,4,7v0,2,-1,4,-2,5","w":569,"k":{"f":-10}},"\u00fc":{"d":"505,-196v0,99,-14,209,-220,209v-176,0,-220,-75,-220,-207r0,-318v0,-8,5,-11,13,-13r54,-13r3,0v7,0,9,7,9,13r0,339v0,94,33,136,141,136v130,0,140,-64,140,-139r0,-323v0,-8,6,-11,13,-13r54,-13r3,0v7,0,10,7,10,13r0,329xm246,-695r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10xm436,-695r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10","w":569,"k":{"f":-10}},"\u00fd":{"d":"491,-510r-185,587v-29,93,-59,133,-166,133v-32,0,-51,-1,-70,-4v-9,-2,-11,-7,-11,-11r0,-44v0,-5,5,-10,11,-10r1,0v10,0,38,1,58,1v51,0,80,-10,96,-66r23,-76r-41,0v-9,0,-17,-6,-20,-16r-167,-493v0,-2,-1,-3,-1,-4v0,-6,6,-12,12,-12r59,0v10,0,13,6,15,13r142,454r26,0r128,-454v1,-7,7,-13,16,-13r63,0v6,0,12,5,12,12v0,1,0,2,-1,3xm360,-708v2,2,2,3,2,5v0,3,-1,5,-3,7r-136,99v-2,1,-3,2,-5,2v-3,0,-5,-1,-8,-4r-30,-38v-1,-1,-2,-3,-2,-5v0,-2,1,-5,4,-7r134,-101v2,-1,4,-2,5,-2v3,0,6,2,8,4","w":503,"k":{"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"z":-10,"t":-20,"j":-20,"f":-30,"a":10,".":90,",":90}},"\u00fe":{"d":"525,-263v0,194,-53,276,-234,276v-60,0,-117,-9,-153,-19r11,59r0,131v0,8,-5,11,-12,13r-54,13r-3,0v-7,0,-10,-7,-10,-13r0,-923v0,-8,5,-11,12,-12r54,-14r3,0v7,0,10,7,10,13r0,174r-10,57v0,0,98,-30,173,-30v167,0,213,86,213,275xm443,-261v0,-161,-28,-212,-143,-212v-62,0,-151,24,-151,24r0,381v0,0,55,19,140,19v115,0,154,-54,154,-212","w":569},"\u00ff":{"d":"491,-510r-185,587v-29,93,-59,133,-166,133v-32,0,-51,-1,-70,-4v-9,-2,-11,-7,-11,-11r0,-44v0,-5,5,-10,11,-10r1,0v10,0,38,1,58,1v51,0,80,-10,96,-66r23,-76r-41,0v-9,0,-17,-6,-20,-16r-167,-493v0,-2,-1,-3,-1,-4v0,-6,6,-12,12,-12r59,0v10,0,13,6,15,13r142,454r26,0r128,-454v1,-7,7,-13,16,-13r63,0v6,0,12,5,12,12v0,1,0,2,-1,3xm215,-695r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10xm405,-695r0,54v0,6,-5,10,-10,10r-99,0v-5,0,-9,-4,-9,-10r0,-54v0,-6,4,-10,9,-10r99,0v5,0,10,4,10,10","w":503,"k":{"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"z":-10,"t":-20,"j":-20,"f":-30,"a":10,".":90,",":90}}}});

