var ajaxCart={overrideButtonsInThePage:function(){$('.ajax_add_to_cart_button').unbind('click').click(function(){var idProduct=$(this).attr('rel').replace('ajax_id_product_','');ajaxCart.add(idProduct,null,false,this);return false;});$('body#product #add_to_cart input').unbind('click').click(function(){ajaxCart.add($('#product_page_product_id').val(),$('#idCombination').val(),true,null,$('#quantity_wanted').val(),null);return false;});$('.ajax_cart_block_remove_link').unbind('click').click(function(){var customizationId=0;var productId=0;var productAttributeId=0;if($($(this).parent().parent()).attr('name')=='customization')
var customizableProductDiv=$($(this).parent().parent()).find("div[@id^=deleteCustomizableProduct_]");else
var customizableProductDiv=$($(this).parent()).find("div[@id^=deleteCustomizableProduct_]");if(customizableProductDiv&&$(customizableProductDiv).length)
{$(customizableProductDiv).each(function(){var ids=$(this).attr('id').split('_');if(typeof(ids[1])!='undefined')
{customizationId=parseInt(ids[1]);productId=parseInt(ids[2]);if(typeof(ids[3])!='undefined')
productAttributeId=parseInt(ids[3]);return false;}});}
if(!customizationId)
{var firstCut=$(this).parent().parent().attr('id').replace('cart_block_product_','');firstCut=firstCut.replace('deleteCustomizableProduct_','');ids=firstCut.split('_');productId=parseInt(ids[0]);if(typeof(ids[1])!='undefined')
productAttributeId=parseInt(ids[1]);}
ajaxCart.remove(productId,productAttributeId,customizationId);return false;});},expand:function(){if($('#cart_block #cart_block_list').hasClass('collapsed'))
{$('#cart_block #cart_block_summary').slideUp(200,function(){$(this).addClass('collapsed').removeClass('expanded');$('#cart_block #cart_block_list').slideDown({duration:600,complete:function(){$(this).addClass('expanded').removeClass('collapsed');}});});$('#cart_block h4 span#block_cart_expand').fadeOut('slow',function(){$('#cart_block h4 span#block_cart_collapse').fadeIn('fast');});$.ajax({type:'GET',url:baseDir+'modules/blockcart/blockcart-set-collapse.php',async:true,data:'ajax_blockcart_display=expand'+'&rand='+new Date().getTime()});}},refresh:function(){$.ajax({type:'GET',url:baseDir+'cart.php',async:true,cache:false,dataType:"json",data:'ajax=true&token='+static_token,success:function(jsonData)
{ajaxCart.updateCart(jsonData)},error:function(XMLHttpRequest,textStatus,errorThrown){}});},collapse:function(){if($('#cart_block #cart_block_list').hasClass('expanded'))
{$('#cart_block #cart_block_list').slideUp('slow',function(){$(this).addClass('collapsed').removeClass('expanded');$('#cart_block #cart_block_summary').slideDown(700,function(){$(this).addClass('expanded').removeClass('collapsed');});});$('#cart_block h4 span#block_cart_collapse').fadeOut('slow',function(){$('#cart_block h4 span#block_cart_expand').fadeIn('fast');});$.ajax({type:'GET',url:baseDir+'modules/blockcart/blockcart-set-collapse.php',async:true,data:'ajax_blockcart_display=collapse'+'&rand='+new Date().getTime()});}},add:function(idProduct,idCombination,addedFromProductPage,callerElement,quantity,whishlist){if(addedFromProductPage&&!checkCustomizations())
{alert(fieldRequired);return;}
if(addedFromProductPage)
{$('body#product #add_to_cart input').attr('disabled','disabled').addClass('disabled_big_btn');}
else
$('.ajax_add_to_cart_button').attr('disabled','disabled');$.ajax({type:'GET',url:baseDir+'cart.php',async:true,cache:false,dataType:"json",data:'add&ajax=true&qty='+((quantity&&quantity!=null)?quantity:'1')+'&id_product='+idProduct+'&token='+static_token+((parseInt(idCombination)&&idCombination!=null)?'&ipa='+parseInt(idCombination):''),success:function(jsonData)
{if(whishlist&&!jsonData.errors)
WishlistAddProductCart(whishlist[0],idProduct,idCombination,whishlist[1]);var elementToTransfert=null;if(callerElement&&callerElement!=null)
$(callerElement).parents().each(function(){if($(this).is('.ajax_block_product'))elementToTransfert=$(this);});else
elementToTransfert=$(addedFromProductPage?'div#image-block':('.ajax_block_product_id_'+idProduct));elementToTransfert.TransferTo({to:$('#cart_block').get(0),className:'transferProduct',duration:800,complete:function(){ajaxCart.updateCart(jsonData);if(addedFromProductPage)
$('body#product #add_to_cart input').removeAttr('disabled').removeClass('disabled_big_btn');else
$('.ajax_add_to_cart_button').removeAttr('disabled');}});},error:function(XMLHttpRequest,textStatus,errorThrown){alert("TECHNICAL ERROR: unable to add the product.\n\nDetails:\nError thrown: "+XMLHttpRequest+"\n"+'Text status: '+textStatus);if(addedFromProductPage)
$('body#product #add_to_cart input').removeAttr('disabled').addClass('exclusive').removeClass('exclusive_disabled');else
$('.ajax_add_to_cart_button').removeAttr('disabled');}});},remove:function(idProduct,idCombination,customizationId){$.ajax({type:'GET',url:baseDir+'cart.php',async:true,cache:false,dataType:"json",data:'delete'+'&id_product='+idProduct+'&ipa='+((idCombination!=null&&parseInt(idCombination))?idCombination:'')+((customizationId&&customizationId!=null)?'&id_customization='+customizationId:'')+'&token='+static_token+'&ajax=true',success:function(jsonData){ajaxCart.updateCart(jsonData)},error:function(){alert('ERROR: unable to delete the product');}});},hideOldProducts:function(jsonData){if($('#cart_block #cart_block_list dl.products').length>0)
{var removedProductId=null;var removedProductData=null;var removedProductDomId=null;$('#cart_block_list dl.products dt').each(function(){var domIdProduct=$(this).attr('id');var firstCut=domIdProduct.replace('cart_block_product_','');var ids=firstCut.split('_');var stayInTheCart=false;for(aProduct in jsonData.products)
{if(jsonData.products[aProduct]['id']==ids[0]&&(!ids[1]||jsonData.products[aProduct]['idCombination']==ids[1]))
{stayInTheCart=true;ajaxCart.hideOldProductCustomizations(jsonData.products[aProduct],domIdProduct);}}
if(!stayInTheCart)
{removedProductId=$(this).attr('id');}});if(removedProductId!=null)
{var firstCut=removedProductId.replace('cart_block_product_','');var ids=firstCut.split('_');$('#'+removedProductId).addClass('strike').fadeTo('slow',0,function(){$(this).slideUp('slow',function(){$(this).remove();if($('#cart_block dl.products dt').length==0)
{$('p#cart_block_no_products:hidden').slideDown('fast');$('div#cart_block dl.products').remove();}});});$('dd#cart_block_combination_of_'+ids[0]+(ids[1]?'_'+ids[1]:'')).fadeTo('fast',0,function(){$(this).slideUp('fast',function(){$(this).remove();});});}}},hideOldProductCustomizations:function(product,domIdProduct)
{var customizationList=$('#cart_block #cart_block_list ul#customization_'+product['id']+'_'+product['idCombination']);if(customizationList.length>0)
{$(customizationList).find("li").each(function(){$(this).find("div").each(function(){var customizationDiv=$(this).attr('id');var tmp=customizationDiv.replace('deleteCustomizableProduct_','');var ids=tmp.split('_');if((parseInt(product.idCombination)==parseInt(ids[2]))&&!ajaxCart.doesCustomizationStillExist(product,ids[0]))
$('#'+customizationDiv).parent().addClass('strike').fadeTo('slow',0,function(){$(this).slideUp('slow');$(this).remove();});;});});}
var removeLinks=$('#cart_block_product_'+domIdProduct).find('a.ajax_cart_block_remove_link');if(!product.hasCustomizedDatas&&!removeLinks.length)
$('#'+domIdProduct+' span.remove_link').html('<a class="ajax_cart_block_remove_link" href="'+baseDir+'cart.php?delete&amp;id_product='+product['id']+'&amp;ipa='+product['idCombination']+'&amp;token='+static_token+'" title="'+removingLinkText+'"> </a>');},doesCustomizationStillExist:function(product,customizationId)
{var exists=false;$(product.customizedDatas).each(function(){if(this.customizationId==customizationId)
{exists=true;return false;}});return(exists);},refreshVouchers:function(jsonData){$(jsonData.discounts).each(function(){if(this.id!=undefined&&$('#bloc_cart_voucher_'+this.id).length==1)
{$('#bloc_cart_voucher_'+this.id+' td.price').text(this.price);}});if(jsonData.discounts.length==0)
$('#vouchers').remove();},updateProductQuantity:function(product,quantity){$('dt#cart_block_product_'+product.id+(product.idCombination?'_'+product.idCombination:'')+' .quantity').fadeTo('fast',0,function(){$(this).text(quantity);$(this).fadeTo('fast',1,function(){$(this).fadeTo('fast',0,function(){$(this).fadeTo('fast',1,function(){$(this).fadeTo('fast',0,function(){$(this).fadeTo('fast',1);});});});});});},displayNewProducts:function(jsonData){$(jsonData.products).each(function(){if(this.id!=undefined)
{if($('div#cart_block dl.products').length==0)
$('p#cart_block_no_products:visible').fadeTo('fast',0,function(){$(this).slideUp('fast').fadeTo(0,1);}).before('<dl class="products"></dl>');var domIdProduct=this.id+(this.idCombination?'_'+this.idCombination:'');var domIdProductAttribute=this.id+'_'+(this.idCombination?this.idCombination:'0');if($('#cart_block dt#cart_block_product_'+domIdProduct).length==0)
{var productId=parseInt(this.id);var productAttributeId=(this.hasAttributes?parseInt(this.attributes):0);var content='<dt class="hidden" id="cart_block_product_'+domIdProduct+'">';content+='<span class="quantity-formated"><span class="quantity">'+this.quantity+'</span>x</span>';var name=(this.name.length>12?this.name.substring(0,10)+'...':this.name);content+='<a href="'+this.link+'" title="'+this.name+'">'+name+'</a>';content+='<span class="remove_link"><a class="ajax_cart_block_remove_link" href="'+baseDir+'cart.php?delete&amp;id_product='+productId+'&amp;token='+static_token+(this.hasAttributes?'&amp;ipa='+parseInt(this.idCombination):'')+'"> </a></span>';content+='<span class="price">'+this.priceByLine+'</span>';content+='</dt>';if(this.hasAttributes)
content+='<dd id="cart_block_combination_of_'+domIdProduct+'" class="hidden"><a href="'+this.link+'" title="'+this.name+'">'+this.attributes+'</a>';if(this.hasCustomizedDatas)
content+=ajaxCart.displayNewCustomizedDatas(this);if(this.hasAttributes)content+='</dd>';$('#cart_block dl.products').append(content);}
else{var jsonProduct=this;if($('dt#cart_block_product_'+domIdProduct+' .quantity').text()!=jsonProduct.quantity)
{$('dt#cart_block_product_'+domIdProduct+' .price').text(jsonProduct.priceByLine);ajaxCart.updateProductQuantity(jsonProduct,jsonProduct.quantity);if(jsonProduct.hasCustomizedDatas)
{customizationFormatedDatas=ajaxCart.displayNewCustomizedDatas(jsonProduct);if(!$('#cart_block ul#customization_'+domIdProductAttribute).length)
{if(jsonProduct.hasAttributes)
$('#cart_block dd#cart_block_combination_of_'+domIdProduct).append(customizationFormatedDatas);else
$('#cart_block dl.products').append(customizationFormatedDatas);}
else
$('#cart_block ul#customization_'+domIdProductAttribute).append(customizationFormatedDatas);}}}
$('#cart_block dl.products .hidden').slideDown('slow').removeClass('hidden');var removeLinks=$('#cart_block_product_'+domIdProduct).find('a.ajax_cart_block_remove_link');if(this.hasCustomizedDatas&&removeLinks.length)
$(removeLinks).each(function(){$(this).remove();});}});},displayNewCustomizedDatas:function(product)
{var content='';var productId=parseInt(product.id);var productAttributeId=typeof(product.idCombination)=='undefined'?0:parseInt(product.idCombination);var hasAlreadyCustomizations=$('#cart_block ul#customization_'+productId+'_'+productAttributeId).length;if(!hasAlreadyCustomizations)
{if(!product.hasAttributes)content+='<dd id="cart_block_combination_of_'+productId+'" class="hidden">';content+='<ul class="cart_block_customizations" id="customization_'+productId+'_'+productAttributeId+'">';}
$(product.customizedDatas).each(function(){var done=0;customizationId=parseInt(this.customizationId);productAttributeId=typeof(product.idCombination)=='undefined'?0:parseInt(product.idCombination);if($('#cart_block').find("div[@id^=deleteCustomizableProduct_"+customizationId+"_]").length)
return('');content+='<li name="customization"><div class="deleteCustomizableProduct" id="deleteCustomizableProduct_'+customizationId+'_'+productId+'_'+(productAttributeId?productAttributeId:'0')+'"><a class="ajax_cart_block_remove_link" href="'+baseDir+'cart.php?delete&amp;id_product='+productId+'&amp;ipa='+productAttributeId+'&amp;id_customization='+customizationId+'&amp;token='+static_token+'"> </a></div><span class="quantity-formated"><span class="quantity">'+parseInt(this.quantity)+'</span>x</span>';$(this.datas).each(function(){if(this['type']==CUSTOMIZE_TEXTFIELD)
{$(this.datas).each(function(){if(this['index']==0)
{content+=this.truncatedValue;done=1;return false;}})}});if(!done)
content+=customizationIdMessage+customizationId;if(!hasAlreadyCustomizations)content+='</li>';if(customizationId)
{$('#uploadable_files li div.customizationUploadBrowse img').remove();$('#text_fields li input').attr('value','');}});if(!hasAlreadyCustomizations)
{content+='</ul>';if(!product.hasAttributes)content+='</dd>';}
return(content);},updateCart:function(jsonData){if(jsonData.hasError)
{var errors='';for(error in jsonData.errors)
if(error!='indexOf')
errors+=jsonData.errors[error]+"\n";alert(errors);}
ajaxCart.expand();ajaxCart.updateCartEverywhere(jsonData);ajaxCart.hideOldProducts(jsonData);ajaxCart.displayNewProducts(jsonData);ajaxCart.refreshVouchers(jsonData);$('#cart_block dl.products dt').removeClass('first_item').removeClass('last_item').removeClass('item');$('#cart_block dl.products dt:first').addClass('first_item');$('#cart_block dl.products dt:not(:first,:last)').addClass('item');$('#cart_block dl.products dt:last').addClass('last_item');ajaxCart.overrideButtonsInThePage();},updateCartEverywhere:function(jsonData){$('.ajax_cart_total').text(''+jsonData.productTotal);$('.ajax_cart_shipping_cost').text(jsonData.shippingCost);$('.cart_block_wrapping_cost').text(jsonData.wrappingCost);$('.ajax_block_cart_total').text(jsonData.total);if(jsonData.nbTotalProducts>0)
{$('.ajax_cart_no_product:visible').hide();$('.ajax_cart_quantity').text(jsonData.nbTotalProducts);$('.ajax_cart_total:hidden').fadeIn('fast');if(jsonData.nbTotalProducts>1)
{$('.ajax_cart_product_txt:visible').hide();$('.ajax_cart_product_txt_s:hidden').show();}
else
{$('#show_cart_block').addClass('hidden');$('.ajax_cart_product_txt:hidden').fadeIn('fast');$('.ajax_cart_product_txt_s:visible').fadeOut('fast');}}
else
{$('.ajax_cart_product_txt_s:visible, .ajax_cart_product_txt:visible, .ajax_cart_total:visible').fadeOut('fast',function(){$('.ajax_cart_no_product:hidden').fadeIn('fast');});}}}
$(document).ready(function(){$('#block_cart_collapse').click(function(){ajaxCart.collapse();});$('#block_cart_expand').click(function(){ajaxCart.expand();});ajaxCart.overrideButtonsInThePage();ajaxCart.refresh();});;var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1989, 1995, 2001 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Trademark:
 * VAG Rounded
 * 
 * Full name:
 * VAGRoundedStd-Light
 * 
 * Designer:
 * Gerry Barney, David Bristow, Kit Cooper, Terence Griffin, Ian Hay
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":200,"face":{"font-family":"likeleaf","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 15 5 2 2 2 4 2 2 4","ascent":"277","descent":"-83","x-height":"2","cap-height":"2","bbox":"-10 -285 291.187 105","underline-thickness":"18","underline-position":"-18","stemh":"27","stemv":"32","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":90},"!":{"d":"37,-86r0,-156v0,-10,6,-16,16,-16v10,0,16,6,16,16r0,156v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17xm35,-16v0,-10,8,-19,18,-19v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":106},"\"":{"d":"86,-179v-26,-1,-15,-41,-15,-64v0,-9,5,-15,15,-15v25,2,14,41,14,64v0,9,-4,15,-14,15xm35,-179v-26,-1,-15,-41,-15,-64v0,-9,5,-15,15,-15v25,2,14,41,14,64v0,9,-4,15,-14,15","w":120},"#":{"d":"137,-78r-9,67v-1,8,-5,13,-14,13v-16,-2,-12,-13,-10,-27r7,-53r-43,0r-9,67v-1,8,-5,13,-14,13v-16,-2,-12,-13,-10,-27r7,-53v-16,0,-37,4,-37,-12v1,-17,24,-11,40,-12r8,-53v-16,0,-37,4,-37,-12v1,-17,24,-11,40,-12r9,-67v1,-8,5,-12,14,-12v16,2,12,13,10,27r-7,52r43,0r9,-67v1,-8,5,-12,14,-12v16,2,12,13,10,27r-7,52v16,0,37,-4,37,12v-1,17,-24,11,-40,12r-8,53v16,0,37,-4,37,12v-1,17,-24,11,-40,12xm114,-102r8,-53r-43,0r-8,53r43,0","w":192},"$":{"d":"78,-158r0,-73v-20,3,-34,16,-34,36v0,20,14,29,34,37xm78,-25r0,-100v-33,-11,-68,-23,-68,-68v0,-28,25,-61,68,-65v1,-11,-3,-25,8,-25v11,0,7,14,8,25v29,2,55,14,55,29v-10,29,-27,4,-55,-2r0,79v33,12,72,24,72,73v0,39,-26,74,-72,80v-1,11,4,26,-8,26v-11,0,-7,-14,-8,-25v-37,0,-70,-17,-70,-32v11,-36,31,7,70,5xm94,-120r0,93v24,-5,38,-24,38,-50v0,-24,-17,-35,-38,-43","w":173},"%":{"d":"70,-156v42,-2,43,-81,0,-83v-43,2,-42,81,0,83xm70,-137v-36,0,-55,-29,-55,-61v0,-32,19,-60,55,-60v36,0,55,28,55,60v0,32,-19,61,-55,61xm197,2v-36,0,-55,-29,-55,-61v0,-32,19,-61,55,-61v36,0,55,29,55,61v0,32,-19,61,-55,61xm197,-17v42,-2,43,-81,0,-83v-43,2,-42,81,0,83xm70,-5r101,-246v2,-15,25,-11,25,-1v-29,84,-69,164,-101,246v-3,15,-25,13,-25,1","w":266},"&":{"d":"114,-150r58,68v16,-20,28,-49,38,-48v7,0,13,4,13,11v0,10,-8,26,-34,57v12,17,31,30,38,51v0,14,-17,16,-25,7r-31,-35v-24,30,-52,41,-79,41v-42,0,-79,-27,-79,-74v0,-44,21,-62,57,-84v-14,-15,-28,-33,-28,-50v0,-38,27,-52,62,-52v30,0,57,19,57,45v0,33,-24,50,-47,63xm102,-233v-39,2,-34,43,-5,63v14,-8,34,-22,34,-38v0,-17,-15,-25,-29,-25xm45,-76v0,27,16,49,50,49v22,0,38,-9,58,-33r-65,-76v-33,19,-43,37,-43,60","w":240},"(":{"d":"73,-255v-25,65,-26,216,0,281v-4,16,-27,10,-29,-6v-28,-71,-27,-198,0,-269v1,-17,27,-22,29,-6","w":86},")":{"d":"14,26v25,-65,26,-216,0,-281v4,-16,26,-11,28,6v27,71,28,198,0,269v-1,17,-26,21,-28,6","w":86},"*":{"d":"54,-195v-12,-8,-39,-8,-40,-25v9,-26,29,-2,47,12v1,-20,-15,-50,9,-50v24,0,8,30,9,50v18,-14,37,-38,48,-12v-2,16,-29,17,-41,25v12,8,38,10,41,25v-10,25,-30,3,-48,-11v-1,20,14,47,-9,50v-23,-3,-8,-30,-9,-50v-14,10,-26,23,-35,23v-12,0,-18,-17,-4,-23","w":140},"+":{"d":"93,-106v5,-26,-13,-73,15,-76v28,3,10,50,15,76v26,5,73,-13,76,15v-3,28,-50,10,-76,15v-5,26,13,73,-15,76v-28,-3,-10,-50,-15,-76v-26,-5,-73,13,-76,-15v3,-28,50,-10,76,-15","w":216},",":{"d":"8,32v3,-20,18,-36,24,-53v5,-15,30,-20,31,0v-4,19,-18,36,-24,53v-5,14,-30,19,-31,0","w":90},"-":{"d":"100,-83r-74,0v-8,0,-13,-5,-13,-13v0,-8,5,-14,13,-14r74,0v8,0,14,6,14,14v0,8,-6,13,-14,13","w":126},".":{"d":"27,-16v0,-10,8,-19,18,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":90},"\/":{"d":"7,-11v30,-82,73,-157,104,-237v5,-13,29,-13,28,3v-30,81,-72,157,-103,236v-5,13,-29,15,-29,-2","w":146},"0":{"d":"12,-128v0,-82,37,-130,84,-130v47,0,85,48,85,130v0,82,-38,130,-85,130v-47,0,-84,-48,-84,-130xm46,-128v0,72,22,103,50,103v28,0,51,-31,51,-103v0,-72,-23,-103,-51,-103v-28,0,-50,31,-50,103","w":192},"1":{"d":"59,-15r0,-214v-19,-1,-47,6,-47,-14v0,-24,45,-13,69,-13v6,0,10,0,10,8r0,233v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17","w":126},"2":{"d":"66,-27r97,0v8,0,13,5,13,13v0,8,-5,14,-13,14r-124,0v-21,-3,-22,-13,-11,-27r89,-119v28,-28,24,-84,-22,-85v-31,0,-47,26,-47,58v0,11,-7,14,-14,14v-10,0,-16,-6,-16,-19v0,-42,29,-80,82,-80v65,0,91,63,52,116","w":192},"3":{"d":"171,-76v0,49,-35,78,-81,78v-53,0,-75,-40,-75,-59v0,-25,26,-22,31,-1v5,18,19,33,43,33v28,0,49,-22,49,-48v0,-38,-21,-48,-45,-48v-25,1,-27,-25,-3,-27v51,-5,45,-83,0,-83v-25,0,-35,18,-37,37v-2,25,-29,16,-29,0v0,-34,25,-64,67,-64v69,0,90,89,36,120v29,9,44,33,44,62","w":192},"4":{"d":"120,-66r-102,0v-21,-2,-15,-16,-6,-29r91,-149v11,-22,49,-20,49,12r0,139v14,-1,30,-1,30,13v0,14,-15,15,-30,14v-3,25,11,68,-16,68v-27,0,-13,-43,-16,-68xm44,-93r76,0r0,-132","w":192},"5":{"d":"82,-229r-10,70v50,-27,99,17,99,70v0,55,-31,91,-83,91v-42,0,-72,-27,-72,-42v0,-6,3,-14,11,-14v13,0,25,27,61,27v31,0,49,-26,49,-56v0,-30,-13,-54,-44,-54v-23,0,-35,10,-44,10v-17,0,-10,-16,-8,-31r13,-90v1,-6,4,-8,12,-8r89,0v8,0,14,5,14,13v-6,28,-59,9,-87,14","w":192},"6":{"d":"96,2v-45,0,-77,-37,-77,-88v0,-75,50,-132,89,-165v12,-10,25,-11,28,7v0,5,-4,9,-13,17v-19,17,-39,37,-54,71v53,-30,105,12,105,75v0,46,-33,83,-78,83xm50,-83v0,30,14,56,45,56v31,0,45,-26,45,-56v0,-34,-14,-55,-45,-55v-31,0,-45,25,-45,55","w":192},"7":{"d":"132,-228v-33,-4,-73,0,-108,-1v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13r130,0v21,0,18,14,10,29r-96,218v-7,15,-28,16,-31,-1v27,-76,65,-145,95,-218","w":180},"8":{"d":"31,-200v1,-78,130,-77,131,0v0,27,-10,43,-33,57v30,7,46,34,46,64v0,42,-29,81,-79,81v-85,0,-108,-124,-32,-145v-23,-14,-33,-30,-33,-57xm60,-194v0,22,13,38,36,38v23,0,36,-16,36,-38v0,-22,-13,-37,-36,-37v-23,0,-36,15,-36,37xm52,-77v0,33,20,52,44,52v24,0,45,-19,45,-52v0,-26,-15,-52,-45,-52v-30,0,-44,26,-44,52","w":192},"9":{"d":"97,-258v45,0,77,37,77,88v0,75,-50,132,-89,165v-12,11,-25,10,-28,-8v0,-5,4,-9,13,-17v19,-17,39,-37,54,-71v-52,30,-105,-11,-105,-74v0,-46,33,-83,78,-83xm143,-174v0,-30,-14,-55,-45,-55v-31,0,-45,25,-45,55v0,34,14,56,45,56v31,0,45,-26,45,-56","w":192},":":{"d":"27,-16v0,-10,8,-19,18,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm27,-137v0,-10,8,-19,18,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":90},";":{"d":"8,32v3,-20,18,-36,24,-53v5,-15,30,-20,31,0v-4,19,-18,36,-24,53v-5,14,-30,19,-31,0xm27,-137v0,-10,8,-19,18,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":90},"<":{"d":"54,-91r134,66v13,2,15,27,0,27v-56,-20,-105,-53,-158,-77v-18,-8,-17,-24,0,-33r140,-70v14,-8,29,-11,29,7v0,8,-6,11,-11,14","w":216},"=":{"d":"184,-114r-152,0v-9,0,-15,-5,-15,-15v0,-10,6,-14,15,-14r152,0v9,0,15,4,15,14v0,10,-6,15,-15,15xm184,-39r-152,0v-9,0,-15,-5,-15,-15v0,-10,6,-14,15,-14r152,0v9,0,15,4,15,14v0,10,-6,15,-15,15","w":216},">":{"d":"28,-25r134,-66r-134,-66v-13,-2,-15,-27,0,-27v56,20,105,52,158,76v17,9,18,25,0,33r-140,71v-14,8,-29,11,-29,-7v0,-8,6,-11,11,-14","w":216},"?":{"d":"93,-122v-1,21,7,53,-16,53v-24,0,-16,-35,-16,-57v0,-16,0,-19,25,-24v55,-12,38,-79,-8,-79v-19,0,-35,7,-42,30v-6,19,-30,12,-30,-5v0,-32,38,-54,71,-54v44,0,76,28,76,66v0,39,-24,62,-60,70xm59,-16v0,-10,8,-19,18,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":159},"@":{"d":"96,-111v0,19,13,33,29,33v36,0,49,-50,49,-70v0,-18,-9,-26,-27,-26v-35,0,-51,36,-51,63xm218,-191r-28,105v0,6,3,10,10,10v23,0,48,-34,48,-71v0,-56,-48,-88,-99,-88v-62,0,-109,48,-109,107v0,63,48,106,112,106v61,0,76,-39,96,-39v5,0,9,3,9,8v0,20,-59,55,-107,55v-76,0,-137,-57,-137,-130v0,-73,61,-130,136,-130v68,0,126,43,126,107v0,70,-57,100,-89,100v-15,1,-21,-9,-26,-21v-29,39,-96,17,-96,-36v0,-65,84,-132,124,-66v3,-11,5,-26,19,-25v6,0,11,2,11,8","w":288},"A":{"d":"51,-56v-11,19,-8,54,-32,58v-16,3,-15,-17,-11,-29r79,-212v5,-24,37,-24,46,0r84,228v0,17,-26,16,-31,1r-16,-46r-119,0xm160,-83r-50,-139r-50,139r100,0","w":220},"B":{"d":"53,-229r0,81v41,4,78,-4,78,-41v0,-37,-37,-44,-78,-40xm53,-122r0,95v50,4,98,-3,98,-48v0,-43,-48,-52,-98,-47xm21,-17r0,-222v0,-28,47,-15,73,-17v78,-5,89,97,33,117v29,6,56,28,56,64v0,40,-30,75,-84,75v-27,0,-78,12,-78,-17","w":193},"C":{"d":"45,-128v0,49,24,103,78,103v39,0,56,-23,69,-23v8,0,13,6,13,15v0,16,-37,35,-82,35v-74,0,-112,-63,-112,-130v0,-67,38,-130,114,-130v45,0,74,24,74,37v0,8,-5,15,-13,15v-14,0,-21,-25,-61,-25v-57,0,-80,54,-80,103","w":213},"D":{"d":"23,-17r0,-222v1,-30,52,-17,79,-17v76,0,114,58,114,126v0,77,-41,130,-110,130v-29,0,-83,13,-83,-17xm54,-229r0,202r46,0v60,0,82,-51,82,-103v0,-53,-24,-99,-84,-99r-44,0","w":226},"E":{"d":"53,-113r0,83r76,0v9,0,15,5,15,15v0,10,-6,15,-15,15r-91,0v-12,0,-17,-7,-17,-17r0,-222v0,-10,5,-17,17,-17r91,0v9,0,15,4,15,14v0,10,-6,15,-15,15r-76,0r0,84r69,0v9,0,16,5,16,15v0,29,-57,10,-85,15","w":159},"F":{"d":"53,-113r0,98v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-224v0,-10,5,-17,17,-17r90,0v9,0,15,4,15,14v0,10,-6,15,-15,15r-75,0r0,84v28,5,77,-13,82,15v-5,28,-54,10,-82,15","w":146,"k":{"A":13,",":33,".":33}},"G":{"d":"201,-117v-23,-3,-60,9,-60,-15v0,-26,44,-15,69,-15v16,0,23,6,23,26v0,62,-23,123,-110,123v-74,0,-112,-63,-112,-130v0,-67,37,-130,117,-130v53,0,88,27,88,41v0,8,-6,15,-15,15v-16,0,-29,-29,-75,-29v-58,0,-81,54,-81,103v0,49,22,103,82,103v55,0,78,-44,74,-92","w":240},"H":{"d":"53,-115r0,98v0,13,-6,19,-16,19v-10,0,-16,-6,-16,-19r0,-222v0,-13,6,-19,16,-19v10,0,16,6,16,19r0,97r135,0r0,-97v0,-13,5,-19,15,-19v10,0,16,6,16,19r0,222v0,13,-6,19,-16,19v-10,0,-15,-6,-15,-19r0,-98r-135,0","w":240},"I":{"d":"53,-242r0,227v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-227v0,-10,6,-16,16,-16v10,0,16,6,16,16","w":73},"J":{"d":"81,-62r0,-180v0,-10,5,-16,15,-16v10,0,16,6,16,16r0,177v0,41,-17,67,-62,67v-17,0,-53,-10,-53,-29v11,-29,25,2,56,2v22,0,28,-17,28,-37","w":133},"K":{"d":"53,-122r0,107v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-227v0,-10,6,-16,16,-16v10,0,16,6,16,16r0,94r109,-100v9,-11,30,-16,31,3v0,8,-2,12,-6,15r-105,94r115,111v11,10,6,27,-9,27v-5,0,-10,-1,-16,-7","w":206},"L":{"d":"53,-242r0,212v28,5,83,-14,83,15v0,10,-7,15,-16,15r-82,0v-12,0,-17,-7,-17,-17r0,-225v0,-10,6,-16,16,-16v10,0,16,6,16,16","w":140,"k":{"T":33,"V":33,"W":27,"y":20,"Y":40}},"M":{"d":"73,-217r-31,205v-1,20,-35,18,-32,-2r37,-220v3,-30,41,-32,48,-8r55,188r55,-188v7,-24,43,-22,48,8r37,220v0,10,-5,16,-15,16v-8,0,-16,-3,-17,-14r-30,-205r-62,206v-5,18,-27,18,-32,0","w":300},"N":{"d":"53,-15v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-225v1,-27,24,-21,37,-2r130,186r0,-186v0,-10,6,-16,16,-16v10,0,16,6,16,16r0,225v-1,27,-23,23,-37,3r-130,-187r0,186","w":240},"O":{"d":"45,-128v0,49,20,103,78,103v58,0,79,-54,79,-103v0,-49,-21,-103,-79,-103v-58,0,-78,54,-78,103xm11,-128v0,-67,39,-130,112,-130v73,0,113,63,113,130v0,67,-40,130,-113,130v-73,0,-112,-63,-112,-130","w":246},"P":{"d":"53,-96r0,81v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-224v1,-30,52,-17,79,-17v51,0,84,35,84,80v-1,63,-57,88,-131,80xm53,-229r0,106v53,5,100,-6,99,-53v0,-25,-14,-53,-54,-53r-45,0","w":186,"k":{"A":20,",":40,".":40}},"Q":{"d":"175,-46v-9,-10,-24,-17,-28,-32v8,-31,32,-3,43,8v27,-63,12,-161,-67,-161v-58,0,-78,54,-78,103v0,49,20,103,78,103v22,0,39,-8,52,-21xm246,-8v-12,31,-40,-7,-51,-18v-18,17,-42,28,-72,28v-73,0,-112,-63,-112,-130v0,-67,39,-130,112,-130v104,0,141,132,90,211v10,13,29,21,33,39","w":246},"R":{"d":"53,-112r0,97v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-224v0,-29,49,-17,75,-17v40,0,79,27,79,69v0,57,-35,75,-84,73r82,90v10,9,8,26,-8,26v-6,0,-11,-3,-15,-7xm53,-229r0,91v48,1,90,4,90,-47v0,-40,-44,-49,-90,-44","w":186},"S":{"d":"86,-258v32,0,63,12,63,29v-13,32,-26,-2,-64,-2v-23,0,-41,14,-41,36v0,57,122,30,122,116v0,42,-31,81,-87,81v-34,0,-71,-13,-71,-31v11,-38,30,4,71,4v33,0,53,-24,53,-52v0,-61,-122,-32,-122,-116v0,-30,28,-65,76,-65","w":173},"T":{"d":"64,-15r0,-212v-23,-3,-62,11,-63,-15v0,-10,6,-14,15,-14r128,0v9,0,15,4,15,14v-1,26,-40,11,-63,15r0,212v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17","w":159,"k":{"\u00f2":33,"\u00f6":33,"\u00e8":33,"\u00eb":33,"\u00e0":33,"\u00e4":33,"w":33,"y":33,"A":27,",":40,".":40,"-":40,"a":33,"\u00e1":33,"c":33,"e":33,"\u00e9":33,"i":18,"o":33,"\u00f3":33,"r":33,"s":33,"u":33,":":40,";":40}},"U":{"d":"21,-102r0,-140v0,-10,6,-16,16,-16v10,0,16,6,16,16r0,153v0,40,27,64,67,64v40,0,68,-24,68,-64r0,-153v0,-10,6,-16,16,-16v10,0,16,6,16,16r0,140v0,86,-56,104,-100,104v-44,0,-99,-18,-99,-104","w":240},"V":{"d":"165,-238v0,-20,31,-28,34,-8v-22,82,-58,152,-81,231v-6,21,-29,21,-36,0r-81,-231v5,-21,33,-11,34,8r65,187","k":{"\u00f6":13,"\u00e8":13,"\u00eb":13,"\u00e0":13,"\u00e4":13,"A":20,",":33,".":33,"-":13,"a":13,"\u00e1":13,"e":13,"\u00e9":13,"o":13,"\u00f3":13,"\u00f2":13,"r":6,"u":6,":":13,";":13}},"W":{"d":"74,-39r60,-207v4,-17,28,-17,32,0r60,207r34,-205v0,-19,34,-18,31,0r-40,225v-1,24,-39,32,-48,0r-53,-188r-53,188v-5,32,-43,24,-47,0r-41,-225v0,-19,29,-18,32,0","w":300,"k":{"\u00f6":6,"\u00e4":6,"A":13,",":20,".":20,"-":13,"a":6,"\u00e1":6,"\u00e0":6,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f3":6,"\u00f2":6,":":6,";":6}},"X":{"d":"107,-113r-74,105v-9,17,-27,12,-30,-3v23,-48,59,-83,86,-127v-23,-36,-53,-66,-72,-107v2,-15,20,-18,30,-3r60,87r60,-87v9,-16,28,-12,30,3v-18,41,-49,71,-72,107v28,43,63,79,86,127v-3,15,-20,18,-31,3","w":213},"Y":{"d":"74,-15r0,-105v-24,-43,-54,-79,-74,-126v2,-15,22,-16,31,-2r59,96r59,-96v15,-24,38,-4,26,16r-69,112r0,105v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17","w":180,"k":{"\u00f6":27,"v":6,"A":20,",":40,".":40,"-":27,"a":27,"\u00e1":27,"\u00e4":27,"\u00e0":27,"e":27,"\u00e9":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f3":27,"\u00f2":27,"u":13,":":20,";":20,"p":20,"q":27}},"Z":{"d":"15,-31r132,-198r-117,0v-9,0,-15,-5,-15,-14v0,-9,6,-13,15,-13r140,0v22,1,19,16,9,31r-132,198r129,0v9,0,16,4,16,13v0,9,-7,14,-16,14r-149,0v-22,0,-22,-16,-12,-31"},"[":{"d":"57,-231r0,233v26,-8,36,26,12,28v-20,2,-42,2,-42,-18r0,-253v-2,-20,23,-17,42,-17v8,0,14,5,14,13v0,13,-12,15,-26,14","w":86},"\\":{"d":"111,-9r-99,-220v-9,-15,-7,-29,9,-29v8,0,12,4,15,10r103,237v0,17,-26,16,-28,2","w":146},"]":{"d":"30,2r0,-233v-25,8,-36,-26,-12,-27v19,-1,41,-3,41,17r0,253v2,20,-21,19,-41,18v-8,0,-14,-6,-14,-14v0,-13,12,-15,26,-14","w":86},"^":{"d":"108,-227r-57,105v-7,20,-26,25,-31,6v19,-46,48,-84,69,-128v9,-18,28,-17,38,0r63,113v8,9,9,27,-7,27v-8,0,-11,-6,-18,-18","w":216},"_":{"d":"180,45r-180,0v-6,0,-10,-3,-10,-9v0,-6,4,-9,10,-9r180,0v6,0,10,3,10,9v0,6,-4,9,-10,9","w":180},"a":{"d":"179,-178r0,165v-1,21,-27,20,-29,0v-1,-4,2,-12,-1,-14v-46,66,-136,7,-136,-69v0,-51,30,-98,84,-98v23,-1,36,12,53,26v-6,-26,29,-38,29,-10xm44,-96v0,32,14,71,53,71v39,0,52,-39,52,-71v0,-32,-13,-70,-52,-70v-39,0,-53,38,-53,70"},"b":{"d":"51,-96v0,32,13,71,52,71v39,0,53,-39,53,-71v0,-32,-14,-70,-53,-70v-39,0,-52,38,-52,70xm22,-15r0,-246v0,-10,6,-17,16,-17v10,0,16,7,16,17r1,93v8,-12,26,-26,51,-26v52,0,82,47,82,98v0,51,-30,98,-82,98v-26,1,-41,-11,-52,-26v1,15,-3,26,-16,26v-10,0,-16,-7,-16,-17"},"c":{"d":"13,-96v0,-51,28,-98,86,-98v32,0,51,11,51,24v-6,26,-24,4,-51,4v-39,0,-55,38,-55,70v0,32,16,71,55,71v22,0,28,-11,38,-11v7,0,12,4,12,13v0,12,-17,25,-50,25v-58,0,-86,-47,-86,-98","w":159},"d":{"d":"149,-96v0,-32,-13,-70,-52,-70v-39,0,-53,38,-53,70v0,32,14,71,53,71v39,0,52,-39,52,-71xm162,2v-15,1,-15,-14,-17,-26v-9,17,-26,26,-51,26v-52,0,-81,-47,-81,-98v0,-51,29,-98,81,-98v26,-1,42,15,52,26r0,-93v0,-10,6,-17,16,-17v10,0,16,7,16,17r0,246v0,10,-6,17,-16,17"},"e":{"d":"160,-84r-119,0v0,33,21,59,57,59v42,0,52,-26,64,-26v6,0,12,5,12,14v0,15,-40,39,-77,39v-61,0,-88,-47,-88,-98v0,-52,32,-98,86,-98v52,0,83,48,83,94v0,11,-4,16,-18,16xm41,-107r105,0v0,-27,-16,-59,-51,-59v-39,0,-53,30,-54,59","w":187},"f":{"d":"63,-164r0,149v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-149v-28,9,-41,-26,-13,-28r13,0v-3,-48,0,-86,52,-86v8,0,18,5,18,14v0,22,-38,3,-38,26r0,46v16,0,35,-2,35,14v0,16,-19,14,-35,14","w":93},"g":{"d":"178,-178r0,164v0,57,-35,92,-87,92v-33,0,-73,-19,-73,-35v0,-6,3,-15,13,-15v14,0,29,22,63,22v46,0,56,-38,51,-75v-10,17,-26,27,-48,27v-54,0,-84,-47,-84,-98v0,-51,30,-98,84,-98v22,-1,39,13,49,24v-6,-26,32,-35,32,-8xm44,-96v0,32,14,71,53,71v39,0,52,-39,52,-71v0,-32,-13,-70,-52,-70v-39,0,-53,38,-53,70"},"h":{"d":"141,-15r0,-104v-1,-64,-88,-63,-88,0r0,104v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-246v0,-10,6,-17,16,-17v10,0,16,7,16,17r0,93v40,-46,120,-34,120,47r0,106v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17","w":193},"i":{"d":"53,-177r0,162v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-162v0,-10,6,-17,16,-17v10,0,16,7,16,17xm17,-239v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,19,-19,19v-11,0,-20,-8,-20,-19","w":73},"j":{"d":"53,-177r0,238v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-238v0,-10,6,-17,16,-17v10,0,16,7,16,17xm17,-239v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,19,-19,19v-11,0,-20,-8,-20,-19","w":73},"k":{"d":"21,-15r0,-246v0,-10,6,-17,16,-17v10,0,16,7,16,17r0,135v29,-21,53,-52,87,-68v15,1,17,19,5,28r-72,57r84,82v11,10,9,28,-6,29v-8,0,-11,-2,-19,-10r-79,-83r0,76v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17","w":166},"l":{"d":"53,-261r0,246v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-246v0,-10,6,-17,16,-17v10,0,16,7,16,17","w":73},"m":{"d":"134,-15v-6,-58,22,-151,-41,-151v-62,0,-40,94,-40,151v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-162v0,-10,6,-17,16,-17v13,0,17,10,16,24v8,-10,20,-24,49,-24v19,0,38,9,52,33v32,-51,124,-47,125,40r0,106v0,10,-5,17,-15,17v-10,0,-16,-7,-16,-17v-6,-58,22,-151,-41,-151v-63,0,-35,94,-41,151v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17","w":300},"n":{"d":"21,-15r0,-162v0,-10,6,-17,16,-17v13,0,17,11,16,26v40,-46,120,-34,120,47r0,106v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-104v-1,-64,-88,-63,-88,0r0,104v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17","w":193},"o":{"d":"13,-96v0,-51,30,-98,84,-98v54,0,84,47,84,98v0,51,-30,98,-84,98v-54,0,-84,-47,-84,-98xm44,-96v0,32,14,71,53,71v39,0,52,-39,52,-71v0,-32,-13,-70,-52,-70v-39,0,-53,38,-53,70","w":193},"p":{"d":"51,-96v0,32,13,71,52,71v39,0,53,-39,53,-71v0,-32,-14,-70,-53,-70v-39,0,-52,38,-52,70xm22,61r0,-238v0,-10,6,-17,16,-17v15,-1,15,15,17,27v9,-17,26,-27,51,-27v52,0,82,47,82,98v0,51,-30,98,-82,98v-26,1,-42,-15,-52,-26r0,85v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17"},"q":{"d":"149,-96v0,-32,-13,-70,-52,-70v-39,0,-53,38,-53,70v0,32,14,71,53,71v39,0,52,-39,52,-71xm13,-96v0,-51,29,-98,81,-98v26,-1,41,12,52,27v-8,-29,31,-37,32,-10r0,238v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r-1,-85v-8,12,-26,26,-51,26v-52,0,-81,-47,-81,-98"},"r":{"d":"21,-15r0,-162v0,-10,6,-17,16,-17v16,0,17,16,16,33v7,-15,25,-33,43,-33v11,0,18,8,18,17v0,9,-7,14,-20,17v-19,3,-41,17,-41,54r0,91v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17","w":113,"k":{"v":-6,"y":-6,",":20,".":20,"-":20}},"s":{"d":"17,-140v0,-35,33,-54,65,-54v26,0,63,14,63,34v0,7,-4,13,-14,13v-14,0,-19,-19,-49,-19v-18,0,-34,8,-34,24v0,33,102,30,102,85v0,40,-33,59,-69,59v-40,0,-72,-20,-72,-36v0,-9,6,-15,13,-15v14,0,25,24,60,24v23,0,37,-13,37,-26v0,-37,-102,-36,-102,-89","w":159},"t":{"d":"31,-192v2,-23,-8,-58,16,-58v24,0,14,36,16,58v27,-9,40,26,13,28r-13,0r0,149v0,10,-6,17,-16,17v-10,0,-16,-7,-16,-17r0,-149v-28,9,-41,-26,-13,-28r13,0","w":93},"u":{"d":"21,-74r0,-103v0,-10,6,-17,16,-17v10,0,16,7,16,17v5,59,-21,152,44,152v65,0,39,-93,44,-152v0,-10,6,-17,16,-17v10,0,16,7,16,17r0,103v0,56,-37,76,-76,76v-39,0,-76,-20,-76,-76","w":193},"v":{"d":"60,-12r-58,-167v-1,-20,26,-17,31,-2r44,132r44,-132v2,-16,31,-18,31,2r-59,167v-2,19,-27,17,-33,0","w":153,"k":{",":27,".":27}},"w":{"d":"56,-14r-53,-153v-3,-14,-4,-25,13,-27v7,0,13,3,17,17r42,130r40,-126v4,-14,7,-21,19,-21v12,0,14,7,18,21r41,126r41,-130v4,-25,31,-19,32,-3v-14,59,-38,110,-55,166v-6,22,-29,22,-36,0r-42,-130r-41,130v-6,22,-29,21,-36,0","w":267,"k":{",":25,".":25}},"x":{"d":"2,-12v15,-34,44,-60,63,-90v-17,-26,-42,-47,-55,-77v-2,-17,22,-19,27,-7r47,61r46,-61v5,-12,29,-10,27,7v-12,30,-38,51,-55,77v20,30,47,56,63,90v0,15,-21,19,-29,7r-52,-73r-53,73v-7,12,-29,8,-29,-7","w":167},"y":{"d":"64,-7r-58,-173v1,-17,25,-18,30,-2r45,132r43,-132v2,-16,29,-15,30,2r-85,246v-3,16,-29,16,-29,-2v0,-23,17,-49,24,-71","w":159,"k":{",":27,".":27}},"z":{"d":"50,-28v26,3,59,0,87,1v10,0,16,4,16,13v0,9,-6,14,-16,14r-114,0v-22,-2,-18,-14,-9,-27r91,-137r-78,0v-10,0,-16,-5,-16,-14v0,-9,6,-14,16,-14r106,0v21,2,19,15,9,28","w":159},"{":{"d":"78,30v-55,0,-51,-36,-51,-83v0,-25,0,-44,-17,-48v-21,-4,-19,-22,0,-27v47,-13,-26,-130,68,-130v10,0,14,3,14,10v1,19,-35,2,-35,28r0,57v1,41,-22,45,-33,49v13,1,33,9,33,48v0,28,-14,77,21,74v10,0,14,4,14,11v0,7,-4,11,-14,11","w":86},"|":{"d":"25,90r0,-360v0,-9,5,-15,15,-15v10,0,15,6,15,15r0,360v0,9,-5,15,-15,15v-10,0,-15,-6,-15,-15","w":79},"}":{"d":"9,-258v55,0,52,36,50,82v0,25,0,44,17,48v21,5,21,22,0,27v-47,12,26,131,-67,131v-10,0,-14,-4,-14,-11v-1,-19,35,-2,35,-28r0,-57v-1,-41,22,-45,33,-49v-13,-1,-33,-9,-33,-48v0,-28,14,-77,-21,-74v-10,0,-14,-4,-14,-11v0,-7,4,-10,14,-10","w":86},"~":{"d":"146,-65v-29,1,-52,-25,-75,-25v-15,0,-17,25,-35,25v-7,0,-13,-6,-13,-11v0,-21,25,-41,47,-41v29,-1,52,24,75,24v15,0,17,-24,35,-24v7,0,13,5,13,10v0,21,-25,42,-47,42","w":216},"'":{"d":"37,-179v-26,-1,-15,-41,-15,-64v0,-9,5,-15,15,-15v25,2,14,41,14,64v0,9,-4,15,-14,15","w":73},"`":{"d":"77,-234v-7,31,-49,1,-68,-5v-19,-6,-15,-23,1,-28v19,3,37,14,54,20v10,4,13,9,13,13","w":73},"\u00e1":{"d":"179,-178r0,165v-1,21,-27,20,-29,0v-1,-4,2,-12,-1,-14v-46,66,-136,7,-136,-69v0,-51,30,-98,84,-98v23,-1,36,12,53,26v-6,-26,29,-38,29,-10xm44,-96v0,32,14,71,53,71v39,0,52,-39,52,-71v0,-32,-13,-70,-52,-70v-39,0,-53,38,-53,70xm140,-252v-8,18,-45,26,-66,33v-17,-4,-21,-22,-1,-28v19,-5,59,-36,67,-5"},"\u00e4":{"d":"179,-178r0,165v-1,21,-27,20,-29,0v-1,-4,2,-12,-1,-14v-46,66,-136,7,-136,-69v0,-51,30,-98,84,-98v23,-1,36,12,53,26v-6,-26,29,-38,29,-10xm44,-96v0,32,14,71,53,71v39,0,52,-39,52,-71v0,-32,-13,-70,-52,-70v-39,0,-53,38,-53,70xm47,-237v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20xm114,-237v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20"},"\u00e0":{"d":"179,-178r0,165v-1,21,-27,20,-29,0v-1,-4,2,-12,-1,-14v-46,66,-136,7,-136,-69v0,-51,30,-98,84,-98v23,-1,36,12,53,26v-6,-26,29,-38,29,-10xm44,-96v0,32,14,71,53,71v39,0,52,-39,52,-71v0,-32,-13,-70,-52,-70v-39,0,-53,38,-53,70xm140,-234v-7,31,-48,1,-67,-5v-20,-7,-15,-23,1,-28v18,3,36,14,53,20v10,4,13,9,13,13"},"\u00e9":{"d":"160,-84r-119,0v0,33,21,59,57,59v42,0,52,-26,64,-26v6,0,12,5,12,14v0,15,-40,39,-77,39v-61,0,-88,-47,-88,-98v0,-52,32,-98,86,-98v52,0,83,48,83,94v0,11,-4,16,-18,16xm41,-107r105,0v0,-27,-16,-59,-51,-59v-39,0,-53,30,-54,59xm134,-252v-9,18,-45,26,-67,33v-16,-4,-20,-22,-1,-28v19,-6,60,-36,68,-5","w":187},"\u00eb":{"d":"160,-84r-119,0v0,33,21,59,57,59v42,0,52,-26,64,-26v6,0,12,5,12,14v0,15,-40,39,-77,39v-61,0,-88,-47,-88,-98v0,-52,32,-98,86,-98v52,0,83,48,83,94v0,11,-4,16,-18,16xm41,-107r105,0v0,-27,-16,-59,-51,-59v-39,0,-53,30,-54,59xm41,-237v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20xm108,-237v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20","w":187},"\u00e8":{"d":"160,-84r-119,0v0,33,21,59,57,59v42,0,52,-26,64,-26v6,0,12,5,12,14v0,15,-40,39,-77,39v-61,0,-88,-47,-88,-98v0,-52,32,-98,86,-98v52,0,83,48,83,94v0,11,-4,16,-18,16xm41,-107r105,0v0,-27,-16,-59,-51,-59v-39,0,-53,30,-54,59xm134,-234v-7,31,-49,1,-68,-5v-19,-6,-15,-23,1,-28v19,3,37,14,54,20v10,4,13,9,13,13","w":187},"\u00f3":{"d":"13,-96v0,-51,30,-98,84,-98v54,0,84,47,84,98v0,51,-30,98,-84,98v-54,0,-84,-47,-84,-98xm44,-96v0,32,14,71,53,71v39,0,52,-39,52,-71v0,-32,-13,-70,-52,-70v-39,0,-53,38,-53,70xm137,-252v-8,18,-45,26,-66,33v-16,-4,-22,-22,-2,-28v19,-6,60,-36,68,-5","w":193},"\u00f6":{"d":"13,-96v0,-51,30,-98,84,-98v54,0,84,47,84,98v0,51,-30,98,-84,98v-54,0,-84,-47,-84,-98xm44,-96v0,32,14,71,53,71v39,0,52,-39,52,-71v0,-32,-13,-70,-52,-70v-39,0,-53,38,-53,70xm44,-237v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20xm111,-237v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20","w":193},"\u00f2":{"d":"13,-96v0,-51,30,-98,84,-98v54,0,84,47,84,98v0,51,-30,98,-84,98v-54,0,-84,-47,-84,-98xm44,-96v0,32,14,71,53,71v39,0,52,-39,52,-71v0,-32,-13,-70,-52,-70v-39,0,-53,38,-53,70xm137,-234v-7,31,-49,1,-68,-5v-20,-6,-14,-24,2,-28v18,3,36,14,53,20v10,4,13,9,13,13","w":193},"\u20ac":{"d":"177,-243r0,31v-10,-9,-26,-18,-50,-18v-37,0,-57,26,-61,64r97,0r-8,25r-92,0r0,25r83,0r-8,25r-72,0v-1,67,74,79,111,48r0,31v-8,6,-26,14,-54,14v-48,0,-80,-29,-88,-93r-26,0r8,-25r15,0r0,-25r-23,0r8,-25r18,0v7,-55,33,-92,88,-92v26,0,45,8,54,15","w":192},"\u00a0":{"w":90}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1989, 1995, 2001 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Trademark:
 * VAG Rounded
 * 
 * Full name:
 * VAGRoundedStd-Bold
 * 
 * Designer:
 * Gerry Barney, David Bristow, Kit Cooper, Terence Griffin, Ian Hay
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":206,"face":{"font-family":"likeleaf","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 15 8 2 2 2 4 2 2 4","ascent":"277","descent":"-83","x-height":"4","cap-height":"2","bbox":"-10 -292 324.113 112","underline-thickness":"18","underline-position":"-18","stemh":"50","stemv":"52","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":96},"!":{"d":"34,-98r0,-138v0,-15,11,-25,26,-25v14,0,26,10,26,25r0,138v0,15,-12,25,-26,25v-15,0,-26,-10,-26,-25xm60,4v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28","w":120},"\"":{"d":"113,-156v-34,-1,-22,-51,-22,-83v0,-13,9,-22,22,-22v33,1,21,52,21,83v0,13,-8,22,-21,22xm47,-156v-33,-1,-21,-52,-21,-83v0,-13,8,-22,21,-22v34,1,22,51,22,83v0,13,-9,22,-22,22","w":159},"#":{"d":"53,-108r6,-41v-20,0,-48,4,-48,-17v0,-22,32,-16,53,-17v8,-24,-3,-75,26,-75v33,0,8,49,9,75r34,0v8,-24,-3,-75,26,-75v33,0,8,49,9,75v20,0,48,-4,48,17v0,22,-32,16,-53,17r-6,41v21,0,48,-4,48,18v0,22,-32,16,-53,17v-8,24,3,75,-26,75v-33,0,-8,-49,-9,-75r-34,0v-8,24,3,75,-26,75v-33,0,-8,-49,-9,-75v-20,0,-48,4,-48,-17v0,-23,31,-18,53,-18xm94,-149r-6,41r34,0r6,-41r-34,0","w":216},"$":{"d":"105,-102r0,53v29,-7,32,-47,0,-53xm85,-166r0,-41v-23,4,-27,36,0,41xm85,-48r0,-60v-34,-10,-77,-20,-77,-71v-1,-47,36,-74,77,-82v1,-12,-3,-27,10,-27v14,0,9,16,10,28v22,1,63,9,63,35v-1,35,-37,27,-63,17r0,48v35,10,81,23,81,81v1,49,-38,76,-81,83v-1,12,4,28,-10,28v-14,0,-9,-16,-10,-28v-29,-1,-78,-9,-78,-40v0,-42,46,-19,78,-12","w":193},"%":{"d":"67,-181v12,0,18,-9,18,-21v0,-12,-6,-22,-18,-22v-12,0,-19,10,-19,22v0,12,7,21,19,21xm67,-144v-32,0,-56,-27,-56,-58v0,-31,24,-59,56,-59v32,0,55,28,55,59v0,31,-23,58,-55,58xm193,4v-32,0,-55,-27,-55,-58v0,-31,23,-58,55,-58v32,0,56,27,56,58v0,31,-24,58,-56,58xm193,-32v12,0,19,-10,19,-22v0,-12,-7,-21,-19,-21v-12,0,-18,9,-18,21v0,12,6,22,18,22xm50,-13v35,-86,86,-156,123,-238v10,-21,37,-11,38,8v-36,84,-86,157,-124,238v-9,19,-36,11,-37,-8","w":259},"&":{"d":"144,-64r-53,-58v-37,12,-45,81,7,79v19,0,32,-8,46,-21xm143,-141r37,42v11,-12,23,-36,42,-33v37,5,11,54,-9,66v10,15,30,25,32,46v2,20,-29,32,-44,16r-25,-26v-46,55,-168,43,-167,-43v0,-36,24,-63,54,-79v-14,-14,-24,-28,-24,-48v0,-41,39,-61,76,-61v32,0,73,19,73,57v0,29,-22,51,-45,63xm139,-199v-2,-29,-46,-27,-46,-3v0,11,5,17,19,31v11,-5,27,-15,27,-28","w":253},"(":{"d":"85,-240v-31,82,-35,191,0,272v2,24,-33,31,-42,10v-38,-88,-39,-217,7,-298v12,-11,36,-2,35,16","w":86},")":{"d":"2,35v31,-82,34,-192,0,-273v-2,-25,33,-30,42,-9v38,88,39,217,-7,298v-13,10,-36,1,-35,-16","w":86},"*":{"d":"70,-258v21,0,19,21,15,39v16,-18,45,-21,45,6v0,14,-18,16,-29,22v11,5,29,8,29,22v0,26,-30,24,-45,6v4,18,6,40,-15,40v-21,0,-21,-21,-16,-40v-16,18,-44,21,-44,-6v0,-14,18,-17,29,-22v-11,-6,-29,-8,-29,-22v0,-27,29,-24,44,-6v-5,-19,-5,-39,16,-39","w":140},"+":{"d":"86,-113v2,-29,-10,-73,22,-73v32,0,20,44,22,73v29,2,73,-10,73,22v0,32,-44,20,-73,22v-2,29,10,73,-22,73v-32,0,-20,-44,-22,-73v-29,-2,-73,10,-73,-22v0,-32,44,-20,73,-22","w":216},",":{"d":"76,-32v-6,27,-24,45,-35,68v-11,22,-45,11,-45,-12v8,-26,23,-46,35,-68v12,-22,44,-11,45,12","w":96},"-":{"d":"11,-104v0,-38,62,-23,97,-23v27,0,28,45,0,45v-35,0,-97,14,-97,-22","w":140},".":{"d":"20,-24v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28","w":96},"\/":{"d":"3,-15v29,-80,67,-154,99,-232v3,-21,44,-16,42,6r-99,232v-5,19,-44,16,-42,-6","w":146},"0":{"d":"103,-45v37,0,40,-57,40,-83v0,-27,-3,-84,-40,-84v-37,0,-39,57,-39,84v0,26,2,83,39,83xm103,4v-73,0,-95,-73,-95,-132v0,-59,22,-133,95,-133v73,0,96,74,96,133v0,59,-23,132,-96,132"},"1":{"d":"55,-26r0,-181v-24,3,-46,-3,-46,-24v0,-33,44,-24,76,-25v15,0,24,11,24,25r0,205v0,18,-12,28,-27,28v-15,0,-27,-10,-27,-28","w":133},"2":{"d":"96,-48v36,4,92,-14,94,24v0,17,-11,24,-25,24r-121,0v-25,4,-34,-26,-20,-42v32,-34,63,-68,90,-108v17,-17,19,-60,-13,-61v-41,0,-21,58,-56,58v-17,0,-27,-12,-27,-26v0,-45,41,-82,85,-82v44,0,80,29,80,75v0,50,-56,99,-87,138"},"3":{"d":"98,-261v81,0,99,85,47,121v76,32,43,144,-47,144v-53,0,-86,-39,-86,-67v0,-14,14,-24,27,-24v24,0,19,42,60,42v19,0,33,-15,33,-34v0,-50,-61,-14,-61,-56v0,-38,51,-12,51,-52v0,-14,-10,-24,-26,-24v-34,0,-30,35,-54,35v-15,0,-23,-13,-23,-26v0,-28,39,-59,79,-59"},"4":{"d":"118,-57v-41,-4,-135,15,-107,-37r80,-146v18,-34,79,-28,79,25r0,111v18,-2,31,8,31,24v0,16,-13,25,-31,23v0,28,4,59,-26,59v-30,0,-26,-30,-26,-59xm118,-104r-1,-100r-49,100r50,0"},"5":{"d":"90,-207r-5,39v55,-17,101,22,101,73v0,60,-33,99,-95,99v-26,0,-79,-16,-79,-48v0,-13,11,-24,24,-24v14,0,32,23,56,23v45,1,54,-84,3,-84v-21,0,-24,12,-42,12v-20,0,-22,-13,-20,-29r9,-76v4,-28,11,-34,28,-34v39,0,109,-16,113,22v-6,50,-53,19,-93,27"},"6":{"d":"152,-234v-9,28,-48,50,-56,73v51,-20,98,28,98,76v0,47,-38,89,-91,89v-55,0,-90,-41,-90,-89v0,-60,58,-141,103,-173v16,-12,34,8,36,24xm103,-122v-21,0,-34,16,-34,37v0,20,12,37,34,37v21,0,35,-16,35,-37v0,-19,-12,-37,-35,-37"},"7":{"d":"31,-23v24,-67,64,-121,93,-184v-40,-5,-116,16,-119,-24v0,-13,7,-25,27,-25r130,0v29,5,29,27,18,49r-89,182v-10,20,-15,27,-31,27v-20,0,-29,-15,-29,-25","w":193},"8":{"d":"103,-117v-21,0,-32,16,-32,36v0,18,10,36,32,36v21,0,33,-18,33,-36v0,-23,-13,-36,-33,-36xm103,4v-83,0,-122,-111,-50,-144v-54,-35,-19,-129,50,-121v68,-6,107,84,51,121v24,12,38,34,38,62v0,50,-41,82,-89,82xm103,-213v-17,0,-26,12,-26,27v0,16,9,28,26,28v17,0,27,-12,27,-28v0,-15,-10,-27,-27,-27"},"9":{"d":"54,-22v9,-28,49,-50,57,-73v-53,18,-99,-27,-98,-76v0,-47,37,-90,90,-90v55,0,91,42,91,90v0,60,-61,139,-103,173v-17,8,-35,-7,-37,-24xm103,-134v21,0,35,-16,35,-37v0,-20,-13,-38,-35,-38v-21,0,-34,17,-34,38v0,19,11,37,34,37"},":":{"d":"20,-139v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28xm20,-24v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28","w":96},";":{"d":"31,-44v12,-22,44,-11,45,12v-6,27,-24,45,-35,68v-11,22,-45,11,-45,-12v8,-26,23,-46,35,-68xm20,-139v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28","w":96},"<":{"d":"71,-91r119,50v22,5,13,43,-4,41v-57,-18,-106,-51,-160,-71v-17,-6,-16,-35,0,-41v55,-20,102,-51,160,-70v17,-1,25,32,4,41","w":216},"=":{"d":"34,-153r148,0v13,0,21,9,21,22v0,13,-8,21,-21,21r-148,0v-13,0,-21,-8,-21,-21v0,-13,8,-22,21,-22xm34,-72r148,0v13,0,21,8,21,21v0,13,-8,22,-21,22r-148,0v-13,0,-21,-9,-21,-22v0,-13,8,-21,21,-21","w":216},">":{"d":"26,-41r119,-50r-119,-50v-22,-5,-13,-43,4,-41v57,17,106,50,160,70v16,6,17,38,0,41v-54,23,-102,52,-160,71v-17,1,-25,-32,-4,-41","w":216},"?":{"d":"53,-134v2,-28,58,-11,58,-50v0,-16,-15,-27,-30,-27v-30,0,-35,36,-58,36v-13,0,-22,-10,-22,-26v0,-38,48,-60,80,-60v46,0,86,29,86,77v0,40,-25,64,-62,73v2,22,-6,37,-26,38v-30,0,-29,-32,-26,-61xm79,4v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28","w":173},"@":{"d":"129,-91v38,3,52,-67,9,-69v-36,-1,-49,65,-9,69xm256,-47v-12,41,-72,52,-112,51v-73,0,-132,-59,-132,-132v0,-73,59,-133,132,-133v67,0,132,49,132,116v0,70,-74,91,-92,91v-19,1,-23,-10,-26,-18v-32,41,-91,4,-91,-45v0,-60,75,-111,113,-58v-1,-15,5,-22,21,-22v15,-1,18,9,15,22v-6,26,-14,48,-16,77v0,4,2,8,8,8v10,0,36,-16,36,-55v0,-51,-48,-83,-100,-83v-55,0,-100,45,-100,100v0,55,45,100,100,100v37,0,76,-16,99,-32v6,0,13,2,13,13","w":288},"A":{"d":"1,-23v20,-75,53,-136,75,-208v12,-38,64,-37,77,0r73,209v1,30,-43,30,-51,5r-11,-33r-100,0v-9,20,-8,52,-37,52v-14,0,-26,-11,-26,-25xm80,-100r68,0r-34,-104","w":226},"B":{"d":"16,-27r0,-202v0,-41,60,-23,98,-27v65,-6,94,92,34,116v29,7,55,29,55,62v0,80,-77,82,-158,78v-17,0,-29,-10,-29,-27xm70,-209r0,54v29,1,58,1,57,-28v-1,-28,-29,-27,-57,-26xm70,-107r0,59v36,0,77,6,77,-31v0,-30,-43,-30,-77,-28"},"C":{"d":"6,-128v0,-75,51,-133,124,-133v26,0,77,9,77,41v-9,41,-36,11,-77,11v-45,0,-68,38,-68,82v0,43,24,79,68,79v30,0,42,-15,57,-15v16,0,24,17,24,25v0,35,-54,42,-81,42v-73,0,-124,-57,-124,-132","w":219},"D":{"d":"16,-27r0,-202v0,-39,52,-27,88,-27v81,0,126,51,126,131v0,100,-75,125,-185,125v-12,0,-29,-6,-29,-27xm70,-207r0,157v66,8,104,-19,104,-77v0,-59,-36,-88,-104,-80","w":240},"E":{"d":"16,-27r0,-198v-1,-50,74,-31,118,-31v17,0,25,12,25,25v1,34,-56,22,-89,24r0,53v34,1,86,-9,86,25v0,33,-52,24,-86,25r0,54v35,3,93,-12,92,25v-2,42,-77,25,-118,25v-16,0,-28,-11,-28,-27","w":166},"F":{"d":"16,-26r0,-202v1,-46,77,-28,120,-28v16,0,25,12,25,25v0,35,-57,22,-91,24r0,53v32,1,82,-8,82,24v0,34,-49,26,-82,26v-4,39,15,106,-27,106v-15,0,-27,-10,-27,-28","w":159,"k":{"A":20,",":40,".":40}},"G":{"d":"129,-127v1,-37,52,-25,87,-25v23,0,31,12,31,35v0,69,-45,121,-117,121v-73,0,-124,-57,-124,-132v0,-75,51,-133,124,-133v54,0,99,26,99,51v0,15,-9,25,-22,25v-24,0,-30,-26,-77,-26v-45,0,-68,39,-68,83v0,44,22,83,68,83v28,0,61,-16,61,-57v-29,0,-63,5,-62,-25","w":253},"H":{"d":"16,-26r0,-204v0,-18,12,-28,27,-28v41,0,23,65,27,104r113,0v3,-39,-14,-104,27,-104v15,0,27,10,27,28r0,204v0,18,-12,28,-27,28v-42,0,-23,-67,-27,-106r-113,0v-4,39,15,106,-27,106v-15,0,-27,-10,-27,-28","w":253},"I":{"d":"16,-26r0,-204v0,-18,12,-28,27,-28v15,0,27,10,27,28r0,204v0,18,-12,28,-27,28v-15,0,-27,-10,-27,-28","w":86},"J":{"d":"132,-230r0,158v0,60,-38,76,-71,76v-25,0,-66,-10,-66,-41v0,-10,8,-22,20,-22v14,0,27,14,43,14v20,0,20,-19,20,-31r0,-154v0,-18,12,-28,27,-28v15,0,27,10,27,28","w":146},"K":{"d":"16,-24r0,-208v0,-15,11,-26,27,-26v42,0,23,66,27,104r89,-94v11,-16,49,-11,47,15v-13,39,-60,66,-85,96r83,87v23,15,18,54,-13,52v-10,0,-18,-6,-28,-17r-93,-101v-6,43,19,118,-27,118v-15,0,-27,-10,-27,-26","w":219},"L":{"d":"16,-30r0,-200v0,-18,12,-28,27,-28v15,0,27,10,27,28r0,180v35,1,93,-10,90,26v-3,40,-75,24,-116,24v-18,0,-28,-12,-28,-30","w":153,"k":{"T":40,"V":40,"W":27,"y":20,"Y":46}},"M":{"d":"9,-24r33,-207v2,-32,62,-34,72,-2r43,143r42,-143v5,-32,67,-30,72,2r34,207v0,16,-12,26,-26,26v-18,0,-25,-8,-28,-25r-22,-147r-44,151v-3,9,-9,21,-28,21v-19,0,-26,-12,-29,-21r-44,-151r-21,147v-3,17,-10,25,-28,25v-14,0,-29,-10,-26,-26","w":313},"N":{"d":"14,-26r0,-204v-1,-30,35,-36,50,-17r115,153r0,-136v0,-18,12,-28,27,-28v15,0,27,10,27,28r0,204v1,30,-35,35,-50,16r-115,-150r0,134v0,18,-12,28,-27,28v-15,0,-27,-10,-27,-28","w":246},"O":{"d":"130,-45v46,0,68,-39,68,-83v0,-44,-23,-83,-68,-83v-45,0,-68,39,-68,83v0,44,22,83,68,83xm130,4v-73,0,-124,-57,-124,-132v0,-75,51,-133,124,-133v72,0,124,60,124,133v0,75,-50,132,-124,132","w":259},"P":{"d":"16,-26r0,-202v-2,-40,55,-28,92,-28v53,0,92,35,92,86v0,68,-56,92,-130,85v-1,35,10,89,-27,87v-15,0,-27,-10,-27,-28xm70,-209r0,77v39,3,74,-2,74,-39v0,-37,-35,-41,-74,-38","w":200,"k":{"A":27,",":43,".":43}},"Q":{"d":"263,-5v-9,41,-55,12,-70,-7v-86,47,-187,-17,-187,-116v0,-75,51,-133,124,-133v104,0,158,133,100,216v11,12,31,20,33,40xm158,-101v14,0,21,13,31,19v23,-53,2,-130,-59,-129v-45,0,-68,39,-68,83v0,52,34,95,91,80v-22,-10,-29,-53,5,-53","w":259},"R":{"d":"16,-26r0,-202v-2,-40,54,-28,91,-28v55,0,90,24,90,81v0,40,-30,62,-67,68r62,66v17,16,2,43,-20,43v-6,0,-15,-2,-21,-9r-81,-97v-4,39,15,106,-27,106v-15,0,-27,-10,-27,-28xm70,-207r0,64v35,1,71,3,71,-32v0,-35,-36,-33,-71,-32","w":200,"k":{"T":6,"V":6,"W":6,"Y":13}},"S":{"d":"97,-261v20,0,71,8,71,36v-1,61,-102,-18,-102,40v0,37,120,13,120,106v0,51,-42,83,-92,83v-28,0,-87,-6,-87,-40v0,-45,50,-12,84,-12v24,0,37,-12,37,-30v0,-42,-120,-17,-120,-101v0,-50,41,-82,89,-82","w":193},"T":{"d":"59,-26r0,-181v-28,1,-63,4,-63,-24v0,-13,9,-25,24,-25r133,0v15,0,24,12,24,25v0,28,-36,25,-64,24r0,181v0,18,-12,28,-27,28v-15,0,-27,-10,-27,-28","w":172,"k":{"\u00f2":40,"\u00f6":40,"\u00e8":40,"\u00eb":40,"\u00e0":40,"\u00e4":40,"w":40,"y":40,"A":33,",":33,".":33,"c":40,"e":40,"\u00e9":40,"o":40,"\u00f3":40,"-":40,"a":40,"\u00e1":40,"r":33,"s":40,"u":33,":":33,";":33}},"U":{"d":"14,-102r0,-128v0,-18,12,-28,27,-28v15,0,27,10,27,28v0,75,-24,185,55,185v78,0,52,-110,56,-185v0,-18,12,-28,27,-28v15,0,27,10,27,28r0,128v0,60,-51,106,-110,106v-60,0,-109,-45,-109,-106","w":246},"V":{"d":"80,-19v-22,-73,-60,-137,-81,-214v0,-29,43,-33,52,-8r56,150r55,-150v8,-25,53,-21,53,8v-22,76,-60,141,-82,214v-8,26,-45,26,-53,0","w":213,"k":{"\u00f6":20,"\u00e8":20,"\u00eb":20,"\u00e0":20,"\u00e4":20,"y":6,"A":27,",":40,".":40,"e":20,"\u00e9":20,"o":20,"\u00f3":20,"\u00f2":20,"-":20,"a":20,"\u00e1":20,"r":13,"u":13,":":20,";":20}},"W":{"d":"50,-26r-47,-209v2,-32,48,-28,54,2r32,153r46,-157v7,-28,50,-27,57,0r47,157r31,-153v-1,-33,57,-31,54,-2v-9,74,-35,138,-47,209v-6,33,-60,36,-71,2r-43,-139r-42,139v-4,15,-17,26,-35,26v-20,0,-32,-13,-36,-28","w":326,"k":{"\u00f6":13,"\u00e4":20,"y":6,"A":20,",":27,".":27,"e":13,"\u00e9":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f3":13,"\u00f2":13,"-":6,"a":20,"\u00e1":20,"\u00e0":20,"r":13,"u":13,":":6,";":6,"i":4}},"X":{"d":"1,-23v18,-47,54,-74,78,-114r-58,-79v-14,-16,0,-46,21,-42v37,7,45,52,68,76v23,-24,32,-65,68,-76v22,-2,36,24,22,42r-59,79r72,96v13,15,4,43,-21,43v-10,0,-18,-4,-23,-12r-59,-82r-59,82v-11,21,-52,12,-50,-13","w":220},"Y":{"d":"96,2v-49,-5,-19,-78,-27,-122r-68,-96v-12,-17,-1,-43,21,-42v9,0,18,3,23,10r51,76r52,-76v19,-26,65,3,44,32r-69,96v-7,44,22,117,-27,122","w":192,"k":{"\u00f6":33,"v":20,"A":27,",":40,".":40,"e":33,"\u00e9":33,"\u00eb":33,"\u00e8":33,"o":33,"\u00f3":33,"\u00f2":33,"q":33,"-":36,"a":33,"\u00e1":33,"\u00e4":33,"\u00e0":33,"u":27,":":27,";":27,"i":6,"p":27}},"Z":{"d":"75,-48r105,0v15,0,26,9,26,24v0,14,-13,24,-26,24r-142,0v-29,1,-38,-28,-23,-47r116,-162r-95,0v-14,0,-25,-8,-25,-23v0,-14,11,-24,25,-24r132,0v33,0,36,30,22,49","w":213},"[":{"d":"16,30r0,-265v-1,-30,33,-27,62,-26v10,0,19,6,19,21v-1,22,-16,20,-36,20r0,234v20,-1,35,-1,36,21v0,29,-30,20,-55,20v-16,0,-26,-9,-26,-25","w":100},"\\":{"d":"44,-247r100,232v2,21,-39,26,-42,6r-99,-232v-2,-22,38,-27,41,-6","w":146},"]":{"d":"84,-235r0,265v1,30,-33,25,-62,25v-10,0,-19,-5,-19,-20v1,-22,16,-22,36,-21r0,-234v-20,0,-35,2,-36,-20v0,-30,30,-21,55,-21v16,0,26,10,26,26","w":100},"^":{"d":"108,-204r-45,83v-15,21,-50,-1,-32,-21r58,-106v9,-14,30,-14,38,0v21,40,45,77,63,120v1,17,-30,20,-37,7","w":216},"_":{"d":"180,45r-180,0v-6,0,-10,-3,-10,-9v0,-6,4,-9,10,-9r180,0v6,0,10,3,10,9v0,6,-4,9,-10,9","w":180},"a":{"d":"192,-160r0,128v0,13,0,34,-25,34v-15,0,-21,-8,-25,-22v-49,57,-135,5,-135,-75v0,-79,84,-135,135,-77v1,-13,12,-22,25,-22v25,0,25,21,25,34xm100,-148v-55,1,-55,104,0,105v54,-1,53,-104,0,-105"},"b":{"d":"15,-27r0,-221v0,-17,11,-29,26,-29v39,1,23,62,26,99v14,-12,31,-18,49,-18v112,2,108,201,-2,200v-18,0,-37,-7,-47,-23v-6,33,-52,25,-52,-8xm107,-148v-55,1,-53,103,0,105v55,-2,54,-102,0,-105"},"c":{"d":"163,-163v0,11,-7,25,-19,25v-13,0,-24,-10,-41,-10v-30,0,-44,26,-44,53v0,26,16,52,44,52v27,-7,60,-22,60,12v0,27,-44,35,-63,35v-56,0,-93,-45,-93,-99v0,-53,38,-101,93,-101v21,0,63,8,63,33","w":166},"d":{"d":"192,-248r0,221v3,33,-47,40,-52,8v-48,59,-133,-5,-133,-74v0,-50,28,-103,84,-103v18,0,35,6,49,18v3,-38,-13,-98,26,-99v15,0,26,12,26,29xm99,-43v54,-2,56,-104,0,-105v-53,3,-54,103,0,105"},"e":{"d":"167,-78r-110,0v4,26,24,37,48,37v27,0,45,-21,59,-21v11,0,21,11,21,22v0,22,-45,44,-84,44v-58,0,-97,-42,-97,-99v0,-53,37,-101,92,-101v56,0,94,51,94,94v0,15,-7,24,-23,24xm55,-113r83,0v-3,-23,-18,-40,-42,-40v-23,0,-38,18,-41,40","w":193},"f":{"d":"27,-27r0,-119v-20,2,-35,-4,-35,-23v0,-17,15,-26,35,-23v-5,-49,12,-87,54,-85v18,0,36,5,36,23v1,38,-50,1,-39,62v23,-1,43,-1,43,23v0,23,-20,24,-43,23r0,119v0,17,-10,29,-25,29v-15,0,-26,-12,-26,-29","w":106,"k":{"f":6}},"g":{"d":"192,-165r0,150v0,62,-41,93,-100,93v-21,0,-82,-10,-82,-38v11,-42,45,-9,86,-7v28,1,50,-22,43,-53v-11,16,-28,24,-52,24v-54,0,-80,-48,-80,-99v0,-72,84,-138,133,-77v5,-34,52,-26,52,7xm99,-43v56,-1,54,-103,0,-105v-54,1,-53,106,0,105"},"h":{"d":"15,-27r0,-221v0,-17,11,-29,26,-29v39,1,23,62,26,99v42,-39,124,-12,118,52v-4,45,19,123,-26,128v-62,-5,16,-155,-59,-155v-51,0,-33,78,-33,126v0,17,-11,29,-26,29v-15,0,-26,-12,-26,-29","w":200},"i":{"d":"14,-27r0,-138v0,-17,11,-29,26,-29v15,0,26,12,26,29r0,138v0,17,-11,29,-26,29v-15,0,-26,-12,-26,-29xm40,-271v15,0,29,13,29,28v0,16,-13,30,-29,30v-15,0,-29,-14,-29,-30v0,-15,14,-28,29,-28","w":79},"j":{"d":"14,50r0,-215v0,-17,11,-29,26,-29v15,0,26,12,26,29r0,215v0,17,-11,28,-26,28v-15,0,-26,-11,-26,-28xm40,-271v15,0,29,13,29,28v0,16,-13,30,-29,30v-15,0,-29,-14,-29,-30v0,-15,14,-28,29,-28","w":79},"k":{"d":"15,-27r0,-221v0,-17,11,-29,26,-29v15,0,26,12,26,29r0,121v26,-21,44,-58,80,-67v22,1,29,29,12,44r-46,41r61,72v14,15,3,42,-18,41v-9,0,-17,-6,-25,-16r-64,-78v-2,36,11,92,-26,92v-15,0,-26,-12,-26,-29","w":180},"l":{"d":"14,-27r0,-221v0,-17,11,-29,26,-29v15,0,26,12,26,29r0,221v0,17,-11,29,-26,29v-15,0,-26,-12,-26,-29","w":79},"m":{"d":"15,-27r0,-138v-3,-32,46,-40,49,-9v27,-31,78,-29,102,4v39,-48,132,-27,126,44v-4,45,19,128,-26,128v-63,0,14,-155,-56,-155v-48,0,-31,79,-31,126v0,17,-11,29,-26,29v-63,-4,13,-144,-56,-155v-49,3,-30,80,-30,126v0,17,-11,29,-26,29v-15,0,-26,-12,-26,-29","w":306},"n":{"d":"15,-27r0,-138v-3,-32,45,-40,49,-10v34,-43,129,-17,121,49v-6,45,19,123,-26,128v-62,-5,16,-155,-59,-155v-51,0,-33,78,-33,126v0,17,-11,29,-26,29v-15,0,-26,-12,-26,-29","w":200},"o":{"d":"100,-196v55,0,93,48,93,101v0,54,-37,99,-93,99v-56,0,-93,-45,-93,-99v0,-53,38,-101,93,-101xm100,-148v-55,1,-55,104,0,105v55,-1,55,-103,0,-105","w":200},"p":{"d":"15,50r0,-215v-2,-34,48,-39,52,-7v10,-16,30,-24,49,-24v112,2,108,201,-2,200v-16,0,-33,-6,-47,-18v-2,36,12,92,-26,92v-15,0,-26,-11,-26,-28xm107,-148v-55,1,-53,103,0,105v55,-2,54,-102,0,-105"},"q":{"d":"192,-165r0,215v0,17,-11,28,-26,28v-37,0,-24,-56,-26,-92v-57,49,-133,-11,-133,-79v0,-50,28,-103,84,-103v19,0,39,8,49,24v5,-34,52,-26,52,7xm99,-43v54,-2,56,-104,0,-105v-53,3,-54,103,0,105"},"r":{"d":"128,-166v-4,32,-62,20,-62,60v0,40,15,106,-26,108v-15,0,-26,-12,-26,-29r0,-141v-1,-31,52,-38,52,-4v15,-24,58,-36,62,6","w":119,"k":{",":29,".":29,"c":6,"d":6,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"m":-6,"n":-6,"o":6,"\u00f3":6,"\u00f6":6,"\u00f2":6,"q":6,"-":20}},"s":{"d":"145,-158v0,39,-39,8,-68,8v-9,0,-17,4,-17,14v0,24,90,20,90,79v0,35,-29,61,-74,61v-29,0,-72,-17,-72,-40v0,-8,8,-23,22,-23v20,0,30,18,54,18v16,0,20,-5,20,-15v0,-24,-90,-20,-90,-79v0,-36,29,-61,70,-61v26,0,65,12,65,38","w":153},"t":{"d":"27,-27r0,-119v-20,2,-34,-5,-34,-23v0,-17,14,-25,34,-23v-2,-29,-1,-59,26,-59v26,0,28,30,26,59v22,-1,40,0,40,23v0,22,-18,24,-40,23r0,119v0,17,-11,29,-26,29v-15,0,-26,-12,-26,-29","w":106},"u":{"d":"15,-71v0,-44,-18,-123,26,-123v63,0,-15,151,59,155v50,3,34,-79,34,-126v0,-17,10,-29,25,-29v44,0,26,80,26,123v0,46,-30,75,-85,75v-55,0,-85,-29,-85,-75","w":200},"v":{"d":"55,-19v-18,-50,-41,-95,-55,-149v-2,-32,47,-32,50,-7r34,102r33,-102v4,-28,51,-24,50,7v-15,52,-38,99,-56,149v-5,13,-10,21,-28,21v-18,0,-23,-8,-28,-21","w":166,"k":{",":20,".":20}},"w":{"d":"52,-24v-13,-50,-49,-94,-49,-149v0,-28,48,-26,50,0r31,99r30,-97v4,-30,43,-29,52,0r31,97r30,-99v4,-29,53,-27,51,5v-13,50,-37,95,-50,144v-8,31,-51,34,-61,2r-27,-83r-27,83v-7,33,-53,29,-61,-2","w":280,"k":{",":13,".":13}},"x":{"d":"0,-23v7,-35,42,-50,60,-77v-17,-23,-42,-38,-52,-68v0,-23,31,-35,46,-16r36,46v18,-18,27,-49,55,-56v21,0,34,26,19,44r-44,50v19,26,52,42,60,77v5,25,-38,33,-47,14r-43,-53r-43,53v-9,19,-52,11,-47,-14","w":180},"y":{"d":"59,-15r-60,-156v2,-28,42,-30,51,-4r35,97r38,-97v6,-26,49,-24,51,4v-25,81,-61,151,-89,229v-4,27,-55,24,-52,-2v3,-28,18,-47,26,-71","w":173,"k":{",":27,".":27}},"z":{"d":"4,-18v22,-50,59,-84,86,-128v-33,-3,-83,12,-84,-23v0,-14,11,-23,24,-23r118,0v11,-4,25,23,11,32r-82,115v34,4,90,-14,92,22v0,14,-10,23,-23,23r-121,0v-12,0,-21,-6,-21,-18","w":173},"{":{"d":"101,55v-81,0,-73,-52,-70,-117v2,-39,-36,-12,-35,-41v0,-28,35,-2,35,-41v0,-54,-11,-117,48,-117v19,0,38,-3,38,17v0,29,-41,1,-41,37r0,68v1,34,-28,33,-39,37v13,1,39,3,39,36v0,32,-18,89,25,89v9,0,16,5,16,16v0,11,-7,16,-16,16","w":119},"|":{"d":"18,90r0,-360v0,-13,9,-22,22,-22v13,0,22,9,22,22r0,360v0,13,-9,22,-22,22v-13,0,-22,-9,-22,-22","w":79},"}":{"d":"19,-261v80,0,73,52,70,117v-2,39,34,13,34,41v0,29,-34,3,-34,41v0,54,11,122,-48,117v-18,-1,-38,4,-38,-16v0,-29,41,-1,41,-37r0,-68v-1,-34,27,-33,38,-37v-13,-1,-38,-3,-38,-36v0,-32,18,-89,-25,-89v-9,0,-16,-5,-16,-16v0,-11,7,-17,16,-17","w":119},"~":{"d":"146,-100v20,0,25,-22,40,-22v12,0,15,8,15,17v0,22,-19,48,-54,48v-27,0,-59,-25,-77,-25v-20,0,-25,22,-40,22v-12,0,-15,-8,-15,-17v0,-22,19,-48,54,-48v27,0,59,25,77,25","w":216},"'":{"d":"43,-156v-33,-1,-21,-52,-21,-83v0,-13,8,-22,21,-22v34,1,22,51,22,83v0,13,-9,22,-22,22","w":86},"`":{"d":"-4,-256v0,-42,55,-8,78,0v24,16,-1,52,-23,37v-17,-12,-55,-10,-55,-37","w":79},"\u00e1":{"d":"192,-160r0,128v0,13,0,34,-25,34v-15,0,-21,-8,-25,-22v-49,57,-135,5,-135,-75v0,-79,84,-135,135,-77v1,-13,12,-22,25,-22v25,0,25,21,25,34xm100,-148v-55,1,-55,104,0,105v54,-1,53,-104,0,-105xm78,-215v-18,0,-28,-35,-6,-42v23,-7,69,-40,76,1v-4,29,-49,33,-70,41"},"\u00e4":{"d":"192,-160r0,128v0,13,0,34,-25,34v-15,0,-21,-8,-25,-22v-49,57,-135,5,-135,-75v0,-79,84,-135,135,-77v1,-13,12,-22,25,-22v25,0,25,21,25,34xm100,-148v-55,1,-55,104,0,105v54,-1,53,-104,0,-105xm117,-243v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26xm38,-243v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26"},"\u00e0":{"d":"192,-160r0,128v0,13,0,34,-25,34v-15,0,-21,-8,-25,-22v-49,57,-135,5,-135,-75v0,-79,84,-135,135,-77v1,-13,12,-22,25,-22v25,0,25,21,25,34xm100,-148v-55,1,-55,104,0,105v54,-1,53,-104,0,-105xm59,-256v7,-42,56,-8,79,0v23,16,0,53,-24,37v-18,-12,-53,-11,-55,-37"},"\u00e9":{"d":"167,-78r-110,0v4,26,24,37,48,37v27,0,45,-21,59,-21v11,0,21,11,21,22v0,22,-45,44,-84,44v-58,0,-97,-42,-97,-99v0,-53,37,-101,92,-101v56,0,94,51,94,94v0,15,-7,24,-23,24xm55,-113r83,0v-3,-23,-18,-40,-42,-40v-23,0,-38,18,-41,40xm72,-215v-18,0,-28,-35,-6,-42v23,-7,69,-40,75,1v-3,29,-51,33,-69,41","w":193},"\u00eb":{"d":"167,-78r-110,0v4,26,24,37,48,37v27,0,45,-21,59,-21v11,0,21,11,21,22v0,22,-45,44,-84,44v-58,0,-97,-42,-97,-99v0,-53,37,-101,92,-101v56,0,94,51,94,94v0,15,-7,24,-23,24xm55,-113r83,0v-3,-23,-18,-40,-42,-40v-23,0,-38,18,-41,40xm111,-243v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-25,-12,-25,-26xm31,-243v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26","w":193},"\u00e8":{"d":"167,-78r-110,0v4,26,24,37,48,37v27,0,45,-21,59,-21v11,0,21,11,21,22v0,22,-45,44,-84,44v-58,0,-97,-42,-97,-99v0,-53,37,-101,92,-101v56,0,94,51,94,94v0,15,-7,24,-23,24xm55,-113r83,0v-3,-23,-18,-40,-42,-40v-23,0,-38,18,-41,40xm53,-256v0,-42,55,-8,78,0v24,16,-1,52,-23,37v-17,-12,-55,-10,-55,-37","w":193},"\u00f3":{"d":"100,-196v55,0,93,48,93,101v0,54,-37,99,-93,99v-56,0,-93,-45,-93,-99v0,-53,38,-101,93,-101xm100,-148v-55,1,-55,104,0,105v55,-1,55,-103,0,-105xm75,-215v-18,0,-28,-35,-6,-42v23,-7,69,-40,75,1v-2,30,-51,32,-69,41","w":200},"\u00f6":{"d":"100,-196v55,0,93,48,93,101v0,54,-37,99,-93,99v-56,0,-93,-45,-93,-99v0,-53,38,-101,93,-101xm100,-148v-55,1,-55,104,0,105v55,-1,55,-103,0,-105xm114,-243v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26xm35,-243v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-25,-12,-25,-26","w":200},"\u00f2":{"d":"100,-196v55,0,93,48,93,101v0,54,-37,99,-93,99v-56,0,-93,-45,-93,-99v0,-53,38,-101,93,-101xm100,-148v-55,1,-55,104,0,105v55,-1,55,-103,0,-105xm56,-256v7,-42,55,-8,78,0v24,16,-1,52,-23,37v-17,-12,-53,-11,-55,-37","w":200},"\u20ac":{"d":"190,-247r0,47v-8,-8,-25,-16,-49,-16v-31,0,-47,16,-52,44r89,0r-12,34r-81,0r0,21r73,0r-11,33r-57,0v0,50,74,53,100,29r0,47v-7,5,-27,12,-57,12v-54,0,-87,-28,-97,-88r-30,0r12,-33r14,0r0,-21r-26,0r12,-34r18,0v9,-54,38,-88,97,-88v28,0,49,8,57,13"},"\u00a0":{"w":96}}});;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * (c) 1999 Nick Curtis. All Rights Reserved. Generated by Fontographer 3.52
 */
Cufon.registerFont({"w":180,"face":{"font-family":"creampuff","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"-73 -274 447.356 85","underline-thickness":"18","underline-position":"-19.8","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":114},"\u00a0":{"w":114},"!":{"d":"86,-13v-5,35,-80,35,-79,-4v3,-37,80,-34,79,4xm44,-139v-16,-64,98,-85,98,-26v0,40,-38,53,-56,79v-7,11,-15,20,-22,31r-18,0v1,-29,4,-59,-2,-84","w":148},"\"":{"d":"84,-238v22,-25,91,-12,81,29v-8,33,-40,51,-81,52v-1,-6,-16,-19,-5,-18v22,3,56,-17,26,-23r-14,-5v-10,30,-41,44,-79,46v-1,-6,-16,-19,-5,-18v22,4,56,-17,25,-23v-11,-5,-26,-10,-25,-26v2,-33,60,-32,77,-14","w":166},"#":{},"$":{"d":"176,-147v0,22,-30,20,-42,11v12,-5,10,-24,-3,-25r-9,27v21,17,60,32,51,74v-8,37,-48,49,-94,49r-15,45r-13,-4r15,-42v-26,-6,-57,-17,-57,-51v0,-28,42,-33,54,-13v-20,9,-11,42,9,45v5,-18,16,-39,18,-56v-16,-14,-42,-27,-35,-58v6,-26,38,-32,68,-34r12,-36r13,4r-11,34v18,2,38,10,39,30xm85,-28v33,4,42,-35,18,-50xm117,-161v-10,1,-12,12,-6,18","w":183},"%":{},"&":{"d":"133,-41v0,-77,95,-40,156,-51v-4,37,-32,55,-73,53v-33,60,-210,64,-201,-28v4,-38,44,-49,82,-55v-12,-9,-27,-26,-20,-46v14,-35,63,-43,112,-40v27,2,60,7,60,37v0,24,-39,27,-52,13v19,-10,7,-40,-17,-32v-30,0,-60,57,-16,60r40,0v-5,6,-1,21,-12,21v-46,-1,-85,12,-87,55v-2,46,66,37,83,11v-17,-5,-41,-5,-55,2","w":303},"'":{"d":"7,-224v5,-41,92,-32,87,9v-4,38,-39,56,-82,58v-1,-6,-16,-19,-5,-18v22,4,56,-17,25,-23v-11,-5,-26,-10,-25,-26","w":100},"(":{"d":"172,-233v-71,47,-148,194,-76,288r-7,11v-46,-21,-81,-71,-81,-135v0,-97,80,-152,159,-175"},")":{"d":"4,54v71,-46,149,-194,76,-288r8,-10v46,20,80,73,80,134v0,98,-82,150,-158,176"},"*":{"d":"62,-230v18,1,37,-22,42,4v-5,26,-31,5,-42,5v4,13,24,10,25,26v1,8,-7,15,-15,14v-21,7,-8,-57,-23,-23v9,23,-22,32,-26,11v-3,-19,21,-11,24,-28v-19,-1,-36,23,-42,-5v4,-25,26,-5,42,-4v-3,-14,-24,-10,-24,-26v0,-8,6,-15,15,-15v18,0,7,29,17,37v9,-11,-3,-37,17,-37v16,0,19,25,4,28v-8,1,-11,7,-14,13","w":109},"+":{},",":{"d":"46,-48v53,-4,59,54,22,76v-15,9,-35,15,-56,17v-1,-6,-16,-19,-5,-18v21,3,57,-18,25,-23v-11,-5,-26,-10,-25,-26v1,-18,20,-24,39,-26","w":100},"-":{"d":"14,-96r0,-33r59,0r0,33r-59,0","w":81},".":{"d":"86,-13v-5,35,-80,35,-79,-4v3,-37,80,-34,79,4","w":91},"\/":{"d":"108,-274r28,0r-119,353r-28,0","w":108},"0":{"d":"214,-73v0,62,-61,84,-129,81v-37,-2,-77,-19,-75,-61v4,-63,69,-87,138,-80v36,4,66,21,66,60xm96,-9v32,-10,46,-42,45,-84v0,-9,-7,-22,-19,-17v-29,11,-41,42,-41,83v2,7,5,18,15,18","w":224},"1":{"d":"12,-126v41,0,83,2,113,-8r-46,134r-70,0r32,-95v0,-15,-18,-13,-35,-13","w":131},"2":{"d":"118,-133v34,0,77,7,74,41v-5,49,-81,32,-116,54v34,5,73,18,103,2v-1,51,-68,68,-110,44v-16,-8,-39,-9,-60,-5v12,-54,77,-58,110,-90v14,-13,0,-32,-18,-26v-16,-1,-34,18,-11,21v1,0,2,1,3,1v-6,24,-57,25,-52,-9v10,-24,42,-33,77,-33","w":201},"3":{"d":"215,-99v0,33,-30,44,-58,50v45,5,65,73,23,99v-30,19,-64,32,-110,29v-29,-2,-65,-14,-59,-49v4,-24,44,-30,57,-11v3,11,-14,12,-12,26v1,11,11,16,24,16v35,0,54,-32,57,-68v2,-27,-18,-33,-47,-30v3,-12,5,-21,22,-21v23,0,46,-16,46,-43v0,-26,-39,-20,-45,-2v-5,15,22,12,4,22v-16,17,-57,6,-48,-22v9,-30,49,-36,89,-34v27,1,57,10,57,38","w":225},"4":{"d":"203,-135r-35,103r31,0r-7,23r-33,0r-28,84r-71,0r31,-84r-71,0r-10,-23r122,-103r71,0xm44,-32r55,0r26,-68","w":212},"5":{"d":"103,-144v33,20,91,15,126,0v-2,53,-56,61,-112,53v-18,3,-19,21,-25,36v44,-24,127,-7,121,52v-6,55,-61,79,-126,79v-37,0,-74,-7,-76,-45v-2,-33,46,-36,61,-14v-21,10,-18,46,14,42v33,-4,58,-32,58,-69v0,-16,-9,-30,-28,-30v-21,0,-30,13,-39,26r-17,-7","w":240},"6":{"d":"161,-205v32,0,62,6,65,34v3,31,-61,48,-70,13v11,-3,21,-7,23,-20v-33,-27,-77,25,-87,56v42,-19,104,-3,99,49v-5,49,-43,79,-98,79v-51,0,-86,-32,-82,-85v6,-79,68,-126,150,-126xm87,-8v34,-7,52,-42,48,-82v-1,-10,-7,-21,-19,-21v-32,7,-47,38,-49,75v2,13,6,28,20,28","w":236},"7":{"d":"32,77r-22,-15r123,-147r-107,1r18,-51r156,0","w":209},"8":{"d":"205,-168v0,29,-28,42,-50,51v14,14,24,32,21,60v-5,43,-50,65,-97,65v-37,0,-69,-16,-69,-52v0,-36,38,-52,68,-61v-10,-10,-18,-27,-15,-47v6,-35,44,-51,87,-52v29,-1,55,9,55,36xm68,-10v47,0,53,-60,23,-80v-23,11,-46,22,-49,52v-1,14,11,28,26,28xm141,-131v15,-10,30,-17,33,-39v-7,-33,-44,-14,-48,7v-2,15,9,23,15,32","w":214},"9":{"d":"118,66v-38,10,-103,12,-107,-29v-3,-30,59,-48,69,-13v-10,4,-20,9,-23,20v32,29,78,-23,87,-55v-42,19,-104,2,-99,-49v5,-48,44,-80,98,-80v47,0,89,33,85,87v-5,59,-60,107,-110,119xm120,-23v32,-4,47,-37,49,-73v2,-25,-26,-37,-42,-17v-15,16,-27,31,-26,62v0,13,5,30,19,28","w":239},":":{"d":"86,-13v-5,35,-80,35,-79,-4v3,-37,80,-34,79,4xm111,-99v-2,37,-83,34,-79,-4v2,-38,80,-33,79,4","w":126},";":{"d":"50,-48v53,-4,58,55,22,76v-15,9,-35,15,-56,17v-2,-6,-9,-14,-9,-18v22,4,62,-16,29,-23v-11,-5,-26,-10,-25,-26v1,-18,20,-24,39,-26xm121,-99v-2,37,-83,34,-79,-4v3,-37,80,-34,79,4","w":126},"<":{},"=":{},">":{},"?":{"d":"97,-13v-3,36,-80,34,-79,-4v3,-38,80,-33,79,4xm243,-147v-5,81,-145,18,-168,92r-21,0v3,-62,89,-45,98,-103v-5,-39,-80,-26,-81,8v-1,11,24,13,10,20v-19,22,-74,15,-69,-25v14,-37,57,-45,120,-45v51,0,104,8,111,53","w":254},"@":{"d":"348,-156v0,78,-41,136,-114,145v-20,2,-32,-8,-38,-23v-42,51,-130,8,-97,-68v19,-43,50,-81,106,-86v16,-1,27,6,34,15r5,-12r48,0r-55,139v0,3,1,5,4,5v49,-13,77,-54,77,-112v0,-55,-41,-83,-97,-83v-102,0,-166,67,-166,168v0,115,166,117,233,57r16,24v-43,26,-79,47,-138,47v-98,0,-166,-54,-151,-154v15,-100,91,-168,206,-172v75,-2,127,40,127,110xm151,-41v41,-12,59,-54,67,-98v-9,-40,-44,-4,-52,11v-11,21,-28,41,-28,70v0,9,5,16,13,17","w":351},"A":{"d":"335,-75v-3,39,-45,75,-86,75v-39,0,-56,-29,-58,-67r-61,0v-21,26,-45,66,-91,66v-21,0,-35,-21,-35,-42v-2,-6,9,-4,14,-6v6,26,50,10,59,-3v38,-35,69,-75,98,-118v-12,-44,-86,-14,-87,23v-5,22,19,24,37,28v-13,9,-24,23,-44,24v-25,1,-39,-23,-34,-47v11,-52,66,-68,128,-70v68,-1,99,40,95,112v5,19,-3,59,23,55v11,-7,20,-17,24,-33xm187,-90r-7,-55r-33,55r40,0","w":303,"k":{"z":-9,"x":-9,"s":10,"r":-4,"p":19,"n":16,"m":14,"k":15,"j":40,"h":15,"f":16}},"B":{"d":"328,-163v-2,28,-27,42,-51,48v21,9,40,22,40,49v0,66,-114,83,-164,48v-22,20,-79,23,-104,4v41,-44,41,-123,75,-170v-30,11,-65,25,-65,61v0,12,13,12,18,19v-16,31,-87,22,-72,-24v28,-87,189,-102,291,-72v15,4,33,17,32,37xm183,-30v50,5,72,-85,10,-81r-7,2r-24,71v5,5,12,7,21,8xm266,-176v0,-23,-35,-17,-47,-6v-13,13,-18,32,-25,50v40,6,72,-12,72,-44","w":317,"k":{"j":30,"e":-5}},"C":{"d":"238,-72v-28,47,-63,71,-130,72v-53,1,-108,-39,-104,-95v6,-83,72,-125,165,-120v31,2,63,12,65,44v2,36,-52,47,-69,19v11,-8,25,-11,26,-29v0,-8,-8,-13,-17,-12v-54,9,-75,64,-83,122v6,81,113,34,126,-9","w":202,"k":{"z":-7,"y":3,"s":15,"r":-6,"n":16,"j":40,"i":1,"h":17,"f":16,"e":1}},"D":{"d":"368,-121v0,105,-118,140,-215,109v-38,21,-138,34,-149,-20v2,-35,67,-36,95,-21v17,-43,28,-92,50,-130v-29,12,-69,29,-63,68v3,4,11,9,17,12v-14,27,-79,30,-73,-14v12,-85,115,-96,211,-94v67,2,127,23,127,90xm89,-36v-34,-19,-95,16,-34,19v13,-3,27,-10,34,-19xm278,-112v24,-37,-4,-115,-40,-62v-29,43,-31,109,-63,147v59,15,89,-41,103,-85","w":357,"k":{"r":6,"h":13,"e":-5}},"E":{"d":"238,-70v-21,50,-57,72,-121,72v-53,0,-113,-14,-113,-66v0,-40,40,-63,81,-64v-12,-8,-24,-21,-20,-40v13,-53,113,-59,159,-32v24,14,15,52,-19,47v-9,-1,-18,-5,-23,-8v14,-6,21,-33,-6,-33v-23,0,-46,16,-45,39v0,28,36,21,62,22v-5,7,-1,20,-16,19v-43,-3,-76,11,-79,50v12,66,112,30,121,-16","w":203,"k":{"z":-9,"y":3,"x":-10,"s":13,"r":-7,"p":18,"n":16,"m":12,"k":16,"j":40,"h":14,"f":15}},"F":{"d":"344,-185v0,31,-55,27,-82,21v-7,10,-8,22,-13,33r39,0r-7,19r-39,0v-18,76,-71,126,-172,116v-31,-2,-65,-12,-66,-45v-1,-30,36,-43,58,-26v-18,14,-16,52,13,49v47,-5,54,-57,69,-94r-33,0r7,-19r32,0v9,-23,20,-39,36,-52v-49,-12,-102,6,-103,58v-1,15,10,19,17,27v-36,17,-80,-7,-72,-52v13,-65,121,-75,183,-48v20,-13,49,-16,82,-15v24,0,51,6,51,28xm275,-181v14,5,47,9,50,-9v-11,-14,-42,0,-50,9","w":304,"k":{"y":37,"u":35,"r":48,"o":54,"l":12,"j":72,"i":28,"e":38,"a":49}},"G":{"d":"100,-46v37,-9,35,-59,52,-90r94,0v-26,64,-35,137,-90,174v-44,30,-147,43,-155,-16v-5,-33,48,-44,62,-17v-16,4,-36,35,-6,38v34,-5,45,-39,56,-68v-57,20,-117,-15,-107,-82v12,-72,75,-111,159,-107v30,2,67,7,69,35v1,25,-40,33,-53,14v6,-6,12,-12,13,-21v-1,-7,-9,-9,-18,-9v-53,12,-90,77,-87,140v1,7,5,8,11,9","w":224,"k":{"r":7,"i":-3,"h":12,"e":-7}},"H":{"d":"113,-209v63,-7,100,38,78,92r40,0r27,-81r92,0r-56,164v21,11,37,-25,45,-41r20,9v-17,38,-43,70,-95,72v-56,2,-66,-57,-41,-100r-40,0r-33,94r-93,0r55,-168v-1,-10,-4,-17,-16,-17v-37,0,-72,72,-26,87v-14,34,-67,24,-67,-19v0,-53,60,-87,110,-92","w":325,"k":{"y":4,"r":-7,"f":14}},"I":{"d":"55,-127v0,-92,131,-101,215,-76v-27,60,-30,140,-83,175v-30,20,-62,31,-109,27v-34,-3,-73,-9,-75,-45v-2,-34,40,-49,60,-25v-21,11,-24,59,10,53v67,-12,71,-100,91,-160v0,-9,-5,-15,-14,-15v-38,-3,-76,76,-24,86v1,0,2,1,3,1v-11,10,-18,22,-38,22v-24,0,-36,-21,-36,-43","w":228,"k":{"z":33,"t":-6,"p":14,"n":9,"m":10,"k":14,"j":37,"h":13,"f":9}},"J":{"d":"56,-132v5,-94,131,-101,215,-79r-59,173v-20,61,-91,110,-171,91v-20,-5,-43,-19,-37,-47v6,-27,49,-28,62,-7v-20,2,-34,34,-7,38v73,-35,77,-143,107,-222v0,-8,-4,-14,-14,-14v-39,0,-77,76,-24,85v3,0,3,2,1,3v-17,31,-76,22,-73,-21","w":227,"k":{"h":13}},"K":{"d":"68,-99v2,27,-50,30,-59,5v-23,-66,42,-113,116,-115v54,-2,89,43,65,96v57,-16,59,-92,129,-92v20,0,42,17,35,41v-3,9,-16,30,-22,26v-22,-53,-79,12,-104,28v42,3,56,36,68,69v19,21,37,-14,41,-32v6,3,15,3,19,8v-16,37,-35,71,-92,71v-43,0,-69,-30,-57,-74v5,-18,-3,-30,-23,-29r-34,97r-93,0r55,-168v-1,-10,-4,-17,-16,-17v-30,0,-47,29,-48,62v0,13,6,25,20,24","w":323,"k":{"s":4,"r":-6,"n":14,"j":37,"h":14,"f":16}},"L":{"d":"309,-177v0,49,-45,67,-85,79v-5,25,-22,47,-38,61v19,17,57,5,76,-4v3,58,-100,74,-126,28v-38,16,-134,25,-130,-33v12,-35,78,-22,105,-11r11,-32v-44,-2,-78,-18,-81,-61v-3,-36,47,-55,75,-34v-28,14,-31,71,16,68v20,-55,44,-108,119,-108v32,0,58,14,58,47xm95,-39v-16,-10,-60,-22,-68,3v10,23,57,11,68,-3xm232,-121v28,-12,51,-26,54,-61v-2,-18,-22,-10,-30,2v-11,16,-19,40,-24,59","w":272,"k":{"y":4,"o":6,"e":4,"a":5}},"M":{"d":"422,-72v-20,39,-40,71,-95,72v-79,3,-49,-94,-28,-136r-115,136v-10,-45,-16,-93,-32,-132v-17,61,-34,142,-111,137v-24,-2,-50,-29,-32,-55v23,16,54,21,78,-2v29,-27,35,-71,52,-105v-16,-36,-82,-22,-82,17v0,19,22,25,46,23v-9,14,-19,33,-42,32v-25,-1,-35,-28,-31,-54v9,-53,60,-73,119,-76v60,-2,90,54,98,105r85,-95r82,0r-57,164v22,13,37,-25,45,-40","w":387,"k":{"z":-9,"s":14,"r":-7,"j":37}},"N":{"d":"274,-116v21,-39,18,-106,70,-112v19,-2,23,9,26,25v-43,0,-58,37,-69,70r-46,136r-68,-107v-10,-15,-20,-30,-32,-44v-16,68,-32,142,-105,150v-33,4,-56,-28,-39,-57v34,38,97,-4,102,-38r27,-70v-21,-24,-87,-27,-82,20v2,20,22,23,44,22v-8,16,-17,34,-41,33v-21,-1,-32,-21,-32,-43v3,-87,132,-114,191,-59v24,23,41,47,54,74","w":288},"O":{"d":"289,-125v-5,87,-87,130,-180,124v-52,-4,-107,-28,-103,-88v5,-83,82,-127,175,-123v53,2,111,25,108,87xm123,-145v-16,30,-48,109,-5,128v55,-21,79,-84,79,-156v0,-28,-35,-26,-50,-6v-8,11,-17,21,-24,34","w":277,"k":{"z":30,"p":9,"n":6,"m":6,"k":16,"j":34,"h":8,"f":8,"e":-3}},"P":{"d":"324,-157v-5,65,-72,76,-142,71v-13,27,-13,62,-41,76v-25,12,-70,13,-91,-2v39,-45,42,-121,75,-171v-30,11,-62,26,-65,60v-1,12,11,15,18,20v-19,38,-94,15,-68,-34v28,-53,103,-75,182,-75v65,0,123,2,132,55xm189,-105v46,-5,68,-29,78,-71v0,-20,-36,-17,-46,-5v-17,20,-23,49,-32,76","w":295,"k":{"s":34,"r":8,"n":9,"h":8,"a":4}},"Q":{"d":"271,6v5,76,-111,73,-152,39v-17,-14,-45,-19,-74,-22v61,-51,171,39,226,-17xm288,-126v-4,86,-88,129,-180,123v-52,-4,-106,-27,-103,-87v4,-83,85,-130,175,-123v53,4,111,23,108,87xm112,-19v60,-11,85,-88,83,-156v-1,-29,-33,-25,-49,-6v-26,33,-50,73,-50,128v0,16,3,30,16,34","w":278},"R":{"d":"358,-76v-15,40,-36,74,-90,76v-46,2,-75,-37,-57,-84v0,-18,-4,-28,-24,-27v-20,47,-18,111,-92,111v-19,0,-35,-5,-47,-12v41,-44,42,-121,75,-171v-29,12,-70,28,-62,68v5,4,9,9,16,12v-14,28,-80,27,-73,-14v15,-82,115,-95,215,-95v44,0,108,7,108,50v0,32,-33,44,-61,51v26,10,18,59,44,69v17,-6,25,-24,29,-42xm266,-175v1,-12,-11,-15,-22,-15v-35,1,-41,33,-50,60v41,3,69,-11,72,-45","w":325,"k":{"r":-4}},"S":{"d":"261,-175v0,30,-39,33,-55,18v28,-11,10,-38,-14,-38v-46,0,-29,44,-4,51v24,18,55,37,55,76v0,66,-67,92,-136,92v-52,0,-97,-15,-102,-65v-4,-39,57,-56,75,-26v-10,7,-20,13,-20,32v0,54,96,50,102,4v8,-60,-75,-57,-75,-116v0,-61,76,-75,135,-64v16,3,39,14,39,36","w":246,"k":{"z":26,"r":28,"p":13,"n":12,"m":9,"h":14,"e":-4,"c":-3}},"T":{"d":"345,-189v-4,31,-54,28,-82,21v-29,90,-59,185,-192,169v-32,-3,-65,-14,-67,-46v-3,-36,49,-49,59,-25v-20,13,-14,56,18,48v69,-17,52,-127,106,-164v-51,-18,-117,15,-99,72r14,12v-35,18,-82,-5,-73,-51v13,-66,120,-75,183,-49v21,-12,48,-17,82,-15v22,1,50,6,51,28xm276,-184v17,4,46,7,51,-10v-16,-13,-42,1,-51,10","w":303,"k":{"z":103,"y":68,"w":66,"u":68,"s":77,"r":69,"o":63,"l":32,"j":94,"i":51,"h":26,"e":62,"c":59,"a":70}},"U":{"d":"210,-157v-5,46,-35,65,-43,110v1,5,3,11,10,10v60,-25,70,-107,93,-169r92,0r-56,164v22,11,37,-25,45,-40r20,9v-17,39,-43,72,-96,72v-27,0,-54,-14,-54,-43v-17,21,-48,45,-84,45v-54,0,-72,-59,-45,-99v9,-26,30,-44,30,-76v0,-13,-7,-20,-22,-19v-28,0,-50,22,-50,51v0,19,16,17,30,21v-11,12,-21,25,-41,26v-20,0,-38,-18,-36,-38v6,-57,61,-81,123,-81v44,0,81,16,84,57","w":334,"k":{"z":-6,"y":4,"x":-8,"s":16,"r":-7,"p":18,"n":14,"m":13,"k":17,"j":37,"h":14,"f":17}},"V":{"d":"301,-176v-14,96,-62,167,-161,177v-37,4,-62,-23,-62,-58v0,-49,36,-73,45,-117v0,-11,-10,-17,-22,-17v-26,1,-49,21,-49,50v0,19,15,16,29,20v-14,34,-80,35,-76,-13v5,-57,62,-76,122,-80v63,-5,103,44,71,98v-13,22,-26,47,-33,73v0,6,5,10,12,9v54,-8,84,-72,84,-130v0,-23,-5,-32,-22,-40v17,-36,68,-13,62,28","w":275},"W":{"d":"384,-204v19,-35,68,-10,63,32v-10,81,-55,132,-114,163v-43,22,-105,7,-109,-39v-17,22,-50,49,-88,49v-36,0,-58,-24,-58,-56v0,-49,37,-72,44,-119v-2,-12,-7,-19,-22,-19v-30,0,-50,26,-51,51v-1,20,16,17,30,21v-10,11,-19,25,-40,26v-20,0,-38,-17,-36,-38v5,-58,62,-77,122,-81v63,-5,102,43,71,98v-12,21,-26,39,-29,69v-1,13,17,12,24,5v43,-36,58,-104,79,-162r92,0v-17,54,-39,102,-52,160v0,7,4,11,13,10v52,-9,83,-70,83,-130v0,-23,-5,-32,-22,-40","w":419,"k":{"h":9}},"X":{"d":"338,-87v-11,46,-53,88,-108,88v-48,0,-67,-29,-81,-63v-27,24,-50,63,-104,61v-30,-1,-50,-30,-35,-61v13,29,57,34,85,14v16,-11,33,-26,47,-38r-16,-68v-5,-13,-7,-29,-27,-28v-30,-5,-55,60,-13,61r23,-4v-8,18,-17,37,-41,37v-28,1,-50,-31,-38,-61v16,-39,56,-63,108,-64v47,-1,67,32,82,65v23,-24,44,-61,86,-64v37,-3,44,48,14,60v-2,1,-6,5,-7,3v-8,-40,-61,-14,-71,7v-6,5,-11,10,-15,16r10,39v6,21,7,56,37,46v25,-8,38,-28,46,-52","w":300,"k":{"z":-5,"y":5,"r":-4,"h":18}},"Y":{"d":"94,27v-1,14,11,18,22,19v54,4,80,-46,94,-86v-19,15,-41,33,-76,30v-34,-3,-57,-32,-50,-70v8,-41,39,-61,39,-105v0,-28,-42,-23,-55,-7v-14,11,-24,42,-9,54v6,3,14,4,23,5v-11,11,-19,27,-41,26v-20,0,-38,-18,-36,-38v5,-57,60,-79,121,-80v49,-2,98,24,81,76v-10,32,-31,51,-36,87v3,19,24,9,34,-3v32,-40,47,-98,65,-151r89,0r-63,182v-19,85,-156,135,-239,78v-31,-22,3,-73,41,-56v7,3,14,10,20,16v-11,4,-24,9,-24,23","w":314},"Z":{"d":"115,-210v61,-1,100,27,164,19r5,11r-146,152v-7,19,21,23,43,22v33,-1,63,-29,43,-61v24,5,49,16,42,47v-13,56,-100,36,-146,22v-35,-11,-76,-10,-119,-9r156,-170v1,-25,-51,-19,-66,-9v-22,7,-42,55,-5,62v-1,9,-19,21,-33,20v-22,0,-42,-25,-37,-48v10,-42,51,-57,99,-58","w":267,"k":{"r":18}},"[":{"d":"114,-208r-70,202r28,0r0,12r-65,0r79,-228r61,0r0,14r-33,0","w":153},"\\":{"d":"121,79r-118,-353r28,0r118,353r-28,0","w":108},"]":{"d":"39,-7r70,-202r-28,0r0,-13r65,0r-79,228r-61,0r0,-13r33,0","w":153},"^":{},"_":{"d":"-5,41r0,-27r298,0r0,27r-298,0","w":288},"`":{"d":"46,-224v-31,9,-58,-33,-25,-38v24,4,34,26,45,40","w":71},"a":{"d":"241,-63v-19,34,-35,67,-87,66v-17,0,-32,-7,-37,-21v-32,36,-112,25,-112,-35v0,-60,81,-98,131,-63r4,-11r70,0v-4,30,-36,71,-23,94v18,-5,30,-26,35,-38xm119,-108v-33,10,-46,42,-51,77v0,7,2,12,8,13v33,-8,45,-47,51,-81v-1,-5,-2,-9,-8,-9","w":213,"k":{"z":-6,"y":5,"x":-6,"w":4,"v":4,"u":4,"t":4,"s":10,"r":-3,"p":20,"n":19,"m":16,"l":3,"k":20,"j":46,"i":4,"h":20,"f":22}},"b":{"d":"191,-77v-4,65,-63,84,-131,79v-39,-3,-65,-35,-50,-77r43,-123r71,0r-27,79v35,-24,97,-6,94,42xm75,-13v33,-7,50,-42,50,-77v0,-7,-3,-14,-11,-14v-30,10,-45,47,-49,82v-1,6,4,10,10,9","w":196,"k":{"f":16}},"c":{"d":"104,-17v38,0,60,-27,74,-54v6,4,20,5,15,13v-18,37,-46,65,-104,62v-44,-2,-85,-20,-85,-64v0,-50,51,-71,100,-71v29,0,56,9,58,40v2,34,-51,34,-55,5v-2,-15,9,-23,19,-26v-34,-6,-53,28,-53,60v0,18,11,36,31,35","w":168,"k":{"z":-7,"y":5,"x":-6,"w":6,"v":3,"u":3,"t":3,"s":10,"r":-3,"p":20,"n":18,"m":17,"l":3,"k":18,"j":44,"i":4,"h":19,"f":18}},"d":{"d":"238,-63v-18,34,-35,66,-85,66v-18,0,-33,-7,-38,-21v-29,38,-112,24,-112,-36v0,-63,81,-97,133,-63r27,-81r69,0r-52,164v23,1,31,-24,40,-37xm75,-19v32,-6,44,-40,48,-75v2,-19,-19,-15,-28,-4v-15,17,-28,38,-30,66v0,7,3,14,10,13","w":207,"k":{"z":-10,"y":3,"x":-8,"s":8,"r":15,"p":18,"n":15,"m":14,"k":17,"j":40,"h":16,"f":17}},"e":{"d":"196,-63v-18,41,-49,70,-111,67v-43,-2,-80,-21,-81,-63v-2,-60,72,-80,132,-67v13,3,30,13,29,30v-4,40,-51,49,-93,51v2,17,13,27,32,27v39,0,61,-26,74,-53xm130,-104v0,-18,-28,-11,-36,-1v-9,12,-15,23,-19,39v26,-2,55,-12,55,-38","w":165,"k":{"r":-6}},"f":{"d":"63,-171v14,-39,122,-59,135,-3v0,18,-9,31,-29,31v-27,0,-39,-36,-16,-48v-27,4,-34,42,-42,63r33,0r-6,18r-33,0r-66,192r-65,0r66,-192r-21,0r6,-18v33,7,26,-28,38,-43","w":164,"k":{"z":53,"y":40,"x":45,"w":39,"v":36,"u":40,"t":7,"s":68,"r":46,"q":41,"p":27,"n":53,"m":48,"k":11,"j":31,"h":21,"g":43,"f":27,"e":49,"d":50,"c":42,"a":45,"0":48}},"g":{"d":"5,-53v0,-57,78,-101,129,-67r3,-7r69,0r-53,151v-13,34,-52,61,-98,61v-34,0,-63,-14,-63,-46v0,-15,12,-26,30,-26v31,0,40,46,10,51v39,10,52,-37,62,-68v-38,18,-89,-4,-89,-49xm77,-20v35,-4,40,-49,49,-80v-1,-5,-4,-10,-11,-9v-30,11,-48,46,-46,84v2,3,3,5,8,5","w":187,"k":{"t":-4,"r":11,"p":10,"n":5,"m":9,"k":9,"j":27}},"h":{"d":"123,-100v-37,14,-35,67,-52,100r-69,0r68,-198r69,0r-27,79v29,-19,95,-15,88,33v-3,19,-21,38,-11,54v18,-5,30,-23,36,-39r18,8v-19,36,-36,69,-93,66v-51,-3,-32,-62,-21,-96v1,-5,-2,-7,-6,-7","w":212,"k":{"z":-10,"y":1,"x":-9,"s":8,"r":-7,"p":19,"n":15,"m":15,"k":17,"j":42,"h":16,"f":17}},"i":{"d":"133,-63v-16,35,-39,73,-93,66v-64,-9,-21,-93,-8,-130r70,0v-9,30,-23,56,-29,89v0,3,3,5,7,5v17,-5,28,-22,34,-38xm116,-165v-1,37,-76,33,-77,-1v3,-34,74,-33,77,1","w":102,"k":{"z":-10,"y":3,"x":-8,"w":1,"s":8,"r":-6,"p":18,"n":16,"m":14,"k":18,"j":42,"h":16,"f":16}},"j":{"d":"-33,64v57,6,62,-71,78,-116r26,-75r69,0r-52,151v-14,34,-52,61,-98,61v-33,0,-62,-12,-63,-46v0,-16,12,-26,30,-26v31,0,40,45,10,51xm158,-166v-3,35,-75,34,-78,-1v3,-35,75,-32,78,1","w":127,"k":{"p":12,"n":18,"m":15,"k":14,"j":35,"h":14,"f":3}},"k":{"d":"240,-63v-14,35,-33,66,-85,66v-41,0,-62,-32,-55,-69v17,-7,38,-10,42,-30v0,-6,-6,-10,-11,-7v-41,12,-42,67,-59,103r-68,0r68,-198r68,0r-27,79v25,-17,94,-20,94,19v0,23,-21,34,-40,39v-4,17,5,35,25,29v16,-5,24,-24,29,-39","w":207,"k":{"z":-11,"y":1,"x":-11,"s":5,"r":-7,"p":18,"n":14,"m":12,"k":17,"j":41,"h":15,"f":14}},"l":{"d":"132,-63v-19,35,-35,70,-90,66v-31,-1,-45,-31,-34,-64r47,-137r71,0r-54,160v0,4,2,6,7,5v18,-5,28,-22,35,-38","w":101,"k":{"z":-10,"y":3,"x":-9,"s":8,"r":-6,"p":18,"n":14,"m":13,"k":17,"j":42,"h":18,"f":15}},"m":{"d":"342,-63v-19,36,-37,70,-95,66v-51,-5,-31,-63,-20,-97v-1,-10,-12,-6,-17,0v-23,22,-27,64,-41,94r-71,0r32,-94v-2,-13,-19,-4,-22,2v-19,20,-29,60,-40,92r-67,0r43,-126r68,0r-3,8v21,-17,76,-20,86,11v26,-39,122,-26,99,36v-2,11,-17,31,-7,39v19,-5,28,-24,37,-39","w":310,"k":{"z":-11,"x":-9,"s":8,"r":-6,"p":18,"n":15,"m":14,"k":16,"j":42,"h":15,"f":14}},"n":{"d":"245,-63v-18,35,-38,70,-93,66v-54,-3,-33,-63,-22,-97v0,-4,-1,-7,-5,-7v-34,16,-40,66,-56,101r-66,0r43,-126r67,0r-3,9v31,-24,106,-15,90,39r-14,41v16,14,35,-20,41,-34","w":214,"k":{"z":-10,"y":1,"x":-9,"s":7,"r":-6,"p":20,"n":18,"m":13,"k":18,"j":42,"h":15,"f":15}},"o":{"d":"196,-49v15,-1,18,-12,25,-22r19,9v-11,26,-34,68,-70,48v-43,40,-164,35,-165,-38v-2,-91,185,-112,194,-14v-1,6,-1,12,-3,17xm138,-92v3,-29,-28,-21,-37,-7v-15,17,-27,45,-21,76v6,33,39,6,44,-11v-22,-13,-9,-55,14,-58","w":207,"k":{"z":-12,"y":3,"x":-10,"s":5,"r":-9,"p":18,"n":17,"m":14,"k":17,"j":41,"h":15,"f":16}},"p":{"d":"245,-62v-19,35,-38,68,-93,65v-52,-2,-34,-63,-21,-96v-49,-6,-54,107,-79,149v-4,13,-4,14,-9,27r-67,0r85,-246r67,0r-15,45v42,-31,115,2,80,60v-1,8,-13,22,-2,26v20,-4,29,-25,36,-39","w":215,"k":{"z":-9,"y":3,"x":-9,"s":9,"r":-7,"p":18,"n":14,"m":15,"k":16,"j":40,"h":14,"f":15}},"q":{"d":"4,-54v1,-59,78,-96,130,-65r3,-8r67,0r-72,210r-68,0r29,-84v-42,16,-90,-8,-89,-53xm77,-19v35,0,41,-49,48,-78v0,-17,-22,-10,-29,0v-14,20,-29,36,-29,69v0,6,4,9,10,9","w":189},"r":{"d":"129,-112v19,-22,85,-34,84,10v1,17,-11,29,-27,29v-18,0,-20,-19,-30,-27v-33,16,-43,66,-54,100r-67,0r31,-88v-16,-18,-38,13,-43,27r-18,-7v14,-32,36,-69,84,-66v18,1,33,9,40,22","w":208,"k":{"z":10,"x":12,"s":25,"r":36,"p":12,"n":7,"m":9,"k":13,"j":41,"h":10,"f":6}},"s":{"d":"4,-43v-1,-25,11,-37,36,-35r32,-44r68,-18v0,44,17,99,-14,123v-33,25,-120,30,-122,-26xm32,-28v26,24,53,-5,46,-45r0,-22v-7,14,-26,23,-17,42v-1,16,-12,25,-29,25","w":150,"k":{"r":31}},"t":{"d":"111,-71v7,4,25,5,15,15v-15,32,-33,59,-81,59v-42,0,-49,-49,-31,-78r11,-35r-15,0r6,-17r15,0r15,-43r71,-10r-18,53r20,0r-7,17r-19,0r-23,71v15,16,35,-17,41,-32","w":99,"k":{"r":-6}},"u":{"d":"173,-50v-7,11,3,19,13,11v12,-9,20,-19,26,-34v5,4,19,5,17,13v-16,31,-36,62,-83,62v-22,0,-39,-10,-41,-31v-24,42,-121,42,-97,-29r24,-71r68,0r-29,87v34,14,50,-53,61,-87r68,0","w":199,"k":{"r":-7}},"v":{"d":"184,-63v-6,24,-43,47,-64,24v-18,19,-41,41,-76,41v-71,0,-26,-93,-13,-131r68,0r-29,87v0,3,3,8,7,8v22,-5,37,-21,33,-50v3,-21,11,-45,30,-48v28,13,4,61,-8,78v12,11,31,-4,34,-18","w":154,"k":{"r":-5}},"w":{"d":"285,-63v-6,24,-43,46,-64,24v-19,32,-99,67,-116,11v-23,43,-121,40,-97,-30r24,-71r69,0r-29,87v36,15,48,-54,60,-87r68,0r-29,87v0,3,3,8,7,8v22,-6,36,-21,33,-50v4,-20,11,-48,31,-47v29,15,3,59,-8,77v12,12,30,-5,34,-18","w":254,"k":{"r":-7}},"x":{"d":"157,-50v15,32,44,-1,51,-22r17,8v-14,36,-39,68,-90,65v-36,-1,-45,-33,-57,-58r-18,10v32,7,21,50,-11,50v-37,0,-40,-47,-13,-60v7,-9,29,-12,32,-22v-12,-30,-40,-3,-47,16r-18,-8v13,-33,39,-65,86,-61v36,3,42,36,57,59v7,-3,14,-6,19,-10v-13,-3,-22,-11,-22,-24v0,-17,18,-33,38,-26v53,19,6,72,-25,80","w":195,"k":{"r":-6}},"y":{"d":"72,-40v34,18,48,-62,59,-87r68,0r-52,152v-13,56,-144,92,-161,19v-5,-19,12,-30,30,-31v31,-2,39,45,10,52v45,7,53,-46,66,-80v-28,32,-105,21,-83,-42r24,-70r69,0v-12,28,-21,56,-30,87","w":185},"z":{"d":"156,-90v0,26,-21,36,-42,42v25,9,46,31,40,63v-8,47,-54,68,-110,70v-33,0,-60,-10,-63,-41v-4,-37,64,-61,70,-15v3,26,-40,35,-47,9v-4,18,7,28,25,27v35,-2,61,-33,63,-69v2,-28,-32,-39,-53,-28r-6,-19v25,-6,56,-12,56,-40v0,-10,-7,-16,-19,-14v-23,4,-39,27,-50,44r-18,-9v19,-30,48,-60,93,-60v30,0,61,12,61,40","w":160,"k":{"r":5}},"{":{},"|":{},"}":{},"~":{}}});;$(document).ready(function(){$(".level0").mouseover(function(){$(this).addClass("over");Cufon.replace(['#mainmenu > li > a'],{hover:true,fontFamily:'likeleaf'});});$(".level0").mouseout(function(){$(this).removeClass("over");Cufon.replace(['#mainmenu > li > a'],{hover:true,fontFamily:'likeleaf'});});$('#search_query').each(function(){var default_value=this.value;$(this).focus(function(){if(this.value==default_value){this.value='';}});$(this).blur(function(){if(this.value==''){this.value=default_value;}});});$(".choose-size").click(function(){if(!$(this).hasClass('selected')){$(".choose-size").removeClass("selected");$(this).toggleClass("selected");$("#add_to_cart_btn").removeAttr("disabled").removeClass("disabled_big_btn");$("#ordering_block").addClass("can_order");}});$(".choose-size").mouseover(function(){$(this).addClass("hover");});$(".choose-size").mouseout(function(){$(this).removeClass("hover");});$(".information_hover").mouseover(function(){if(!$("#ordering_block").hasClass('can_order')){$("#add_to_cart_btn-info").removeClass('invis');}});$(".information_hover").mouseout(function(){$("#add_to_cart_btn-info").addClass("invis");});$(".scrollingHotSpotLeftVisible").show();});function initOverLabels(){if(!document.getElementById)return;var labels,id,field;labels=document.getElementsByTagName('label');for(var i=0;i<labels.length;i++){if(labels[i].className=='overlabel'){id=labels[i].htmlFor||labels[i].getAttribute('for');if(!id||!(field=document.getElementById(id))){continue;}
labels[i].className='overlabel-apply';if(field.value!==''){hideLabel(field.getAttribute('id'),true);}
field.onfocus=function(){hideLabel(this.getAttribute('id'),true);};field.onblur=function(){if(this.value===''){hideLabel(this.getAttribute('id'),false);}};labels[i].onclick=function(){var id,field;id=this.getAttribute('for');if(id&&(field=document.getElementById(id))){field.focus();}};}}};function hideLabel(field_id,hide){var field_for;var labels=document.getElementsByTagName('label');for(var i=0;i<labels.length;i++){field_for=labels[i].htmlFor||labels[i].getAttribute('for');if(field_for==field_id){labels[i].style.left=(hide)?'-9999em':'16px';return true;}}}
window.onload=function(){setTimeout(initOverLabels,50);};
