(function($){
    $.fn.vAlign = function(){
        return this.each(function(i){
            var ah = $(this).height();
            var ph = $(this).parent().height();
            var mh = (ph - ah) / 2;
            $(this).css('margin-top', mh);
        });
    };
})(jQuery);

(function($){
  Drupal.behaviors.javali_theme = {
    attach: function(context, settings) {

		//FUNÇAO PARA DESENRASCAR
		function ajaxloader(){
		
		    $('#cil-cobiax').click(function(e){
		    	$(this).parent().children().each(function(){
		    		$(this).removeClass('ajax-active');
		    	});
		    	$(this).addClass('ajax-active');
		        var url = 'http://' + window.location.host + '/cobiax';
	            $('#content-inner-right #node-8 .content').html('<p><img src="/sites/all/themes/javali_theme/images/ajax-loader.gif" width="66" height="66" /></p>');
	            $("#content-inner-right #node-8").load(url + " #content-inner-right #node-15 .content");
		        
		        e.preventDefault(); // stop the browser from following the link
		    });
		    
		    $('#cil-cupolex').click(function(e){
		    	$(this).parent().children().each(function(){
		    		$(this).removeClass('ajax-active');
		    	});
		    	$(this).addClass('ajax-active');
		        var url = 'http://' + window.location.host + '/cupolex';
	            $('#content-inner-right #node-8 .content').html('<p><img src="/sites/all/themes/javali_theme/images/ajax-loader.gif" width="66" height="66" /></p>');
	            $("#content-inner-right #node-8").load(url + " #content-inner-right #node-16 .content");
		        
		        e.preventDefault(); // stop the browser from following the link
		    });
		    
		    //APRESENTAÇAO
			$('#cil-empresa').click(function(e){
		        var url = 'http://' + window.location.host + '/empresa';
	            $('#content-inner-right #node-5 .content').html('<p><img src="/sites/all/themes/javali_theme/images/ajax-loader.gif" width="66" height="66" /></p>');
	            $("#content-inner-right #node-5").load(url + " #content-inner-right #node-5 .content");
		        
		        e.preventDefault(); // stop the browser from following the link
		    });
		    
		    $('#cil-apresen').click(function(e){
		        var url = 'http://' + window.location.host + '/empresa';
	            $('#content-inner-right #node-5 .content').html('<p><img src="/sites/all/themes/javali_theme/images/ajax-loader.gif" width="66" height="66" /></p>');
	            $("#content-inner-right #node-5").load(url + " #content-inner-right #node-5 .content");
		        
		        e.preventDefault(); // stop the browser from following the link
		    });
		    $('#cil-intern').click(function(e){
		        var url = 'http://' + window.location.host + '/internacionalizacao';
	            $('#content-inner-right #node-5 .content').html('<p><img src="/sites/all/themes/javali_theme/images/ajax-loader.gif" width="66" height="66" /></p>');
	            $("#content-inner-right #node-5").load(url + " #content-inner-right #node-17 .content");
		        
		        e.preventDefault(); // stop the browser from following the link
		    });
		    $('#cil-inov').click(function(e){
		        var url = 'http://' + window.location.host + '/inovacao';
	            $('#content-inner-right #node-5 .content').html('<p><img src="/sites/all/themes/javali_theme/images/ajax-loader.gif" width="66" height="66" /></p>');
	            $("#content-inner-right #node-5").load(url + " #content-inner-right #node-18 .content");
		        
		        e.preventDefault(); // stop the browser from following the link
		    });
		    $('#cil-qualid').click(function(e){
		        var url = 'http://' + window.location.host + '/qualidade';
	            $('#content-inner-right #node-5 .content').html('<p><img src="/sites/all/themes/javali_theme/images/ajax-loader.gif" width="66" height="66" /></p>');
	            $("#content-inner-right #node-5").load(url + " #content-inner-right #node-19 .content");
		        
		        e.preventDefault(); // stop the browser from following the link
		    });
		    $('#cil-susten').click(function(e){
		        var url = 'http://' + window.location.host + '/sustentabilidade';
	            $('#content-inner-right #node-5 .content').html('<p><img src="/sites/all/themes/javali_theme/images/ajax-loader.gif" width="66" height="66" /></p>');
	            $("#content-inner-right #node-5").load(url + " #content-inner-right #node-20 .content");
		        
		        e.preventDefault(); // stop the browser from following the link
		    });
		    $('#cil-visao').click(function(e){
		        var url = 'http://' + window.location.host + '/visao';
	            $('#content-inner-right #node-5 .content').html('<p><img src="/sites/all/themes/javali_theme/images/ajax-loader.gif" width="66" height="66" /></p>');
	            $("#content-inner-right #node-5").load(url + " #content-inner-right #node-21 .content");
		        
		        e.preventDefault(); // stop the browser from following the link
		    });
		    
		}

		function menu_hover(){
			//menu width
			$('#main-menu ul.menu li').not($('#main-menu ul.menu li li')).each(function(){
				var largura = $(this).width();
				switch((largura+2) % 4){
					case 1: $(this).width(largura+3);break;
					case 2: $(this).width(largura+2);break;
					case 3: $(this).width(largura+1);break;
					case 0: break;
				}
			});
			
			//hover
			$('#main-menu .menu-item-wrap').css('opacity','0');
			$('#main-menu ul.menu li ul').not($('#main-menu ul.menu li ul ul')).css('opacity','0');
			$('#main-menu ul.menu li').not($('#main-menu ul.menu li ul li')).hover(function(e) {
					$(this).children('.menu-item-wrap').hoverFlow(e.type, { opacity: 1 }, 'fast');
					$(this).addClass("hovered");
					if($(this).children('ul').get(0)){
						$(this).children('ul').hoverFlow(e.type, { opacity: 1 }, 'fast');
					}
			}, function(e) {
					$(this).children('.menu-item-wrap').hoverFlow(e.type, { opacity: 0 }, 'fast');
					if($(this).children('ul').get(0)){
						$(this).children('ul').hoverFlow(e.type, { opacity: 0 }, 'fast',function(){
							$(this).parent().removeClass("hovered");
						});
					} else {
						$(this).removeClass("hovered");
					}
					
			});
		}
		
		function footer_margin(){
			$('#footer').css('margin','50px auto 20px');
			var diff = $(window).height() - $('body').height();
			if(diff > 0){
				var height = diff+50;
				$('#footer').css('margin',height+'px auto 20px');
			}
		}
		
		function hasSearchParam(param, value){
				var pattern = "^[\?&]" + param + 
				    (typeof value === "undefined" ? "($|[=&])" : "=" + value + "($|&)");
				return (new RegExp(pattern)).test(window.location.search);
		}
		
		function menu_portefolio(){
			if(hasSearchParam("portefolio", "true")){
				identif = $('#ref-tax-id').attr('identif');
				$('.menu-left a').each(function(){
						if($(this).attr('indentif') == identif){
								$(this).addClass('activated');
						}
				});
			}
		}

		function menu_produtos(){
			
				var height = $('.produtos-block-wrap').height();
				$('.produtos-block-lista').hide();
//				$('.produtos-block-lista-item a.active').parents('.produtos-block-wrap').children('.produtos-block-top').addClass('active').siblings().animate({height:'toggle'},'10');
				$('.produtos-block-lista-item a.active').parents('.produtos-block-wrap').children('.produtos-block-top').addClass('active').siblings().css('display','block');
				
				path = window.location.pathname;
				$('.produtos-block-link a').each(function(){
						if($(this).attr('href') == path){
								$(this).parents('.produtos-block-wrap').children('.produtos-block-top').addClass('active').siblings().css('display','block');
						}
				});
				
//				if(hasSearchParam("produto", "true")){
//					path = document.referrer.replace(/^[^:]+:\/\/[^/]+/, '').replace(/#.*/, '');
//					if(path.search("/referencias") >= 0){				
//						$('.produtos-block-lista-item a').each(function(){
//								if($(this).attr('href') == path){
//										$(this).addClass('activated');
//										$(this).parents('.produtos-block-wrap').children('.produtos-block-top').addClass('active').siblings().css('display','block');
//								}
//						});
//					}
					
					//FAZER TAMBEM PARA A TRADUÇAO?
					if(hasSearchParam("produto", "true")){
						identif = $('#ref-tax-id2').attr('identif');
						$('.produtos-block-wrap .produtos-block-top a').each(function(){
								if($(this).attr('href').search(identif) >= 0){
										$(this).parents('.produtos-block-top').addClass('active').siblings().css('display','block');
										$(this).parents('.produtos-block-wrap').find('.produtos-block-lista a').each(function(){
												if($(this).attr('href').search('/referencias') >= 0){
														$(this).addClass('activated');
												}
										});
								}
						});
					}
					
					
					
//				}
				
				$('.produtos-block-top').click(function(e){
				
					var el = $(this),
        	  state = el.data('animation_state');
					if(state == 'busy') {
		        return false;
		      } 
		      el.data('animation_state', 'busy');
				
					if($(this).hasClass('active')){
//						el.data('animation_state', 'complete');


						var ref = $(this).find('.produtos-block-link a').attr('href');
						var url = 'http://' + window.location.host + ref;
					
						$("#content-inner-right").html('<img class="loader" src="/sites/all/themes/javali_theme/images/ajax-loader.gif" width="66" height="66" />');
						$("#content-inner-right").load(url + " .innerload",function(){
							video_entrada();
							hovers();
							$('.gotop').hide();
							Cufon.replace('.descricao-produto-top', { fontFamily: 'Downtempo italic' , textShadow: '#000 2px 2px'});
						});
						e.preventDefault(); // stop the browser from following the link
					
//						$(this).siblings('.produtos-block-lista').find('a.active').removeClass('active hover').children('span:first').animate({
//							opacity: 0
//						
//						},175,function(){
							el.data('animation_state', 'complete'); 
//						});

					}else{
					
						var ref = $(this).find('.produtos-block-link a').attr('href');
						var url = 'http://' + window.location.host + ref;
					
						$("#content-inner-right").html('<img class="loader" src="/sites/all/themes/javali_theme/images/ajax-loader.gif" width="66" height="66" />');
						$("#content-inner-right").load(url + " .innerload",function(){
							video_entrada();
							hovers();
							$('.gotop').hide();
							Cufon.replace('.descricao-produto-top', { fontFamily: 'Downtempo italic' , textShadow: '#000 2px 2px'});
						});
						e.preventDefault(); // stop the browser from following the link
					
						$('.produtos-block-top').removeClass('active');
						$(this).toggleClass('active');
						$('.produtos-block-lista').slideUp('slow');
//						$('.produtos-block-lista').find('.produtos-block-lista-item a.active').removeClass('active hover').children('span:first').animate({
//								opacity: 0
//							},175);
						$(this).siblings().animate({height:'toggle'},'slow',function(){
							el.data('animation_state', 'complete'); 
						});
					}
				});
			}
			
			function video_entrada(){
//				$('.video-testemunho img, .video-play-button').click(function(){
//					
////					setTimeout(function(){$('.controlDiv.play').eq(0).click();},1500);
//					
//					var url = $(this).siblings('.hidden-video').text();
//					$(".video-testemunho").youTubeEmbed({
//						video			: url,
//						width			: 467
//					});
////					$('.video-testemunho img').hide('puff',400);
//					$('.video-play-button').hide(50);
//					$('.node-produto .label-testemunho').animate({width:459},400);
//					$('.node-produto .video-testemunho').animate({width:479,height:362},400);
//					$('.node-produto .video-testemunho img').animate({width:467},400);
//				});
					$('.video-testemunho img, .video-play-button').click(function(){
//							setTimeout(function(){$('.controlDiv.play').eq(0).click();},1500);
//							$('.video-testemunho img').hide('puff',400);
							$('.video-play-button').hide(50);
							$('.node-produto .label-testemunho').animate({width:459},400);
							$('.node-produto .video-testemunho').animate({width:479,height:362},400);
							$('.node-produto .video-testemunho img').animate({width:467},400,function(){
									$('.hidden-video').show();
									$(this).hide();
							
							});
							
					});
			}
			
			function theme_tables(){
				$('table.tabela-formatada').each(function(){
					tabletxt = $(this).attr('summary');
					if(tabletxt != ''){
						$(this).before('<div class="table-text"><div class="table-text-esq"></div><div class="table-text-middle">' + tabletxt + '</div><div class="table-text-dir"></div><div class="clear-both"></div></div>');
					}
					$(this).wrap('<div class="table-wrapper" />');	
					$(this).parent().after('<div class="clear-both"></div>');					
					
				})
				$('table.tabela-formatada img').first().parents('tr').addClass('imageTr');
				
				if($('.legenda-tabela').get(0)){
					$('.legenda-tabela').not($('.legenda-tabela img').parent()).each( function() {
							texto = $(this).text();
							$(this).empty();
							$(this).append('<div class="legenda-wrap"><div>'+texto+'</div><span></span></div>');
					});
				}
				
			}
			
			function theme_video_produtos(){
				$('.node-produto table iframe').each(function(){
					$(this).hide();
					src = $(this).attr('src');
					src = src.split("/");
					
					
					$(this).parent().append("<img src='http://img.youtube.com/vi/"+src[4]+"/0.jpg'/><div v='"+src[4]+"' class='video-play-button'></div>");
					
					$(this).parent().click(function(){
						$.modal('<iframe width="467" height="350" src="http://www.youtube.com/embed/'+$(this).children('.video-play-button').attr('v')+'?rel=0&wmode=transparent&autoplay=1&loop=1" frameborder="0" allowfullscreen></iframe>',{
							minWidth: 482,
              maxWidth: 483,
              minHeight:364,
              maxHeight:365,
              overlayClose:true
							
						});
					});
					
				});
			}
			
			function onAfter(curr, next, opts) {
				var index = opts.currSlide;
				
				if(index == 0){
						$('.nav-left-wrap .nav-left').hide();
				} else {
						$('.nav-left-wrap .nav-left').show();
				}
				if(index == opts.slideCount - 1){
						$('.nav-right-wrap .nav-right').hide();
				} else {
						$('.nav-right-wrap .nav-right').show();
				}
				
//				$('.nav-left-wrap')[index == 0 ? 'hide' : 'show']();
//				$('.nav-right-wrap')[index == opts.slideCount - 1 ? 'hide' : 'show']();
			}
			
			function imageCycle(){
				$('.field-name-field-referencias-imagens .field-items, .lista-referencias-wrap').cycle({
			    fx:     'scrollHorz',
			    prev:   '.nav-left-wrap',
			    next:   '.nav-right-wrap',
			    after:   onAfter,
			    nowrap: 1,
			    timeout: 0
				});
				
				$('.banner-info-wrap').cycle();
				
			}
			
			function listagem_referencias(){
					$('.listagem-referencias-item .listagem-referencias-shadow').css('opacity','0');
					$('.listagem-referencias-item').hover(function(e) {
							$(this).children('.listagem-referencias-shadow').hoverFlow(e.type, { opacity: 1 }, 'fast');
					}, function(e) {
							$(this).children('.listagem-referencias-shadow').hoverFlow(e.type, { opacity: 0 }, 'fast');
					});
			}
			
			function isIE(){
				return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);
			}
			
			function hovers(){
					if(!isIE()){$('a#contacte').blend();}
					$('.entrada-content-contact').blend();
					$('.produtos-block-top.cobiax').blend();
					$('.produtos-block-top.cupolex').blend();
					$('.produtos-block-top.ttmferca').blend();
					if(!isIE()){$('.produtos-block-lista-item a').blend(175);}
					$('#leftcolumn .menu-left a').blend(175);
			}
			
			function contactos(){
					$('.layoutcolumn-contactos').not($('.layoutcolumn-contactos p').parent()).css('background','none');
					$('.contactos-gmap-block form').jqTransform();
					$('.webform-client-form #edit-actions').append('<div class="submit-bg-right"></div>');
					
					/*desactivar o botao do formulario até algo ser submetido*/
//					$('#edit-actions').css('opacity','0.2');
//					$('.contactos-contact-block input, .contactos-contact-block textarea').keyup(function(){
//							if($('.contactos-contact-block input').val() == '' || 
//								 $('.contactos-contact-block textarea').val() == ''){
//									$('#edit-actions').css('opacity','0.2');
//							}
//							else{
//									$('#edit-actions').css('opacity','1');
//							}
//					});
//					$('.contactos-contact-block input, .contactos-contact-block textarea').click(function(){
//							if($('.contactos-contact-block input').val() == '' || 
//								 $('.contactos-contact-block textarea').val() == ''){
//									return false;
//							}
//							else{
//							}
//					});


$("#webform-client-form-58").validate({
		rules: {
			"submitted[su_nombre]": "required",
			"submitted[tu_e_mail]": {
				required: true,
				email: true
			},
			"submitted[asunto_del_mensaje]": {
				required: true,
				minlength: 3
			},
			"submitted[mensaje]": {
				required: true,
				minlength: 5
			}
		},
		messages: {
			"submitted[su_nombre]": "Por favor ingrese su nombre",
			"submitted[asunto_del_mensaje]": "Por favor ingrese su apellido",
			"submitted[mensaje]": {
				required: "Por favor, introduzca un mensaje",
				minlength: "Su mensaje debe consistir de por lo menos 3 caracteres"
			},
			"submitted[tu_e_mail]": "Por favor, introduzca una dirección válida de correo electrónico"
		}
});

$("#webform-client-form-46").validate({
		rules: {
			"submitted[your_name]": "required",
			"submitted[your_e_mail]": {
				required: true,
				email: true
			},
			"submitted[message_subject]": {
				required: true,
				minlength: 3
			},
			"submitted[message]": {
				required: true,
				minlength: 5
			}
		},
		messages: {
			"submitted[your_name]": "Please enter your name",
			"submitted[message_subject]": "Please enter the message subject",
			"submitted[message]": {
				required: "Please enter a message",
				minlength: "Your message should consist of at least 3 characters"
			},
			"submitted[your_e_mail]": "Please enter a valid email address"
		}
});

$("#webform-client-form-22").validate({
		rules: {
			"submitted[nome]": "required",
			"submitted[emal]": {
				required: true,
				email: true
			},
			"submitted[assunto]": {
				required: true,
				minlength: 3
			},
			"submitted[mensagem]": {
				required: true,
				minlength: 5
			}
		},
		messages: {
			"submitted[nome]": "Introduza o seu nome",
			"submitted[assunto]": "Por favor introduza o assunto da mensagem",
			"submitted[mensagem]": {
				required: "Por favor, escreva uma mensagem",
				minlength: "A sua mensagem deve ter pelo menos 3 caracteres"
			},
			"submitted[emal]": "Introduza um endereço de e-mail válido"
		}
});

			}
			
			function gmap(){
					$('.ver-mapa a').click(function(){
							href = $(this).attr('href');
							url = 'http://' + window.location.hostname + window.location.pathname + '?coord=' + href;
							window.location = url;
							return false;
					});
			}
			
			function downloads(){
					$('.layoutcolumn-downloads a').not($('.layoutcolumn-downloads a img').parent()).each(function(){
							href = $(this).attr('href');
							if(href.search(/pdf/i) < 0 ){
								$(this).prepend('<img width="16" height="16" border="0" style="float: left;" alt="autocad" src="/sites/default/files/autocad-icon.png">&nbsp;');
							} else {
								$(this).prepend('<img width="16" height="16" border="0" style="float: left;" alt="pdf" src="/sites/default/files/icon_pdf.gif">&nbsp;');
							}
					});


					$('.principios-donwload-tabela a').each(function(){
							href = $(this).attr('href');
							if(href.search(/pdf/i) < 0 ){
								$(this).prepend('<img width="16" height="16" border="0" style="float: left;" alt="autocad" src="/sites/default/files/autocad-icon.png">&nbsp;');
							} else {
								$(this).prepend('<img width="16" height="16" border="0" style="float: left;" alt="pdf" src="/sites/default/files/icon_pdf.gif">&nbsp;');
							}
					});
			}
			
			$(document).ready(function(){
				
				$(".node.ttmferca table.tabela-formatada tr:nth-child(2)").addClass("format2nd");

$(".node-produto table .layoutcolumn:last-child,.layouttable-downloads table tr td:last-child,.layoutcolumn-execucao:last-child,.layouttable-execucao:first-child .layoutcolumn-execucao:last-child,.layoutcolumn-downloads:last-child,.layouttable-empresa.areas-actividade tr:first-child td p:last-child,.layouttable-empresa.areas-actividade tr:last-child").addClass("last-child");


$("#node-35 .field-items .field-item table:last-child,#node-60 .field-items .field-item table:last-child,#node-59 .field-items .field-item table:last-child,#node-35 .field-items .field-item table:last-child,#node-60 .field-items .field-item table:last-child,#node-59 .field-items .field-item table:last-child").addClass("last-child");

				downloads();
				menu_portefolio();
				gmap();
				contactos();
				hovers();
				listagem_referencias();
				imageCycle();
				theme_video_produtos();
				theme_tables();
				video_entrada();
				menu_produtos();
				menu_hover();
				ajaxloader();
				
				Cufon.replace('#block-block-2 h2, #block-block-3 h2, #block-block-4 h2, #banner-info-inner h1', { fontFamily: 'Downtempo italic' , color: '-linear-gradient(#ffffff‪, ‬#c4c4c4)' , textShadow: '#000 2px 2px'});
				Cufon.replace('.descricao-produto-top', { fontFamily: 'Downtempo italic' , textShadow: '#000 2px 2px'});
				Cufon.replace('#banner-info-inner h1', { fontFamily: 'Downtempo italic' , textShadow: '#ED5D17 1px 1px'});
//			Cufon.replace('#main-menu ul.menu li a:not(#main-menu ul.menu li ul a)', { fontFamily: 'Downtempo', textShadow: '#000 -2px -2px'} );
				Cufon.replace('a#contacte', { fontFamily: 'Downtempo italic' , textShadow: '#5C3900 1px 1px'});
				Cufon.replace('#node-35 .field-items .field-item table:last-child .layoutcolumn-empresa p,#node-60 .field-items .field-item table:last-child .layoutcolumn-empresa p,#node-59 .field-items .field-item table:last-child .layoutcolumn-empresa p, #node-48 a', { fontFamily: 'Downtempo italic'});
				
				$(".gotop").click(function(e){
					$("body,html").animate({ scrollTop: 0 }, 400);
					e.preventDefault(); // stop the browser from following the link
				});
				
//				height = 0;
//				count = 0;
//				$('.region-menu ul.menu li.submenu-title').each(function(){
//						$(this).children('li').each(function(){
//							count += 39;
//						});
//						alert(count);
//						
//						if(count > height){height = count;}
//				});
//				$('.region-menu ul.menu li.submenu-title ul').height(height);
			
				if($("#header-inner")[0]){
			  	var offleft = $("#header-inner").offset().left;
			    if(offleft > 0) {
						if(offleft < 220) $("#banner-right").width(offleft).css("right", "-"+offleft+"px");
			      else $("#banner-right").width(220).css("right", "-220px");
			    }
			    else $("#banner-right").width(0);
				}
        $("ul.language-switcher-locale-url").click(function() {
        	$(this).toggleClass("opened");   
        });
        $("ul.language-switcher-locale-url li.active a").click(function() {
          return false; 
        });
        
        
			});
		      
		  $(window).load(function(){
		  	footer_margin();
		  
		  });    
		      
		  $(window).resize(function() {
				footer_margin();
					
				if($("#header-inner")[0]){
	      	var offleft = $("#header-inner").offset().left;
	      		if(offleft > 0) {
							if(offleft < 220) $("#banner-right").width(offleft).css("right", "-"+offleft+"px");
	          	else $("#banner-right").width(220).css("right", "-220px");
	          }
	          else $("#banner-right").width(0);
				}
		  });
    }
  };
})(jQuery);

;
/*
* hoverFlow - A Solution to Animation Queue Buildup in jQuery
* Version 1.00
*
* Copyright (c) 2009 Ralf Stoltze, http://www.2meter3.de/code/hoverFlow/
* Dual-licensed under the MIT and GPL licenses.
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*/
(function($){$.fn.hoverFlow=function(c,d,e,f,g){if($.inArray(c,['mouseover','mouseenter','mouseout','mouseleave'])==-1){return this}var h=typeof e==='object'?e:{complete:g||!g&&f||$.isFunction(e)&&e,duration:e,easing:g&&f||f&&!$.isFunction(f)&&f};h.queue=false;var i=h.complete;h.complete=function(){$(this).dequeue();if($.isFunction(i)){i.call(this)}};return this.each(function(){var b=$(this);if(c=='mouseover'||c=='mouseenter'){b.data('jQuery.hoverFlow',true)}else{b.removeData('jQuery.hoverFlow')}b.queue(function(){var a=(c=='mouseover'||c=='mouseenter')?b.data('jQuery.hoverFlow')!==undefined:b.data('jQuery.hoverFlow')===undefined;if(a){b.animate(d,h)}else{b.queue([])}})})}})(jQuery);;
(function($){
	
	$.fn.youTubeEmbed = function(settings){
		
		// Settings can be either a URL string,
		// or an object
		
		if(typeof settings == 'string'){
			settings = {'video' : settings}
		}
		
		// Default values
		
		var def = {
			width		: 640,
			progressBar	: true
		};
		
		settings = $.extend(def,settings);
		
		var elements = {
			originalDIV	: this,	// The "this" of the plugin
			container	: null,	// A container div, inserted by the plugin
			control		: null,	// The control play/pause button
			player		: null,	// The flash player
			progress	: null,	// Progress bar
			elapsed		: null	// The light blue elapsed bar
		};
		

		try{	

			settings.videoID = settings.video.match(/v=(.{11})/)[1];
			
			// The safeID is a stripped version of the
			// videoID, ready for use as a function name

			settings.safeID = settings.videoID.replace(/[^a-z0-9]/ig,'');
		
		} catch (e){
			// If the url was invalid, just return the "this"
			return elements.originalDIV;
		}

		// Fetch data about the video from YouTube's API

		var youtubeAPI = 'http://gdata.youtube.com/feeds/api/videos?v=2&alt=jsonc';

		$.get(youtubeAPI,{'q':settings.videoID},function(response){
			
			var data = response.data;
	
			if(!data.totalItems || data.items[0].accessControl.embed!="allowed"){
				
				// If the video was not found, or embedding is not allowed;
				
				return elements.originalDIV;
			}

			// data holds API info about the video:
			
			data = data.items[0];
			
			settings.ratio = 3/4;
			if(data.aspectRatio == "widescreen"){
				settings.ratio = 9/16;
			}
			
			settings.height = Math.round(settings.width*settings.ratio);

			// Creating a container inside the original div, which will
			// hold the object/embed code of the video

			elements.container = $('<div>',{className:'flashContainer',css:{
				width	: settings.width,
				height	: settings.height
			}}).appendTo(elements.originalDIV);

			// Embedding the YouTube chromeless player
			// and loading the video inside it:

			elements.container.flash({
				swf			: 'http://www.youtube.com/apiplayer?enablejsapi=1&version=3',
				id			: 'video_'+settings.safeID,
				height		: settings.height,
				width		: settings.width,
				allowScriptAccess:'always',
				wmode		: 'transparent',
				flashvars	: {
					"video_id"		: settings.videoID,
					"playerapiid"	: settings.safeID
				}
			});

			// We use get, because we need the DOM element
			// itself, and not a jquery object:
			
			elements.player = elements.container.flash().get(0);

			// Creating the control Div. It will act as a ply/pause button

			elements.control = $('<div>',{className:'controlDiv play'})
							   .appendTo(elements.container);

			// If the user wants to show the progress bar:
			if(settings.progressBar){
				elements.progress =	$('<div>',{className:'progressBar'})
									.appendTo(elements.container);

				elements.elapsed =	$('<div>',{className:'elapsed'})
									.appendTo(elements.progress);
				
				elements.progress.click(function(e){
					
					// When a click occurs on the progress bar, seek to the
					// appropriate moment of the video.
					
					var ratio = (e.pageX-elements.progress.offset().left)/elements.progress.outerWidth();
					
					elements.elapsed.width(ratio*100+'%');
					elements.player.seekTo(Math.round(data.duration*ratio), true);
					return false;
				});

			}

			var initialized = false;
			
			// Creating a global event listening function for the video
			// (required by YouTube's player API):
			
			window['eventListener_'+settings.safeID] = function(status){

				var interval;
				
				if(status==-1)	// video is loaded
				{
					if(!initialized)
					{
						// Listen for a click on the control button:
						elements.control.click(function(){
							if(!elements.container.hasClass('playing')){
								
								// If the video is not currently playing, start it:
								elements.control.removeClass('play replay').addClass('pause');
								elements.container.addClass('playing');
								elements.player.playVideo();
								
								if(settings.progressBar){
									interval = window.setInterval(function(){
										elements.elapsed.width(
											((elements.player.getCurrentTime()/data.duration)*100)+'%'
										);
									},1000);
								}
								
							} else {
								
								// If the video is currently playing, pause it:
								
								elements.control.removeClass('pause').addClass('play');
								elements.container.removeClass('playing');
								elements.player.pauseVideo();
								
								if(settings.progressBar){
									window.clearInterval(interval);
								}
							}
						});
						
						initialized = true;
					}
					else{
						// This will happen if the user has clicked on the
						// YouTube logo and has been redirected to youtube.com

						if(elements.container.hasClass('playing'))
						{
							elements.control.click();
						}
					}
				}
				
				if(status==0){ // video has ended
					elements.control.removeClass('pause').addClass('replay');
					elements.container.removeClass('playing');
				}
			}
			
			// This global function is called when the player is loaded.
			// It is shared by all the videos on the page:
			
			if(!window.onYouTubePlayerReady)
			{				
				window.onYouTubePlayerReady = function(playerID){
					document.getElementById('video_'+playerID).addEventListener('onStateChange','eventListener_'+playerID);
					setTimeout(function(){$('.controlDiv.play').eq(0).click();},50);
				}
			}
		},'jsonp');

		return elements.originalDIV;
	}

})(jQuery);
;
/*
 * jYoutube 1.0 - YouTube video image getter plugin for jQuery
 *
 * Copyright (c) 2009 jQuery Howto
 *
 * Licensed under the GPL license:
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Plugin home & Author URL:
 *   http://jquery-howto.blogspot.com
 *
 */
(function($){
	$.extend({
		jYoutube: function( url, size ){
			if(url === null){ return ""; }

			size = (size === null) ? "big" : size;
			var vid;
			var results;

			results = url.match("[\\?&]v=([^&#]*)");

			vid = ( results === null ) ? url : results[1];

			if(size == "small"){
				return "http://img.youtube.com/vi/"+vid+"/2.jpg";
			}else {
				return "http://img.youtube.com/vi/"+vid+"/0.jpg";
			}
		}
	})
})(jQuery);
;
// jQuery SWFObject v1.1.1 MIT/GPL @jon_neal
// http://jquery.thewikies.com/swfobject
(function(f,h,i){function k(a,c){var b=(a[0]||0)-(c[0]||0);return b>0||!b&&a.length>0&&k(a.slice(1),c.slice(1))}function l(a){if(typeof a!=g)return a;var c=[],b="";for(var d in a){b=typeof a[d]==g?l(a[d]):[d,m?encodeURI(a[d]):a[d]].join("=");c.push(b)}return c.join("&")}function n(a){var c=[];for(var b in a)a[b]&&c.push([b,'="',a[b],'"'].join(""));return c.join(" ")}function o(a){var c=[];for(var b in a)c.push(['<param name="',b,'" value="',l(a[b]),'" />'].join(""));return c.join("")}var g="object",m=true;try{var j=i.description||function(){return(new i("ShockwaveFlash.ShockwaveFlash")).GetVariable("$version")}()}catch(p){j="Unavailable"}var e=j.match(/\d+/g)||[0];f[h]={available:e[0]>0,activeX:i&&!i.name,version:{original:j,array:e,string:e.join("."),major:parseInt(e[0],10)||0,minor:parseInt(e[1],10)||0,release:parseInt(e[2],10)||0},hasVersion:function(a){a=/string|number/.test(typeof a)?a.toString().split("."):/object/.test(typeof a)?[a.major,a.minor]:a||[0,0];return k(e,a)},encodeParams:true,expressInstall:"expressInstall.swf",expressInstallIsActive:false,create:function(a){if(!a.swf||this.expressInstallIsActive||!this.available&&!a.hasVersionFail)return false;if(!this.hasVersion(a.hasVersion||1)){this.expressInstallIsActive=true;if(typeof a.hasVersionFail=="function")if(!a.hasVersionFail.apply(a))return false;a={swf:a.expressInstall||this.expressInstall,height:137,width:214,flashvars:{MMredirectURL:location.href,MMplayerType:this.activeX?"ActiveX":"PlugIn",MMdoctitle:document.title.slice(0,47)+" - Flash Player Installation"}}}attrs={data:a.swf,type:"application/x-shockwave-flash",id:a.id||"flash_"+Math.floor(Math.random()*999999999),width:a.width||320,height:a.height||180,style:a.style||""};m=typeof a.useEncode!=="undefined"?a.useEncode:this.encodeParams;a.movie=a.swf;a.wmode=a.wmode||"opaque";delete a.fallback;delete a.hasVersion;delete a.hasVersionFail;delete a.height;delete a.id;delete a.swf;delete a.useEncode;delete a.width;var c=document.createElement("div");c.innerHTML=["<object ",n(attrs),">",o(a),"</object>"].join("");return c.firstChild}};f.fn[h]=function(a){var c=this.find(g).andSelf().filter(g);/string|object/.test(typeof a)&&this.each(function(){var b=f(this),d;a=typeof a==g?a:{swf:a};a.fallback=this;if(d=f[h].create(a)){b.children().remove();b.html(d)}});typeof a=="function"&&c.each(function(){var b=this;b.jsInteractionTimeoutMs=b.jsInteractionTimeoutMs||0;if(b.jsInteractionTimeoutMs<660)b.clientWidth||b.clientHeight?a.call(b):setTimeout(function(){f(b)[h](a)},b.jsInteractionTimeoutMs+66)});return c}})(jQuery,"flash",navigator.plugins["Shockwave Flash"]||window.ActiveXObject);
;
/*
 * SimpleModal 1.4.1 - jQuery Plugin
 * http://www.ericmmartin.com/projects/simplemodal/
 * Copyright (c) 2010 Eric Martin (http://twitter.com/ericmmartin)
 * Dual licensed under the MIT and GPL licenses
 * Revision: $Id: jquery.simplemodal.js 261 2010-11-05 21:16:20Z emartin24 $
 */
(function(d){var k=d.browser.msie&&parseInt(d.browser.version)===6&&typeof window.XMLHttpRequest!=="object",m=d.browser.msie&&parseInt(d.browser.version)===7,l=null,f=[];d.modal=function(a,b){return d.modal.impl.init(a,b)};d.modal.close=function(){d.modal.impl.close()};d.modal.focus=function(a){d.modal.impl.focus(a)};d.modal.setContainerDimensions=function(){d.modal.impl.setContainerDimensions()};d.modal.setPosition=function(){d.modal.impl.setPosition()};d.modal.update=function(a,b){d.modal.impl.update(a,
b)};d.fn.modal=function(a){return d.modal.impl.init(this,a)};d.modal.defaults={appendTo:"body",focus:true,opacity:50,overlayId:"simplemodal-overlay",overlayCss:{},containerId:"simplemodal-container",containerCss:{},dataId:"simplemodal-data",dataCss:{},minHeight:null,minWidth:null,maxHeight:null,maxWidth:null,autoResize:false,autoPosition:true,zIndex:1E3,close:true,closeHTML:'<a class="modalCloseImg" title="Close"></a>',closeClass:"simplemodal-close",escClose:true,overlayClose:false,position:null,
persist:false,modal:true,onOpen:null,onShow:null,onClose:null};d.modal.impl={d:{},init:function(a,b){var c=this;if(c.d.data)return false;l=d.browser.msie&&!d.boxModel;c.o=d.extend({},d.modal.defaults,b);c.zIndex=c.o.zIndex;c.occb=false;if(typeof a==="object"){a=a instanceof jQuery?a:d(a);c.d.placeholder=false;if(a.parent().parent().size()>0){a.before(d("<span></span>").attr("id","simplemodal-placeholder").css({display:"none"}));c.d.placeholder=true;c.display=a.css("display");if(!c.o.persist)c.d.orig=
a.clone(true)}}else if(typeof a==="string"||typeof a==="number")a=d("<div></div>").html(a);else{alert("SimpleModal Error: Unsupported data type: "+typeof a);return c}c.create(a);c.open();d.isFunction(c.o.onShow)&&c.o.onShow.apply(c,[c.d]);return c},create:function(a){var b=this;f=b.getDimensions();if(b.o.modal&&k)b.d.iframe=d('<iframe src="javascript:false;"></iframe>').css(d.extend(b.o.iframeCss,{display:"none",opacity:0,position:"fixed",height:f[0],width:f[1],zIndex:b.o.zIndex,top:0,left:0})).appendTo(b.o.appendTo);
b.d.overlay=d("<div></div>").attr("id",b.o.overlayId).addClass("simplemodal-overlay").css(d.extend(b.o.overlayCss,{display:"none",opacity:b.o.opacity/100,height:b.o.modal?f[0]:0,width:b.o.modal?f[1]:0,position:"fixed",left:0,top:0,zIndex:b.o.zIndex+1})).appendTo(b.o.appendTo);b.d.container=d("<div></div>").attr("id",b.o.containerId).addClass("simplemodal-container").css(d.extend(b.o.containerCss,{display:"none",position:"fixed",zIndex:b.o.zIndex+2})).append(b.o.close&&b.o.closeHTML?d(b.o.closeHTML).addClass(b.o.closeClass):
"").appendTo(b.o.appendTo);b.d.wrap=d("<div></div>").attr("tabIndex",-1).addClass("simplemodal-wrap").css({height:"100%",outline:0,width:"100%"}).appendTo(b.d.container);b.d.data=a.attr("id",a.attr("id")||b.o.dataId).addClass("simplemodal-data").css(d.extend(b.o.dataCss,{display:"none"})).appendTo("body");b.setContainerDimensions();b.d.data.appendTo(b.d.wrap);if(k||l)b.fixIE()},bindEvents:function(){var a=this;d("."+a.o.closeClass).bind("click.simplemodal",function(b){b.preventDefault();a.close()});
a.o.modal&&a.o.close&&a.o.overlayClose&&a.d.overlay.bind("click.simplemodal",function(b){b.preventDefault();a.close()});d(document).bind("keydown.simplemodal",function(b){if(a.o.modal&&b.keyCode===9)a.watchTab(b);else if(a.o.close&&a.o.escClose&&b.keyCode===27){b.preventDefault();a.close()}});d(window).bind("resize.simplemodal",function(){f=a.getDimensions();a.o.autoResize?a.setContainerDimensions():a.o.autoPosition&&a.setPosition();if(k||l)a.fixIE();else if(a.o.modal){a.d.iframe&&a.d.iframe.css({height:f[0],
width:f[1]});a.d.overlay.css({height:f[0],width:f[1]})}})},unbindEvents:function(){d("."+this.o.closeClass).unbind("click.simplemodal");d(document).unbind("keydown.simplemodal");d(window).unbind("resize.simplemodal");this.d.overlay.unbind("click.simplemodal")},fixIE:function(){var a=this,b=a.o.position;d.each([a.d.iframe||null,!a.o.modal?null:a.d.overlay,a.d.container],function(c,h){if(h){var g=h[0].style;g.position="absolute";if(c<2){g.removeExpression("height");g.removeExpression("width");g.setExpression("height",
'document.body.scrollHeight > document.body.clientHeight ? document.body.scrollHeight : document.body.clientHeight + "px"');g.setExpression("width",'document.body.scrollWidth > document.body.clientWidth ? document.body.scrollWidth : document.body.clientWidth + "px"')}else{var e;if(b&&b.constructor===Array){c=b[0]?typeof b[0]==="number"?b[0].toString():b[0].replace(/px/,""):h.css("top").replace(/px/,"");c=c.indexOf("%")===-1?c+' + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"':
parseInt(c.replace(/%/,""))+' * ((document.documentElement.clientHeight || document.body.clientHeight) / 100) + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"';if(b[1]){e=typeof b[1]==="number"?b[1].toString():b[1].replace(/px/,"");e=e.indexOf("%")===-1?e+' + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"':parseInt(e.replace(/%/,""))+' * ((document.documentElement.clientWidth || document.body.clientWidth) / 100) + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"'}}else{c=
'(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"';e='(document.documentElement.clientWidth || document.body.clientWidth) / 2 - (this.offsetWidth / 2) + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"'}g.removeExpression("top");g.removeExpression("left");g.setExpression("top",
c);g.setExpression("left",e)}}})},focus:function(a){var b=this;a=a&&d.inArray(a,["first","last"])!==-1?a:"first";var c=d(":input:enabled:visible:"+a,b.d.wrap);setTimeout(function(){c.length>0?c.focus():b.d.wrap.focus()},10)},getDimensions:function(){var a=d(window);return[d.browser.opera&&d.browser.version>"9.5"&&d.fn.jquery<"1.3"||d.browser.opera&&d.browser.version<"9.5"&&d.fn.jquery>"1.2.6"?a[0].innerHeight:a.height(),a.width()]},getVal:function(a,b){return a?typeof a==="number"?a:a==="auto"?0:
a.indexOf("%")>0?parseInt(a.replace(/%/,""))/100*(b==="h"?f[0]:f[1]):parseInt(a.replace(/px/,"")):null},update:function(a,b){var c=this;if(!c.d.data)return false;c.d.origHeight=c.getVal(a,"h");c.d.origWidth=c.getVal(b,"w");c.d.data.hide();a&&c.d.container.css("height",a);b&&c.d.container.css("width",b);c.setContainerDimensions();c.d.data.show();c.o.focus&&c.focus();c.unbindEvents();c.bindEvents()},setContainerDimensions:function(){var a=this,b=k||m,c=a.d.origHeight?a.d.origHeight:d.browser.opera?
a.d.container.height():a.getVal(b?a.d.container[0].currentStyle.height:a.d.container.css("height"),"h");b=a.d.origWidth?a.d.origWidth:d.browser.opera?a.d.container.width():a.getVal(b?a.d.container[0].currentStyle.width:a.d.container.css("width"),"w");var h=a.d.data.outerHeight(true),g=a.d.data.outerWidth(true);a.d.origHeight=a.d.origHeight||c;a.d.origWidth=a.d.origWidth||b;var e=a.o.maxHeight?a.getVal(a.o.maxHeight,"h"):null,i=a.o.maxWidth?a.getVal(a.o.maxWidth,"w"):null;e=e&&e<f[0]?e:f[0];i=i&&i<
f[1]?i:f[1];var j=a.o.minHeight?a.getVal(a.o.minHeight,"h"):"auto";c=c?a.o.autoResize&&c>e?e:c<j?j:c:h?h>e?e:a.o.minHeight&&j!=="auto"&&h<j?j:h:j;e=a.o.minWidth?a.getVal(a.o.minWidth,"w"):"auto";b=b?a.o.autoResize&&b>i?i:b<e?e:b:g?g>i?i:a.o.minWidth&&e!=="auto"&&g<e?e:g:e;a.d.container.css({height:c,width:b});a.d.wrap.css({overflow:h>c||g>b?"auto":"visible"});a.o.autoPosition&&a.setPosition()},setPosition:function(){var a=this,b,c;b=f[0]/2-a.d.container.outerHeight(true)/2;c=f[1]/2-a.d.container.outerWidth(true)/
2;if(a.o.position&&Object.prototype.toString.call(a.o.position)==="[object Array]"){b=a.o.position[0]||b;c=a.o.position[1]||c}else{b=b;c=c}a.d.container.css({left:c,top:b})},watchTab:function(a){var b=this;if(d(a.target).parents(".simplemodal-container").length>0){b.inputs=d(":input:enabled:visible:first, :input:enabled:visible:last",b.d.data[0]);if(!a.shiftKey&&a.target===b.inputs[b.inputs.length-1]||a.shiftKey&&a.target===b.inputs[0]||b.inputs.length===0){a.preventDefault();b.focus(a.shiftKey?"last":
"first")}}else{a.preventDefault();b.focus()}},open:function(){var a=this;a.d.iframe&&a.d.iframe.show();if(d.isFunction(a.o.onOpen))a.o.onOpen.apply(a,[a.d]);else{a.d.overlay.show();a.d.container.show();a.d.data.show()}a.o.focus&&a.focus();a.bindEvents()},close:function(){var a=this;if(!a.d.data)return false;a.unbindEvents();if(d.isFunction(a.o.onClose)&&!a.occb){a.occb=true;a.o.onClose.apply(a,[a.d])}else{if(a.d.placeholder){var b=d("#simplemodal-placeholder");if(a.o.persist)b.replaceWith(a.d.data.removeClass("simplemodal-data").css("display",
a.display));else{a.d.data.hide().remove();b.replaceWith(a.d.orig)}}else a.d.data.hide().remove();a.d.container.hide().remove();a.d.overlay.hide();a.d.iframe&&a.d.iframe.hide().remove();setTimeout(function(){a.d.overlay.remove();a.d={}},10)}}}})(jQuery);
;
/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.9995 (09-AUG-2011)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.3.2 or later
 */
;(function($) {

var ver = '2.9995';

// if $.support is not defined (pre jQuery 1.3) add what I need
if ($.support == undefined) {
	$.support = {
		opacity: !($.browser.msie)
	};
}

function debug(s) {
	$.fn.cycle.debug && log(s);
}		
function log() {
	window.console && console.log && console.log('[cycle] ' + Array.prototype.join.call(arguments,' '));
}
$.expr[':'].paused = function(el) {
	return el.cyclePause;
}


// the options arg can be...
//   a number  - indicates an immediate transition should occur to the given slide index
//   a string  - 'pause', 'resume', 'toggle', 'next', 'prev', 'stop', 'destroy' or the name of a transition effect (ie, 'fade', 'zoom', etc)
//   an object - properties to control the slideshow
//
// the arg2 arg can be...
//   the name of an fx (only used in conjunction with a numeric value for 'options')
//   the value true (only used in first arg == 'resume') and indicates
//	 that the resume should occur immediately (not wait for next timeout)

$.fn.cycle = function(options, arg2) {
	var o = { s: this.selector, c: this.context };

	// in 1.3+ we can fix mistakes with the ready state
	if (this.length === 0 && options != 'stop') {
		if (!$.isReady && o.s) {
			log('DOM not ready, queuing slideshow');
			$(function() {
				$(o.s,o.c).cycle(options,arg2);
			});
			return this;
		}
		// is your DOM ready?  http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
		log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
		return this;
	}

	// iterate the matched nodeset
	return this.each(function() {
		var opts = handleArguments(this, options, arg2);
		if (opts === false)
			return;

		opts.updateActivePagerLink = opts.updateActivePagerLink || $.fn.cycle.updateActivePagerLink;
		
		// stop existing slideshow for this container (if there is one)
		if (this.cycleTimeout)
			clearTimeout(this.cycleTimeout);
		this.cycleTimeout = this.cyclePause = 0;

		var $cont = $(this);
		var $slides = opts.slideExpr ? $(opts.slideExpr, this) : $cont.children();
		var els = $slides.get();

		var opts2 = buildOptions($cont, $slides, els, opts, o);
		if (opts2 === false)
			return;

		if (els.length < 2) {
			log('terminating; too few slides: ' + els.length);
			return;
		}

		var startTime = opts2.continuous ? 10 : getTimeout(els[opts2.currSlide], els[opts2.nextSlide], opts2, !opts2.backwards);

		// if it's an auto slideshow, kick it off
		if (startTime) {
			startTime += (opts2.delay || 0);
			if (startTime < 10)
				startTime = 10;
			debug('first timeout: ' + startTime);
			this.cycleTimeout = setTimeout(function(){go(els,opts2,0,!opts.backwards)}, startTime);
		}
	});
};

function triggerPause(cont, byHover, onPager) {
	var opts = $(cont).data('cycle.opts');
	var paused = !!cont.cyclePause;
	if (paused && opts.paused)
		opts.paused(cont, opts, byHover, onPager);
	else if (!paused && opts.resumed)
		opts.resumed(cont, opts, byHover, onPager);
}

// process the args that were passed to the plugin fn
function handleArguments(cont, options, arg2) {
	if (cont.cycleStop == undefined)
		cont.cycleStop = 0;
	if (options === undefined || options === null)
		options = {};
	if (options.constructor == String) {
		switch(options) {
		case 'destroy':
		case 'stop':
			var opts = $(cont).data('cycle.opts');
			if (!opts)
				return false;
			cont.cycleStop++; // callbacks look for change
			if (cont.cycleTimeout)
				clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
			opts.elements && $(opts.elements).stop();
			$(cont).removeData('cycle.opts');
			if (options == 'destroy')
				destroy(opts);
			return false;
		case 'toggle':
			cont.cyclePause = (cont.cyclePause === 1) ? 0 : 1;
			checkInstantResume(cont.cyclePause, arg2, cont);
			triggerPause(cont);
			return false;
		case 'pause':
			cont.cyclePause = 1;
			triggerPause(cont);
			return false;
		case 'resume':
			cont.cyclePause = 0;
			checkInstantResume(false, arg2, cont);
			triggerPause(cont);
			return false;
		case 'prev':
		case 'next':
			var opts = $(cont).data('cycle.opts');
			if (!opts) {
				log('options not found, "prev/next" ignored');
				return false;
			}
			$.fn.cycle[options](opts);
			return false;
		default:
			options = { fx: options };
		};
		return options;
	}
	else if (options.constructor == Number) {
		// go to the requested slide
		var num = options;
		options = $(cont).data('cycle.opts');
		if (!options) {
			log('options not found, can not advance slide');
			return false;
		}
		if (num < 0 || num >= options.elements.length) {
			log('invalid slide index: ' + num);
			return false;
		}
		options.nextSlide = num;
		if (cont.cycleTimeout) {
			clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
		}
		if (typeof arg2 == 'string')
			options.oneTimeFx = arg2;
		go(options.elements, options, 1, num >= options.currSlide);
		return false;
	}
	return options;
	
	function checkInstantResume(isPaused, arg2, cont) {
		if (!isPaused && arg2 === true) { // resume now!
			var options = $(cont).data('cycle.opts');
			if (!options) {
				log('options not found, can not resume');
				return false;
			}
			if (cont.cycleTimeout) {
				clearTimeout(cont.cycleTimeout);
				cont.cycleTimeout = 0;
			}
			go(options.elements, options, 1, !options.backwards);
		}
	}
};

function removeFilter(el, opts) {
	if (!$.support.opacity && opts.cleartype && el.style.filter) {
		try { el.style.removeAttribute('filter'); }
		catch(smother) {} // handle old opera versions
	}
};

// unbind event handlers
function destroy(opts) {
	if (opts.next)
		$(opts.next).unbind(opts.prevNextEvent);
	if (opts.prev)
		$(opts.prev).unbind(opts.prevNextEvent);
	
	if (opts.pager || opts.pagerAnchorBuilder)
		$.each(opts.pagerAnchors || [], function() {
			this.unbind().remove();
		});
	opts.pagerAnchors = null;
	if (opts.destroy) // callback
		opts.destroy(opts);
};

// one-time initialization
function buildOptions($cont, $slides, els, options, o) {
	// support metadata plugin (v1.0 and v2.0)
	var opts = $.extend({}, $.fn.cycle.defaults, options || {}, $.metadata ? $cont.metadata() : $.meta ? $cont.data() : {});
	var meta = $.isFunction($cont.data) ? $cont.data(opts.metaAttr) : null;
	if (meta)
		opts = $.extend(opts, meta);
	if (opts.autostop)
		opts.countdown = opts.autostopCount || els.length;

	var cont = $cont[0];
	$cont.data('cycle.opts', opts);
	opts.$cont = $cont;
	opts.stopCount = cont.cycleStop;
	opts.elements = els;
	opts.before = opts.before ? [opts.before] : [];
	opts.after = opts.after ? [opts.after] : [];

	// push some after callbacks
	if (!$.support.opacity && opts.cleartype)
		opts.after.push(function() { removeFilter(this, opts); });
	if (opts.continuous)
		opts.after.push(function() { go(els,opts,0,!opts.backwards); });

	saveOriginalOpts(opts);

	// clearType corrections
	if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
		clearTypeFix($slides);

	// container requires non-static position so that slides can be position within
	if ($cont.css('position') == 'static')
		$cont.css('position', 'relative');
	if (opts.width)
		$cont.width(opts.width);
	if (opts.height && opts.height != 'auto')
		$cont.height(opts.height);

	if (opts.startingSlide)
		opts.startingSlide = parseInt(opts.startingSlide,10);
	else if (opts.backwards)
		opts.startingSlide = els.length - 1;

	// if random, mix up the slide array
	if (opts.random) {
		opts.randomMap = [];
		for (var i = 0; i < els.length; i++)
			opts.randomMap.push(i);
		opts.randomMap.sort(function(a,b) {return Math.random() - 0.5;});
		opts.randomIndex = 1;
		opts.startingSlide = opts.randomMap[1];
	}
	else if (opts.startingSlide >= els.length)
		opts.startingSlide = 0; // catch bogus input
	opts.currSlide = opts.startingSlide || 0;
	var first = opts.startingSlide;

	// set position and zIndex on all the slides
	$slides.css({position: 'absolute', top:0, left:0}).hide().each(function(i) {
		var z;
		if (opts.backwards)
			z = first ? i <= first ? els.length + (i-first) : first-i : els.length-i;
		else
			z = first ? i >= first ? els.length - (i-first) : first-i : els.length-i;
		$(this).css('z-index', z)
	});

	// make sure first slide is visible
	$(els[first]).css('opacity',1).show(); // opacity bit needed to handle restart use case
	removeFilter(els[first], opts);

	// stretch slides
	if (opts.fit) {
		if (!opts.aspect) {
	        if (opts.width)
	            $slides.width(opts.width);
	        if (opts.height && opts.height != 'auto')
	            $slides.height(opts.height);
		} else {
			$slides.each(function(){
				var $slide = $(this);
				var ratio = (opts.aspect === true) ? $slide.width()/$slide.height() : opts.aspect;
				if( opts.width && $slide.width() != opts.width ) {
					$slide.width( opts.width );
					$slide.height( opts.width / ratio );
				}

				if( opts.height && $slide.height() < opts.height ) {
					$slide.height( opts.height );
					$slide.width( opts.height * ratio );
				}
			});
		}
	}

	if (opts.center && ((!opts.fit) || opts.aspect)) {
		$slides.each(function(){
			var $slide = $(this);
			$slide.css({
				"margin-left": opts.width ?
					((opts.width - $slide.width()) / 2) + "px" :
					0,
				"margin-top": opts.height ?
					((opts.height - $slide.height()) / 2) + "px" :
					0
			});
		});
	}

	if (opts.center && !opts.fit && !opts.slideResize) {
	  	$slides.each(function(){
	    	var $slide = $(this);
	    	$slide.css({
	      		"margin-left": opts.width ? ((opts.width - $slide.width()) / 2) + "px" : 0,
	      		"margin-top": opts.height ? ((opts.height - $slide.height()) / 2) + "px" : 0
	    	});
	  	});
	}
		
	// stretch container
	var reshape = opts.containerResize && !$cont.innerHeight();
	if (reshape) { // do this only if container has no size http://tinyurl.com/da2oa9
		var maxw = 0, maxh = 0;
		for(var j=0; j < els.length; j++) {
			var $e = $(els[j]), e = $e[0], w = $e.outerWidth(), h = $e.outerHeight();
			if (!w) w = e.offsetWidth || e.width || $e.attr('width');
			if (!h) h = e.offsetHeight || e.height || $e.attr('height');
			maxw = w > maxw ? w : maxw;
			maxh = h > maxh ? h : maxh;
		}
		if (maxw > 0 && maxh > 0)
			$cont.css({width:maxw+'px',height:maxh+'px'});
	}

	var pauseFlag = false;  // https://github.com/malsup/cycle/issues/44
	if (opts.pause)
		$cont.hover(
			function(){
				pauseFlag = true;
				this.cyclePause++;
				triggerPause(cont, true);
			},
			function(){
				pauseFlag && this.cyclePause--;
				triggerPause(cont, true);
			}
		);

	if (supportMultiTransitions(opts) === false)
		return false;

	// apparently a lot of people use image slideshows without height/width attributes on the images.
	// Cycle 2.50+ requires the sizing info for every slide; this block tries to deal with that.
	var requeue = false;
	options.requeueAttempts = options.requeueAttempts || 0;
	$slides.each(function() {
		// try to get height/width of each slide
		var $el = $(this);
		this.cycleH = (opts.fit && opts.height) ? opts.height : ($el.height() || this.offsetHeight || this.height || $el.attr('height') || 0);
		this.cycleW = (opts.fit && opts.width) ? opts.width : ($el.width() || this.offsetWidth || this.width || $el.attr('width') || 0);

		if ( $el.is('img') ) {
			// sigh..  sniffing, hacking, shrugging...  this crappy hack tries to account for what browsers do when
			// an image is being downloaded and the markup did not include sizing info (height/width attributes);
			// there seems to be some "default" sizes used in this situation
			var loadingIE	= ($.browser.msie  && this.cycleW == 28 && this.cycleH == 30 && !this.complete);
			var loadingFF	= ($.browser.mozilla && this.cycleW == 34 && this.cycleH == 19 && !this.complete);
			var loadingOp	= ($.browser.opera && ((this.cycleW == 42 && this.cycleH == 19) || (this.cycleW == 37 && this.cycleH == 17)) && !this.complete);
			var loadingOther = (this.cycleH == 0 && this.cycleW == 0 && !this.complete);
			// don't requeue for images that are still loading but have a valid size
			if (loadingIE || loadingFF || loadingOp || loadingOther) {
				if (o.s && opts.requeueOnImageNotLoaded && ++options.requeueAttempts < 100) { // track retry count so we don't loop forever
					log(options.requeueAttempts,' - img slide not loaded, requeuing slideshow: ', this.src, this.cycleW, this.cycleH);
					setTimeout(function() {$(o.s,o.c).cycle(options)}, opts.requeueTimeout);
					requeue = true;
					return false; // break each loop
				}
				else {
					log('could not determine size of image: '+this.src, this.cycleW, this.cycleH);
				}
			}
		}
		return true;
	});

	if (requeue)
		return false;

	opts.cssBefore = opts.cssBefore || {};
	opts.cssAfter = opts.cssAfter || {};
	opts.cssFirst = opts.cssFirst || {};
	opts.animIn = opts.animIn || {};
	opts.animOut = opts.animOut || {};

	$slides.not(':eq('+first+')').css(opts.cssBefore);
	$($slides[first]).css(opts.cssFirst);

	if (opts.timeout) {
		opts.timeout = parseInt(opts.timeout,10);
		// ensure that timeout and speed settings are sane
		if (opts.speed.constructor == String)
			opts.speed = $.fx.speeds[opts.speed] || parseInt(opts.speed,10);
		if (!opts.sync)
			opts.speed = opts.speed / 2;
		
		var buffer = opts.fx == 'none' ? 0 : opts.fx == 'shuffle' ? 500 : 250;
		while((opts.timeout - opts.speed) < buffer) // sanitize timeout
			opts.timeout += opts.speed;
	}
	if (opts.easing)
		opts.easeIn = opts.easeOut = opts.easing;
	if (!opts.speedIn)
		opts.speedIn = opts.speed;
	if (!opts.speedOut)
		opts.speedOut = opts.speed;

	opts.slideCount = els.length;
	opts.currSlide = opts.lastSlide = first;
	if (opts.random) {
		if (++opts.randomIndex == els.length)
			opts.randomIndex = 0;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else if (opts.backwards)
		opts.nextSlide = opts.startingSlide == 0 ? (els.length-1) : opts.startingSlide-1;
	else
		opts.nextSlide = opts.startingSlide >= (els.length-1) ? 0 : opts.startingSlide+1;

	// run transition init fn
	if (!opts.multiFx) {
		var init = $.fn.cycle.transitions[opts.fx];
		if ($.isFunction(init))
			init($cont, $slides, opts);
		else if (opts.fx != 'custom' && !opts.multiFx) {
			log('unknown transition: ' + opts.fx,'; slideshow terminating');
			return false;
		}
	}

	// fire artificial events
	var e0 = $slides[first];
	if (!opts.skipInitializationCallbacks) {
		if (opts.before.length)
			opts.before[0].apply(e0, [e0, e0, opts, true]);
		if (opts.after.length)
			opts.after[0].apply(e0, [e0, e0, opts, true]);
	}
	if (opts.next)
		$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1)});
	if (opts.prev)
		$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0)});
	if (opts.pager || opts.pagerAnchorBuilder)
		buildPager(els,opts);

	exposeAddSlide(opts, els);

	return opts;
};

// save off original opts so we can restore after clearing state
function saveOriginalOpts(opts) {
	opts.original = { before: [], after: [] };
	opts.original.cssBefore = $.extend({}, opts.cssBefore);
	opts.original.cssAfter  = $.extend({}, opts.cssAfter);
	opts.original.animIn	= $.extend({}, opts.animIn);
	opts.original.animOut   = $.extend({}, opts.animOut);
	$.each(opts.before, function() { opts.original.before.push(this); });
	$.each(opts.after,  function() { opts.original.after.push(this); });
};

function supportMultiTransitions(opts) {
	var i, tx, txs = $.fn.cycle.transitions;
	// look for multiple effects
	if (opts.fx.indexOf(',') > 0) {
		opts.multiFx = true;
		opts.fxs = opts.fx.replace(/\s*/g,'').split(',');
		// discard any bogus effect names
		for (i=0; i < opts.fxs.length; i++) {
			var fx = opts.fxs[i];
			tx = txs[fx];
			if (!tx || !txs.hasOwnProperty(fx) || !$.isFunction(tx)) {
				log('discarding unknown transition: ',fx);
				opts.fxs.splice(i,1);
				i--;
			}
		}
		// if we have an empty list then we threw everything away!
		if (!opts.fxs.length) {
			log('No valid transitions named; slideshow terminating.');
			return false;
		}
	}
	else if (opts.fx == 'all') {  // auto-gen the list of transitions
		opts.multiFx = true;
		opts.fxs = [];
		for (p in txs) {
			tx = txs[p];
			if (txs.hasOwnProperty(p) && $.isFunction(tx))
				opts.fxs.push(p);
		}
	}
	if (opts.multiFx && opts.randomizeEffects) {
		// munge the fxs array to make effect selection random
		var r1 = Math.floor(Math.random() * 20) + 30;
		for (i = 0; i < r1; i++) {
			var r2 = Math.floor(Math.random() * opts.fxs.length);
			opts.fxs.push(opts.fxs.splice(r2,1)[0]);
		}
		debug('randomized fx sequence: ',opts.fxs);
	}
	return true;
};

// provide a mechanism for adding slides after the slideshow has started
function exposeAddSlide(opts, els) {
	opts.addSlide = function(newSlide, prepend) {
		var $s = $(newSlide), s = $s[0];
		if (!opts.autostopCount)
			opts.countdown++;
		els[prepend?'unshift':'push'](s);
		if (opts.els)
			opts.els[prepend?'unshift':'push'](s); // shuffle needs this
		opts.slideCount = els.length;

		$s.css('position','absolute');
		$s[prepend?'prependTo':'appendTo'](opts.$cont);

		if (prepend) {
			opts.currSlide++;
			opts.nextSlide++;
		}

		if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
			clearTypeFix($s);

		if (opts.fit && opts.width)
			$s.width(opts.width);
		if (opts.fit && opts.height && opts.height != 'auto')
			$s.height(opts.height);
		s.cycleH = (opts.fit && opts.height) ? opts.height : $s.height();
		s.cycleW = (opts.fit && opts.width) ? opts.width : $s.width();

		$s.css(opts.cssBefore);

		if (opts.pager || opts.pagerAnchorBuilder)
			$.fn.cycle.createPagerAnchor(els.length-1, s, $(opts.pager), els, opts);

		if ($.isFunction(opts.onAddSlide))
			opts.onAddSlide($s);
		else
			$s.hide(); // default behavior
	};
}

// reset internal state; we do this on every pass in order to support multiple effects
$.fn.cycle.resetState = function(opts, fx) {
	fx = fx || opts.fx;
	opts.before = []; opts.after = [];
	opts.cssBefore = $.extend({}, opts.original.cssBefore);
	opts.cssAfter  = $.extend({}, opts.original.cssAfter);
	opts.animIn	= $.extend({}, opts.original.animIn);
	opts.animOut   = $.extend({}, opts.original.animOut);
	opts.fxFn = null;
	$.each(opts.original.before, function() { opts.before.push(this); });
	$.each(opts.original.after,  function() { opts.after.push(this); });

	// re-init
	var init = $.fn.cycle.transitions[fx];
	if ($.isFunction(init))
		init(opts.$cont, $(opts.elements), opts);
};

// this is the main engine fn, it handles the timeouts, callbacks and slide index mgmt
function go(els, opts, manual, fwd) {
	// opts.busy is true if we're in the middle of an animation
	if (manual && opts.busy && opts.manualTrump) {
		// let manual transitions requests trump active ones
		debug('manualTrump in go(), stopping active transition');
		$(els).stop(true,true);
		opts.busy = 0;
	}
	// don't begin another timeout-based transition if there is one active
	if (opts.busy) {
		debug('transition active, ignoring new tx request');
		return;
	}

	var p = opts.$cont[0], curr = els[opts.currSlide], next = els[opts.nextSlide];

	// stop cycling if we have an outstanding stop request
	if (p.cycleStop != opts.stopCount || p.cycleTimeout === 0 && !manual)
		return;

	// check to see if we should stop cycling based on autostop options
	if (!manual && !p.cyclePause && !opts.bounce &&
		((opts.autostop && (--opts.countdown <= 0)) ||
		(opts.nowrap && !opts.random && opts.nextSlide < opts.currSlide))) {
		if (opts.end)
			opts.end(opts);
		return;
	}

	// if slideshow is paused, only transition on a manual trigger
	var changed = false;
	if ((manual || !p.cyclePause) && (opts.nextSlide != opts.currSlide)) {
		changed = true;
		var fx = opts.fx;
		// keep trying to get the slide size if we don't have it yet
		curr.cycleH = curr.cycleH || $(curr).height();
		curr.cycleW = curr.cycleW || $(curr).width();
		next.cycleH = next.cycleH || $(next).height();
		next.cycleW = next.cycleW || $(next).width();

		// support multiple transition types
		if (opts.multiFx) {
			if (fwd && (opts.lastFx == undefined || ++opts.lastFx >= opts.fxs.length))
				opts.lastFx = 0;
			else if (!fwd && (opts.lastFx == undefined || --opts.lastFx < 0))
				opts.lastFx = opts.fxs.length - 1;
			fx = opts.fxs[opts.lastFx];
		}

		// one-time fx overrides apply to:  $('div').cycle(3,'zoom');
		if (opts.oneTimeFx) {
			fx = opts.oneTimeFx;
			opts.oneTimeFx = null;
		}

		$.fn.cycle.resetState(opts, fx);

		// run the before callbacks
		if (opts.before.length)
			$.each(opts.before, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});

		// stage the after callacks
		var after = function() {
			opts.busy = 0;
			$.each(opts.after, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});
		};

		debug('tx firing('+fx+'); currSlide: ' + opts.currSlide + '; nextSlide: ' + opts.nextSlide);
		
		// get ready to perform the transition
		opts.busy = 1;
		if (opts.fxFn) // fx function provided?
			opts.fxFn(curr, next, opts, after, fwd, manual && opts.fastOnEvent);
		else if ($.isFunction($.fn.cycle[opts.fx])) // fx plugin ?
			$.fn.cycle[opts.fx](curr, next, opts, after, fwd, manual && opts.fastOnEvent);
		else
			$.fn.cycle.custom(curr, next, opts, after, fwd, manual && opts.fastOnEvent);
	}

	if (changed || opts.nextSlide == opts.currSlide) {
		// calculate the next slide
		opts.lastSlide = opts.currSlide;
		if (opts.random) {
			opts.currSlide = opts.nextSlide;
			if (++opts.randomIndex == els.length)
				opts.randomIndex = 0;
			opts.nextSlide = opts.randomMap[opts.randomIndex];
			if (opts.nextSlide == opts.currSlide)
				opts.nextSlide = (opts.currSlide == opts.slideCount - 1) ? 0 : opts.currSlide + 1;
		}
		else if (opts.backwards) {
			var roll = (opts.nextSlide - 1) < 0;
			if (roll && opts.bounce) {
				opts.backwards = !opts.backwards;
				opts.nextSlide = 1;
				opts.currSlide = 0;
			}
			else {
				opts.nextSlide = roll ? (els.length-1) : opts.nextSlide-1;
				opts.currSlide = roll ? 0 : opts.nextSlide+1;
			}
		}
		else { // sequence
			var roll = (opts.nextSlide + 1) == els.length;
			if (roll && opts.bounce) {
				opts.backwards = !opts.backwards;
				opts.nextSlide = els.length-2;
				opts.currSlide = els.length-1;
			}
			else {
				opts.nextSlide = roll ? 0 : opts.nextSlide+1;
				opts.currSlide = roll ? els.length-1 : opts.nextSlide-1;
			}
		}
	}
	if (changed && opts.pager)
		opts.updateActivePagerLink(opts.pager, opts.currSlide, opts.activePagerClass);
	
	// stage the next transition
	var ms = 0;
	if (opts.timeout && !opts.continuous)
		ms = getTimeout(els[opts.currSlide], els[opts.nextSlide], opts, fwd);
	else if (opts.continuous && p.cyclePause) // continuous shows work off an after callback, not this timer logic
		ms = 10;
	if (ms > 0)
		p.cycleTimeout = setTimeout(function(){ go(els, opts, 0, !opts.backwards) }, ms);
};

// invoked after transition
$.fn.cycle.updateActivePagerLink = function(pager, currSlide, clsName) {
   $(pager).each(function() {
       $(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);
   });
};

// calculate timeout value for current transition
function getTimeout(curr, next, opts, fwd) {
	if (opts.timeoutFn) {
		// call user provided calc fn
		var t = opts.timeoutFn.call(curr,curr,next,opts,fwd);
		while (opts.fx != 'none' && (t - opts.speed) < 250) // sanitize timeout
			t += opts.speed;
		debug('calculated timeout: ' + t + '; speed: ' + opts.speed);
		if (t !== false)
			return t;
	}
	return opts.timeout;
};

// expose next/prev function, caller must pass in state
$.fn.cycle.next = function(opts) { advance(opts,1); };
$.fn.cycle.prev = function(opts) { advance(opts,0);};

// advance slide forward or back
function advance(opts, moveForward) {
	var val = moveForward ? 1 : -1;
	var els = opts.elements;
	var p = opts.$cont[0], timeout = p.cycleTimeout;
	if (timeout) {
		clearTimeout(timeout);
		p.cycleTimeout = 0;
	}
	if (opts.random && val < 0) {
		// move back to the previously display slide
		opts.randomIndex--;
		if (--opts.randomIndex == -2)
			opts.randomIndex = els.length-2;
		else if (opts.randomIndex == -1)
			opts.randomIndex = els.length-1;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else if (opts.random) {
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else {
		opts.nextSlide = opts.currSlide + val;
		if (opts.nextSlide < 0) {
			if (opts.nowrap) return false;
			opts.nextSlide = els.length - 1;
		}
		else if (opts.nextSlide >= els.length) {
			if (opts.nowrap) return false;
			opts.nextSlide = 0;
		}
	}

	var cb = opts.onPrevNextEvent || opts.prevNextClick; // prevNextClick is deprecated
	if ($.isFunction(cb))
		cb(val > 0, opts.nextSlide, els[opts.nextSlide]);
	go(els, opts, 1, moveForward);
	return false;
};

function buildPager(els, opts) {
	var $p = $(opts.pager);
	$.each(els, function(i,o) {
		$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);
	});
	opts.updateActivePagerLink(opts.pager, opts.startingSlide, opts.activePagerClass);
};

$.fn.cycle.createPagerAnchor = function(i, el, $p, els, opts) {
	var a;
	if ($.isFunction(opts.pagerAnchorBuilder)) {
		a = opts.pagerAnchorBuilder(i,el);
		debug('pagerAnchorBuilder('+i+', el) returned: ' + a);
	}
	else
		a = '<a href="#">'+(i+1)+'</a>';
		
	if (!a)
		return;
	var $a = $(a);
	// don't reparent if anchor is in the dom
	if ($a.parents('body').length === 0) {
		var arr = [];
		if ($p.length > 1) {
			$p.each(function() {
				var $clone = $a.clone(true);
				$(this).append($clone);
				arr.push($clone[0]);
			});
			$a = $(arr);
		}
		else {
			$a.appendTo($p);
		}
	}

	opts.pagerAnchors =  opts.pagerAnchors || [];
	opts.pagerAnchors.push($a);
	
	var pagerFn = function(e) {
		e.preventDefault();
		opts.nextSlide = i;
		var p = opts.$cont[0], timeout = p.cycleTimeout;
		if (timeout) {
			clearTimeout(timeout);
			p.cycleTimeout = 0;
		}
		var cb = opts.onPagerEvent || opts.pagerClick; // pagerClick is deprecated
		if ($.isFunction(cb))
			cb(opts.nextSlide, els[opts.nextSlide]);
		go(els,opts,1,opts.currSlide < i); // trigger the trans
//		return false; // <== allow bubble
	}
	
	if ( /mouseenter|mouseover/i.test(opts.pagerEvent) ) {
		$a.hover(pagerFn, function(){/* no-op */} );
	}
	else {
		$a.bind(opts.pagerEvent, pagerFn);
	}
	
	if ( ! /^click/.test(opts.pagerEvent) && !opts.allowPagerClickBubble)
		$a.bind('click.cycle', function(){return false;}); // suppress click
	
	var cont = opts.$cont[0];
	var pauseFlag = false; // https://github.com/malsup/cycle/issues/44
	if (opts.pauseOnPagerHover) {
		$a.hover(
			function() { 
				pauseFlag = true;
				cont.cyclePause++; 
				triggerPause(cont,true,true);
			}, function() { 
				pauseFlag && cont.cyclePause--; 
				triggerPause(cont,true,true);
			} 
		);
	}
};

// helper fn to calculate the number of slides between the current and the next
$.fn.cycle.hopsFromLast = function(opts, fwd) {
	var hops, l = opts.lastSlide, c = opts.currSlide;
	if (fwd)
		hops = c > l ? c - l : opts.slideCount - l;
	else
		hops = c < l ? l - c : l + opts.slideCount - c;
	return hops;
};

// fix clearType problems in ie6 by setting an explicit bg color
// (otherwise text slides look horrible during a fade transition)
function clearTypeFix($slides) {
	debug('applying clearType background-color hack');
	function hex(s) {
		s = parseInt(s,10).toString(16);
		return s.length < 2 ? '0'+s : s;
	};
	function getBg(e) {
		for ( ; e && e.nodeName.toLowerCase() != 'html'; e = e.parentNode) {
			var v = $.css(e,'background-color');
			if (v && v.indexOf('rgb') >= 0 ) {
				var rgb = v.match(/\d+/g);
				return '#'+ hex(rgb[0]) + hex(rgb[1]) + hex(rgb[2]);
			}
			if (v && v != 'transparent')
				return v;
		}
		return '#ffffff';
	};
	$slides.each(function() { $(this).css('background-color', getBg(this)); });
};

// reset common props before the next transition
$.fn.cycle.commonReset = function(curr,next,opts,w,h,rev) {
	$(opts.elements).not(curr).hide();
	if (typeof opts.cssBefore.opacity == 'undefined')
		opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	if (opts.slideResize && w !== false && next.cycleW > 0)
		opts.cssBefore.width = next.cycleW;
	if (opts.slideResize && h !== false && next.cycleH > 0)
		opts.cssBefore.height = next.cycleH;
	opts.cssAfter = opts.cssAfter || {};
	opts.cssAfter.display = 'none';
	$(curr).css('zIndex',opts.slideCount + (rev === true ? 1 : 0));
	$(next).css('zIndex',opts.slideCount + (rev === true ? 0 : 1));
};

// the actual fn for effecting a transition
$.fn.cycle.custom = function(curr, next, opts, cb, fwd, speedOverride) {
	var $l = $(curr), $n = $(next);
	var speedIn = opts.speedIn, speedOut = opts.speedOut, easeIn = opts.easeIn, easeOut = opts.easeOut;
	$n.css(opts.cssBefore);
	if (speedOverride) {
		if (typeof speedOverride == 'number')
			speedIn = speedOut = speedOverride;
		else
			speedIn = speedOut = 1;
		easeIn = easeOut = null;
	}
	var fn = function() {
		$n.animate(opts.animIn, speedIn, easeIn, function() {
			cb();
		});
	};
	$l.animate(opts.animOut, speedOut, easeOut, function() {
		$l.css(opts.cssAfter);
		if (!opts.sync) 
			fn();
	});
	if (opts.sync) fn();
};

// transition definitions - only fade is defined here, transition pack defines the rest
$.fn.cycle.transitions = {
	fade: function($cont, $slides, opts) {
		$slides.not(':eq('+opts.currSlide+')').css('opacity',0);
		opts.before.push(function(curr,next,opts) {
			$.fn.cycle.commonReset(curr,next,opts);
			opts.cssBefore.opacity = 0;
		});
		opts.animIn	   = { opacity: 1 };
		opts.animOut   = { opacity: 0 };
		opts.cssBefore = { top: 0, left: 0 };
	}
};

$.fn.cycle.ver = function() { return ver; };

// override these globally if you like (they are all optional)
$.fn.cycle.defaults = {
	activePagerClass: 'activeSlide', // class name used for the active pager link
	after:		   null,  // transition callback (scope set to element that was shown):  function(currSlideElement, nextSlideElement, options, forwardFlag)
	allowPagerClickBubble: false, // allows or prevents click event on pager anchors from bubbling
	animIn:		   null,  // properties that define how the slide animates in
	animOut:	   null,  // properties that define how the slide animates out
	aspect:		   false,  // preserve aspect ratio during fit resizing, cropping if necessary (must be used with fit option)
	autostop:	   0,	  // true to end slideshow after X transitions (where X == slide count)
	autostopCount: 0,	  // number of transitions (optionally used with autostop to define X)
	backwards:     false, // true to start slideshow at last slide and move backwards through the stack
	before:		   null,  // transition callback (scope set to element to be shown):	 function(currSlideElement, nextSlideElement, options, forwardFlag)
	center: 	   null,  // set to true to have cycle add top/left margin to each slide (use with width and height options)
	cleartype:	   !$.support.opacity,  // true if clearType corrections should be applied (for IE)
	cleartypeNoBg: false, // set to true to disable extra cleartype fixing (leave false to force background color setting on slides)
	containerResize: 1,	  // resize container to fit largest slide
	continuous:	   0,	  // true to start next transition immediately after current one completes
	cssAfter:	   null,  // properties that defined the state of the slide after transitioning out
	cssBefore:	   null,  // properties that define the initial state of the slide before transitioning in
	delay:		   0,	  // additional delay (in ms) for first transition (hint: can be negative)
	easeIn:		   null,  // easing for "in" transition
	easeOut:	   null,  // easing for "out" transition
	easing:		   null,  // easing method for both in and out transitions
	end:		   null,  // callback invoked when the slideshow terminates (use with autostop or nowrap options): function(options)
	fastOnEvent:   0,	  // force fast transitions when triggered manually (via pager or prev/next); value == time in ms
	fit:		   0,	  // force slides to fit container
	fx:			  'fade', // name of transition effect (or comma separated names, ex: 'fade,scrollUp,shuffle')
	fxFn:		   null,  // function used to control the transition: function(currSlideElement, nextSlideElement, options, afterCalback, forwardFlag)
	height:		  'auto', // container height (if the 'fit' option is true, the slides will be set to this height as well)
	manualTrump:   true,  // causes manual transition to stop an active transition instead of being ignored
	metaAttr:     'cycle',// data- attribute that holds the option data for the slideshow
	next:		   null,  // element, jQuery object, or jQuery selector string for the element to use as event trigger for next slide
	nowrap:		   0,	  // true to prevent slideshow from wrapping
	onPagerEvent:  null,  // callback fn for pager events: function(zeroBasedSlideIndex, slideElement)
	onPrevNextEvent: null,// callback fn for prev/next events: function(isNext, zeroBasedSlideIndex, slideElement)
	pager:		   null,  // element, jQuery object, or jQuery selector string for the element to use as pager container
	pagerAnchorBuilder: null, // callback fn for building anchor links:  function(index, DOMelement)
	pagerEvent:	  'click.cycle', // name of event which drives the pager navigation
	pause:		   0,	  // true to enable "pause on hover"
	pauseOnPagerHover: 0, // true to pause when hovering over pager link
	prev:		   null,  // element, jQuery object, or jQuery selector string for the element to use as event trigger for previous slide
	prevNextEvent:'click.cycle',// event which drives the manual transition to the previous or next slide
	random:		   0,	  // true for random, false for sequence (not applicable to shuffle fx)
	randomizeEffects: 1,  // valid when multiple effects are used; true to make the effect sequence random
	requeueOnImageNotLoaded: true, // requeue the slideshow if any image slides are not yet loaded
	requeueTimeout: 250,  // ms delay for requeue
	rev:		   0,	  // causes animations to transition in reverse (for effects that support it such as scrollHorz/scrollVert/shuffle)
	shuffle:	   null,  // coords for shuffle animation, ex: { top:15, left: 200 }
	skipInitializationCallbacks: false, // set to true to disable the first before/after callback that occurs prior to any transition
	slideExpr:	   null,  // expression for selecting slides (if something other than all children is required)
	slideResize:   1,     // force slide width/height to fixed size before every transition
	speed:		   1000,  // speed of the transition (any valid fx speed value)
	speedIn:	   null,  // speed of the 'in' transition
	speedOut:	   null,  // speed of the 'out' transition
	startingSlide: 0,	  // zero-based index of the first slide to be displayed
	sync:		   1,	  // true if in/out transitions should occur simultaneously
	timeout:	   4000,  // milliseconds between slide transitions (0 to disable auto advance)
	timeoutFn:     null,  // callback for determining per-slide timeout value:  function(currSlideElement, nextSlideElement, options, forwardFlag)
	updateActivePagerLink: null, // callback fn invoked to update the active pager link (adds/removes activePagerClass style)
	width:         null   // container width (if the 'fit' option is true, the slides will be set to this width as well)
};

})(jQuery);


/*!
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.73
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($) {

//
// These functions define slide initialization and properties for the named
// transitions. To save file size feel free to remove any of these that you
// don't need.
//
$.fn.cycle.transitions.none = function($cont, $slides, opts) {
	opts.fxFn = function(curr,next,opts,after){
		$(next).show();
		$(curr).hide();
		after();
	};
};

// not a cross-fade, fadeout only fades out the top slide
$.fn.cycle.transitions.fadeout = function($cont, $slides, opts) {
	$slides.not(':eq('+opts.currSlide+')').css({ display: 'block', 'opacity': 1 });
	opts.before.push(function(curr,next,opts,w,h,rev) {
		$(curr).css('zIndex',opts.slideCount + (!rev === true ? 1 : 0));
		$(next).css('zIndex',opts.slideCount + (!rev === true ? 0 : 1));
	});
	opts.animIn.opacity = 1;
	opts.animOut.opacity = 0;
	opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	opts.cssAfter.zIndex = 0;
};

// scrollUp/Down/Left/Right
$.fn.cycle.transitions.scrollUp = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var h = $cont.height();
	opts.cssBefore.top = h;
	opts.cssBefore.left = 0;
	opts.cssFirst.top = 0;
	opts.animIn.top = 0;
	opts.animOut.top = -h;
};
$.fn.cycle.transitions.scrollDown = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var h = $cont.height();
	opts.cssFirst.top = 0;
	opts.cssBefore.top = -h;
	opts.cssBefore.left = 0;
	opts.animIn.top = 0;
	opts.animOut.top = h;
};
$.fn.cycle.transitions.scrollLeft = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var w = $cont.width();
	opts.cssFirst.left = 0;
	opts.cssBefore.left = w;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
	opts.animOut.left = 0-w;
};
$.fn.cycle.transitions.scrollRight = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var w = $cont.width();
	opts.cssFirst.left = 0;
	opts.cssBefore.left = -w;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
	opts.animOut.left = w;
};
$.fn.cycle.transitions.scrollHorz = function($cont, $slides, opts) {
	$cont.css('overflow','hidden').width();
	opts.before.push(function(curr, next, opts, fwd) {
		if (opts.rev)
			fwd = !fwd;
		$.fn.cycle.commonReset(curr,next,opts);
		opts.cssBefore.left = fwd ? (next.cycleW-1) : (1-next.cycleW);
		opts.animOut.left = fwd ? -curr.cycleW : curr.cycleW;
	});
	opts.cssFirst.left = 0;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
	opts.animOut.top = 0;
};
$.fn.cycle.transitions.scrollVert = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push(function(curr, next, opts, fwd) {
		if (opts.rev)
			fwd = !fwd;
		$.fn.cycle.commonReset(curr,next,opts);
		opts.cssBefore.top = fwd ? (1-next.cycleH) : (next.cycleH-1);
		opts.animOut.top = fwd ? curr.cycleH : -curr.cycleH;
	});
	opts.cssFirst.top = 0;
	opts.cssBefore.left = 0;
	opts.animIn.top = 0;
	opts.animOut.left = 0;
};

// slideX/slideY
$.fn.cycle.transitions.slideX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$(opts.elements).not(curr).hide();
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.animIn.width = next.cycleW;
	});
	opts.cssBefore.left = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.width = 0;
	opts.animIn.width = 'show';
	opts.animOut.width = 0;
};
$.fn.cycle.transitions.slideY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$(opts.elements).not(curr).hide();
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.animIn.height = next.cycleH;
	});
	opts.cssBefore.left = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.height = 0;
	opts.animIn.height = 'show';
	opts.animOut.height = 0;
};

// shuffle
$.fn.cycle.transitions.shuffle = function($cont, $slides, opts) {
	var i, w = $cont.css('overflow', 'visible').width();
	$slides.css({left: 0, top: 0});
	opts.before.push(function(curr,next,opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
	});
	// only adjust speed once!
	if (!opts.speedAdjusted) {
		opts.speed = opts.speed / 2; // shuffle has 2 transitions
		opts.speedAdjusted = true;
	}
	opts.random = 0;
	opts.shuffle = opts.shuffle || {left:-w, top:15};
	opts.els = [];
	for (i=0; i < $slides.length; i++)
		opts.els.push($slides[i]);

	for (i=0; i < opts.currSlide; i++)
		opts.els.push(opts.els.shift());

	// custom transition fn (hat tip to Benjamin Sterling for this bit of sweetness!)
	opts.fxFn = function(curr, next, opts, cb, fwd) {
		if (opts.rev)
			fwd = !fwd;
		var $el = fwd ? $(curr) : $(next);
		$(next).css(opts.cssBefore);
		var count = opts.slideCount;
		$el.animate(opts.shuffle, opts.speedIn, opts.easeIn, function() {
			var hops = $.fn.cycle.hopsFromLast(opts, fwd);
			for (var k=0; k < hops; k++)
				fwd ? opts.els.push(opts.els.shift()) : opts.els.unshift(opts.els.pop());
			if (fwd) {
				for (var i=0, len=opts.els.length; i < len; i++)
					$(opts.els[i]).css('z-index', len-i+count);
			}
			else {
				var z = $(curr).css('z-index');
				$el.css('z-index', parseInt(z,10)+1+count);
			}
			$el.animate({left:0, top:0}, opts.speedOut, opts.easeOut, function() {
				$(fwd ? this : curr).hide();
				if (cb) cb();
			});
		});
	};
	$.extend(opts.cssBefore, { display: 'block', opacity: 1, top: 0, left: 0 });
};

// turnUp/Down/Left/Right
$.fn.cycle.transitions.turnUp = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.cssBefore.top = next.cycleH;
		opts.animIn.height = next.cycleH;
		opts.animOut.width = next.cycleW;
	});
	opts.cssFirst.top = 0;
	opts.cssBefore.left = 0;
	opts.cssBefore.height = 0;
	opts.animIn.top = 0;
	opts.animOut.height = 0;
};
$.fn.cycle.transitions.turnDown = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssFirst.top = 0;
	opts.cssBefore.left = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.height = 0;
	opts.animOut.height = 0;
};
$.fn.cycle.transitions.turnLeft = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.cssBefore.left = next.cycleW;
		opts.animIn.width = next.cycleW;
	});
	opts.cssBefore.top = 0;
	opts.cssBefore.width = 0;
	opts.animIn.left = 0;
	opts.animOut.width = 0;
};
$.fn.cycle.transitions.turnRight = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.animIn.width = next.cycleW;
		opts.animOut.left = curr.cycleW;
	});
	$.extend(opts.cssBefore, { top: 0, left: 0, width: 0 });
	opts.animIn.left = 0;
	opts.animOut.width = 0;
};

// zoom
$.fn.cycle.transitions.zoom = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,false,true);
		opts.cssBefore.top = next.cycleH/2;
		opts.cssBefore.left = next.cycleW/2;
		$.extend(opts.animIn, { top: 0, left: 0, width: next.cycleW, height: next.cycleH });
		$.extend(opts.animOut, { width: 0, height: 0, top: curr.cycleH/2, left: curr.cycleW/2 });
	});
	opts.cssFirst.top = 0;
	opts.cssFirst.left = 0;
	opts.cssBefore.width = 0;
	opts.cssBefore.height = 0;
};

// fadeZoom
$.fn.cycle.transitions.fadeZoom = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,false);
		opts.cssBefore.left = next.cycleW/2;
		opts.cssBefore.top = next.cycleH/2;
		$.extend(opts.animIn, { top: 0, left: 0, width: next.cycleW, height: next.cycleH });
	});
	opts.cssBefore.width = 0;
	opts.cssBefore.height = 0;
	opts.animOut.opacity = 0;
};

// blindX
$.fn.cycle.transitions.blindX = function($cont, $slides, opts) {
	var w = $cont.css('overflow','hidden').width();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.width = next.cycleW;
		opts.animOut.left   = curr.cycleW;
	});
	opts.cssBefore.left = w;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
	opts.animOut.left = w;
};
// blindY
$.fn.cycle.transitions.blindY = function($cont, $slides, opts) {
	var h = $cont.css('overflow','hidden').height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssBefore.top = h;
	opts.cssBefore.left = 0;
	opts.animIn.top = 0;
	opts.animOut.top = h;
};
// blindZ
$.fn.cycle.transitions.blindZ = function($cont, $slides, opts) {
	var h = $cont.css('overflow','hidden').height();
	var w = $cont.width();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssBefore.top = h;
	opts.cssBefore.left = w;
	opts.animIn.top = 0;
	opts.animIn.left = 0;
	opts.animOut.top = h;
	opts.animOut.left = w;
};

// growX - grow horizontally from centered 0 width
$.fn.cycle.transitions.growX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.cssBefore.left = this.cycleW/2;
		opts.animIn.left = 0;
		opts.animIn.width = this.cycleW;
		opts.animOut.left = 0;
	});
	opts.cssBefore.top = 0;
	opts.cssBefore.width = 0;
};
// growY - grow vertically from centered 0 height
$.fn.cycle.transitions.growY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.cssBefore.top = this.cycleH/2;
		opts.animIn.top = 0;
		opts.animIn.height = this.cycleH;
		opts.animOut.top = 0;
	});
	opts.cssBefore.height = 0;
	opts.cssBefore.left = 0;
};

// curtainX - squeeze in both edges horizontally
$.fn.cycle.transitions.curtainX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true,true);
		opts.cssBefore.left = next.cycleW/2;
		opts.animIn.left = 0;
		opts.animIn.width = this.cycleW;
		opts.animOut.left = curr.cycleW/2;
		opts.animOut.width = 0;
	});
	opts.cssBefore.top = 0;
	opts.cssBefore.width = 0;
};
// curtainY - squeeze in both edges vertically
$.fn.cycle.transitions.curtainY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false,true);
		opts.cssBefore.top = next.cycleH/2;
		opts.animIn.top = 0;
		opts.animIn.height = next.cycleH;
		opts.animOut.top = curr.cycleH/2;
		opts.animOut.height = 0;
	});
	opts.cssBefore.height = 0;
	opts.cssBefore.left = 0;
};

// cover - curr slide covered by next slide
$.fn.cycle.transitions.cover = function($cont, $slides, opts) {
	var d = opts.direction || 'left';
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		if (d == 'right')
			opts.cssBefore.left = -w;
		else if (d == 'up')
			opts.cssBefore.top = h;
		else if (d == 'down')
			opts.cssBefore.top = -h;
		else
			opts.cssBefore.left = w;
	});
	opts.animIn.left = 0;
	opts.animIn.top = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.left = 0;
};

// uncover - curr slide moves off next slide
$.fn.cycle.transitions.uncover = function($cont, $slides, opts) {
	var d = opts.direction || 'left';
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
		if (d == 'right')
			opts.animOut.left = w;
		else if (d == 'up')
			opts.animOut.top = -h;
		else if (d == 'down')
			opts.animOut.top = h;
		else
			opts.animOut.left = -w;
	});
	opts.animIn.left = 0;
	opts.animIn.top = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.left = 0;
};

// toss - move top slide and fade away
$.fn.cycle.transitions.toss = function($cont, $slides, opts) {
	var w = $cont.css('overflow','visible').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
		// provide default toss settings if animOut not provided
		if (!opts.animOut.left && !opts.animOut.top)
			$.extend(opts.animOut, { left: w*2, top: -h/2, opacity: 0 });
		else
			opts.animOut.opacity = 0;
	});
	opts.cssBefore.left = 0;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
};

// wipe - clip animation
$.fn.cycle.transitions.wipe = function($cont, $slides, opts) {
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.cssBefore = opts.cssBefore || {};
	var clip;
	if (opts.clip) {
		if (/l2r/.test(opts.clip))
			clip = 'rect(0px 0px '+h+'px 0px)';
		else if (/r2l/.test(opts.clip))
			clip = 'rect(0px '+w+'px '+h+'px '+w+'px)';
		else if (/t2b/.test(opts.clip))
			clip = 'rect(0px '+w+'px 0px 0px)';
		else if (/b2t/.test(opts.clip))
			clip = 'rect('+h+'px '+w+'px '+h+'px 0px)';
		else if (/zoom/.test(opts.clip)) {
			var top = parseInt(h/2,10);
			var left = parseInt(w/2,10);
			clip = 'rect('+top+'px '+left+'px '+top+'px '+left+'px)';
		}
	}

	opts.cssBefore.clip = opts.cssBefore.clip || clip || 'rect(0px 0px 0px 0px)';

	var d = opts.cssBefore.clip.match(/(\d+)/g);
	var t = parseInt(d[0],10), r = parseInt(d[1],10), b = parseInt(d[2],10), l = parseInt(d[3],10);

	opts.before.push(function(curr, next, opts) {
		if (curr == next) return;
		var $curr = $(curr), $next = $(next);
		$.fn.cycle.commonReset(curr,next,opts,true,true,false);
		opts.cssAfter.display = 'block';

		var step = 1, count = parseInt((opts.speedIn / 13),10) - 1;
		(function f() {
			var tt = t ? t - parseInt(step * (t/count),10) : 0;
			var ll = l ? l - parseInt(step * (l/count),10) : 0;
			var bb = b < h ? b + parseInt(step * ((h-b)/count || 1),10) : h;
			var rr = r < w ? r + parseInt(step * ((w-r)/count || 1),10) : w;
			$next.css({ clip: 'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)' });
			(step++ <= count) ? setTimeout(f, 13) : $curr.css('display', 'none');
		})();
	});
	$.extend(opts.cssBefore, { display: 'block', opacity: 1, top: 0, left: 0 });
	opts.animIn	   = { left: 0 };
	opts.animOut   = { left: 0 };
};

})(jQuery);
;
// Blend 2.2 for jQuery 1.3+
// Copyright (c) 2011 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function(a,b){var c=a.fn.blend=function(c,d){var e=this,f="background",g="padding",h=[f+"Color",f+"Image",f+"Repeat",f+"Attachment",f+"Position",f+"PositionX",f+"PositionY",g+"Top",g+"Left",g+"Right",g+"Bottom","width","height"];c=c||a.fn.blend.speed,d=d||a.fn.blend.callback,e[0]&&!e.is(".jQblend")&&e.each(function(){var e='<span style="position:absolute;top:0;left:0;display:block"/>',f=a(e)[0],g=a(e)[0],i=this,j=i.currentStyle||b.getComputedStyle(i,null),k,l;a(i).css("position")!=="absolute"&&(i.style.position="relative");for(l=0;k=h[l];l++)k in j&&(g.style[k]=f.style[k]=j[k]);f.style.backgroundImage=f.style.backgroundColor="",a(i).wrapInner(f).addClass("hover jQblend").prepend(g).hover(function(b){a(g).stop().fadeTo(c,0,function(){a.isFunction(d)&&d()})},function(b){a(g).stop().fadeTo(c,1)})});return e};c.speed=350,c.callback=!1})(jQuery,this);
;
/*
 *
 * jqTransform
 * by mathieu vilaplana mvilaplana@dfc-e.com
 * Designer ghyslain armand garmand@dfc-e.com
 *
 *
 * Version 1.0 25.09.08
 * Version 1.1 06.08.09
 * Add event click on Checkbox and Radio
 * Auto calculate the size of a select element
 * Can now, disabled the elements
 * Correct bug in ff if click on select (overflow=hidden)
 * No need any more preloading !!
 * 
 ******************************************** */
 
(function($){
	var defaultOptions = {preloadImg:true};
	var jqTransformImgPreloaded = false;

	var jqTransformPreloadHoverFocusImg = function(strImgUrl) {
		//guillemets to remove for ie
		strImgUrl = strImgUrl.replace(/^url\((.*)\)/,'$1').replace(/^\"(.*)\"$/,'$1');
		var imgHover = new Image();
		imgHover.src = strImgUrl.replace(/\.([a-zA-Z]*)$/,'-hover.$1');
		var imgFocus = new Image();
		imgFocus.src = strImgUrl.replace(/\.([a-zA-Z]*)$/,'-focus.$1');				
	};

	
	/***************************
	  Labels
	***************************/
	var jqTransformGetLabel = function(objfield){
		var selfForm = $(objfield.get(0).form);
		var oLabel = objfield.next();
		if(!oLabel.is('label')) {
			oLabel = objfield.prev();
			if(oLabel.is('label')){
				var inputname = objfield.attr('id');
				if(inputname){
					oLabel = selfForm.find('label[for="'+inputname+'"]');
				} 
			}
		}
		if(oLabel.is('label')){return oLabel.css('cursor','pointer');}
		return false;
	};
	
	/* Hide all open selects */
	var jqTransformHideSelect = function(oTarget){
		var ulVisible = $('.jqTransformSelectWrapper ul:visible');
		ulVisible.each(function(){
			var oSelect = $(this).parents(".jqTransformSelectWrapper:first").find("select").get(0);
			//do not hide if click on the label object associated to the select
			if( !(oTarget && oSelect.oLabel && oSelect.oLabel.get(0) == oTarget.get(0)) ){$(this).hide();}
		});
	};
	/* Check for an external click */
	var jqTransformCheckExternalClick = function(event) {
		if ($(event.target).parents('.jqTransformSelectWrapper').length === 0) { jqTransformHideSelect($(event.target)); }
	};

	/* Apply document listener */
	var jqTransformAddDocumentListener = function (){
		$(document).mousedown(jqTransformCheckExternalClick);
	};	
			
	/* Add a new handler for the reset action */
	var jqTransformReset = function(f){
		var sel;
		$('.jqTransformSelectWrapper select', f).each(function(){sel = (this.selectedIndex<0) ? 0 : this.selectedIndex; $('ul', $(this).parent()).each(function(){$('a:eq('+ sel +')', this).click();});});
		$('a.jqTransformCheckbox, a.jqTransformRadio', f).removeClass('jqTransformChecked');
		$('input:checkbox, input:radio', f).each(function(){if(this.checked){$('a', $(this).parent()).addClass('jqTransformChecked');}});
	};

	/***************************
	  Buttons
	 ***************************/
	$.fn.jqTransInputButton = function(){
		return this.each(function(){
			var newBtn = $('<button id="'+ this.id +'" name="'+ this.name +'" type="'+ this.type +'" class="'+ this.className +' jqTransformButton"><span><span>'+ $(this).attr('value') +'</span></span>')
				.hover(function(){newBtn.addClass('jqTransformButton_hover');},function(){newBtn.removeClass('jqTransformButton_hover')})
				.mousedown(function(){newBtn.addClass('jqTransformButton_click')})
				.mouseup(function(){newBtn.removeClass('jqTransformButton_click')})
			;
			$(this).replaceWith(newBtn);
		});
	};
	
	/***************************
	  Text Fields 
	 ***************************/
	$.fn.jqTransInputText = function(){
		return this.each(function(){
			var $input = $(this);
	
			if($input.hasClass('jqtranformdone') || !$input.is('input')) {return;}
			$input.addClass('jqtranformdone');
	
			var oLabel = jqTransformGetLabel($(this));
			oLabel && oLabel.bind('click',function(){$input.focus();});
	
			var inputSize=$input.width();
			if($input.attr('size')){
				inputSize = $input.attr('size')*10;
				$input.css('width',inputSize);
			}
			
			$input.addClass("jqTransformInput").wrap('<div class="jqTransformInputWrapper"><div class="jqTransformInputInner"><div></div></div></div>');
			var $wrapper = $input.parent().parent().parent();
			$wrapper.css("width", inputSize+10);
			$input
				.focus(function(){$wrapper.addClass("jqTransformInputWrapper_focus");})
				.blur(function(){$wrapper.removeClass("jqTransformInputWrapper_focus");})
				.hover(function(){$wrapper.addClass("jqTransformInputWrapper_hover");},function(){$wrapper.removeClass("jqTransformInputWrapper_hover");})
			;
	
			/* If this is safari we need to add an extra class */
			$.browser.safari && $wrapper.addClass('jqTransformSafari');
			$.browser.safari && $input.css('width',$wrapper.width()+16);
			this.wrapper = $wrapper;
			
		});
	};
	
	/***************************
	  Check Boxes 
	 ***************************/	
	$.fn.jqTransCheckBox = function(){
		return this.each(function(){
			if($(this).hasClass('jqTransformHidden')) {return;}

			var $input = $(this);
			var inputSelf = this;

			//set the click on the label
			var oLabel=jqTransformGetLabel($input);
			oLabel && oLabel.click(function(){aLink.trigger('click');});
			
			var aLink = $('<a href="#" class="jqTransformCheckbox"></a>');
			//wrap and add the link
			$input.addClass('jqTransformHidden').wrap('<span class="jqTransformCheckboxWrapper"></span>').parent().prepend(aLink);
			//on change, change the class of the link
			$input.change(function(){
				this.checked && aLink.addClass('jqTransformChecked') || aLink.removeClass('jqTransformChecked');
				return true;
			});
			// Click Handler, trigger the click and change event on the input
			aLink.click(function(){
				//do nothing if the original input is disabled
				if($input.attr('disabled')){return false;}
				//trigger the envents on the input object
				$input.trigger('click').trigger("change");	
				return false;
			});

			// set the default state
			this.checked && aLink.addClass('jqTransformChecked');		
		});
	};
	/***************************
	  Radio Buttons 
	 ***************************/	
	$.fn.jqTransRadio = function(){
		return this.each(function(){
			if($(this).hasClass('jqTransformHidden')) {return;}

			var $input = $(this);
			var inputSelf = this;
				
			oLabel = jqTransformGetLabel($input);
			oLabel && oLabel.click(function(){aLink.trigger('click');});
	
			var aLink = $('<a href="#" class="jqTransformRadio" rel="'+ this.name +'"></a>');
			$input.addClass('jqTransformHidden').wrap('<span class="jqTransformRadioWrapper"></span>').parent().prepend(aLink);
			
			$input.change(function(){
				inputSelf.checked && aLink.addClass('jqTransformChecked') || aLink.removeClass('jqTransformChecked');
				return true;
			});
			// Click Handler
			aLink.click(function(){
				if($input.attr('disabled')){return false;}
				$input.trigger('click').trigger('change');
	
				// uncheck all others of same name input radio elements
				$('input[name="'+$input.attr('name')+'"]',inputSelf.form).not($input).each(function(){
					$(this).attr('type')=='radio' && $(this).trigger('change');
				});
	
				return false;					
			});
			// set the default state
			inputSelf.checked && aLink.addClass('jqTransformChecked');
		});
	};
	
	/***************************
	  TextArea 
	 ***************************/	
	$.fn.jqTransTextarea = function(){
		return this.each(function(){
			var textarea = $(this);
	
			if(textarea.hasClass('jqtransformdone')) {return;}
			textarea.addClass('jqtransformdone');
	
			oLabel = jqTransformGetLabel(textarea);
			oLabel && oLabel.click(function(){textarea.focus();});
			
			var strTable = '<table cellspacing="0" cellpadding="0" border="0" class="jqTransformTextarea">';
			strTable +='<tr><td id="jqTransformTextarea-tl"></td><td id="jqTransformTextarea-tm"></td><td id="jqTransformTextarea-tr"></td></tr>';
			strTable +='<tr><td id="jqTransformTextarea-ml">&nbsp;</td><td id="jqTransformTextarea-mm"><div></div></td><td id="jqTransformTextarea-mr">&nbsp;</td></tr>';	
			strTable +='<tr><td id="jqTransformTextarea-bl"></td><td id="jqTransformTextarea-bm"></td><td id="jqTransformTextarea-br"></td></tr>';
			strTable +='</table>';					
			var oTable = $(strTable)
					.insertAfter(textarea)
					.hover(function(){
						!oTable.hasClass('jqTransformTextarea-focus') && oTable.addClass('jqTransformTextarea-hover');
					},function(){
						oTable.removeClass('jqTransformTextarea-hover');					
					})
				;
				
			textarea
				.focus(function(){oTable.removeClass('jqTransformTextarea-hover').addClass('jqTransformTextarea-focus');})
				.blur(function(){oTable.removeClass('jqTransformTextarea-focus');})
				.appendTo($('#jqTransformTextarea-mm div',oTable))
			;
			this.oTable = oTable;
			if($.browser.safari){
				$('#jqTransformTextarea-mm',oTable)
					.addClass('jqTransformSafariTextarea')
					.find('div')
						.css('height',textarea.height())
						.css('width',textarea.width())
				;
			}
		});
	};
	
	/***************************
	  Select 
	 ***************************/	
	$.fn.jqTransSelect = function(){
		return this.each(function(index){
			var $select = $(this);

			if($select.hasClass('jqTransformHidden')) {return;}
			if($select.attr('multiple')) {return;}

			var oLabel  =  jqTransformGetLabel($select);
			/* First thing we do is Wrap it */
			var $wrapper = $select
				.addClass('jqTransformHidden')
				.wrap('<div class="jqTransformSelectWrapper"></div>')
				.parent()
				.css({zIndex: 10-index})
			;
			
			/* Now add the html for the select */
			$wrapper.prepend('<div><span></span><a href="#" class="jqTransformSelectOpen"></a></div><ul></ul>');
			var $ul = $('ul', $wrapper).css('width',$select.width()).hide();
			/* Now we add the options */
			$('option', this).each(function(i){
				var oLi = $('<li><a href="#" index="'+ i +'">'+ $(this).html() +'</a></li>');
				$ul.append(oLi);
			});
			
			/* Add click handler to the a */
			$ul.find('a').click(function(){
					$('a.selected', $wrapper).removeClass('selected');
					$(this).addClass('selected');	
					/* Fire the onchange event */
					if ($select[0].selectedIndex != $(this).attr('index') && $select[0].onchange) { $select[0].selectedIndex = $(this).attr('index'); $select[0].onchange(); }
					$select[0].selectedIndex = $(this).attr('index');
					$('span:eq(0)', $wrapper).html($(this).html());
					$ul.hide();
					return false;
			});
			/* Set the default */
			$('a:eq('+ this.selectedIndex +')', $ul).click();
			$('span:first', $wrapper).click(function(){$("a.jqTransformSelectOpen",$wrapper).trigger('click');});
			oLabel && oLabel.click(function(){$("a.jqTransformSelectOpen",$wrapper).trigger('click');});
			this.oLabel = oLabel;
			
			/* Apply the click handler to the Open */
			var oLinkOpen = $('a.jqTransformSelectOpen', $wrapper)
				.click(function(){
					//Check if box is already open to still allow toggle, but close all other selects
					if( $ul.css('display') == 'none' ) {jqTransformHideSelect();} 
					if($select.attr('disabled')){return false;}

					$ul.slideToggle('fast', function(){					
						var offSet = ($('a.selected', $ul).offset().top - $ul.offset().top);
						$ul.animate({scrollTop: offSet});
					});
					return false;
				})
			;

			// Set the new width
			var iSelectWidth = $select.outerWidth();
			var oSpan = $('span:first',$wrapper);
			var newWidth = (iSelectWidth > oSpan.innerWidth())?iSelectWidth+oLinkOpen.outerWidth():$wrapper.width();
			$wrapper.css('width',newWidth);
			$ul.css('width',newWidth-2);
			oSpan.css({width:iSelectWidth});
		
			// Calculate the height if necessary, less elements that the default height
			//show the ul to calculate the block, if ul is not displayed li height value is 0
			$ul.css({display:'block',visibility:'hidden'});
			var iSelectHeight = ($('li',$ul).length)*($('li:first',$ul).height());//+1 else bug ff
			(iSelectHeight < $ul.height()) && $ul.css({height:iSelectHeight,'overflow':'hidden'});//hidden else bug with ff
			$ul.css({display:'none',visibility:'visible'});
			
		});
	};
	$.fn.jqTransform = function(options){
		var opt = $.extend({},defaultOptions,options);
		
		/* each form */
		 return this.each(function(){
			var selfForm = $(this);
			if(selfForm.hasClass('jqtransformdone')) {return;}
			selfForm.addClass('jqtransformdone');
			
			$('input:submit, input:reset, input[type="button"]', this).jqTransInputButton();			
			$('input:text, input:password', this).jqTransInputText();			
			$('input:checkbox', this).jqTransCheckBox();
			$('input:radio', this).jqTransRadio();
			$('textarea', this).jqTransTextarea();
			
			if( $('select', this).jqTransSelect().length > 0 ){jqTransformAddDocumentListener();}
			selfForm.bind('reset',function(){var action = function(){jqTransformReset(this);}; window.setTimeout(action, 10);});
			
			//preloading dont needed anymore since normal, focus and hover image are the same one
			/*if(opt.preloadImg && !jqTransformImgPreloaded){
				jqTransformImgPreloaded = true;
				var oInputText = $('input:text:first', selfForm);
				if(oInputText.length > 0){
					//pour ie on eleve les ""
					var strWrapperImgUrl = oInputText.get(0).wrapper.css('background-image');
					jqTransformPreloadHoverFocusImg(strWrapperImgUrl);					
					var strInnerImgUrl = $('div.jqTransformInputInner',$(oInputText.get(0).wrapper)).css('background-image');
					jqTransformPreloadHoverFocusImg(strInnerImgUrl);
				}
				
				var oTextarea = $('textarea',selfForm);
				if(oTextarea.length > 0){
					var oTable = oTextarea.get(0).oTable;
					$('td',oTable).each(function(){
						var strImgBack = $(this).css('background-image');
						jqTransformPreloadHoverFocusImg(strImgBack);
					});
				}
			}*/
			
			
		}); /* End Form each */
				
	};/* End the Plugin */

})(jQuery);
				   ;
/**
 * jQuery Validation Plugin 1.8.1
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-validation/
 * http://docs.jquery.com/Plugins/Validation
 *
 * Copyright (c) 2006 - 2011 JÃ¶rn Zaefferer
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
(function(c){c.extend(c.fn,{validate:function(a){if(this.length){var b=c.data(this[0],"validator");if(b)return b;b=new c.validator(a,this[0]);c.data(this[0],"validator",b);if(b.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){b.cancelSubmit=true});b.settings.submitHandler&&this.find("input, button").filter(":submit").click(function(){b.submitButton=this});this.submit(function(d){function e(){if(b.settings.submitHandler){if(b.submitButton)var f=c("<input type='hidden'/>").attr("name",
b.submitButton.name).val(b.submitButton.value).appendTo(b.currentForm);b.settings.submitHandler.call(b,b.currentForm);b.submitButton&&f.remove();return false}return true}b.settings.debug&&d.preventDefault();if(b.cancelSubmit){b.cancelSubmit=false;return e()}if(b.form()){if(b.pendingRequest){b.formSubmitted=true;return false}return e()}else{b.focusInvalid();return false}})}return b}else a&&a.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing")},valid:function(){if(c(this[0]).is("form"))return this.validate().form();
else{var a=true,b=c(this[0].form).validate();this.each(function(){a&=b.element(this)});return a}},removeAttrs:function(a){var b={},d=this;c.each(a.split(/\s/),function(e,f){b[f]=d.attr(f);d.removeAttr(f)});return b},rules:function(a,b){var d=this[0];if(a){var e=c.data(d.form,"validator").settings,f=e.rules,g=c.validator.staticRules(d);switch(a){case "add":c.extend(g,c.validator.normalizeRule(b));f[d.name]=g;if(b.messages)e.messages[d.name]=c.extend(e.messages[d.name],b.messages);break;case "remove":if(!b){delete f[d.name];
return g}var h={};c.each(b.split(/\s/),function(j,i){h[i]=g[i];delete g[i]});return h}}d=c.validator.normalizeRules(c.extend({},c.validator.metadataRules(d),c.validator.classRules(d),c.validator.attributeRules(d),c.validator.staticRules(d)),d);if(d.required){e=d.required;delete d.required;d=c.extend({required:e},d)}return d}});c.extend(c.expr[":"],{blank:function(a){return!c.trim(""+a.value)},filled:function(a){return!!c.trim(""+a.value)},unchecked:function(a){return!a.checked}});c.validator=function(a,
b){this.settings=c.extend(true,{},c.validator.defaults,a);this.currentForm=b;this.init()};c.validator.format=function(a,b){if(arguments.length==1)return function(){var d=c.makeArray(arguments);d.unshift(a);return c.validator.format.apply(this,d)};if(arguments.length>2&&b.constructor!=Array)b=c.makeArray(arguments).slice(1);if(b.constructor!=Array)b=[b];c.each(b,function(d,e){a=a.replace(RegExp("\\{"+d+"\\}","g"),e)});return a};c.extend(c.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",
validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:c([]),errorLabelContainer:c([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(a){this.lastActive=a;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,a,this.settings.errorClass,this.settings.validClass);this.addWrapper(this.errorsFor(a)).hide()}},onfocusout:function(a){if(!this.checkable(a)&&(a.name in this.submitted||!this.optional(a)))this.element(a)},
onkeyup:function(a){if(a.name in this.submitted||a==this.lastElement)this.element(a)},onclick:function(a){if(a.name in this.submitted)this.element(a);else a.parentNode.name in this.submitted&&this.element(a.parentNode)},highlight:function(a,b,d){a.type==="radio"?this.findByName(a.name).addClass(b).removeClass(d):c(a).addClass(b).removeClass(d)},unhighlight:function(a,b,d){a.type==="radio"?this.findByName(a.name).removeClass(b).addClass(d):c(a).removeClass(b).addClass(d)}},setDefaults:function(a){c.extend(c.validator.defaults,
a)},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:c.validator.format("Please enter no more than {0} characters."),
minlength:c.validator.format("Please enter at least {0} characters."),rangelength:c.validator.format("Please enter a value between {0} and {1} characters long."),range:c.validator.format("Please enter a value between {0} and {1}."),max:c.validator.format("Please enter a value less than or equal to {0}."),min:c.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){function a(e){var f=c.data(this[0].form,"validator");e="on"+e.type.replace(/^validate/,
"");f.settings[e]&&f.settings[e].call(f,this[0])}this.labelContainer=c(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||c(this.currentForm);this.containers=c(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var b=this.groups={};c.each(this.settings.groups,function(e,f){c.each(f.split(/\s/),function(g,h){b[h]=e})});var d=this.settings.rules;
c.each(d,function(e,f){d[e]=c.validator.normalizeRule(f)});c(this.currentForm).validateDelegate(":text, :password, :file, select, textarea","focusin focusout keyup",a).validateDelegate(":radio, :checkbox, select, option","click",a);this.settings.invalidHandler&&c(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler)},form:function(){this.checkForm();c.extend(this.submitted,this.errorMap);this.invalid=c.extend({},this.errorMap);this.valid()||c(this.currentForm).triggerHandler("invalid-form",
[this]);this.showErrors();return this.valid()},checkForm:function(){this.prepareForm();for(var a=0,b=this.currentElements=this.elements();b[a];a++)this.check(b[a]);return this.valid()},element:function(a){this.lastElement=a=this.clean(a);this.prepareElement(a);this.currentElements=c(a);var b=this.check(a);if(b)delete this.invalid[a.name];else this.invalid[a.name]=true;if(!this.numberOfInvalids())this.toHide=this.toHide.add(this.containers);this.showErrors();return b},showErrors:function(a){if(a){c.extend(this.errorMap,
a);this.errorList=[];for(var b in a)this.errorList.push({message:a[b],element:this.findByName(b)[0]});this.successList=c.grep(this.successList,function(d){return!(d.name in a)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){c.fn.resetForm&&c(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass)},numberOfInvalids:function(){return this.objectLength(this.invalid)},
objectLength:function(a){var b=0,d;for(d in a)b++;return b},hideErrors:function(){this.addWrapper(this.toHide).hide()},valid:function(){return this.size()==0},size:function(){return this.errorList.length},focusInvalid:function(){if(this.settings.focusInvalid)try{c(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus().trigger("focusin")}catch(a){}},findLastActive:function(){var a=this.lastActive;return a&&c.grep(this.errorList,function(b){return b.element.name==
a.name}).length==1&&a},elements:function(){var a=this,b={};return c(this.currentForm).find("input, select, textarea").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&a.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in b||!a.objectLength(c(this).rules()))return false;return b[this.name]=true})},clean:function(a){return c(a)[0]},errors:function(){return c(this.settings.errorElement+"."+this.settings.errorClass,
this.errorContext)},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=c([]);this.toHide=c([]);this.currentElements=c([])},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers)},prepareElement:function(a){this.reset();this.toHide=this.errorsFor(a)},check:function(a){a=this.clean(a);if(this.checkable(a))a=this.findByName(a.name).not(this.settings.ignore)[0];var b=c(a).rules(),d=false,e;for(e in b){var f={method:e,parameters:b[e]};try{var g=
c.validator.methods[e].call(this,a.value.replace(/\r/g,""),a,f.parameters);if(g=="dependency-mismatch")d=true;else{d=false;if(g=="pending"){this.toHide=this.toHide.not(this.errorsFor(a));return}if(!g){this.formatAndAdd(a,f);return false}}}catch(h){this.settings.debug&&window.console&&console.log("exception occured when checking element "+a.id+", check the '"+f.method+"' method",h);throw h;}}if(!d){this.objectLength(b)&&this.successList.push(a);return true}},customMetaMessage:function(a,b){if(c.metadata){var d=
this.settings.meta?c(a).metadata()[this.settings.meta]:c(a).metadata();return d&&d.messages&&d.messages[b]}},customMessage:function(a,b){var d=this.settings.messages[a];return d&&(d.constructor==String?d:d[b])},findDefined:function(){for(var a=0;a<arguments.length;a++)if(arguments[a]!==undefined)return arguments[a]},defaultMessage:function(a,b){return this.findDefined(this.customMessage(a.name,b),this.customMetaMessage(a,b),!this.settings.ignoreTitle&&a.title||undefined,c.validator.messages[b],"<strong>Warning: No message defined for "+
a.name+"</strong>")},formatAndAdd:function(a,b){var d=this.defaultMessage(a,b.method),e=/\$?\{(\d+)\}/g;if(typeof d=="function")d=d.call(this,b.parameters,a);else if(e.test(d))d=jQuery.format(d.replace(e,"{$1}"),b.parameters);this.errorList.push({message:d,element:a});this.errorMap[a.name]=d;this.submitted[a.name]=d},addWrapper:function(a){if(this.settings.wrapper)a=a.add(a.parent(this.settings.wrapper));return a},defaultShowErrors:function(){for(var a=0;this.errorList[a];a++){var b=this.errorList[a];
this.settings.highlight&&this.settings.highlight.call(this,b.element,this.settings.errorClass,this.settings.validClass);this.showLabel(b.element,b.message)}if(this.errorList.length)this.toShow=this.toShow.add(this.containers);if(this.settings.success)for(a=0;this.successList[a];a++)this.showLabel(this.successList[a]);if(this.settings.unhighlight){a=0;for(b=this.validElements();b[a];a++)this.settings.unhighlight.call(this,b[a],this.settings.errorClass,this.settings.validClass)}this.toHide=this.toHide.not(this.toShow);
this.hideErrors();this.addWrapper(this.toShow).show()},validElements:function(){return this.currentElements.not(this.invalidElements())},invalidElements:function(){return c(this.errorList).map(function(){return this.element})},showLabel:function(a,b){var d=this.errorsFor(a);if(d.length){d.removeClass().addClass(this.settings.errorClass);d.attr("generated")&&d.html(b)}else{d=c("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(a),generated:true}).addClass(this.settings.errorClass).html(b||
"");if(this.settings.wrapper)d=d.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();this.labelContainer.append(d).length||(this.settings.errorPlacement?this.settings.errorPlacement(d,c(a)):d.insertAfter(a))}if(!b&&this.settings.success){d.text("");typeof this.settings.success=="string"?d.addClass(this.settings.success):this.settings.success(d)}this.toShow=this.toShow.add(d)},errorsFor:function(a){var b=this.idOrName(a);return this.errors().filter(function(){return c(this).attr("for")==b})},
idOrName:function(a){return this.groups[a.name]||(this.checkable(a)?a.name:a.id||a.name)},checkable:function(a){return/radio|checkbox/i.test(a.type)},findByName:function(a){var b=this.currentForm;return c(document.getElementsByName(a)).map(function(d,e){return e.form==b&&e.name==a&&e||null})},getLength:function(a,b){switch(b.nodeName.toLowerCase()){case "select":return c("option:selected",b).length;case "input":if(this.checkable(b))return this.findByName(b.name).filter(":checked").length}return a.length},
depend:function(a,b){return this.dependTypes[typeof a]?this.dependTypes[typeof a](a,b):true},dependTypes:{"boolean":function(a){return a},string:function(a,b){return!!c(a,b.form).length},"function":function(a,b){return a(b)}},optional:function(a){return!c.validator.methods.required.call(this,c.trim(a.value),a)&&"dependency-mismatch"},startRequest:function(a){if(!this.pending[a.name]){this.pendingRequest++;this.pending[a.name]=true}},stopRequest:function(a,b){this.pendingRequest--;if(this.pendingRequest<
0)this.pendingRequest=0;delete this.pending[a.name];if(b&&this.pendingRequest==0&&this.formSubmitted&&this.form()){c(this.currentForm).submit();this.formSubmitted=false}else if(!b&&this.pendingRequest==0&&this.formSubmitted){c(this.currentForm).triggerHandler("invalid-form",[this]);this.formSubmitted=false}},previousValue:function(a){return c.data(a,"previousValue")||c.data(a,"previousValue",{old:null,valid:true,message:this.defaultMessage(a,"remote")})}},classRuleSettings:{required:{required:true},
email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(a,b){a.constructor==String?this.classRuleSettings[a]=b:c.extend(this.classRuleSettings,a)},classRules:function(a){var b={};(a=c(a).attr("class"))&&c.each(a.split(" "),function(){this in c.validator.classRuleSettings&&c.extend(b,c.validator.classRuleSettings[this])});return b},attributeRules:function(a){var b=
{};a=c(a);for(var d in c.validator.methods){var e=a.attr(d);if(e)b[d]=e}b.maxlength&&/-1|2147483647|524288/.test(b.maxlength)&&delete b.maxlength;return b},metadataRules:function(a){if(!c.metadata)return{};var b=c.data(a.form,"validator").settings.meta;return b?c(a).metadata()[b]:c(a).metadata()},staticRules:function(a){var b={},d=c.data(a.form,"validator");if(d.settings.rules)b=c.validator.normalizeRule(d.settings.rules[a.name])||{};return b},normalizeRules:function(a,b){c.each(a,function(d,e){if(e===
false)delete a[d];else if(e.param||e.depends){var f=true;switch(typeof e.depends){case "string":f=!!c(e.depends,b.form).length;break;case "function":f=e.depends.call(b,b)}if(f)a[d]=e.param!==undefined?e.param:true;else delete a[d]}});c.each(a,function(d,e){a[d]=c.isFunction(e)?e(b):e});c.each(["minlength","maxlength","min","max"],function(){if(a[this])a[this]=Number(a[this])});c.each(["rangelength","range"],function(){if(a[this])a[this]=[Number(a[this][0]),Number(a[this][1])]});if(c.validator.autoCreateRanges){if(a.min&&
a.max){a.range=[a.min,a.max];delete a.min;delete a.max}if(a.minlength&&a.maxlength){a.rangelength=[a.minlength,a.maxlength];delete a.minlength;delete a.maxlength}}a.messages&&delete a.messages;return a},normalizeRule:function(a){if(typeof a=="string"){var b={};c.each(a.split(/\s/),function(){b[this]=true});a=b}return a},addMethod:function(a,b,d){c.validator.methods[a]=b;c.validator.messages[a]=d!=undefined?d:c.validator.messages[a];b.length<3&&c.validator.addClassRules(a,c.validator.normalizeRule(a))},
methods:{required:function(a,b,d){if(!this.depend(d,b))return"dependency-mismatch";switch(b.nodeName.toLowerCase()){case "select":return(a=c(b).val())&&a.length>0;case "input":if(this.checkable(b))return this.getLength(a,b)>0;default:return c.trim(a).length>0}},remote:function(a,b,d){if(this.optional(b))return"dependency-mismatch";var e=this.previousValue(b);this.settings.messages[b.name]||(this.settings.messages[b.name]={});e.originalMessage=this.settings.messages[b.name].remote;this.settings.messages[b.name].remote=
e.message;d=typeof d=="string"&&{url:d}||d;if(this.pending[b.name])return"pending";if(e.old===a)return e.valid;e.old=a;var f=this;this.startRequest(b);var g={};g[b.name]=a;c.ajax(c.extend(true,{url:d,mode:"abort",port:"validate"+b.name,dataType:"json",data:g,success:function(h){f.settings.messages[b.name].remote=e.originalMessage;var j=h===true;if(j){var i=f.formSubmitted;f.prepareElement(b);f.formSubmitted=i;f.successList.push(b);f.showErrors()}else{i={};h=h||f.defaultMessage(b,"remote");i[b.name]=
e.message=c.isFunction(h)?h(a):h;f.showErrors(i)}e.valid=j;f.stopRequest(b,j)}},d));return"pending"},minlength:function(a,b,d){return this.optional(b)||this.getLength(c.trim(a),b)>=d},maxlength:function(a,b,d){return this.optional(b)||this.getLength(c.trim(a),b)<=d},rangelength:function(a,b,d){a=this.getLength(c.trim(a),b);return this.optional(b)||a>=d[0]&&a<=d[1]},min:function(a,b,d){return this.optional(b)||a>=d},max:function(a,b,d){return this.optional(b)||a<=d},range:function(a,b,d){return this.optional(b)||
a>=d[0]&&a<=d[1]},email:function(a,b){return this.optional(b)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(a)},
url:function(a,b){return this.optional(b)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(a)},
date:function(a,b){return this.optional(b)||!/Invalid|NaN/.test(new Date(a))},dateISO:function(a,b){return this.optional(b)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(a)},digits:function(a,b){return this.optional(b)||/^\d+$/.test(a)},creditcard:function(a,b){if(this.optional(b))return"dependency-mismatch";if(/[^0-9-]+/.test(a))return false;var d=0,e=0,f=false;a=a.replace(/\D/g,"");for(var g=a.length-1;g>=
0;g--){e=a.charAt(g);e=parseInt(e,10);if(f)if((e*=2)>9)e-=9;d+=e;f=!f}return d%10==0},accept:function(a,b,d){d=typeof d=="string"?d.replace(/,/g,"|"):"png|jpe?g|gif";return this.optional(b)||a.match(RegExp(".("+d+")$","i"))},equalTo:function(a,b,d){d=c(d).unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){c(b).valid()});return a==d.val()}}});c.format=c.validator.format})(jQuery);
(function(c){var a={};if(c.ajaxPrefilter)c.ajaxPrefilter(function(d,e,f){e=d.port;if(d.mode=="abort"){a[e]&&a[e].abort();a[e]=f}});else{var b=c.ajax;c.ajax=function(d){var e=("port"in d?d:c.ajaxSettings).port;if(("mode"in d?d:c.ajaxSettings).mode=="abort"){a[e]&&a[e].abort();return a[e]=b.apply(this,arguments)}return b.apply(this,arguments)}}})(jQuery);
(function(c){!jQuery.event.special.focusin&&!jQuery.event.special.focusout&&document.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(e){e=c.event.fix(e);e.type=b;return c.event.handle.call(this,e)}c.event.special[b]={setup:function(){this.addEventListener(a,d,true)},teardown:function(){this.removeEventListener(a,d,true)},handler:function(e){arguments[0]=c.event.fix(e);arguments[0].type=b;return c.event.handle.apply(this,arguments)}}});c.extend(c.fn,{validateDelegate:function(a,
b,d){return this.bind(b,function(e){var f=c(e.target);if(f.is(a))return d.apply(f,arguments)})}})})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * \251 Copyright 2003, SUDTIPOS. Dise\226ada por  Alejandro Paul. Todos los
 * derechos reservados. Buenos Aires, Argentina.
 * 
 * Manufacturer:
 * SUDTIPOS. Dise\ ada por Alejandro Paul. Todos los derechos reservados. Buenos
 * Aires, Argentina
 */
Cufon.registerFont({"w":186,"face":{"font-family":"Downtempo","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-26 -318 352 90.067","underline-thickness":"7.2","underline-position":"-40.68","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":64},"\u00dd":{"d":"119,-237r-41,-7r60,-55r57,13xm147,-75r0,75r-52,0r0,-75r-88,-157r53,0r61,107r60,-107r53,0","w":204,"k":{"\u00d9":27,"\u00db":27,"\u00da":27,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c8":33,"\u00cb":33,"\u00c1":30,"\u00ca":33,"\u00c2":30,"\u00ff":18,"\u00d5":14,"\u00c3":30,"\u00c0":30,"\u00f8":25,"\u00e6":25,"\u00b5":18,"\u00b1":5,"\u00d8":14,"\u00fc":18,"\u00fb":18,"\u00f9":18,"\u00fa":18,"\u00f5":25,"\u00f6":25,"\u00f4":25,"\u00f2":25,"\u00f3":25,"\u00f1":11,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":22,"\u00ea":22,"\u00e8":22,"\u00e9":22,"\u00e7":18,"\u00e5":25,"\u00e3":25,"\u00e4":25,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00dc":27,"\u00d6":14,"\u00c9":33,"\u00c7":4,"\u00c5":30,"\u00c4":30,"z":14,"y":18,"x":9,"w":9,"u":18,"s":22,"r":19,"q":18,"p":18,"o":25,"n":11,"m":11,"i":7,"g":18,"f":5,"e":22,"d":18,"c":18,"a":25,"Y":2,"X":4,"S":6,"Q":8,"O":14,"J":36,"G":10,"C":4,"A":30,".":38,",":37,"\u00f0":18,"\u00fe":18,"\u00fd":18,"\u00dd":2}},"\u00fd":{"d":"95,-176r-41,-7r60,-55r57,13xm70,-64v-6,38,39,22,68,20r0,-127r45,0r0,189v4,79,-103,51,-159,38r0,-37v30,4,58,9,90,13v26,3,25,-15,24,-38v-52,16,-113,11,-113,-56r0,-109r45,0r0,107","w":192,"k":{"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"v":13,"a":5,"Y":18,"\u00dd":18}},"\u00de":{"d":"198,-98v5,66,-62,71,-120,58r0,40r-50,0r0,-231r50,0r0,38v52,-17,127,-12,120,56r0,39xm78,-78v27,0,75,18,70,-22v-4,-26,11,-66,-24,-61v-15,2,-32,4,-46,6r0,77","w":210,"k":{"\u00c1":20,"\u00c2":20,"\u00ff":4,"\u00c3":20,"\u00c0":20,"\u00f8":9,"\u00e6":11,"\u00b5":4,"\u00c6":19,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":4,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c5":20,"\u00c4":20,"y":4,"u":4,"o":9,"e":7,"d":4,"c":4,"a":11,"Z":4,"Y":6,"X":6,"W":7,"V":7,"T":7,"J":36,"A":20,".":29,"\u00f0":4,"\u00fd":4,"\u00dd":6}},"\u00fe":{"d":"187,-109v0,61,2,112,-61,112v-19,0,-36,-6,-52,-9r0,83r-46,0r0,-309r46,0r0,67v51,-18,113,-11,113,56xm74,-44v22,2,74,22,67,-19v-4,-28,14,-75,-24,-70v-15,2,-30,4,-43,6r0,83","w":201,"k":{"Y":14,"W":11,"V":11,"T":18,"\u00dd":14}},"\u00f0":{"d":"21,-109v-8,-66,59,-74,111,-57r-3,-12r-29,0r-20,-39r31,0r-17,-21v29,1,58,-6,65,21r30,0r19,39r-32,0v7,50,1,113,3,169v-60,12,-168,34,-158,-53r0,-47xm66,-63v-6,40,43,21,68,21r0,-85v-22,-2,-68,-22,-68,19r0,45","w":187},"\u00bd":{"d":"179,-125v10,-48,125,-42,105,18v-10,29,-34,47,-50,71r56,0r0,36r-109,0r0,-30v21,-29,49,-54,66,-87v-8,-7,-33,-3,-36,5xm111,0r-47,0r118,-253r47,0xm52,-82r0,-103v-10,13,-28,-5,-42,-8r48,-44r31,0r0,155r-37,0","w":301},"\u00bc":{"d":"261,-30r0,30r-39,0r0,-30r-62,0r0,-29r57,-97r44,0r0,90r12,0r0,36r-12,0xm111,0r-47,0r118,-253r47,0xm52,-82r0,-103v-10,13,-28,-5,-42,-8r48,-44r31,0r0,155r-37,0xm222,-93r-16,27r16,0r0,-27","w":269},"\u00b9":{"d":"52,-82r0,-103v-10,13,-28,-5,-42,-8r48,-44r31,0r0,155r-37,0","w":94},"\u00be":{"d":"275,-30r0,30r-39,0r0,-30r-62,0r0,-29r56,-97r45,0r0,90r12,0r0,36r-12,0xm125,0r-47,0r118,-253r47,0xm55,-237v53,-8,79,27,60,71v15,37,6,98,-47,85v-17,0,-35,-4,-49,-8r2,-33r52,6v16,3,8,-14,10,-25v0,-6,0,-9,-7,-8r-44,0r0,-36r44,0v7,0,7,-1,7,-8v3,-14,-29,-7,-29,-7v-9,14,-26,-3,-40,-6v8,-21,18,-27,41,-31xm236,-93r-16,27r16,0r0,-27","w":268},"\u00b3":{"d":"55,-237v53,-8,79,27,60,71v15,37,6,98,-47,85v-17,0,-35,-4,-49,-8r2,-33r52,6v16,3,8,-14,10,-25v0,-6,0,-9,-7,-8r-44,0r0,-36r44,0v7,0,7,-1,7,-8v3,-14,-29,-7,-29,-7v-9,14,-26,-3,-40,-6v8,-21,18,-27,41,-31","w":122},"\u00b2":{"d":"15,-207v9,-42,110,-44,106,6v-3,40,-34,55,-50,83r55,0r0,36r-109,0r0,-29v21,-30,48,-54,65,-88v-6,-7,-32,-3,-35,5","w":128},"\u00a6":{"d":"74,-136r-46,0r0,-144r46,0r0,144xm28,42r0,-164r46,0r0,164r-46,0","w":79},"\u00d7":{"d":"108,-124r50,50r-29,29r-49,-50r-50,50r-30,-29r50,-50r-50,-50r30,-29r50,50r49,-50r29,29","w":138},"!":{"d":"70,-68r-35,0r-11,-164r57,0xm28,0r0,-51r50,0r0,51r-50,0","w":84},"\"":{"d":"82,-138r0,-100r47,0r0,100r-47,0xm28,-138r0,-100r46,0r0,100r-46,0","w":135},"#":{"d":"139,-76r-15,76r-46,0r15,-76r-19,0r-15,76r-45,0r14,-76r-25,0r0,-41r33,0r3,-14r-36,0r0,-40r44,0r16,-82r46,0r-16,82r19,0r16,-82r46,0r-17,82r29,0r0,40r-37,0r-2,14r39,0r0,41r-47,0xm85,-131r-3,14r19,0r3,-14r-19,0","w":191},"$":{"d":"17,-172v0,-37,27,-54,59,-60r0,-32r40,0r0,32v19,3,34,9,52,15r-9,34r-43,-9r0,56v30,11,59,25,59,67v0,37,-24,64,-59,70r0,31r-40,0r0,-30v-18,-3,-35,-4,-50,-11r-5,-41v21,7,34,10,55,11r0,-62v-32,-11,-59,-29,-59,-71xm76,-188v-15,7,-16,26,0,35r0,-35xm116,-45v12,-8,17,-32,0,-40r0,40","w":181},"%":{"d":"287,-110v-4,48,14,110,-39,110v-40,0,-68,-5,-65,-45v3,-47,-14,-109,39,-109v40,0,68,3,65,44xm118,0r-46,0r117,-253r47,0xm120,-193v-3,47,14,109,-39,109v-41,0,-68,-4,-66,-44v3,-48,-13,-110,39,-110v41,0,69,5,66,45xm231,-34v11,0,20,3,20,-11r0,-64v2,-12,-8,-11,-20,-11v-11,-1,-11,2,-11,11r0,64v0,11,0,11,11,11xm63,-118v12,0,23,4,20,-11r0,-64v2,-13,-9,-11,-20,-11v-9,0,-10,3,-11,11r0,64v1,10,1,11,11,11","w":301},"&":{"d":"96,-172r93,122r58,-9r13,33r-46,8r14,18r-51,0r-7,-10v-28,6,-60,12,-88,13v-48,3,-61,-28,-60,-77v1,-36,15,-62,45,-69v-8,-11,-22,-23,-22,-40v-5,-67,130,-70,144,-14r-40,14v-10,-19,-74,-17,-53,11xm67,-79v0,34,5,47,42,39v15,-3,15,-2,34,-4r-46,-59v-20,-4,-30,4,-30,24","w":253},"'":{"d":"28,-138r0,-100r46,0r0,100r-46,0","w":86},"(":{"d":"126,-291v-76,69,-74,281,0,347r-44,0v-75,-66,-80,-276,0,-347r44,0","w":104},")":{"d":"37,-291v80,69,77,282,0,347r-43,0v73,-67,75,-276,0,-347r43,0","w":104},"*":{"d":"111,-165r33,22r-22,29r-33,-30r-36,31r-22,-30r33,-22r-39,-13r14,-32r33,17r-5,-33r41,0r-5,33r33,-17r14,32","w":164},"+":{"d":"127,-104r0,71r-41,0r0,-71r-71,0r0,-41r71,0r0,-71r41,0r0,71r71,0r0,41r-71,0","w":204},",":{"d":"55,45r-29,-10r9,-35r-7,0r0,-51r50,0r0,45","w":89,"k":{"T":29}},"-":{"d":"15,-77r0,-41r141,0r0,41r-141,0","w":159,"k":{"V":12,"T":23,"7":23,"3":12}},".":{"d":"28,0r0,-51r50,0r0,51r-50,0","w":89,"k":{"7":21,"\/":-27}},"\/":{"d":"46,0r-46,0r117,-253r47,0","w":151,"k":{"\u00ff":13,"\u00f8":15,"\u00e6":19,"\u00b5":13,"\u00fc":13,"\u00fb":13,"\u00f9":13,"\u00fa":13,"\u00f5":15,"\u00f6":15,"\u00f4":15,"\u00f2":15,"\u00f3":15,"\u00f1":13,"\u00eb":17,"\u00ea":17,"\u00e8":17,"\u00e9":17,"\u00e7":13,"\u00e5":19,"\u00e3":19,"\u00e4":19,"\u00e2":19,"\u00e0":19,"\u00e1":19,"z":19,"y":13,"x":15,"u":13,"t":8,"s":15,"r":6,"q":15,"p":12,"o":15,"n":13,"m":13,"g":13,"e":17,"d":13,"c":13,"a":19,"W":-17,"V":-19,"T":-23,"7":10,"5":12,"4":29,"3":10,"0":17,"\u00f0":13,"\u00fe":12,"\u00fd":13}},"0":{"d":"178,-167v-6,71,25,175,-55,170r-43,0v-80,5,-56,-99,-56,-170v0,-40,14,-64,56,-64v60,0,104,4,98,64xm94,-38v23,1,39,3,39,-25r0,-115v-5,-19,-74,-22,-63,13r0,114v1,11,10,14,24,13","w":192},"1":{"d":"61,0r0,-175r-22,19r-42,-16r68,-60r41,0r0,232r-45,0","w":119,"k":{"\/":-17}},"2":{"d":"69,-231v76,-12,128,37,83,95r-75,96r98,0r0,40r-160,0r0,-36r103,-130v11,-17,2,-25,-18,-25v-20,0,-40,-1,-47,11r-39,-15v8,-22,28,-32,55,-36","w":180,"k":{"\u00ba":7,"\u00aa":7}},"3":{"d":"71,-231v58,-3,101,6,98,61v0,19,-5,32,-11,43v22,45,18,138,-50,130v-29,-3,-62,-7,-89,-12r3,-37r78,8v31,5,24,-29,23,-55v0,-11,-6,-14,-19,-14r-64,0r0,-41r64,0v20,3,22,-14,19,-31v-3,-20,-60,-17,-70,-1r-40,-14v11,-26,25,-35,58,-37","w":183,"k":{".":10}},"4":{"d":"150,-48r0,48r-45,0r0,-48r-102,0r0,-36r89,-148r58,0r0,143r20,0r0,41r-20,0xm105,-171r-49,82r49,0r0,-82","w":174,"k":{"\/":-17}},"5":{"d":"59,-148v46,-10,108,-16,108,46v0,57,-1,109,-61,105v-30,-2,-62,-7,-89,-12r2,-37r78,8v35,6,22,-33,24,-62v0,-10,-6,-15,-15,-14v-25,0,-32,6,-55,7r-36,-10r0,-114r147,0r0,38r-103,0r0,45","w":177},"6":{"d":"28,-44v5,-77,-26,-187,60,-187v47,0,84,-1,96,37r-40,14v-4,-17,-29,-7,-47,-10v-31,-6,-23,24,-24,49v47,-11,115,-16,108,46r0,52v1,37,-33,49,-75,46v-38,-3,-81,-5,-78,-47xm73,-44v19,9,70,17,63,-19v-4,-19,7,-48,-16,-45r-47,6r0,58","w":193,"k":{"7":10}},"7":{"d":"64,1r-47,0r74,-191r-88,0r0,-42r153,0","w":142,"k":{".":12}},"8":{"d":"172,-116v23,45,14,127,-49,119v-63,5,-103,-10,-99,-73v1,-18,4,-35,12,-46v-24,-40,-16,-125,49,-115v62,-5,103,7,98,70v-1,18,-4,34,-11,45xm94,-135v33,4,49,-5,44,-43v-2,-17,-26,-10,-44,-12v-27,-3,-25,15,-24,40v1,13,10,14,24,15xm94,-38v33,3,48,-5,44,-43v-2,-18,-26,-11,-44,-13v-27,-3,-25,16,-24,41v1,12,10,14,24,15","w":198},"9":{"d":"84,-231v45,0,87,-3,93,37v-8,78,32,202,-60,197v-34,-2,-65,-12,-95,-17r0,-37v29,3,58,10,86,13v23,2,26,-11,24,-33v-52,6,-108,13,-108,-49v0,-60,-3,-111,60,-111xm69,-114v10,16,44,2,63,3r0,-76v-16,-4,-73,-15,-63,22r0,51","w":195,"k":{"\u00ba":4,"\u00aa":4}},":":{"d":"28,-117r0,-51r50,0r0,51r-50,0xm28,0r0,-51r50,0r0,51r-50,0","w":89,"k":{"7":12}},";":{"d":"28,-117r0,-51r50,0r0,51r-50,0xm55,45r-29,-10r9,-35r-7,0r0,-51r50,0r0,45","w":89},"<":{"d":"3,-97r0,-31r126,-77r0,49r-74,44r74,44r0,49","w":130},"=":{"d":"15,-130r0,-41r183,0r0,41r-183,0xm15,-76r0,-41r183,0r0,41r-183,0","w":204},">":{"d":"15,-19r0,-49r74,-44r-74,-44r0,-49r126,77r0,31","w":130},"?":{"d":"71,-251v61,-4,98,8,98,68v0,56,-31,77,-85,69r19,47r-50,0v-12,-30,-38,-48,-33,-95r80,9v26,3,24,-16,24,-39v0,-25,-28,-16,-50,-18v-11,0,-18,1,-21,10r-40,-14v11,-26,25,-35,58,-37xm50,0r0,-51r49,0r0,51r-49,0","w":160},"@":{"d":"172,-247v82,0,145,42,145,124v0,67,-43,104,-119,100v-10,-16,-38,6,-58,2v-79,6,-41,-112,-16,-145v19,-25,67,-13,92,0r8,-13v18,-2,30,4,31,19r-19,97v22,-10,35,-30,36,-61v2,-60,-44,-84,-100,-84v-66,0,-103,44,-103,108v0,64,39,108,103,108v49,0,81,-13,111,-34r0,41v-32,19,-63,33,-111,32v-93,-2,-148,-57,-148,-147v0,-88,54,-147,148,-147xm207,-132v-20,-8,-56,-22,-62,12r-9,52v4,19,41,4,58,4","w":339,"k":{"T":10}},"A":{"d":"171,0r-23,-66r-72,0r-23,66r-53,0r89,-231r46,0r89,231r-53,0xm111,-168r-21,61r43,0","w":208,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c8":8,"\u00cb":8,"\u00ca":8,"\u00ff":4,"\u00d5":7,"\u00b5":4,"\u00d8":7,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00d6":7,"\u00c9":8,"\u00c7":7,"y":4,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":18,"V":25,"T":22,"P":4,"O":7,"G":7,"E":8,"C":7,"?":10,"\/":-19,"\u00de":4,"\u00fd":4,"\u00dd":25}},"B":{"d":"101,-230v68,-20,111,40,84,95v42,22,42,135,-34,135r-123,0r0,-231v16,2,40,-5,45,7xm78,-144v30,-1,67,8,67,-25v0,-35,-42,-22,-67,-18r0,43xm78,-41v30,-4,84,14,84,-19v0,-21,5,-44,-18,-44r-66,0r0,63","w":218,"k":{"\u00c1":2,"\u00c2":2,"\u00c3":2,"\u00c0":2,"\u00c5":2,"\u00c4":2,"y":8,"Z":7,"Y":18,"X":7,"W":11,"V":11,"T":23,"A":2,"?":6,".":10,"\u00dd":18}},"C":{"d":"24,-62v0,-73,-23,-169,61,-169v47,0,88,-4,100,36r-40,15v-4,-16,-28,-10,-46,-11v-17,-1,-24,2,-24,20r0,120v1,16,20,13,37,12v23,-1,46,-5,67,-7r2,37r-96,12v-44,0,-61,-22,-61,-65","w":187,"k":{"\u00f8":2,"\u00e6":5,"\u00b1":11,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":11,"o":2,"f":11,"e":2,"d":4,"a":5,"Y":6,"-":13,"\u00f0":4,"\u00dd":6}},"D":{"d":"209,-170v0,73,23,170,-60,170r-121,0r0,-231v16,1,40,-5,46,7r75,-10v43,0,60,22,60,64xm78,-40v30,-6,81,19,81,-26r0,-115v-9,-25,-57,-6,-81,-5r0,146","w":225,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c5":7,"\u00c4":7,"Z":7,"Y":11,"X":7,"W":7,"V":7,"T":9,"A":7,".":17,"\u00dd":11}},"E":{"d":"28,0r0,-231r146,0r0,40r-96,0r0,47r81,0r0,41r-81,0r0,62r96,0r0,41r-146,0","w":178,"k":{"V":8}},"F":{"d":"78,-191r0,47r81,0r0,41r-81,0r0,103r-50,0r0,-231r146,0r0,40r-96,0","w":178,"k":{"\u00c1":26,"\u00c2":26,"\u00ff":9,"\u00c3":26,"\u00c0":26,"\u00f8":11,"\u00e6":11,"\u00b5":9,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00ef":4,"\u00ee":4,"\u00ec":4,"\u00ed":4,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c7":11,"\u00c5":26,"\u00c4":26,"y":9,"u":9,"r":11,"o":11,"m":4,"j":11,"i":4,"e":7,"d":13,"a":11,"S":8,"J":43,"G":5,"C":11,"A":26,".":21,",":21,"\u00f0":13,"\u00fd":9}},"G":{"d":"75,-63v-7,41,45,21,75,18r0,-48r-36,0r0,-40r81,0r0,133v-15,-1,-36,4,-41,-7r-69,10v-83,5,-54,-97,-61,-170v-7,-74,82,-74,139,-56v9,5,16,14,22,28r-40,15v-3,-17,-28,-9,-46,-11v-19,-2,-24,6,-24,25r0,103","w":212,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c5":7,"\u00c4":7,"Y":23,"W":10,"V":13,"T":13,"S":7,"L":4,"J":7,"A":7,"\/":-13,"\u00dd":23}},"H":{"d":"170,0r0,-103r-92,0r0,103r-50,0r0,-231r50,0r0,87r92,0r0,-87r50,0r0,231r-50,0","w":240},"I":{"d":"28,0r0,-231r50,0r0,231r-50,0","w":89},"J":{"d":"150,-62v-1,42,-16,65,-60,65v-29,0,-62,-9,-87,-15r2,-37v23,3,46,10,71,11v19,2,24,-6,24,-25r0,-168r50,0r0,169","w":166,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c5":7,"\u00c4":7,"T":12,"A":7}},"K":{"d":"174,0r-81,-105r-15,15r0,90r-50,0r0,-231r50,0r0,81r85,-81r58,0r-98,96r104,135r-53,0","w":214,"k":{"\u00d0":7,"\u00d9":22,"\u00db":22,"\u00da":22,"\u00d2":11,"\u00d4":11,"\u00d3":11,"\u00cc":9,"\u00cf":9,"\u00ce":9,"\u00cd":9,"\u00c8":7,"\u00cb":7,"\u00c1":11,"\u00ca":7,"\u00c2":11,"\u00ff":9,"\u00d5":11,"\u00c3":11,"\u00c0":11,"\u00f8":9,"\u00e6":11,"\u00b5":9,"\u00b1":18,"\u00d8":11,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00f1":7,"\u00ef":9,"\u00ee":9,"\u00ec":9,"\u00ed":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":5,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00dc":22,"\u00d6":11,"\u00c9":7,"\u00c7":7,"\u00c5":11,"\u00c4":11,"y":9,"u":9,"r":14,"o":9,"n":7,"i":9,"g":7,"f":18,"e":9,"d":9,"c":5,"a":11,"Y":10,"W":10,"S":8,"R":7,"Q":19,"O":11,"G":8,"E":7,"D":7,"C":7,"-":17,"\u00f0":9,"\u00fd":9,"\u00dd":10}},"L":{"d":"28,0r0,-231r50,0r0,190r96,0r0,41r-146,0","w":165,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00d5":4,"\u00f8":11,"\u00e6":4,"\u00b1":11,"\u00d8":4,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00d6":4,"\u00c7":7,"o":11,"f":11,"e":7,"a":4,"Y":36,"W":25,"V":25,"T":11,"Q":4,"O":4,"G":4,"C":7,"@":12,"?":12,"\/":-27,".":-17,"-":15,"\u00dd":36}},"M":{"d":"222,0r0,-124r-51,101r-44,0r-51,-101r0,124r-50,0r0,-231r47,0r77,156r74,-156r47,0r0,231r-49,0","w":294},"N":{"d":"172,0r-96,-141r0,141r-50,0r0,-231r40,0r102,149r0,-149r51,0r0,231r-47,0","w":236},"O":{"d":"202,-169v-5,73,22,169,-61,169v-64,0,-121,2,-117,-64v5,-73,-22,-170,61,-170v65,0,121,-1,117,65xm99,-41v25,-2,53,9,53,-25r-1,-114v-1,-20,-32,-11,-52,-13v-20,-2,-25,6,-25,25r1,115v2,11,10,12,24,12","w":217,"k":{"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c0":13,"\u00c5":13,"\u00c4":13,"Z":13,"Y":14,"X":12,"W":9,"V":2,"T":13,"J":7,"A":13,".":19,"\u00dd":14}},"P":{"d":"198,-130v5,66,-64,72,-120,58r0,72r-50,0r0,-231v16,2,40,-5,45,7v54,-16,131,-15,125,55r0,39xm78,-110v27,0,75,20,70,-21v-4,-27,12,-68,-24,-62r-46,7r0,76","w":210,"k":{"\u00c1":20,"\u00c2":20,"\u00ff":4,"\u00c3":20,"\u00c0":20,"\u00f8":9,"\u00e6":11,"\u00b5":4,"\u00c6":19,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":4,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c5":20,"\u00c4":20,"y":4,"u":4,"o":9,"e":7,"d":4,"c":4,"a":11,"Z":4,"Y":6,"X":6,"W":7,"V":7,"T":7,"J":36,"A":20,".":29,"\u00f0":4,"\u00fd":4,"\u00dd":6}},"Q":{"d":"143,0v22,16,50,-6,77,-5r0,37v-27,0,-44,11,-69,11v-36,0,-51,-14,-58,-43v-90,11,-65,-91,-69,-169v-4,-66,52,-65,117,-65v83,0,61,96,61,170v0,42,-16,64,-59,64xm99,-41v25,-2,53,9,53,-25r-1,-114v-1,-20,-32,-11,-52,-13v-19,-2,-24,6,-24,25r0,115v2,11,10,12,24,12","w":217,"k":{"Y":8,"X":8,"W":7,"V":8,"T":13,"J":11,"\u00dd":8}},"R":{"d":"198,-169v0,42,0,80,-31,91r61,78r-53,0r-57,-73v-13,0,-28,-4,-40,-6r0,79r-50,0r0,-231v16,2,40,-5,45,7v54,-17,125,-16,125,55xm78,-117v27,0,75,20,70,-21v-3,-25,9,-59,-24,-55v-15,2,-33,4,-46,6r0,70","w":214,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00ff":4,"\u00d5":4,"\u00f8":4,"\u00e6":4,"\u00b5":4,"\u00b1":4,"\u00d8":4,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00d6":4,"y":4,"u":4,"o":4,"f":4,"e":4,"a":4,"Y":10,"W":7,"V":7,"T":7,"O":4,"\/":-21,"\u00fd":4,"\u00dd":10}},"S":{"d":"159,-183v-30,-15,-121,-16,-86,28v36,24,102,23,102,86v0,73,-87,85,-149,60r-5,-41v30,10,105,30,106,-19v-20,-43,-110,-27,-110,-103v0,-73,100,-70,151,-45","w":181,"k":{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c5":4,"\u00c4":4,"Y":12,"X":5,"V":4,"T":6,"B":4,"A":4,"\u00dd":12}},"T":{"d":"113,-191r0,191r-49,0r0,-191r-61,0r0,-40r171,0r0,40r-61,0","w":165,"k":{"\u00d9":28,"\u00db":28,"\u00da":28,"\u00d2":13,"\u00d4":13,"\u00d3":13,"\u00cc":9,"\u00cf":9,"\u00ce":9,"\u00cd":9,"\u00c8":30,"\u00cb":30,"\u00c1":25,"\u00ca":30,"\u00c2":25,"\u00ff":18,"\u00d5":13,"\u00c3":25,"\u00c0":25,"\u00f8":22,"\u00e6":29,"\u00b5":18,"\u00b1":4,"\u00d8":13,"\u00fc":18,"\u00fb":18,"\u00f9":18,"\u00fa":18,"\u00f5":22,"\u00f6":22,"\u00f4":22,"\u00f2":22,"\u00f3":22,"\u00f1":11,"\u00ef":9,"\u00ee":9,"\u00ec":9,"\u00ed":9,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":18,"\u00e5":29,"\u00e3":29,"\u00e4":29,"\u00e2":29,"\u00e0":29,"\u00e1":29,"\u00dc":28,"\u00d6":13,"\u00c9":30,"\u00c5":25,"\u00c4":25,"z":14,"y":18,"x":11,"w":13,"v":13,"u":18,"t":13,"s":18,"r":18,"q":18,"p":16,"o":22,"n":11,"m":11,"l":17,"k":17,"j":9,"i":9,"h":9,"g":18,"f":4,"e":29,"d":18,"c":18,"b":11,"a":29,"Y":-6,"V":-6,"T":-9,"Q":13,"O":13,"J":36,"G":7,"A":25,"@":10,"\/":15,".":22,"-":23,",":19,"\u00f0":18,"\u00fe":16,"\u00fd":18,"\u00dd":-6}},"U":{"d":"75,-63v-5,45,51,17,77,18r0,-186r50,0r0,231v-16,-2,-41,5,-46,-7r-71,10v-44,0,-60,-22,-61,-65r0,-169r51,0r0,168","w":219},"V":{"d":"135,0r-45,0r-90,-231r53,0r60,168r58,-168r53,0","w":211,"k":{"\u00d9":15,"\u00db":15,"\u00da":15,"\u00d2":2,"\u00d4":2,"\u00d3":2,"\u00cc":5,"\u00cf":5,"\u00ce":5,"\u00cd":5,"\u00c8":24,"\u00cb":24,"\u00c1":17,"\u00ca":24,"\u00c2":17,"\u00ff":15,"\u00d5":2,"\u00c3":17,"\u00c0":17,"\u00f8":17,"\u00e6":18,"\u00b5":15,"\u00d8":2,"\u00fc":15,"\u00fb":15,"\u00f9":15,"\u00fa":15,"\u00f5":17,"\u00f6":17,"\u00f4":17,"\u00f2":17,"\u00f3":17,"\u00f1":11,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00eb":18,"\u00ea":18,"\u00e8":18,"\u00e9":18,"\u00e7":18,"\u00e5":18,"\u00e3":18,"\u00e4":18,"\u00e2":18,"\u00e0":18,"\u00e1":18,"\u00dc":15,"\u00d6":2,"\u00c9":24,"\u00c5":17,"\u00c4":17,"y":15,"u":15,"s":13,"r":9,"q":18,"p":13,"o":17,"n":11,"m":11,"l":5,"i":5,"g":13,"e":18,"d":18,"c":18,"a":18,"T":-6,"Q":5,"O":2,"J":36,"G":5,"A":17,".":37,"-":12,",":27,"\u00f0":18,"\u00fe":13,"\u00fd":15}},"W":{"d":"273,0r-45,0r-51,-144r-51,144r-46,0r-79,-231r52,0r51,166r49,-150r48,0r50,149r49,-165r52,0","w":351,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":18,"\u00c2":18,"\u00ff":11,"\u00d5":4,"\u00c3":18,"\u00c0":18,"\u00f8":17,"\u00e6":18,"\u00b5":11,"\u00d8":4,"\u00fc":11,"\u00fb":11,"\u00f9":11,"\u00fa":11,"\u00f5":17,"\u00f6":17,"\u00f4":17,"\u00f2":17,"\u00f3":17,"\u00f1":11,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00eb":18,"\u00ea":18,"\u00e8":18,"\u00e9":18,"\u00e7":18,"\u00e5":18,"\u00e3":18,"\u00e4":18,"\u00e2":18,"\u00e0":18,"\u00e1":18,"\u00d6":4,"\u00c5":18,"\u00c4":18,"z":9,"y":11,"u":11,"s":11,"r":7,"q":14,"p":13,"o":17,"n":11,"m":11,"i":5,"h":4,"g":13,"e":18,"d":14,"c":18,"a":18,"Q":6,"O":4,"J":36,"G":6,"A":18,".":35,",":28,"\u00f0":14,"\u00fe":13,"\u00fd":11}},"X":{"d":"126,-117r76,117r-55,0r-47,-77r-48,77r-55,0r76,-117r-75,-114r54,0r48,73r47,-73r55,0","w":188,"k":{"\u00e6":5,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":26,"e":4,"d":5,"a":5,"Q":8,"\/":-10,"\u00f0":5}},"Y":{"d":"138,-75r0,75r-52,0r0,-75r-87,-156r53,0r60,106r60,-106r54,0","w":215,"k":{"\u00d9":27,"\u00db":27,"\u00da":27,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c8":33,"\u00cb":33,"\u00c1":30,"\u00ca":33,"\u00c2":30,"\u00ff":18,"\u00d5":14,"\u00c3":30,"\u00c0":30,"\u00f8":25,"\u00e6":25,"\u00b5":18,"\u00b1":5,"\u00d8":14,"\u00fc":18,"\u00fb":18,"\u00f9":18,"\u00fa":18,"\u00f5":25,"\u00f6":25,"\u00f4":25,"\u00f2":25,"\u00f3":25,"\u00f1":11,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":22,"\u00ea":22,"\u00e8":22,"\u00e9":22,"\u00e7":18,"\u00e5":25,"\u00e3":25,"\u00e4":25,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00dc":27,"\u00d6":14,"\u00c9":33,"\u00c7":4,"\u00c5":30,"\u00c4":30,"z":14,"y":18,"x":9,"w":9,"u":18,"s":22,"r":19,"q":18,"p":18,"o":25,"n":11,"m":11,"i":7,"g":18,"f":5,"e":22,"d":18,"c":18,"a":25,"Y":2,"X":4,"S":6,"Q":8,"O":14,"J":36,"G":10,"C":4,"A":30,".":38,",":37,"\u00f0":18,"\u00fe":18,"\u00fd":18,"\u00dd":2}},"Z":{"d":"20,0r0,-36r125,-154r-130,0r0,-41r189,0r0,36r-123,155r128,0r0,40r-189,0","w":216,"k":{"\u00d2":13,"\u00d4":13,"\u00d3":13,"\u00d5":13,"\u00e6":5,"\u00b1":7,"\u00d8":13,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"\u00d6":13,"f":7,"d":5,"a":5,"O":13,"G":8,"\u00f0":5}},"[":{"d":"28,53r0,-344r103,0r0,42r-57,0r0,261r57,0r0,41r-103,0","w":120},"\\":{"d":"117,0r-117,-253r46,0r118,253r-47,0","w":151},"]":{"d":"3,53r0,-41r57,0r0,-261r-57,0r0,-42r103,0r0,344r-103,0","w":120},"^":{"d":"138,-176r-35,-22r-35,22r-41,-7r76,-70r76,70"},"_":{"d":"15,38r0,-38r183,0r0,38r-183,0","w":204},"`":{"d":"106,-176r-76,-49r57,-13r60,55","w":198},"a":{"d":"117,-173v84,-6,55,100,60,173v-15,-1,-36,5,-37,-10v-38,25,-121,18,-121,-41v0,-54,61,-56,113,-60v4,-24,-15,-24,-37,-21r-65,8r-2,-37v25,-6,60,-10,89,-12xm66,-57v-8,16,12,20,32,19v25,-2,33,-9,34,-33v-21,5,-58,-3,-66,14","k":{"\u00b1":-2,"t":3,"s":-2,"f":-2,"Y":25,"W":18,"V":18,"T":29,"\u00dd":25}},"b":{"d":"186,-109v0,61,1,115,-61,112v-31,-2,-71,-6,-98,-12r0,-228r46,0r0,72v51,-18,113,-11,113,56xm73,-42v25,-1,73,20,67,-21v-4,-28,14,-75,-24,-70v-14,2,-31,4,-43,6r0,85","w":198,"k":{"\u00e6":4,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"a":4,"Y":18,"W":18,"V":18,"T":18,"\u00dd":18}},"c":{"d":"22,-62v-2,-60,-3,-111,60,-111v47,0,84,-2,95,37r-39,14v-7,-17,-36,-7,-59,-10v-23,7,-11,54,-11,82v0,11,10,12,23,12v27,0,54,-6,79,-8r2,37v-30,4,-58,12,-90,12v-44,0,-59,-23,-60,-65","w":182,"k":{"\u00f8":2,"\u00e6":6,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":6,"\u00e3":6,"\u00e4":6,"\u00e2":6,"\u00e0":6,"\u00e1":6,"y":2,"s":2,"o":2,"k":5,"h":2,"e":2,"c":2,"a":6,"Y":18,"W":18,"V":18,"T":18,"-":6,"\u00dd":18}},"d":{"d":"22,-62v0,-60,-2,-112,60,-112v19,0,37,6,53,9r0,-72r45,0r0,237v-15,-1,-36,4,-40,-7v-51,18,-118,15,-118,-55xm67,-63v-5,40,46,21,68,19r0,-83v-13,-2,-30,-4,-44,-6v-37,-4,-20,40,-24,70","w":198},"e":{"d":"180,-119v1,56,-59,57,-112,58v-3,45,70,14,102,15r2,37r-89,12v-62,3,-61,-51,-61,-112v0,-58,38,-67,98,-64v37,2,60,17,60,54xm135,-119v-9,-23,-83,-24,-67,19v21,-4,46,-3,64,-10v3,-3,2,-5,3,-9","w":189,"k":{"\u00f8":2,"\u00e6":5,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00f1":5,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"s":2,"o":2,"n":5,"m":4,"h":2,"e":2,"c":2,"a":5,"Y":18,"W":22,"V":22,"T":18,"\u00dd":18}},"f":{"d":"37,-171v-11,-71,55,-77,113,-63r-2,37v-26,1,-73,-19,-65,26r47,0r0,38r-47,0r0,133r-46,0r0,-133r-34,0r0,-38r34,0","w":140,"k":{"\u00c1":22,"\u00c2":22,"\u00ff":13,"\u00c3":22,"\u00c0":22,"\u00f8":-346,"\u00e6":25,"\u00b5":13,"\u00fc":13,"\u00fb":13,"\u00f9":13,"\u00fa":13,"\u00f5":19,"\u00f6":19,"\u00f4":19,"\u00f2":19,"\u00f3":19,"\u00f1":6,"\u00ef":15,"\u00ee":15,"\u00ec":15,"\u00ed":15,"\u00eb":15,"\u00ea":15,"\u00e8":15,"\u00e9":15,"\u00e7":14,"\u00e5":25,"\u00e3":25,"\u00e4":25,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00c5":22,"\u00c4":22,"y":13,"u":13,"s":6,"r":4,"q":6,"p":8,"o":19,"n":6,"m":6,"j":8,"i":15,"g":12,"e":15,"d":13,"c":14,"a":25,"J":36,"A":22,"\/":8,".":29,"-":10,",":25,"\u00f0":13,"\u00fe":8,"\u00fd":13}},"g":{"d":"19,-62v0,-61,-1,-115,61,-112v20,1,38,7,56,10v5,-11,26,-6,41,-7r0,189v4,80,-103,51,-159,38r0,-37v31,2,59,13,91,13v25,6,24,-15,23,-38v-50,17,-113,11,-113,-56xm64,-63v-5,40,45,22,68,19r0,-83v-23,-3,-68,-21,-68,19r0,45","k":{"\u00b1":-2,"s":4,"f":-2,"Y":13,"W":18,"V":18,"T":18,".":12,"\u00dd":13}},"h":{"d":"74,-165v54,-18,113,-10,113,56r0,109r-46,0r0,-120v-4,-24,-48,-9,-67,-7r0,127r-46,0r0,-237r46,0r0,72","w":201,"k":{"\u00f8":2,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"w":2,"v":4,"s":2,"o":2,"h":2,"e":2,"c":2,"Y":14,"W":13,"V":13,"T":18,"\u00dd":14}},"i":{"d":"73,-194r-45,0r0,-43r46,0xm28,0r0,-171r46,0r0,171r-46,0","w":85,"k":{"\u00e6":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"a":2,"Y":7,"\u00dd":7}},"j":{"d":"78,-194r-45,0r0,-44r45,0r0,44xm-23,28v20,2,51,14,56,-8r0,-191r45,0r0,191v4,55,-56,58,-102,47","w":90},"k":{"d":"126,-171v66,-10,78,86,28,102r37,69r-47,0r-32,-60r-39,6r0,54r-45,0r0,-237r45,0r0,66r53,0xm136,-109v13,-11,-2,-22,-19,-22r-44,0r0,37v21,-5,45,-8,63,-15","w":195,"k":{"\u00ff":2,"\u00b5":2,"\u00fc":2,"\u00fb":2,"\u00f9":2,"\u00fa":2,"\u00c7":-4,"y":2,"u":2,"Y":18,"W":18,"V":18,"T":18,"C":-4,"\/":-21,"\u00fd":2,"\u00dd":18}},"l":{"d":"28,0r0,-237r46,0r0,237r-46,0","w":84,"k":{"\u00ef":-4,"\u00ee":-4,"\u00ec":-4,"\u00ed":-4,"i":-4}},"m":{"d":"224,-174v84,-5,56,100,61,174r-46,0r0,-119v-6,-21,-46,-7,-60,-2r0,121r-45,0r-1,-119v-6,-22,-45,-6,-60,-3r0,122r-46,0r0,-171v16,1,39,-5,42,9v28,-10,73,-20,94,3v19,-4,39,-14,61,-15","w":305,"k":{"Y":18,"W":11,"V":11,"T":18,"\u00dd":18}},"n":{"d":"69,-164v55,-18,117,-15,117,55r0,109r-45,0r0,-120v-4,-24,-50,-9,-68,-7r0,127r-45,0r0,-171v15,1,37,-5,41,7","w":199,"k":{"t":3,"Y":11,"W":11,"V":11,"T":11,"\u00dd":11}},"o":{"d":"180,-109v0,60,3,112,-60,112v-60,0,-98,-7,-98,-65v0,-60,-3,-111,60,-111v59,0,98,4,98,64xm91,-38v23,-2,49,6,44,-25v-5,-28,14,-73,-24,-69v-23,3,-48,-5,-44,25v5,27,-13,73,24,69","w":192,"k":{"\u00f8":2,"\u00e6":4,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"s":2,"o":2,"h":2,"e":2,"c":2,"b":4,"a":4,"Y":18,"W":18,"V":18,"T":23,"F":11,"\u00dd":18}},"p":{"d":"186,-109v0,60,3,112,-60,112v-19,0,-36,-6,-53,-9r0,74r-45,0r0,-239v15,1,37,-5,41,7v51,-17,117,-16,117,55xm74,-44v21,2,74,22,67,-19v-5,-28,14,-75,-24,-70v-14,2,-31,4,-43,6r0,83","w":201,"k":{"Y":14,"W":11,"V":11,"T":18,"\u00dd":14}},"q":{"d":"22,-62v0,-60,-2,-115,60,-112v21,1,39,7,57,10v5,-11,26,-6,41,-7r0,239r-45,0r0,-74v-51,18,-113,11,-113,-56xm67,-63v-6,40,46,21,68,19r0,-83v-13,-3,-29,-4,-44,-6v-37,-4,-20,40,-24,70","w":198,"k":{"Y":18,"T":22,"\u00dd":18}},"r":{"d":"68,-163v24,-6,58,-17,83,-4r-12,40v-16,-10,-47,-3,-67,1r0,126r-45,0r0,-171v15,1,37,-5,41,8","w":141,"k":{"\u00f8":4,"\u00e6":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00f1":2,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"o":4,"n":2,"e":4,"d":4,"c":4,"a":4,".":17,"-":6,",":21,"\u00f0":4}},"s":{"d":"83,-133v-19,-4,-30,17,-8,22v34,8,75,12,75,56v0,71,-81,62,-133,47r0,-37v22,5,44,5,65,8v17,2,35,-18,18,-24v-37,-12,-82,-14,-83,-62v0,-63,86,-53,131,-36r-13,36v-18,-6,-33,-7,-52,-10","w":154,"k":{"\u00f8":2,"\u00e6":2,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00f1":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"v":6,"t":5,"s":2,"o":2,"n":2,"h":2,"e":2,"c":2,"a":2,"Y":18,"\u00dd":18}},"t":{"d":"141,-5v-48,18,-100,5,-100,-57r0,-71r-38,0r0,-38r38,0r0,-51r45,0r0,51r41,0r0,38r-41,0r0,82v2,22,40,11,55,7r0,39","w":141,"k":{"\u00ff":6,"\u00f8":9,"\u00e6":6,"\u00b5":6,"\u00fc":6,"\u00fb":6,"\u00f9":6,"\u00fa":6,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00f1":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":2,"\u00e5":6,"\u00e3":6,"\u00e4":6,"\u00e2":6,"\u00e0":6,"\u00e1":6,"y":6,"u":6,"q":8,"o":9,"n":5,"e":5,"d":2,"c":2,"a":6,"Y":18,"\/":-19,".":-10,"-":12,"\u00f0":2,"\u00fd":6,"\u00dd":18}},"u":{"d":"70,-64v-7,40,47,22,68,20r0,-127r45,0r0,171v-15,-1,-37,5,-41,-7v-52,16,-118,15,-118,-55r0,-109r46,0r0,107","w":198,"k":{"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"v":13,"a":5,"Y":18,"\u00dd":18}},"v":{"d":"109,0r-35,0r-74,-171r48,0r43,116r43,-116r49,0","w":171,"k":{"\u00e6":4,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"a":4,"Y":18,".":21,",":13,"\u00dd":18}},"w":{"d":"196,0r-35,0r-26,-60r-26,60r-35,0r-74,-171r48,0r44,116r21,-57r-22,-51r44,-9r44,117r42,-116r49,0","w":263,"k":{"\u00e6":4,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"e":2,"a":4,"Y":18,".":21,",":12,"\u00dd":18}},"x":{"d":"131,0r-42,-55r-42,55r-51,0r68,-87r-65,-84r50,0r40,51r40,-51r51,0r-66,84r68,87r-51,0","w":166,"k":{"Y":18,"\/":-13,"\u00dd":18}},"y":{"d":"70,-64v-6,38,39,22,68,20r0,-127r45,0r0,189v4,79,-103,51,-159,38r0,-37v30,4,58,9,90,13v26,3,25,-15,24,-38v-52,16,-113,11,-113,-56r0,-109r45,0r0,107","w":192,"k":{"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"v":13,"a":5,"Y":18,"\u00dd":18}},"z":{"d":"17,0r0,-36r88,-95r-82,0r0,-41r125,0r15,35r-88,97r89,0r0,40r-147,0","w":169,"k":{"Y":18,"\/":-12,"\u00dd":18}},"{":{"d":"73,3v2,22,41,10,56,8r0,39v-45,12,-102,7,-102,-47v0,-38,14,-97,-24,-101r0,-39v39,-3,24,-64,24,-101v0,-54,55,-60,102,-47r0,39v-16,-2,-55,-13,-57,8v-4,44,10,103,-19,121v29,18,17,75,20,120","w":118},"|":{"d":"28,43r0,-323r46,0r0,323r-46,0","w":84},"}":{"d":"130,-98v-38,4,-25,63,-25,101v0,55,-57,60,-102,47r0,-39v16,2,55,14,57,-8v3,-45,-9,-102,20,-120v-28,-19,-17,-76,-20,-121v-1,-22,-41,-10,-57,-8r0,-39v46,-12,102,-8,102,47v0,38,-13,98,25,101r0,39","w":118},"~":{"d":"179,-225v-16,20,-28,47,-61,49v-19,1,-24,-11,-36,-17v-11,1,-18,12,-24,18r-38,-7v13,-27,57,-71,88,-34v15,10,25,-6,32,-16","w":199},"\u00c4":{"d":"147,-290v13,0,26,12,26,25v1,14,-11,27,-25,27v-14,0,-26,-12,-26,-26v0,-14,12,-26,25,-26xm74,-290v13,0,25,11,25,25v0,14,-11,27,-25,27v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26xm171,0r-23,-66r-72,0r-23,66r-53,0r89,-231r46,0r89,231r-53,0xm111,-168r-21,61r43,0","w":208,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c8":8,"\u00cb":8,"\u00ca":8,"\u00ff":4,"\u00d5":7,"\u00b5":4,"\u00d8":7,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00d6":7,"\u00c9":8,"\u00c7":7,"y":4,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":18,"V":25,"T":22,"P":4,"O":7,"G":7,"E":8,"C":7,"?":10,"\/":-19,"\u00de":4,"\u00fd":4,"\u00dd":25}},"\u00c5":{"d":"110,-318v26,0,44,17,44,44v0,27,-17,45,-43,45v-26,0,-45,-18,-45,-45v0,-26,18,-44,44,-44xm171,0r-23,-66r-72,0r-23,66r-53,0r87,-224r50,0r87,224r-53,0xm111,-264v4,0,9,-5,8,-10v1,-4,-4,-9,-9,-8v-4,-1,-9,4,-8,8v-1,6,4,10,9,10xm111,-168r-21,61r43,0","w":208,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c8":8,"\u00cb":8,"\u00ca":8,"\u00ff":4,"\u00d5":7,"\u00b5":4,"\u00d8":7,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00d6":7,"\u00c9":8,"\u00c7":7,"y":4,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":18,"V":25,"T":22,"P":4,"O":7,"G":7,"E":8,"C":7,"?":10,"\/":-19,"\u00de":4,"\u00fd":4,"\u00dd":25}},"\u00c7":{"d":"24,-62v3,-73,-23,-169,61,-169v47,0,88,-4,100,36r-40,15v-3,-17,-28,-9,-46,-11v-19,-2,-24,6,-24,25r0,115v1,16,20,13,37,12v23,-1,46,-5,67,-7r2,37v-15,4,-33,5,-50,7v-7,27,-24,46,-59,45v-20,0,-32,-7,-55,-6r0,-38v18,-1,40,14,53,4v-28,-7,-48,-28,-46,-65","w":187,"k":{"\u00f8":2,"\u00e6":5,"\u00b1":11,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":11,"o":2,"f":11,"e":2,"d":4,"a":5,"Y":6,"-":13,"\u00f0":4,"\u00dd":6}},"\u00c9":{"d":"100,-235r-41,-6r60,-55r57,13xm28,0r0,-231r146,0r0,40r-96,0r0,47r81,0r0,41r-81,0r0,62r96,0r0,41r-146,0","w":178,"k":{"V":8}},"\u00d1":{"d":"200,-284v-16,20,-28,50,-61,50v-26,0,-41,-30,-60,0r-38,-7v16,-19,28,-46,62,-49v20,-2,19,17,35,19v11,-2,16,-7,24,-20xm172,0r-96,-141r0,141r-50,0r0,-231r40,0r102,149r0,-149r51,0r0,231r-47,0","w":236},"\u00d6":{"d":"147,-290v13,0,26,12,26,25v1,14,-11,27,-25,27v-14,0,-26,-12,-26,-26v0,-14,12,-26,25,-26xm74,-290v13,0,25,11,25,25v0,14,-11,27,-25,27v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26xm202,-169v-5,73,22,169,-61,169v-64,0,-121,2,-117,-64v5,-73,-22,-170,61,-170v65,0,121,-1,117,65xm99,-41v25,-2,53,9,53,-25r-1,-114v-1,-20,-32,-11,-52,-13v-19,-2,-24,6,-24,25r0,115v2,11,10,12,24,12","w":217,"k":{"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c0":13,"\u00c5":13,"\u00c4":13,"Z":13,"Y":14,"X":12,"W":9,"V":2,"T":13,"J":7,"A":13,".":19,"\u00dd":14}},"\u00dc":{"d":"147,-290v13,0,26,12,26,25v1,14,-11,27,-25,27v-14,0,-26,-12,-26,-26v0,-14,12,-26,25,-26xm74,-290v13,0,25,11,25,25v0,14,-11,27,-25,27v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26xm75,-63v-5,45,51,17,77,18r0,-186r50,0r0,231v-16,-2,-41,5,-46,-7r-71,10v-44,0,-60,-22,-61,-65r0,-169r51,0r0,168","w":219},"\u00e1":{"d":"89,-176r-41,-7r60,-55r57,13xm117,-173v84,-6,55,100,60,173v-15,-1,-36,5,-37,-10v-38,25,-121,18,-121,-41v0,-54,61,-56,113,-60v4,-24,-15,-24,-37,-21r-65,8r-2,-37v25,-6,60,-10,89,-12xm66,-57v-8,16,12,20,32,19v25,-2,33,-9,34,-33v-21,5,-58,-3,-66,14","k":{"\u00b1":-2,"t":3,"s":-2,"f":-2,"Y":25,"W":18,"V":18,"T":29,"\u00dd":25}},"\u00e0":{"d":"106,-176r-76,-49r57,-13r60,55xm117,-173v84,-6,55,100,60,173v-15,-1,-36,5,-37,-10v-38,25,-121,18,-121,-41v0,-54,61,-56,113,-60v4,-24,-15,-24,-37,-21r-65,8r-2,-37v25,-6,60,-10,89,-12xm66,-57v-8,16,12,20,32,19v25,-2,33,-9,34,-33v-21,5,-58,-3,-66,14","k":{"\u00b1":-2,"t":3,"s":-2,"f":-2,"Y":25,"W":18,"V":18,"T":29,"\u00dd":25}},"\u00e2":{"d":"138,-176r-35,-22r-35,22r-41,-7r76,-70r76,70xm117,-173v84,-6,55,100,60,173v-15,-1,-36,5,-37,-10v-38,25,-121,18,-121,-41v0,-54,61,-56,113,-60v4,-24,-15,-24,-37,-21r-65,8r-2,-37v25,-6,60,-10,89,-12xm66,-57v-8,16,12,20,32,19v25,-2,33,-9,34,-33v-21,5,-58,-3,-66,14","k":{"\u00b1":-2,"t":3,"s":-2,"f":-2,"Y":25,"W":18,"V":18,"T":29,"\u00dd":25}},"\u00e4":{"d":"134,-231v14,0,26,12,26,25v0,14,-11,26,-25,26v-14,0,-26,-12,-26,-26v0,-14,11,-25,25,-25xm60,-231v14,0,26,11,26,25v0,14,-12,26,-25,26v-13,0,-26,-13,-26,-26v0,-13,11,-25,25,-25xm117,-173v84,-6,55,100,60,173v-15,-1,-36,5,-37,-10v-38,25,-121,18,-121,-41v0,-54,61,-56,113,-60v4,-24,-15,-24,-37,-21r-65,8r-2,-37v25,-6,60,-10,89,-12xm66,-57v-8,16,12,20,32,19v25,-2,33,-9,34,-33v-21,5,-58,-3,-66,14","k":{"\u00b1":-2,"t":3,"s":-2,"f":-2,"Y":25,"W":18,"V":18,"T":29,"\u00dd":25}},"\u00e3":{"d":"179,-225v-16,20,-28,47,-61,49v-19,1,-24,-11,-36,-17v-11,1,-18,12,-24,18r-38,-7v12,-27,56,-71,88,-34v15,10,25,-6,32,-16xm117,-173v84,-6,55,100,60,173v-15,-1,-36,5,-37,-10v-38,25,-121,18,-121,-41v0,-54,61,-56,113,-60v4,-24,-15,-24,-37,-21r-65,8r-2,-37v25,-6,60,-10,89,-12xm66,-57v-8,16,12,20,32,19v25,-2,33,-9,34,-33v-21,5,-58,-3,-66,14","k":{"\u00b1":-2,"t":3,"s":-2,"f":-2,"Y":25,"W":18,"V":18,"T":29,"\u00dd":25}},"\u00e5":{"d":"100,-266v27,0,44,16,44,43v0,27,-16,45,-43,45v-27,0,-44,-17,-44,-45v0,-27,16,-43,43,-43xm101,-213v4,0,9,-4,8,-9v1,-5,-3,-10,-9,-9v-6,-1,-9,5,-9,9v0,5,5,9,10,9xm117,-173v84,-6,55,100,60,173v-15,-1,-36,5,-37,-10v-38,25,-121,18,-121,-41v0,-54,61,-56,113,-60v4,-24,-15,-24,-37,-21r-65,8r-2,-37v25,-6,60,-10,89,-12xm66,-57v-8,16,12,20,32,19v25,-2,33,-9,34,-33v-21,5,-58,-3,-66,14","k":{"\u00b1":-2,"t":3,"s":-2,"f":-2,"Y":25,"W":18,"V":18,"T":29,"\u00dd":25}},"\u00e7":{"d":"22,-62v0,-60,-3,-111,60,-111v47,0,84,-2,95,37r-39,14v-4,-17,-29,-8,-47,-10v-39,-5,-23,47,-23,81v0,17,20,13,36,12v23,0,45,-5,66,-7r2,37r-41,7v-7,27,-24,46,-59,45v-20,0,-32,-7,-55,-6r0,-38v20,-1,41,15,55,4v-35,-4,-50,-26,-50,-65","w":182,"k":{"\u00f8":2,"\u00e6":6,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":6,"\u00e3":6,"\u00e4":6,"\u00e2":6,"\u00e0":6,"\u00e1":6,"y":2,"s":2,"o":2,"k":5,"h":2,"e":2,"c":2,"a":6,"Y":18,"W":18,"V":18,"T":18,"-":6,"\u00dd":18}},"\u00e9":{"d":"90,-176r-42,-7r61,-55r57,13xm180,-119v1,56,-59,57,-112,58v-3,45,70,14,102,15r2,37r-89,12v-62,3,-61,-51,-61,-112v0,-58,38,-67,98,-64v37,2,60,17,60,54xm135,-119v-9,-23,-83,-24,-67,19v21,-4,46,-3,64,-10v3,-3,2,-5,3,-9","w":189,"k":{"\u00f8":2,"\u00e6":5,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00f1":5,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"s":2,"o":2,"n":5,"m":4,"h":2,"e":2,"c":2,"a":5,"Y":18,"W":22,"V":22,"T":18,"\u00dd":18}},"\u00e8":{"d":"106,-176r-76,-49r57,-13r60,55xm180,-119v2,56,-61,57,-113,58v0,45,71,14,103,15r2,37v-28,4,-60,11,-90,12v-62,3,-60,-51,-60,-112v0,-58,38,-67,98,-64v37,2,60,17,60,54xm111,-132v-27,0,-50,-4,-44,32v22,-8,70,6,67,-25v-3,-7,-11,-7,-23,-7","w":189,"k":{"\u00f8":2,"\u00e6":5,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00f1":5,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"s":2,"o":2,"n":5,"m":4,"h":2,"e":2,"c":2,"a":5,"Y":18,"W":22,"V":22,"T":18,"\u00dd":18}},"\u00ea":{"d":"138,-176r-35,-22r-35,22r-41,-7r76,-70r76,70xm180,-119v2,56,-61,57,-113,58v0,45,71,14,103,15r2,37v-28,4,-60,11,-90,12v-62,3,-60,-51,-60,-112v0,-58,38,-67,98,-64v37,2,60,17,60,54xm111,-132v-27,0,-50,-4,-44,32v22,-8,70,6,67,-25v-3,-7,-11,-7,-23,-7","w":189,"k":{"\u00f8":2,"\u00e6":5,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00f1":5,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"s":2,"o":2,"n":5,"m":4,"h":2,"e":2,"c":2,"a":5,"Y":18,"W":22,"V":22,"T":18,"\u00dd":18}},"\u00eb":{"d":"134,-231v14,0,26,12,26,25v0,14,-11,26,-25,26v-14,0,-26,-12,-26,-26v0,-14,11,-25,25,-25xm60,-231v14,0,26,11,26,25v0,14,-12,26,-25,26v-13,0,-26,-13,-26,-26v0,-13,11,-25,25,-25xm180,-119v2,56,-61,57,-113,58v0,45,71,14,103,15r2,37v-28,4,-60,11,-90,12v-62,3,-60,-51,-60,-112v0,-58,38,-67,98,-64v37,2,60,17,60,54xm111,-132v-27,-1,-50,-4,-44,32v22,-8,70,5,67,-24v-1,-8,-12,-8,-23,-8","w":189,"k":{"\u00f8":2,"\u00e6":5,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00f1":5,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"s":2,"o":2,"n":5,"m":4,"h":2,"e":2,"c":2,"a":5,"Y":18,"W":22,"V":22,"T":18,"\u00dd":18}},"\u00ed":{"d":"47,-176r-41,-7r60,-55r57,13xm28,0r0,-171r46,0r0,171r-46,0","w":85,"k":{"\u00e6":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"a":2,"Y":7,"\u00dd":7}},"\u00ec":{"d":"53,-176r-76,-49r57,-13r60,55xm28,0r0,-171r46,0r0,171r-46,0","w":85,"k":{"\u00e6":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"a":2,"Y":7,"\u00dd":7}},"\u00ee":{"d":"85,-176r-35,-22r-35,22r-41,-7r76,-70r76,70xm28,0r0,-171r46,0r0,171r-46,0","w":85,"k":{"\u00e6":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"a":2,"Y":7,"\u00dd":7}},"\u00ef":{"d":"87,-231v14,0,26,12,26,25v1,14,-12,26,-25,26v-14,0,-26,-12,-26,-26v0,-14,11,-25,25,-25xm14,-231v14,0,26,12,26,25v1,14,-12,26,-26,26v-13,0,-26,-13,-26,-26v0,-13,12,-25,26,-25xm28,0r0,-171r46,0r0,171r-46,0","w":85,"k":{"\u00e6":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"a":2,"Y":7,"\u00dd":7}},"\u00f1":{"d":"179,-225v-16,20,-28,47,-61,49v-19,1,-24,-11,-36,-17v-11,1,-18,12,-24,18r-38,-7v13,-27,57,-71,88,-34v15,10,25,-6,32,-16xm69,-164v56,-18,118,-14,118,55r0,109r-46,0r0,-120v-4,-24,-48,-9,-67,-7r0,127r-46,0r0,-171v15,1,37,-5,41,7","w":199,"k":{"t":3,"Y":11,"W":11,"V":11,"T":11,"\u00dd":11}},"\u00f3":{"d":"90,-176r-42,-7r61,-55r57,13xm180,-109v0,60,3,112,-60,112v-60,0,-98,-7,-98,-65v0,-60,-3,-111,60,-111v59,0,98,4,98,64xm91,-38v23,-2,49,6,44,-25v-5,-28,14,-73,-24,-69v-23,3,-48,-5,-44,25v5,27,-13,73,24,69","w":192,"k":{"\u00f8":2,"\u00e6":4,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"s":2,"o":2,"h":2,"e":2,"c":2,"b":4,"a":4,"Y":18,"W":18,"V":18,"T":23,"F":11,"\u00dd":18}},"\u00f2":{"d":"106,-176r-76,-49r57,-13r60,55xm180,-109v0,60,3,112,-60,112v-60,0,-98,-7,-98,-65v0,-60,-3,-111,60,-111v59,0,98,4,98,64xm91,-38v23,-2,49,6,44,-25v-5,-28,14,-73,-24,-69v-23,3,-48,-5,-44,25v5,27,-13,73,24,69","w":192,"k":{"\u00f8":2,"\u00e6":4,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"s":2,"o":2,"h":2,"e":2,"c":2,"b":4,"a":4,"Y":18,"W":18,"V":18,"T":23,"F":11,"\u00dd":18}},"\u00f4":{"d":"138,-176r-35,-22r-35,22r-41,-7r76,-70r76,70xm180,-109v0,60,3,112,-60,112v-60,0,-98,-7,-98,-65v0,-60,-3,-111,60,-111v59,0,98,4,98,64xm91,-38v23,-2,49,6,44,-25v-5,-28,14,-73,-24,-69v-23,3,-48,-5,-44,25v5,27,-13,73,24,69","w":192,"k":{"\u00f8":2,"\u00e6":4,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"s":2,"o":2,"h":2,"e":2,"c":2,"b":4,"a":4,"Y":18,"W":18,"V":18,"T":23,"F":11,"\u00dd":18}},"\u00f6":{"d":"134,-231v14,0,26,12,26,25v0,14,-11,26,-25,26v-14,0,-26,-12,-26,-26v0,-14,11,-25,25,-25xm60,-231v14,0,26,11,26,25v0,14,-12,26,-25,26v-13,0,-26,-13,-26,-26v0,-13,11,-25,25,-25xm180,-109v0,60,3,112,-60,112v-60,0,-98,-7,-98,-65v0,-60,-3,-111,60,-111v59,0,98,4,98,64xm91,-38v23,-2,49,6,44,-25v-5,-28,14,-73,-24,-69v-23,3,-48,-5,-44,25v5,27,-13,73,24,69","w":192,"k":{"\u00f8":2,"\u00e6":4,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"s":2,"o":2,"h":2,"e":2,"c":2,"b":4,"a":4,"Y":18,"W":18,"V":18,"T":23,"F":11,"\u00dd":18}},"\u00f5":{"d":"179,-225v-16,20,-28,47,-61,49v-19,1,-24,-11,-36,-17v-11,1,-18,12,-24,18r-38,-7v13,-27,56,-72,88,-34v15,10,25,-6,32,-16xm180,-109v0,60,3,112,-60,112v-60,0,-98,-7,-98,-65v0,-60,-3,-111,60,-111v59,0,98,4,98,64xm91,-38v23,-2,49,6,44,-25v-5,-28,14,-73,-24,-69v-23,3,-48,-5,-44,25v5,27,-13,73,24,69","w":192,"k":{"\u00f8":2,"\u00e6":4,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"s":2,"o":2,"h":2,"e":2,"c":2,"b":4,"a":4,"Y":18,"W":18,"V":18,"T":23,"F":11,"\u00dd":18}},"\u00fa":{"d":"100,-176r-41,-7r60,-55r57,13xm70,-64v-7,40,46,22,68,20r0,-127r45,0r0,171v-15,-1,-37,5,-41,-7v-52,16,-118,15,-118,-55r0,-109r46,0r0,107","w":198,"k":{"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"v":13,"a":5,"Y":18,"\u00dd":18}},"\u00f9":{"d":"106,-176r-76,-49r57,-13r60,55xm70,-64v-7,40,46,22,68,20r0,-127r45,0r0,171v-15,-1,-37,5,-41,-7v-52,16,-118,15,-118,-55r0,-109r46,0r0,107","w":198,"k":{"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"v":13,"a":5,"Y":18,"\u00dd":18}},"\u00fb":{"d":"138,-176r-35,-22r-35,22r-41,-7r76,-70r76,70xm70,-64v-7,40,46,22,68,20r0,-127r45,0r0,171v-15,-1,-37,5,-41,-7v-52,16,-118,15,-118,-55r0,-109r46,0r0,107","w":198,"k":{"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"v":13,"a":5,"Y":18,"\u00dd":18}},"\u00fc":{"d":"140,-231v14,0,26,12,26,25v1,14,-12,26,-25,26v-14,0,-26,-12,-26,-26v0,-14,11,-25,25,-25xm67,-231v14,0,26,12,26,25v1,14,-12,26,-26,26v-13,0,-26,-13,-26,-26v0,-13,12,-25,26,-25xm70,-64v-7,40,46,22,68,20r0,-127r45,0r0,171v-15,-1,-37,5,-41,-7v-52,16,-118,15,-118,-55r0,-109r46,0r0,107","w":198,"k":{"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"v":13,"a":5,"Y":18,"\u00dd":18}},"\u00b0":{"d":"59,-237v25,0,44,16,44,43v0,27,-15,45,-43,45v-27,0,-45,-18,-45,-44v0,-26,18,-44,44,-44xm60,-184v4,1,9,-4,8,-9v1,-5,-4,-9,-9,-9v-4,0,-9,4,-8,9v-1,6,3,10,9,9","w":104},"\u00a2":{"d":"22,-62v-1,-59,-4,-116,59,-111r0,-33r46,0r0,33v28,2,41,13,50,37r-39,14v-2,-6,-5,-9,-11,-10r0,91r43,-5r2,37v-15,3,-30,6,-45,8r0,33r-46,0r0,-29v-43,0,-59,-22,-59,-65xm81,-132v-26,4,-11,59,-12,87v1,3,5,5,12,6r0,-93","w":182},"\u00a3":{"d":"83,-167r0,28r47,0r0,38r-46,0r8,60r79,0r0,41r-168,0r0,-41r47,0r-11,-60r-36,0r0,-38r34,0v-3,-55,6,-91,61,-91v23,0,40,2,63,7r-2,37v-36,-1,-78,-18,-76,19","w":162},"\u00a7":{"d":"159,-26v10,10,17,23,17,44v0,74,-87,85,-149,60r-5,-41v32,16,122,24,103,-28v-36,-29,-107,-26,-107,-93v0,-21,9,-32,16,-42v-10,-12,-17,-24,-17,-45v-1,-74,100,-71,151,-46r-9,34v-28,-7,-88,-23,-95,12v17,50,111,25,111,102v0,21,-7,33,-16,43xm126,-46v18,-38,-50,-72,-60,-38v3,26,38,27,60,38","w":183},"\u00b6":{"d":"63,-92v-32,-8,-41,-34,-41,-77v0,-62,59,-75,111,-55v5,-12,27,-6,42,-7r0,258r-47,0r0,-122r-19,4r0,118r-46,0r0,-119","w":192},"\u00df":{"d":"129,-136v-25,47,79,13,79,81v0,70,-80,63,-130,47r0,-37v25,5,44,9,70,7v15,2,25,-21,8,-25v-36,-10,-78,-14,-78,-60v0,-46,37,-52,65,-66v-3,-15,-27,-10,-45,-11v-19,-2,-24,6,-24,23r0,204r-45,0r0,-144r-26,0r0,-40r26,0v-3,-52,8,-84,60,-84v61,0,119,17,93,73v-9,19,-34,22,-53,32","w":216},"\u00ae":{"d":"125,-238v73,0,122,48,122,122v0,74,-48,122,-122,122v-74,0,-122,-49,-122,-122v0,-73,49,-122,122,-122xm106,-119v16,-1,37,9,34,-10v-2,-13,7,-31,-11,-28v-8,-1,-16,3,-23,3r0,35xm189,-54v49,-49,15,-156,-64,-150v-52,4,-86,36,-88,88v-3,73,84,112,142,70r-22,0r-32,-42r-20,-3r0,45r-30,0r0,-139v48,3,100,-19,100,57v0,16,-5,29,-16,35","w":243},"\u00a9":{"d":"125,-238v73,0,122,48,122,122v0,74,-48,122,-122,122v-74,0,-122,-49,-122,-122v0,-73,49,-122,122,-122xm125,-28v53,0,88,-35,88,-88v0,-52,-35,-88,-88,-88v-52,0,-88,36,-88,88v0,53,35,88,88,88xm74,-85v0,-56,-12,-112,62,-101v21,3,30,9,38,26r-29,11v-2,-10,-14,-6,-25,-7v-9,0,-10,0,-11,7r0,64v0,25,35,3,60,7r2,28v-40,1,-97,22,-97,-35","w":243},"\u00b4":{"d":"89,-176r-41,-7r60,-55r57,13"},"\u00a8":{"d":"134,-231v14,0,26,12,26,25v0,14,-11,26,-25,26v-14,0,-26,-12,-26,-26v0,-14,11,-25,25,-25xm60,-231v14,0,26,11,26,25v0,14,-12,26,-25,26v-13,0,-26,-13,-26,-26v0,-13,11,-25,25,-25"},"\u00c6":{"d":"138,0r0,-66r-52,0r-35,66r-52,0r126,-231r159,0r0,40r-96,0r0,47r82,0r0,41r-82,0r0,62r96,0r0,41r-146,0xm138,-162r-29,55r29,0r0,-55","w":295,"k":{"V":8}},"\u00d8":{"d":"202,-169v0,73,22,174,-61,169r-52,0r-8,20r-47,0r12,-30v-36,-25,-17,-103,-22,-159v-4,-64,48,-69,112,-65r9,-22r46,0r-12,31v18,11,23,28,23,56xm120,-193v-23,1,-45,-7,-45,25r0,88xm105,-41v25,-1,47,6,47,-25r0,-92","w":217,"k":{"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c0":13,"\u00c5":13,"\u00c4":13,"Z":13,"Y":14,"X":12,"W":9,"V":2,"T":13,"J":7,"A":13,".":19,"\u00dd":14}},"\u00b1":{"d":"247,-197v-26,-1,-66,-15,-59,26r67,0r0,-66r45,0r0,237r-45,0r0,-133r-67,0r0,133r-45,0r0,-133r-60,0r0,133r-46,0r0,-133r-34,0r0,-38r34,0v-10,-65,48,-81,103,-63r-2,37v-24,-1,-63,-14,-55,26r60,0v-9,-66,50,-80,104,-63r0,37","w":324},"\u00a5":{"d":"163,-143r24,0r0,41r-52,0r0,14r52,0r0,41r-52,0r0,47r-50,0r0,-47r-48,0r0,-41r48,0r0,-14r-48,0r0,-41r24,0r-64,-88r54,0r59,83r63,-83r54,0","w":215},"\u00b5":{"d":"70,-64v-6,41,45,21,68,20r0,-127r45,0r0,171v-15,-1,-37,5,-41,-7v-22,5,-46,12,-73,8r0,67r-45,0r0,-239r46,0r0,107","w":198,"k":{"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"v":13,"a":5,"Y":18,"\u00dd":18}},"\u00aa":{"d":"27,-225v50,-9,116,-23,116,41r0,84v-12,-1,-29,4,-31,-7v-40,27,-118,-2,-84,-58v12,-19,48,-19,77,-22v-1,-28,-51,-5,-76,-6xm15,-63r0,-31r141,0r0,31r-141,0xm59,-144v-4,12,9,12,22,12v16,-1,24,-5,24,-22v-15,4,-35,2,-46,10","w":159},"\u00ba":{"d":"146,-183v0,46,1,85,-47,85v-47,0,-76,-6,-76,-50v0,-47,0,-85,48,-85v46,0,75,6,75,50xm15,-63r0,-31r141,0r0,31r-141,0xm61,-140v7,14,56,15,47,-9v-2,-27,11,-60,-31,-50v-27,-5,-12,33,-16,59","w":159},"\u00e6":{"d":"290,-119v0,56,-61,57,-113,58v-1,44,70,14,102,15r3,37v-45,3,-108,27,-137,-5v-34,29,-126,26,-126,-38v0,-55,61,-55,113,-59v3,-22,-15,-24,-37,-21r-65,8r-2,-37v36,-6,93,-21,126,-4v44,-15,136,-20,136,46xm221,-132v-27,0,-50,-4,-44,32v22,-8,70,6,67,-25v-3,-7,-11,-7,-23,-7xm64,-51v10,26,78,16,68,-20v-24,6,-63,-5,-68,20","w":305,"k":{"\u00f8":2,"\u00e6":5,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00f1":5,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"s":2,"o":2,"n":5,"m":4,"h":2,"e":2,"c":2,"a":5,"Y":18,"W":22,"V":22,"T":18,"\u00dd":18}},"\u00f8":{"d":"180,-109v2,60,3,116,-60,112r-36,0r-10,23r-46,0r14,-34v-26,-16,-19,-61,-20,-101v-2,-55,34,-69,93,-64r10,-23r46,0r-13,31v16,11,21,30,22,56xm102,-38v22,1,33,0,33,-25r0,-50xm97,-132v-40,-9,-29,34,-30,67","w":192,"k":{"\u00f8":2,"\u00e6":4,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"s":2,"o":2,"h":2,"e":2,"c":2,"b":4,"a":4,"Y":18,"W":18,"V":18,"T":23,"F":11,"\u00dd":18}},"\u00bf":{"d":"73,-120r0,-51r50,0r0,51r-50,0xm159,44v-11,37,-48,36,-95,36v-47,0,-60,-26,-60,-74v0,-53,34,-70,85,-62r-20,-48r51,0v12,30,36,48,31,95v-26,-2,-49,-6,-78,-8v-27,-2,-24,16,-24,39v0,28,35,16,61,17v4,-2,8,-5,10,-10","w":160},"\u00a1":{"d":"28,-121r0,-51r50,0r0,51r-50,0xm24,59r11,-164r35,0r11,164r-57,0","w":89},"\u00ac":{"d":"157,-71r0,-33r-142,0r0,-41r183,0r0,74r-41,0","w":203},"\u00ab":{"d":"135,-99r60,43r-16,35r-106,-78r106,-77r16,35xm60,-99r60,43r-16,35r-105,-78r105,-77r16,35"},"\u00bb":{"d":"93,-21r-16,-35r59,-43r-60,-42r17,-35r105,77xm18,-21r-16,-35r59,-43r-60,-42r17,-35r105,77"},"\u00a0":{"w":280},"\u00c0":{"d":"100,-235r-75,-48r56,-13r61,55xm171,0r-23,-66r-72,0r-23,66r-53,0r89,-231r46,0r89,231r-53,0xm111,-168r-21,61r43,0","w":208,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c8":8,"\u00cb":8,"\u00ca":8,"\u00ff":4,"\u00d5":7,"\u00b5":4,"\u00d8":7,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00d6":7,"\u00c9":8,"\u00c7":7,"y":4,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":18,"V":25,"T":22,"P":4,"O":7,"G":7,"E":8,"C":7,"?":10,"\/":-19,"\u00de":4,"\u00fd":4,"\u00dd":25}},"\u00c3":{"d":"108,-286v11,18,32,19,43,-5r38,7v-15,21,-28,47,-60,50v-26,-3,-41,-30,-61,0r-38,-7v17,-22,38,-61,78,-45xm171,0r-23,-66r-72,0r-23,66r-53,0r89,-231r46,0r89,231r-53,0xm111,-168r-21,61r43,0","w":208,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c8":8,"\u00cb":8,"\u00ca":8,"\u00ff":4,"\u00d5":7,"\u00b5":4,"\u00d8":7,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00d6":7,"\u00c9":8,"\u00c7":7,"y":4,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":18,"V":25,"T":22,"P":4,"O":7,"G":7,"E":8,"C":7,"?":10,"\/":-19,"\u00de":4,"\u00fd":4,"\u00dd":25}},"\u00d5":{"d":"93,-293v24,4,40,34,58,-1r38,7v-14,21,-28,46,-60,49v-27,-4,-42,-30,-61,1r-38,-7v17,-20,28,-48,63,-49xm202,-169v-5,73,22,169,-61,169v-64,0,-121,2,-117,-64v5,-73,-22,-170,61,-170v65,0,121,-1,117,65xm99,-41v25,-2,53,9,53,-25r-1,-114v-1,-20,-32,-11,-52,-13v-19,-2,-24,6,-24,25r0,115v2,11,10,12,24,12","w":217,"k":{"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c0":13,"\u00c5":13,"\u00c4":13,"Z":13,"Y":14,"X":12,"W":9,"V":2,"T":13,"J":7,"A":13,".":19,"\u00dd":14}},"\u00f7":{"d":"82,-165r0,-51r50,0r0,51r-50,0xm15,-103r0,-41r183,0r0,41r-183,0xm82,-33r0,-51r50,0r0,51r-50,0","w":204},"\u00ff":{"d":"140,-231v14,0,25,11,25,25v0,14,-12,26,-25,26v-13,0,-26,-13,-26,-26v0,-13,12,-25,26,-25xm66,-231v14,0,26,12,26,25v0,14,-11,26,-25,26v-14,0,-26,-12,-26,-26v0,-14,11,-25,25,-25xm70,-64v-6,38,39,22,68,20r0,-127r45,0r0,189v4,79,-103,51,-159,38r0,-37v30,4,58,9,90,13v26,3,25,-15,24,-38v-52,16,-113,11,-113,-56r0,-109r45,0r0,107","w":192,"k":{"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"v":13,"a":5,"Y":18,"\u00dd":18}},"\u00a4":{"d":"181,-9r-96,12v-46,0,-61,-26,-60,-72r-22,0r0,-41r22,0r0,-13r-22,0r0,-42r22,0v0,-44,15,-68,60,-68v30,0,69,6,96,13r-2,37r-80,-9v-20,-2,-26,7,-24,27r60,0r0,42r-60,0r0,13r60,0r0,41r-60,0v-10,54,67,23,104,23","w":187},"\u00b7":{"d":"28,-68r0,-51r50,0r0,51r-50,0","w":89},"\u00c2":{"d":"147,-235r-35,-22r-35,22r-41,-6r76,-70r76,70xm171,0r-23,-66r-72,0r-23,66r-53,0r89,-231r46,0r89,231r-53,0xm111,-168r-21,61r43,0","w":208,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c8":8,"\u00cb":8,"\u00ca":8,"\u00ff":4,"\u00d5":7,"\u00b5":4,"\u00d8":7,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00d6":7,"\u00c9":8,"\u00c7":7,"y":4,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":18,"V":25,"T":22,"P":4,"O":7,"G":7,"E":8,"C":7,"?":10,"\/":-19,"\u00de":4,"\u00fd":4,"\u00dd":25}},"\u00ca":{"d":"136,-235r-35,-22r-34,22r-42,-6r76,-70r76,70xm28,0r0,-231r146,0r0,40r-96,0r0,47r81,0r0,41r-81,0r0,62r96,0r0,41r-146,0","w":178,"k":{"V":8}},"\u00c1":{"d":"121,-235r-41,-6r60,-55r57,13xm171,0r-23,-66r-72,0r-23,66r-53,0r89,-231r46,0r89,231r-53,0xm111,-168r-21,61r43,0","w":208,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c8":8,"\u00cb":8,"\u00ca":8,"\u00ff":4,"\u00d5":7,"\u00b5":4,"\u00d8":7,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00d6":7,"\u00c9":8,"\u00c7":7,"y":4,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":18,"V":25,"T":22,"P":4,"O":7,"G":7,"E":8,"C":7,"?":10,"\/":-19,"\u00de":4,"\u00fd":4,"\u00dd":25}},"\u00cb":{"d":"136,-290v13,0,26,11,26,25v0,14,-11,27,-25,27v-13,0,-26,-13,-26,-26v0,-13,12,-26,25,-26xm63,-290v13,0,26,12,26,25v1,14,-11,27,-25,27v-14,0,-26,-12,-26,-26v0,-14,12,-26,25,-26xm28,0r0,-231r146,0r0,40r-96,0r0,47r81,0r0,41r-81,0r0,62r96,0r0,41r-146,0","w":178,"k":{"V":8}},"\u00c8":{"d":"95,-235r-76,-48r57,-13r60,55xm28,0r0,-231r146,0r0,40r-96,0r0,47r81,0r0,41r-81,0r0,62r96,0r0,41r-146,0","w":178,"k":{"V":8}},"\u00cd":{"d":"58,-235r-41,-6r60,-55r57,13xm28,0r0,-231r50,0r0,231r-50,0","w":89},"\u00ce":{"d":"86,-235r-35,-22r-34,22r-41,-6v21,-22,54,-49,75,-70r76,70xm28,0r0,-231r50,0r0,231r-50,0","w":89},"\u00cf":{"d":"89,-290v13,0,25,11,25,25v0,14,-11,27,-25,27v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26xm15,-290v13,0,26,12,26,25v1,14,-11,27,-25,27v-14,0,-26,-12,-26,-26v0,-14,12,-26,25,-26xm28,0r0,-231r50,0r0,231r-50,0","w":89},"\u00cc":{"d":"53,-235r-76,-48r57,-13r60,55xm28,0r0,-231r50,0r0,231r-50,0","w":89},"\u00d3":{"d":"116,-235r-41,-6r60,-55r57,13xm202,-169v-5,73,22,169,-61,169v-64,0,-121,2,-117,-64v5,-73,-22,-170,61,-170v65,0,121,-1,117,65xm99,-41v25,-2,53,9,53,-25r-1,-114v-1,-20,-32,-11,-52,-13v-19,-2,-24,6,-24,25r0,115v2,11,10,12,24,12","w":217,"k":{"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c0":13,"\u00c5":13,"\u00c4":13,"Z":13,"Y":14,"X":12,"W":9,"V":2,"T":13,"J":7,"A":13,".":19,"\u00dd":14}},"\u00d4":{"d":"147,-235r-35,-22r-35,22r-41,-6r76,-70r76,70xm202,-169v-5,73,22,169,-61,169v-64,0,-121,2,-117,-64v5,-73,-22,-170,61,-170v65,0,121,-1,117,65xm99,-41v25,-2,53,9,53,-25r-1,-114v-1,-20,-32,-11,-52,-13v-19,-2,-24,6,-24,25r0,115v2,11,10,12,24,12","w":217,"k":{"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c0":13,"\u00c5":13,"\u00c4":13,"Z":13,"Y":14,"X":12,"W":9,"V":2,"T":13,"J":7,"A":13,".":19,"\u00dd":14}},"\u00d2":{"d":"106,-235r-76,-48r57,-13r60,55xm202,-169v-5,73,22,169,-61,169v-64,0,-121,2,-117,-64v5,-73,-22,-170,61,-170v65,0,121,-1,117,65xm99,-41v25,-2,53,9,53,-25r-1,-114v-1,-20,-32,-11,-52,-13v-19,-2,-24,6,-24,25r0,115v2,11,10,12,24,12","w":217,"k":{"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c0":13,"\u00c5":13,"\u00c4":13,"Z":13,"Y":14,"X":12,"W":9,"V":2,"T":13,"J":7,"A":13,".":19,"\u00dd":14}},"\u00da":{"d":"116,-235r-41,-6r60,-55r57,13xm75,-63v-5,45,51,17,77,18r0,-186r50,0r0,231v-16,-2,-41,5,-46,-7r-71,10v-44,0,-60,-22,-61,-65r0,-169r51,0r0,168","w":219},"\u00db":{"d":"147,-235r-35,-22r-35,22r-41,-6r76,-70r76,70xm75,-63v-5,45,51,17,77,18r0,-186r50,0r0,231v-16,-2,-41,5,-46,-7r-71,10v-44,0,-60,-22,-61,-65r0,-169r51,0r0,168","w":219},"\u00d9":{"d":"106,-235r-76,-48r57,-13r60,55xm75,-63v-5,45,51,17,77,18r0,-186r50,0r0,231v-16,-2,-41,5,-46,-7r-71,10v-44,0,-60,-22,-61,-65r0,-169r51,0r0,168","w":219},"\u00af":{"d":"15,-213r0,-42r141,0r0,42r-141,0","w":159},"\u00b8":{"d":"55,62r-30,-10r10,-25r-7,0r0,-41r50,0r0,36","w":89},"\u00d0":{"d":"209,-170v-7,72,23,170,-59,170r-122,0r0,-133r-25,0r0,-38r25,0r0,-61v17,1,41,-5,46,8v54,-12,143,-24,135,54xm159,-65r0,-116v-8,-25,-56,-6,-81,-6r0,16r49,0r0,38r-49,0r0,92v32,-5,81,16,81,-24","w":225,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c5":7,"\u00c4":7,"Z":7,"Y":11,"X":7,"W":7,"V":7,"T":9,"A":7,".":17,"\u00dd":11}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * \251 Copyright 2003, SUDTIPOS. Dise\226ada por  Alejandro Paul. Todos los
 * derechos reservados. Buenos Aires, Argentina.
 * 
 * Manufacturer:
 * SUDTIPOS. Dise\ ada por Alejandro Paul. Todos los derechos reservados. Buenos
 * Aires, Argentina
 */
Cufon.registerFont({"w":183,"face":{"font-family":"Downtempo italic","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 3 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-52 -315.075 348 90.0987","underline-thickness":"7.2","underline-position":"-40.68","slope":"-11","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":86},"\u00dd":{"d":"118,-235r-39,-7r66,-54r52,14xm119,-75r-14,75r-49,0r14,-75r-53,-156r49,0r38,106r76,-106r52,0","w":207,"k":{"\u00d0":5,"\u00d9":27,"\u00db":27,"\u00da":27,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c8":5,"\u00cb":5,"\u00c1":30,"\u00ca":5,"\u00c2":30,"\u00ff":25,"\u00d5":14,"\u00c3":30,"\u00c0":30,"\u00f8":29,"\u00e6":25,"\u00b5":25,"\u00a5":2,"\u00b1":22,"\u00d8":14,"\u00c6":30,"\u00a2":29,"\u00fc":25,"\u00fb":25,"\u00f9":25,"\u00fa":25,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00f1":29,"\u00ef":11,"\u00ee":11,"\u00ec":11,"\u00ed":11,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":25,"\u00e3":25,"\u00e4":25,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00dc":27,"\u00d6":14,"\u00d1":7,"\u00c9":5,"\u00c7":4,"\u00c5":30,"\u00c4":30,"z":22,"y":25,"x":22,"w":20,"v":22,"u":25,"t":18,"s":28,"r":19,"q":28,"p":29,"o":29,"n":29,"m":29,"k":7,"j":18,"i":11,"h":7,"g":31,"f":22,"e":29,"d":22,"c":29,"b":14,"a":25,"Y":2,"X":4,"S":6,"Q":8,"O":14,"N":7,"J":11,"G":10,"E":5,"D":5,"C":4,"A":30,".":38,",":37,"\u00f0":22,"\u00fe":29,"\u00fd":25,"\u00dd":2}},"\u00fd":{"d":"111,-176r-39,-7r66,-54r52,13xm80,-38v18,-2,30,-15,48,-16r21,-117r44,0r-35,190v-8,74,-101,53,-158,37r6,-36v33,2,74,21,103,9v8,-11,8,-30,12,-45v-17,3,-33,18,-52,18v-89,0,-30,-115,-27,-173r43,0r-22,123v0,9,5,11,17,10","w":187,"k":{".":29,",":13}},"\u00de":{"d":"94,-188v41,-17,112,-22,106,39v-6,59,-16,118,-81,116v-20,0,-33,-12,-51,-15r-9,48r-47,0r42,-230r48,0xm75,-84v25,5,67,26,69,-16v0,-19,16,-46,4,-59v-21,-6,-40,8,-61,9","w":194,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00f8":9,"\u00e6":11,"\u00b5":4,"\u00a5":6,"\u00c6":20,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c5":20,"\u00c4":20,"u":4,"o":9,"e":7,"a":11,"Y":6,"X":6,"A":20,".":29,"\u00dd":6}},"\u00fe":{"d":"187,-130v-5,68,-22,158,-103,126v-7,-4,-15,-8,-24,-10r-17,91r-43,0r57,-308r43,0r-13,71v35,-15,104,-25,100,30xm67,-50v21,6,59,27,65,-6r11,-65v-6,-27,-43,-1,-63,-2","w":182},"\u00f0":{"d":"165,-237v3,8,7,13,12,21r27,0r11,38r-30,0v-1,61,-18,106,-26,161v-54,10,-160,50,-142,-41v10,-53,9,-117,76,-115v18,0,35,6,50,9r0,-14r-30,0r-10,-38r29,0r-12,-21r45,0xm58,-51v5,32,43,0,64,-1r14,-75v-12,1,-27,-6,-39,-6v-42,0,-29,56,-39,82","w":190},"\u00bd":{"d":"179,-125v8,-34,100,-49,100,0v0,45,-42,60,-63,90r52,0r-6,35r-104,0r5,-30r79,-87v-6,-8,-31,-1,-34,5xm92,0r-46,0r159,-253r46,0xm86,-81r-36,0r19,-102v-10,11,-25,-7,-38,-10r52,-43r31,0","w":298},"\u00bc":{"d":"246,-65r11,0r-6,35r-12,0r-5,30r-37,0r6,-30r-60,0r6,-29r71,-96r42,0xm92,0r-46,0r159,-253r46,0xm86,-81r-36,0r19,-102v-10,11,-25,-7,-38,-10r52,-43r31,0xm194,-65r15,0r5,-26","w":280},"\u00b9":{"d":"80,-81r-36,0r19,-102v-10,11,-26,-7,-39,-10r53,-43r31,0","w":97},"\u00be":{"d":"255,-65r12,0r-7,35r-11,0r-6,30r-36,0r5,-30r-59,0r5,-29r71,-96r43,0xm102,0r-46,0r158,-253r46,0xm99,-236v42,0,40,49,23,71v11,59,-28,105,-88,76v-5,-1,-11,-1,-18,-1r8,-33v31,0,67,23,63,-24v-12,-5,-32,-1,-47,-2r6,-35v19,-3,55,10,50,-17v-14,1,-30,-4,-33,8r-30,-13v12,-26,30,-30,66,-30xm204,-65r15,0r5,-26","w":294},"\u00b3":{"d":"99,-236v42,0,40,49,23,71v11,59,-28,105,-88,76v-5,-1,-11,-1,-18,-1r8,-33v31,0,67,23,63,-24v-12,-5,-32,-1,-47,-2r6,-35v19,-3,55,10,50,-17v-14,1,-30,-4,-33,8r-30,-13v12,-26,30,-30,66,-30","w":119},"\u00b2":{"d":"28,-207v10,-42,120,-42,98,15v-13,33,-41,50,-61,76r52,0r-6,35r-104,0r6,-30r78,-87v-6,-8,-30,-2,-34,5","w":124},"\u00a6":{"d":"78,-135r-44,0r27,-144r43,0xm45,43r-44,0r31,-164r43,0","w":81},"\u00d7":{"d":"108,-123r38,50r-32,28r-38,-50r-57,50r-22,-30r57,-50r-39,-50r32,-27r38,50r57,-50r23,29","w":142},"!":{"d":"63,-67r-33,0r19,-164r55,0xm58,0r-48,0r9,-50r48,0","w":86},"\"":{"d":"118,-138r-44,0r19,-99r44,0xm67,-138r-45,0r19,-99r44,0","w":140},"#":{"d":"163,-171r27,0r-7,41r-35,0r-5,14r37,0r-8,40r-44,0r-28,76r-44,0r28,-76r-17,0r-28,76r-44,0r28,-76r-24,0r7,-40r32,0r5,-14r-34,0r8,-41r41,0r30,-82r44,0r-30,82r17,0r31,-82r44,0xm87,-130r-5,14r17,0r5,-14r-17,0","w":187},"$":{"d":"29,-157v0,-42,28,-71,68,-74r6,-32r38,0r-5,32v17,2,32,10,46,15r-14,33r-40,-9r-10,57v43,8,59,71,26,106v-13,13,-30,26,-51,30r-6,31r-38,0r5,-30v-17,-4,-22,-18,-45,-16r4,-39v23,1,32,8,49,14r11,-62v-23,-11,-44,-25,-44,-56xm89,-187v-15,9,-19,25,-7,36xm101,-45v10,-9,24,-29,8,-41","w":170},"%":{"d":"171,-45v16,-49,0,-118,81,-108v60,8,13,86,13,128v-12,40,-114,39,-94,-20xm98,0r-46,0r159,-253r45,0xm106,-95v-25,21,-106,22,-86,-33v17,-48,-2,-118,80,-109v57,6,20,74,18,111v-1,13,-6,23,-12,31xm205,-38v4,11,35,6,30,-8r12,-70v-3,-9,-35,-6,-30,9xm54,-121v7,9,33,5,30,-9r12,-69v0,-8,-14,-2,-23,-4v-6,1,-5,7,-7,12v-4,24,-10,45,-12,70","w":280},"&":{"d":"171,-49r57,-9r6,32v-12,3,-27,6,-45,9r9,18r-46,0r-6,-10v-53,7,-145,36,-132,-48v7,-42,20,-77,59,-85v-36,-48,6,-100,76,-91v29,4,44,9,49,36r-39,15v-1,-16,-19,-10,-34,-11v-20,-3,-29,9,-20,25xm56,-46v8,20,48,2,72,3r-35,-63v-29,1,-34,33,-37,60","w":225},"'":{"d":"61,-138r-44,0r18,-99r45,0","w":63},"(":{"d":"152,-290v-58,53,-89,140,-93,242v-2,43,8,79,27,104r-39,0v-68,-101,-14,-284,62,-346r43,0","w":100},")":{"d":"66,-290v66,104,14,284,-62,346r-43,0v58,-53,89,-140,93,-242v2,-43,-9,-79,-27,-104r39,0","w":100},"*":{"d":"104,-164r25,19r-22,33r-27,-35r-40,35r-12,-33r32,-20r-35,-13r19,-31r29,18r2,-34r38,0r-11,32r34,-17r8,33","w":160},"+":{"d":"184,-104r-67,0r-13,71r-39,0r13,-71r-67,0r7,-40r67,0r13,-71r40,0r-13,71r67,0","w":200},",":{"d":"74,-5r-30,50r-27,-10r15,-35r-6,0r9,-50r47,0","w":86,"k":{"T":29}},"-":{"d":"144,-77r-133,0r7,-41r133,0","w":155,"k":{"V":12,"T":23,"7":23,"3":12}},".":{"d":"69,0r-47,0r9,-50r47,0","w":86,"k":{"7":21,"\/":-27}},"\/":{"d":"21,0r-45,0r158,-253r46,0","w":147,"k":{"\u00ff":8,"\u00f8":15,"\u00e6":19,"\u00b5":13,"\u00a2":13,"\u00fc":13,"\u00fb":13,"\u00f9":13,"\u00fa":13,"\u00f5":13,"\u00f6":13,"\u00f4":13,"\u00f2":13,"\u00f3":13,"\u00f1":13,"\u00eb":17,"\u00ea":17,"\u00e8":17,"\u00e9":17,"\u00e7":13,"\u00e5":19,"\u00e3":19,"\u00e4":19,"\u00e2":19,"\u00e0":19,"\u00e1":19,"z":19,"y":8,"x":15,"u":13,"t":8,"s":15,"r":6,"q":15,"p":12,"o":15,"n":13,"m":13,"g":13,"e":17,"d":13,"c":13,"a":19,"W":-17,"V":-19,"T":-23,"7":10,"5":12,"4":29,"3":10,"0":17,"\u00f0":13,"\u00fe":12,"\u00fd":8}},"0":{"d":"118,-1v-45,8,-125,15,-111,-43v16,-64,7,-154,58,-183v37,-7,121,-15,112,36r-22,131v-5,28,-15,49,-37,59xm51,-58v-10,26,24,22,46,20v11,-4,13,-13,15,-26r21,-117v-7,-17,-70,-14,-62,17","w":177},"1":{"d":"82,0r-43,0r32,-174r-23,18r-38,-16r75,-59r40,0","w":115,"k":{"\/":-17}},"2":{"d":"26,-196v17,-52,172,-52,140,26v-23,56,-73,86,-109,130r94,0r-7,40r-153,0r7,-36r103,-109v14,-16,23,-22,26,-39v-10,-12,-57,-10,-66,4","w":176,"k":{"\u00ba":7,"\u00aa":7}},"3":{"d":"74,-231v45,-2,86,0,84,45v-1,27,-8,46,-20,61v6,4,4,24,3,36v0,66,-43,110,-110,83v-13,-5,-26,-9,-45,-8r9,-37v25,0,48,12,70,14v35,3,28,-33,35,-59v-1,-8,-4,-12,-15,-11r-62,0r7,-40v39,-2,90,14,86,-34v0,-14,-23,-9,-39,-9v-17,0,-22,-1,-28,10r-35,-15v13,-24,27,-35,60,-36","w":167,"k":{".":10}},"4":{"d":"135,-88r19,0r-7,40r-19,0r-9,48r-43,0r8,-48r-96,0r7,-40r110,-143r57,0xm46,-88r46,0r15,-82","w":171,"k":{"\/":-17}},"5":{"d":"60,-147v36,-7,102,-20,96,33v-7,58,-15,129,-93,116r-68,-11r9,-36r71,8v40,2,30,-48,37,-75v-18,-6,-47,3,-65,5r-34,-10r22,-114r138,0r-7,38r-97,0","w":173},"6":{"d":"92,3v-42,0,-93,-2,-81,-48v20,-82,-2,-200,126,-186v30,3,44,10,49,37r-39,14v-3,-18,-65,-17,-69,7r-6,34v35,-8,104,-20,96,31v-7,47,-10,111,-76,111xm64,-101v-3,20,-9,38,-10,60v21,7,57,8,62,-18r9,-43v-10,-13,-43,2,-61,1","w":189,"k":{"7":10}},"7":{"d":"41,1r-46,0r105,-191r-83,0r8,-41r145,0","w":139,"k":{".":12}},"8":{"d":"99,-231v45,0,84,-2,84,44v0,33,-8,57,-22,73v15,53,-9,117,-67,117v-45,0,-84,0,-84,-45v0,-30,7,-58,22,-74v-13,-56,8,-115,67,-115xm72,-153v-8,25,23,17,47,18v17,-4,19,-25,21,-46v1,-15,-23,-7,-38,-9v-26,-3,-28,16,-30,37xm55,-64v-13,31,24,32,50,25v16,-4,15,-26,17,-45v1,-15,-22,-8,-37,-10v-23,-3,-28,12,-30,30","w":194},"9":{"d":"21,-102v6,-59,9,-129,78,-129v39,0,89,-3,82,36r-26,144v-7,73,-99,54,-154,37r6,-36v32,3,69,18,99,9v7,-5,7,-21,10,-31v-38,5,-100,17,-95,-30xm64,-116v2,20,40,3,59,5v3,-26,14,-55,11,-79r-32,0v-41,-3,-28,52,-38,74","w":191,"k":{"\u00ba":4,"\u00aa":4}},":":{"d":"80,-117r-48,0r10,-50r47,0xm58,0r-47,0r9,-50r48,0","w":86,"k":{"7":12}},";":{"d":"84,-117r-48,0r10,-50r47,0xm63,-5r-30,50r-27,-10r16,-35r-7,0r9,-50r48,0","w":86},"<":{"d":"130,-156r-78,44r62,45r-9,48r-105,-79r6,-30r133,-77","w":127},"=":{"d":"189,-130r-173,0r7,-41r174,0xm179,-76r-173,0r7,-40r174,0","w":200},">":{"d":"131,-96r-134,78r9,-50r79,-45r-62,-44r9,-46r104,77","w":127},"?":{"d":"89,-250v44,-1,85,-3,85,42v0,68,-33,105,-102,93r9,48r-48,0v-6,-32,-20,-64,-6,-94v24,2,45,7,71,8v31,2,29,-24,33,-48v-2,-16,-58,-13,-66,1r-36,-15v14,-23,28,-34,60,-35xm71,0r-47,0r9,-50r48,0","w":174},"@":{"d":"172,-247v82,0,145,42,145,124v0,67,-43,104,-119,100v-10,-16,-38,6,-58,2v-79,6,-41,-112,-16,-145v19,-25,67,-13,92,0r8,-13v18,-2,30,4,31,19r-19,97v22,-10,35,-30,36,-61v2,-60,-44,-84,-100,-84v-66,0,-103,44,-103,108v0,64,39,108,103,108v49,0,81,-13,111,-34r0,41v-32,19,-63,33,-111,32v-93,-2,-148,-57,-148,-147v0,-88,54,-147,148,-147xm207,-132v-20,-8,-56,-22,-62,12r-9,52v4,19,41,4,58,4","w":326,"k":{"T":10}},"A":{"d":"134,0r-10,-66r-68,0r-34,66r-51,0r127,-231r43,0r43,231r-50,0xm108,-168r-31,62r41,0","w":191,"k":{"\u00ff":10,"\u00b5":4,"\u00a5":25,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"y":10,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":11,"V":11,"T":11,"?":10,"\/":-19,"\u00fd":10,"\u00dd":25}},"B":{"d":"174,-135v9,7,19,20,18,36v-4,53,-20,99,-75,99r-117,0r43,-231v15,2,38,-5,42,7v43,-15,108,-14,105,41v-1,18,-6,39,-16,48xm144,-176v-1,-29,-37,-13,-61,-11r-8,43v35,2,71,2,69,-32xm104,-41v36,9,56,-55,25,-63r-62,0r-11,63r48,0","w":201,"k":{"\u00c1":2,"\u00c2":2,"\u00ff":8,"\u00c3":2,"\u00c0":2,"\u00a5":14,"\u00c6":2,"\u00c5":2,"\u00c4":2,"y":8,"Y":14,"W":4,"V":11,"T":7,"A":2,"?":6,".":10,"\u00fd":8,"\u00dd":14}},"C":{"d":"147,-8v-60,6,-162,35,-138,-56v17,-66,2,-167,86,-167v43,0,85,-5,89,37r-39,14v-7,-22,-78,-16,-71,16r-20,117v12,25,65,-2,98,2","w":169,"k":{"\u00c1":11,"\u00c2":11,"\u00ff":11,"\u00c3":11,"\u00c0":11,"\u00f8":2,"\u00e6":4,"\u00a5":6,"\u00c6":11,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c5":11,"\u00c4":11,"y":11,"o":2,"e":2,"a":4,"Y":6,"A":11,"-":13,"\u00fd":11,"\u00dd":6}},"D":{"d":"89,-220v41,-9,123,-33,121,30v-14,58,-9,136,-42,174v-28,32,-108,11,-163,16r43,-231r37,0xm163,-183v-6,-22,-54,-4,-76,-3r-27,146v24,-2,57,4,75,-5v15,-40,18,-93,28,-138","w":212,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00a5":11,"\u00c6":7,"\u00c5":7,"\u00c4":7,"Y":11,"W":7,"A":7,".":17,"\u00dd":11}},"E":{"d":"174,-191r-91,0r-9,48r78,0r-8,40r-77,0r-12,63r91,0r-7,40r-139,0r42,-231r139,0","w":168,"k":{"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c0":8,"\u00c6":8,"\u00c5":8,"\u00c4":8,"A":8}},"F":{"d":"176,-191r-92,0r-8,48r77,0r-7,40r-78,0r-19,103r-48,0r43,-231r139,0","w":155,"k":{"\u00c1":26,"\u00c2":26,"\u00ff":4,"\u00c3":26,"\u00c0":26,"\u00f8":11,"\u00e6":11,"\u00b5":9,"\u00c6":26,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00ef":4,"\u00ee":4,"\u00ec":4,"\u00ed":4,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c5":26,"\u00c4":26,"z":18,"y":4,"u":9,"r":11,"o":11,"i":4,"e":7,"a":11,"S":8,"A":26,".":21,",":21,"\u00fd":4}},"G":{"d":"6,-41v10,-68,1,-188,89,-190v43,0,85,-5,89,37r-39,14v-7,-22,-78,-16,-71,16r-21,117v6,22,50,3,70,2r9,-48r-34,0r7,-40r78,0r-24,133r-34,0r-4,-10v-42,10,-124,30,-115,-31","w":195,"k":{"\u00a5":11,"Y":11,"W":10,"V":13,"T":4,"\/":-13,"\u00dd":11}},"H":{"d":"188,0r-48,0r19,-103r-87,0r-19,103r-48,0r43,-231r47,0r-16,88r88,0r16,-88r47,0","w":231},"I":{"d":"53,0r-48,0r43,-231r47,0","w":88},"J":{"d":"-14,-48v27,2,63,20,86,5v18,-56,24,-126,38,-187r48,0r-32,170v-3,74,-89,69,-149,48","w":155},"K":{"d":"113,-134r84,134r-49,0r-67,-105r-19,16r-16,89r-48,0r43,-231r48,0r-15,80r95,-80r55,0","w":205,"k":{"\u00d9":22,"\u00db":22,"\u00da":22,"\u00d2":11,"\u00d4":11,"\u00d3":11,"\u00cc":9,"\u00cf":9,"\u00ce":9,"\u00cd":9,"\u00c8":18,"\u00cb":18,"\u00c1":11,"\u00ca":18,"\u00c2":11,"\u00ff":27,"\u00d5":11,"\u00c3":11,"\u00c0":11,"\u00f8":9,"\u00e6":11,"\u00b5":9,"\u00a5":10,"\u00d8":11,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00f1":7,"\u00ef":9,"\u00ee":9,"\u00ec":9,"\u00ed":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00dc":22,"\u00d6":11,"\u00c9":18,"\u00c5":11,"\u00c4":11,"y":27,"u":9,"r":14,"o":9,"n":7,"i":9,"e":9,"a":11,"Y":10,"W":10,"S":8,"O":11,"G":8,"-":17,"\u00fd":27,"\u00dd":10}},"L":{"d":"144,0r-139,0r43,-231r47,0r-35,191r91,0","w":160,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00ff":21,"\u00d5":4,"\u00f8":11,"\u00e6":4,"\u00b5":9,"\u00a5":25,"\u00d8":4,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00d6":4,"y":21,"u":9,"o":11,"e":7,"a":4,"Y":25,"W":25,"V":25,"T":11,"Q":4,"O":4,"G":4,"@":12,"?":12,"1":11,"\/":-27,".":-17,"-":15,"\u00fd":21,"\u00dd":25}},"M":{"d":"238,0r-48,0r22,-122r-65,99r-42,0r-30,-102r-23,125r-48,0r43,-231r44,0r44,157r99,-157r46,0","w":283},"N":{"d":"187,0r-43,0r-66,-142r-26,142r-48,0r43,-231r37,0r70,151r28,-151r48,0","w":229},"O":{"d":"108,0v-59,2,-119,1,-99,-67v19,-65,3,-166,86,-166v48,0,105,-10,103,44v-22,70,2,186,-90,189xm63,-103v1,22,-27,63,10,63v28,0,50,5,56,-27r21,-116v-6,-19,-84,-18,-75,17v-8,41,-8,40,-12,63","w":199,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c5":7,"\u00c4":7,"X":4,"A":7,".":19}},"P":{"d":"190,-129v-2,60,-66,73,-124,57r-13,72r-48,0r43,-230r37,0r4,10v40,-14,114,-27,110,35xm152,-183v-5,-22,-47,-2,-65,-3r-14,77v29,2,65,14,71,-23","w":200,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00f8":9,"\u00e6":11,"\u00b5":4,"\u00a5":6,"\u00c6":20,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c5":20,"\u00c4":20,"u":4,"o":9,"e":7,"a":11,"Y":6,"X":6,"A":20,".":29,"\u00dd":6}},"Q":{"d":"61,0v-94,5,-42,-105,-33,-170v5,-38,22,-63,67,-63v48,0,105,-10,103,44v-22,71,2,189,-93,189v19,17,46,-10,78,-4r-7,36v-43,7,-116,28,-115,-32xm63,-103v1,22,-27,63,10,63v28,0,50,5,56,-27r21,-116v-6,-19,-84,-18,-75,17v-8,41,-8,40,-12,63","w":199},"R":{"d":"105,-73v-13,1,-25,-7,-38,-6r-14,79r-48,0r43,-230r37,0r4,10v39,-13,116,-28,110,34v-4,46,-9,96,-48,108r43,78r-49,0xm74,-116v29,2,71,15,71,-23v0,0,22,-58,-12,-54r-46,6","w":200,"k":{"\u00c1":-8,"\u00c2":-8,"\u00ff":5,"\u00c3":-8,"\u00c0":-8,"\u00f8":4,"\u00e6":4,"\u00b5":4,"\u00c6":-8,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c5":-8,"\u00c4":-8,"y":5,"u":4,"o":4,"e":4,"a":4,"A":-8,"\/":-21,"\u00fd":5}},"S":{"d":"39,-120v-52,-65,40,-145,121,-102v8,4,7,2,16,6r-13,33v-30,-9,-89,-21,-94,17v14,41,91,25,89,84v-2,52,-36,83,-90,85v-29,0,-43,-16,-65,-23r3,-39v33,17,104,40,105,-19v-14,-20,-57,-23,-72,-42","w":172,"k":{"\u00a5":12,"Y":12,"\u00dd":12}},"T":{"d":"174,-191r-57,0r-36,191r-47,0r35,-191r-57,0r7,-40r162,0","w":160,"k":{"\u00d9":28,"\u00db":28,"\u00da":28,"\u00d2":39,"\u00d4":39,"\u00d3":39,"\u00cc":9,"\u00cf":9,"\u00ce":9,"\u00cd":9,"\u00c8":30,"\u00cb":30,"\u00c1":25,"\u00ca":30,"\u00c2":25,"\u00ff":26,"\u00d5":39,"\u00c3":25,"\u00c0":25,"\u00f8":29,"\u00e6":29,"\u00b5":25,"\u00a5":-6,"\u00b1":18,"\u00d8":39,"\u00c6":25,"\u00a2":29,"\u00fc":25,"\u00fb":25,"\u00f9":25,"\u00fa":25,"\u00f5":22,"\u00f6":22,"\u00f4":22,"\u00f2":22,"\u00f3":22,"\u00f1":22,"\u00ef":9,"\u00ee":9,"\u00ec":9,"\u00ed":9,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":29,"\u00e3":29,"\u00e4":29,"\u00e2":29,"\u00e0":29,"\u00e1":29,"\u00dc":28,"\u00d6":39,"\u00c9":30,"\u00c5":25,"\u00c4":25,"z":29,"y":26,"x":14,"w":19,"v":22,"u":25,"t":13,"s":29,"r":22,"q":29,"p":29,"o":29,"n":22,"m":22,"l":16,"k":9,"j":25,"i":9,"h":9,"g":29,"f":18,"e":29,"d":18,"c":29,"b":7,"a":29,"Y":-6,"V":-6,"Q":4,"J":13,"A":25,"@":10,"\/":15,".":22,"-":23,",":19,"\u00f0":18,"\u00fe":29,"\u00fd":26,"\u00dd":-6}},"U":{"d":"75,-37v18,0,36,-6,53,-8r35,-186r47,0r-43,231r-37,0r-4,-10v-46,12,-130,31,-116,-44r32,-177r47,0r-33,184v0,10,8,9,19,10","w":209},"V":{"d":"105,0r-43,0r-41,-231r48,0r27,168r86,-168r51,0","w":211,"k":{"\u00d9":15,"\u00db":15,"\u00da":15,"\u00d2":17,"\u00d4":17,"\u00d3":17,"\u00cc":5,"\u00cf":5,"\u00ce":5,"\u00cd":5,"\u00c8":24,"\u00cb":24,"\u00c1":17,"\u00ca":24,"\u00c2":17,"\u00ff":18,"\u00d5":17,"\u00c3":17,"\u00c0":17,"\u00f8":17,"\u00e6":18,"\u00b5":15,"\u00b1":11,"\u00d8":17,"\u00c6":17,"\u00a2":18,"\u00fc":15,"\u00fb":15,"\u00f9":15,"\u00fa":15,"\u00f5":18,"\u00f6":18,"\u00f4":18,"\u00f2":18,"\u00f3":18,"\u00f1":18,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00eb":18,"\u00ea":18,"\u00e8":18,"\u00e9":18,"\u00e7":18,"\u00e5":18,"\u00e3":18,"\u00e4":18,"\u00e2":18,"\u00e0":18,"\u00e1":18,"\u00dc":15,"\u00d6":17,"\u00d1":5,"\u00c9":24,"\u00c5":17,"\u00c4":17,"z":18,"y":18,"x":11,"u":15,"s":18,"r":9,"q":18,"p":18,"o":17,"n":18,"m":18,"l":5,"j":13,"i":5,"h":7,"g":18,"f":11,"e":18,"d":18,"c":18,"a":18,"Q":8,"N":5,"J":11,"G":10,"A":17,".":37,"-":12,",":27,"\u00f0":18,"\u00fe":18,"\u00fd":18}},"W":{"d":"230,0r-44,0r-21,-143r-75,143r-44,0r-32,-231r49,0r18,166r73,-150r46,0r20,150r77,-166r51,0","w":332,"k":{"\u00c1":11,"\u00c2":11,"\u00ff":18,"\u00c3":11,"\u00c0":11,"\u00f8":17,"\u00e6":18,"\u00b5":11,"\u00c6":11,"\u00a2":18,"\u00fc":11,"\u00fb":11,"\u00f9":11,"\u00fa":11,"\u00f5":14,"\u00f6":14,"\u00f4":14,"\u00f2":14,"\u00f3":14,"\u00f1":14,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00eb":18,"\u00ea":18,"\u00e8":18,"\u00e9":18,"\u00e7":18,"\u00e5":18,"\u00e3":18,"\u00e4":18,"\u00e2":18,"\u00e0":18,"\u00e1":18,"\u00c5":11,"\u00c4":11,"z":18,"y":18,"x":11,"u":11,"s":13,"r":7,"q":18,"p":14,"o":17,"n":14,"m":14,"j":14,"i":5,"h":4,"g":18,"e":18,"d":14,"c":18,"a":18,"Q":6,"J":11,"G":6,"A":11,".":35,",":28,"\u00f0":14,"\u00fe":14,"\u00fd":18}},"X":{"d":"126,-116r50,116r-51,0r-31,-76r-58,76r-54,0r95,-118r-51,-113r51,0r31,74r59,-74r53,0","w":195,"k":{"\u00ff":26,"\u00e6":5,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":26,"e":4,"a":5,"\/":-10,"\u00fd":26}},"Y":{"d":"118,-75r-13,75r-48,0r14,-75r-54,-156r49,0r38,106r76,-106r52,0","w":207,"k":{"\u00d0":5,"\u00d9":27,"\u00db":27,"\u00da":27,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c8":5,"\u00cb":5,"\u00c1":30,"\u00ca":5,"\u00c2":30,"\u00ff":25,"\u00d5":14,"\u00c3":30,"\u00c0":30,"\u00f8":29,"\u00e6":25,"\u00b5":25,"\u00a5":2,"\u00b1":22,"\u00d8":14,"\u00c6":30,"\u00a2":29,"\u00fc":25,"\u00fb":25,"\u00f9":25,"\u00fa":25,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00f1":29,"\u00ef":11,"\u00ee":11,"\u00ec":11,"\u00ed":11,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":25,"\u00e3":25,"\u00e4":25,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00dc":27,"\u00d6":14,"\u00d1":7,"\u00c9":5,"\u00c7":4,"\u00c5":30,"\u00c4":30,"z":22,"y":25,"x":22,"w":20,"v":22,"u":25,"t":18,"s":28,"r":19,"q":28,"p":29,"o":29,"n":29,"m":29,"k":7,"j":18,"i":11,"h":7,"g":31,"f":22,"e":29,"d":22,"c":29,"b":14,"a":25,"Y":2,"X":4,"S":6,"Q":8,"O":14,"N":7,"J":11,"G":10,"E":5,"D":5,"C":4,"A":30,".":38,",":37,"\u00f0":22,"\u00fe":29,"\u00fd":25,"\u00dd":2}},"Z":{"d":"202,-194r-146,154r122,0r-7,40r-180,0r6,-36r148,-154r-123,0r7,-40r180,0","w":200,"k":{"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"a":5}},"[":{"d":"149,-249r-55,0r-48,262r54,0r-7,40r-98,0r63,-343r98,0","w":116},"\\":{"d":"88,0r-65,-253r44,0r65,253r-44,0","w":147},"]":{"d":"69,53r-98,0r8,-40r54,0r49,-262r-55,0r8,-41r97,0","w":116},"^":{"d":"125,-176r-29,-22r-37,22r-39,-7r84,-69r59,69","w":182},"_":{"d":"185,27r-174,0r7,-37r174,0","w":200},"`":{"d":"96,-176r-63,-49r54,-12r47,54","w":194},"a":{"d":"87,-173v16,1,33,14,48,17r3,-15r43,0r-22,138v-1,13,1,23,3,33r-44,0r-3,-21v-18,5,-37,23,-58,24v-36,2,-53,-15,-49,-49v6,-56,9,-132,79,-127xm128,-120v-15,-1,-24,-12,-38,-13v-43,-2,-28,58,-39,86v12,26,45,-7,65,-7","k":{"\u00a5":18,"\u00b1":-2,"t":3,"r":-4,"f":-2,"Y":18,"\u00dd":18}},"b":{"d":"77,-157v36,-13,102,-33,100,28v-2,76,-31,162,-120,121v-14,-6,-31,-10,-49,-10r40,-219r43,0xm57,-51v25,6,59,31,67,-13r10,-59v0,-10,-7,-10,-19,-10v-17,0,-27,14,-45,14","w":182,"k":{"\u00e6":4,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"a":4}},"c":{"d":"10,-41v0,-57,7,-131,79,-131v42,0,80,-4,85,36r-40,14v-1,-17,-25,-9,-41,-10v-44,-3,-30,54,-39,85v15,26,62,-6,96,-1r-5,37v-51,3,-135,40,-135,-30","w":167,"k":{"\u00ff":2,"\u00e6":6,"\u00e5":6,"\u00e3":6,"\u00e4":6,"\u00e2":6,"\u00e0":6,"\u00e1":6,"y":2,"k":5,"a":6,"-":6,"\u00fd":2}},"d":{"d":"8,-41v-1,-74,35,-166,115,-118v4,2,8,3,12,3r14,-81r44,0v-8,79,-40,156,-31,237r-44,0r-3,-21v-20,8,-36,19,-58,24v-34,0,-48,-13,-49,-44xm70,-37v16,-3,27,-17,46,-17r12,-66v-13,-2,-26,-10,-38,-13v-43,0,-29,57,-39,86v0,10,8,9,19,10"},"e":{"d":"54,-54v2,39,61,0,95,4r-4,39v-52,3,-143,41,-135,-36v6,-56,10,-125,79,-125v45,0,86,0,85,43v-2,59,-58,76,-120,75xm130,-124v-1,-15,-61,-13,-64,5r-5,26v27,-6,71,3,69,-31","w":176,"k":{"\u00ff":2,"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"a":5,"\u00fd":2}},"f":{"d":"48,-171v2,-59,57,-82,119,-62r-8,36v-29,-2,-70,-13,-67,26r44,0r-7,38r-44,0r-25,133r-43,0r24,-133r-32,0r7,-38r32,0","w":141,"k":{"\u00ff":2,"\u00f8":18,"\u00e6":25,"\u00b5":13,"\u00a2":14,"\u00fc":13,"\u00fb":13,"\u00f9":13,"\u00fa":13,"\u00f5":13,"\u00f6":13,"\u00f4":13,"\u00f2":13,"\u00f3":13,"\u00f1":13,"\u00ef":21,"\u00ee":21,"\u00ec":21,"\u00ed":21,"\u00eb":15,"\u00ea":15,"\u00e8":15,"\u00e9":15,"\u00e7":14,"\u00e5":25,"\u00e3":25,"\u00e4":25,"\u00e2":25,"\u00e0":25,"\u00e1":25,"y":2,"u":13,"s":6,"r":4,"q":6,"p":8,"o":18,"n":13,"m":6,"j":8,"i":21,"g":13,"e":15,"d":13,"c":14,"a":25,"\/":8,".":29,"-":10,",":25,"\u00f0":13,"\u00fe":8,"\u00fd":2}},"g":{"d":"11,-40v0,-68,23,-160,104,-125v7,3,15,9,25,9r9,-14r35,0r-35,189v-7,74,-101,53,-157,37r5,-36v32,3,70,17,101,10v10,-9,10,-32,14,-47v-17,5,-32,20,-52,20v-33,0,-49,-12,-49,-43xm54,-50v7,32,45,-4,65,-4r12,-66v-15,0,-25,-12,-38,-13v-43,-3,-28,58,-39,83","w":179,"k":{"\u00b1":-2,"s":4,"r":-4,"f":-2,".":12}},"h":{"d":"130,-173v95,0,12,110,37,173r-45,0v-9,-46,6,-87,14,-123v0,-11,-8,-10,-20,-10v-17,0,-26,14,-45,14r-22,119r-43,0r43,-237r44,0r-15,80v20,0,33,-16,52,-16","k":{"w":2}},"i":{"d":"86,-194r-44,0r9,-43r43,0xm50,0r-43,0r31,-171r44,0","w":85,"k":{"\u00e6":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"j":7,"a":2}},"j":{"d":"93,-194r-43,0r8,-43r44,0xm-44,29v19,2,51,11,55,-10r35,-189r43,0r-35,191v-6,50,-56,60,-106,46","w":90},"k":{"d":"121,0v-13,-17,-18,-35,-26,-60r-38,6r-10,54r-43,0r44,-236r43,0r-12,65v47,-1,100,-5,97,43v-2,32,-16,51,-40,59v7,28,17,49,29,69r-44,0xm130,-111v7,-10,0,-20,-16,-20r-42,0r-8,37v21,-6,48,-8,66,-17","w":177,"k":{"\u00e6":4,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c7":-4,"e":2,"a":4,"C":-4,"\/":-21}},"l":{"d":"13,0v-11,-86,24,-159,32,-237r44,0r-32,167v-4,24,-6,48,0,70r-44,0","w":77,"k":{"\u00ef":-4,"\u00ee":-4,"\u00ec":-4,"\u00ed":-4,"i":-4}},"m":{"d":"216,0v-10,-45,7,-87,14,-123v-1,-9,-8,-7,-20,-7v-15,0,-22,17,-40,16r-20,114r-43,0r22,-121v0,-11,-7,-9,-20,-9v-13,0,-23,16,-39,16r-21,114r-43,0r31,-170r35,0r3,17v19,-1,30,-18,48,-20v20,-1,33,12,40,22v24,-1,37,-22,61,-22v95,0,12,111,37,173r-45,0","w":282},"n":{"d":"130,-173v95,0,12,111,37,173r-45,0v-9,-45,6,-87,14,-123v-10,-25,-45,4,-65,4r-22,119r-43,0r31,-170r34,0r4,14v19,-3,35,-17,55,-17"},"o":{"d":"8,-41v7,-59,9,-131,79,-131v39,0,85,-4,85,35v0,62,-3,140,-79,140v-45,0,-90,2,-85,-44xm51,-51v-3,23,31,12,52,13v23,-14,17,-59,26,-87v-2,-12,-25,-5,-39,-7v-43,-3,-27,57,-39,81","w":175,"k":{"j":2,"b":4,"F":11}},"p":{"d":"75,-156v36,-14,110,-34,104,27v-6,59,-6,135,-79,132v-20,-1,-28,-19,-48,-20r-15,85r-44,0r44,-238r34,0xm59,-54v22,9,59,34,66,-10r10,-59v0,-10,-8,-9,-19,-10v-15,2,-27,14,-45,14","w":180},"q":{"d":"87,-173v19,2,31,16,50,17r9,-14r35,0r-44,238r-44,0r16,-85v-21,1,-32,19,-52,20v-36,1,-53,-15,-49,-49v6,-56,9,-131,79,-127xm70,-37v16,-3,28,-17,46,-18r12,-65v-15,-1,-24,-12,-38,-13v-43,-2,-29,57,-39,86v0,10,8,9,19,10","w":178},"r":{"d":"131,-127v-21,-14,-45,5,-65,8r-22,119r-44,0r32,-171r33,0r3,15v28,-4,51,-28,81,-11","w":133,"k":{"\u00f8":4,"\u00e6":4,"\u00a2":4,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00f1":2,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":4,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"r":11,"o":4,"n":2,"e":11,"d":4,"c":4,"a":4,".":17,"-":6,",":21,"\u00f0":4}},"s":{"d":"19,-112v-1,-67,84,-68,133,-46r-18,34v-21,-7,-61,-18,-71,4v11,27,73,6,72,55v-1,41,-22,67,-64,68v-29,1,-40,-18,-71,-16r7,-37v31,0,77,32,87,-7v-27,-15,-74,-14,-75,-55","w":147,"k":{"\u00ff":11,"\u00e6":2,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00f1":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"y":11,"v":6,"t":5,"n":2,"a":2,"\u00fd":11}},"t":{"d":"76,3v-76,3,-39,-87,-33,-136r-35,0r6,-38r36,0r9,-50r43,0r-9,50r39,0r-7,38r-39,0r-15,86v5,22,40,3,52,-2r-9,40v-11,5,-23,12,-38,12","w":133,"k":{"\u00ff":6,"\u00f8":9,"\u00e6":6,"\u00b5":6,"\u00a2":2,"\u00fc":6,"\u00fb":6,"\u00f9":6,"\u00fa":6,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00f1":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":2,"\u00e5":6,"\u00e3":6,"\u00e4":6,"\u00e2":6,"\u00e0":6,"\u00e1":6,"y":6,"u":6,"q":8,"o":9,"n":5,"e":5,"d":2,"c":2,"a":6,"\/":-19,".":-10,"-":12,"\u00f0":2,"\u00fd":6}},"u":{"d":"72,-38v17,0,27,-17,46,-16r21,-117r44,0v-7,55,-30,110,-19,171r-44,0r-3,-21v-32,26,-118,39,-106,-31r21,-119r43,0r-22,123v0,10,7,10,19,10","k":{"v":13}},"v":{"d":"82,0r-34,0r-39,-171r45,0r20,116r62,-116r47,0","w":160,"k":{"\u00f8":2,"\u00e6":4,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"o":2,"e":2,"a":4,".":21,",":13}},"w":{"d":"165,0r-35,0r-13,-60r-35,60r-34,0r-39,-171r45,0r21,116r30,-58r-11,-51v12,-4,27,-4,43,-7r20,116r62,-116r46,0","w":248,"k":{"\u00e6":4,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"e":2,"a":4,".":21,",":12}},"x":{"d":"112,-86r47,86r-47,0r-30,-55r-50,55r-49,0r81,-88r-46,-83r47,0r28,51r47,-51r50,0","w":159,"k":{"\/":-13}},"y":{"d":"80,-38v18,-2,30,-15,48,-16r21,-117r44,0r-35,190v-8,74,-101,53,-158,37r6,-36v33,2,74,21,103,9v8,-11,8,-30,12,-45v-17,3,-33,18,-52,18v-89,0,-30,-115,-27,-173r43,0r-22,123v0,9,5,11,17,10","w":187,"k":{".":29,",":13}},"z":{"d":"63,-40r85,0r-7,40r-141,0r7,-36r102,-95r-78,0r7,-40r118,0r9,36","w":165,"k":{"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"e":2,"\/":-12}},"{":{"d":"17,-78v0,-15,-3,-19,-17,-20r6,-38v67,-17,-3,-175,128,-152r20,4r-8,38v-17,-4,-51,-11,-55,10v-9,44,-8,98,-42,120v27,27,0,86,-3,124v6,16,34,4,52,4r-6,38v-37,10,-92,11,-89,-36v2,-35,13,-59,14,-92","w":115},"|":{"d":"40,43r-43,0r60,-322r43,0","w":81},"}":{"d":"109,-156v0,15,3,20,18,20r-7,38v-68,17,3,175,-128,152r-20,-4r8,-38v17,4,51,11,55,-10v9,-44,8,-98,42,-120v-29,-27,2,-87,3,-123v-5,-17,-35,-6,-52,-5r6,-38v37,-10,89,-12,89,36v0,35,-14,57,-14,92","w":115},"~":{"d":"96,-227v9,21,30,16,42,-4r36,7v-17,25,-61,70,-93,33v-13,-6,-22,11,-31,16r-36,-8v19,-21,44,-58,82,-44","w":195},"\u00c4":{"d":"134,-261v0,-29,50,-40,49,-6v-1,15,-12,28,-28,29v-12,0,-21,-10,-21,-23xm64,-261v-3,-29,50,-40,49,-6v-1,15,-12,28,-28,29v-12,0,-22,-10,-21,-23xm134,0r-10,-66r-68,0r-34,66r-51,0r127,-231r43,0r43,231r-50,0xm108,-168r-31,62r41,0","w":191,"k":{"\u00ff":10,"\u00b5":4,"\u00a5":25,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"y":10,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":11,"V":11,"T":11,"?":10,"\/":-19,"\u00fd":10,"\u00dd":25}},"\u00c5":{"d":"86,-266v-5,-52,86,-73,85,-11v1,49,-83,68,-85,11xm134,0r-10,-66r-68,0r-34,66r-51,0r122,-222r50,0r41,222r-50,0xm126,-264v9,2,17,-18,5,-18v-6,0,-11,5,-11,12v0,4,1,7,6,6xm108,-168r-31,62r41,0","w":191,"k":{"\u00ff":10,"\u00b5":4,"\u00a5":25,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"y":10,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":11,"V":11,"T":11,"?":10,"\/":-19,"\u00fd":10,"\u00dd":25}},"\u00c7":{"d":"64,3v-64,6,-57,-51,-44,-104v11,-45,9,-130,80,-130v43,0,85,-5,89,37r-40,14v-6,-23,-78,-16,-70,16r-21,117v12,24,65,-2,98,2r-5,37v-12,1,-23,1,-34,3v-9,39,-50,60,-97,44v-4,-1,-11,0,-20,0r8,-36v22,-1,42,20,56,0","w":178,"k":{"\u00c1":11,"\u00c2":11,"\u00ff":11,"\u00c3":11,"\u00c0":11,"\u00f8":2,"\u00e6":4,"\u00a5":6,"\u00c6":11,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c5":11,"\u00c4":11,"y":11,"o":2,"e":2,"a":4,"Y":6,"A":11,"-":13,"\u00fd":11,"\u00dd":6}},"\u00c9":{"d":"113,-235r-39,-7r66,-54r53,14xm174,-191r-91,0r-9,48r78,0r-8,40r-77,0r-12,63r91,0r-7,40r-139,0r42,-231r139,0","w":171,"k":{"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c0":8,"\u00c6":8,"\u00c5":8,"\u00c4":8,"A":8}},"\u00d1":{"d":"216,-283v-17,28,-63,71,-96,32v-12,1,-19,11,-27,17r-36,-7v20,-19,42,-59,82,-44v6,3,5,15,15,14v12,-2,16,-7,26,-19xm187,0r-43,0r-66,-142r-26,142r-48,0r43,-231r37,0r70,151r28,-151r48,0","w":229},"\u00d6":{"d":"137,-261v-2,-27,48,-41,49,-6v3,32,-49,40,-49,6xm67,-261v-2,-27,48,-41,49,-6v3,32,-49,40,-49,6xm108,0v-59,2,-119,1,-99,-67v19,-65,3,-166,86,-166v48,0,105,-10,103,44v-22,70,2,186,-90,189xm63,-103v1,22,-27,63,10,63v28,0,50,5,56,-27r21,-116v-6,-19,-84,-18,-75,17v-8,41,-8,40,-12,63","w":199,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c5":7,"\u00c4":7,"X":4,"A":7,".":19}},"\u00dc":{"d":"142,-265v1,-28,55,-34,51,2v-3,27,-51,36,-51,2r0,-4xm68,-260v-3,-28,49,-43,51,-8v3,32,-50,42,-51,8xm75,-37v18,0,36,-6,53,-8r35,-186r47,0r-43,231r-37,0r-4,-10v-46,12,-130,31,-116,-44r32,-177r47,0r-33,184v0,10,8,9,19,10","w":209},"\u00e1":{"d":"97,-176r-39,-7r66,-54r52,13xm87,-173v16,1,33,14,48,17r3,-15r43,0r-22,138v-1,13,1,23,3,33r-44,0r-3,-21v-18,5,-37,23,-58,24v-36,2,-53,-15,-49,-49v6,-56,9,-132,79,-127xm128,-120v-15,-1,-24,-12,-38,-13v-43,-2,-28,58,-39,86v12,26,45,-7,65,-7","k":{"\u00a5":18,"\u00b1":-2,"t":3,"r":-4,"f":-2,"Y":18,"\u00dd":18}},"\u00e0":{"d":"112,-176r-63,-49r55,-12r46,54xm87,-173v16,1,33,14,48,17r3,-15r43,0r-22,138v-1,13,1,23,3,33r-44,0r-3,-21v-18,5,-37,23,-58,24v-36,2,-53,-15,-49,-49v6,-56,9,-132,79,-127xm128,-120v-15,-1,-24,-12,-38,-13v-43,-2,-28,58,-39,86v12,26,45,-7,65,-7","k":{"\u00a5":18,"\u00b1":-2,"t":3,"r":-4,"f":-2,"Y":18,"\u00dd":18}},"\u00e2":{"d":"141,-176r-29,-22r-37,22r-39,-7r84,-69r59,69xm87,-173v16,1,33,14,48,17r3,-15r43,0r-22,138v-1,13,1,23,3,33r-44,0r-3,-21v-18,5,-37,23,-58,24v-36,2,-53,-15,-49,-49v6,-56,9,-132,79,-127xm128,-120v-15,-1,-24,-12,-38,-13v-43,-2,-28,58,-39,86v12,26,45,-7,65,-7","k":{"\u00a5":18,"\u00b1":-2,"t":3,"r":-4,"f":-2,"Y":18,"\u00dd":18}},"\u00e4":{"d":"120,-202v-4,-29,48,-41,49,-7v2,30,-48,41,-49,7xm50,-202v-4,-29,48,-41,49,-7v3,31,-49,41,-49,7xm87,-173v16,1,33,14,48,17r3,-15r43,0r-22,138v-1,13,1,23,3,33r-44,0r-3,-21v-18,5,-37,23,-58,24v-36,2,-53,-15,-49,-49v6,-56,9,-132,79,-127xm128,-120v-15,-1,-24,-12,-38,-13v-43,-2,-28,58,-39,86v12,26,45,-7,65,-7","k":{"\u00a5":18,"\u00b1":-2,"t":3,"r":-4,"f":-2,"Y":18,"\u00dd":18}},"\u00e3":{"d":"190,-224v-17,27,-64,69,-96,31v-13,1,-18,13,-27,18r-36,-8v19,-19,32,-45,67,-48v20,-2,15,16,30,19v12,-2,16,-7,26,-19xm87,-173v16,1,33,14,48,17r3,-15r43,0r-22,138v-1,13,1,23,3,33r-44,0r-3,-21v-18,5,-37,23,-58,24v-36,2,-53,-15,-49,-49v6,-56,9,-132,79,-127xm128,-120v-15,-1,-24,-12,-38,-13v-43,-2,-28,58,-39,86v12,26,45,-7,65,-7","w":189,"k":{"\u00a5":18,"\u00b1":-2,"t":3,"r":-4,"f":-2,"Y":18,"\u00dd":18}},"\u00e5":{"d":"69,-211v-5,-50,81,-73,85,-15v4,52,-82,74,-85,15xm109,-205v10,1,17,-21,5,-23v-11,-1,-16,21,-5,23xm87,-173v16,1,33,14,48,17r3,-15r43,0r-22,138v-1,13,1,23,3,33r-44,0r-3,-21v-18,5,-37,23,-58,24v-36,2,-53,-15,-49,-49v6,-56,9,-132,79,-127xm128,-120v-15,-1,-24,-12,-38,-13v-43,-2,-28,58,-39,86v12,26,45,-7,65,-7","k":{"\u00a5":18,"\u00b1":-2,"t":3,"r":-4,"f":-2,"Y":18,"\u00dd":18}},"\u00e7":{"d":"14,-42v10,-56,8,-130,79,-130v41,0,81,-5,85,36r-40,14v-2,-19,-47,-11,-63,-5v-10,23,-14,54,-17,80v15,26,63,-6,96,-1r-5,37v-12,0,-21,2,-31,3v-2,46,-48,59,-97,46v-6,-1,-13,-1,-20,-1r11,-33v20,-3,42,17,51,-3v-34,0,-47,-13,-49,-43","w":169,"k":{"\u00ff":2,"\u00e6":6,"\u00e5":6,"\u00e3":6,"\u00e4":6,"\u00e2":6,"\u00e0":6,"\u00e1":6,"y":2,"k":5,"a":6,"-":6,"\u00fd":2}},"\u00e9":{"d":"98,-176r-39,-7r66,-54r53,13xm54,-54v2,39,61,0,95,4r-4,39v-52,3,-143,41,-135,-36v6,-56,10,-125,79,-125v45,0,86,0,85,43v-2,59,-58,76,-120,75xm130,-124v-1,-15,-61,-13,-64,5r-5,26v27,-6,71,3,69,-31","w":176,"k":{"\u00ff":2,"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"a":5,"\u00fd":2}},"\u00e8":{"d":"114,-176r-63,-49r54,-12r47,54xm54,-54v2,39,61,0,95,4r-4,39v-52,3,-143,41,-135,-36v6,-56,10,-125,79,-125v45,0,86,0,85,43v-2,59,-58,76,-120,75xm130,-124v-1,-15,-61,-13,-64,5r-5,26v27,-6,71,3,69,-31","w":176,"k":{"\u00ff":2,"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"a":5,"\u00fd":2}},"\u00ea":{"d":"143,-176r-29,-22r-37,22r-39,-7r84,-69r59,69xm54,-54v2,39,61,0,95,4r-4,39v-52,3,-143,41,-135,-36v6,-56,10,-125,79,-125v45,0,86,0,85,43v-2,59,-58,76,-120,75xm130,-124v-1,-15,-61,-13,-64,5r-5,26v27,-6,71,3,69,-31","w":177,"k":{"\u00ff":2,"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"a":5,"\u00fd":2}},"\u00eb":{"d":"121,-202v-3,-28,47,-42,49,-7v4,32,-49,40,-49,7xm51,-202v-4,-29,48,-41,49,-7v4,32,-49,40,-49,7xm54,-54v2,39,61,0,95,4r-4,39v-52,3,-143,41,-135,-36v6,-56,10,-125,79,-125v45,0,86,0,85,43v-2,59,-58,76,-120,75xm130,-124v-1,-15,-61,-13,-64,5r-5,26v27,-6,71,3,69,-31","w":176,"k":{"\u00ff":2,"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"a":5,"\u00fd":2}},"\u00ed":{"d":"58,-176r-39,-7r66,-54r53,13xm50,0r-43,0r31,-171r44,0","w":84,"k":{"\u00e6":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"j":7,"a":2}},"\u00ec":{"d":"70,-176r-64,-49r55,-12r47,54xm56,0r-43,0r31,-171r44,0","w":83,"k":{"\u00e6":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"j":7,"a":2}},"\u00ee":{"d":"99,-176r-29,-22r-37,22r-38,-7r83,-69r59,69xm56,0r-44,0r32,-171r43,0","w":86,"k":{"\u00e6":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"j":7,"a":2}},"\u00ef":{"d":"77,-202v-4,-29,48,-41,49,-7v4,32,-49,40,-49,7xm7,-202v-2,-28,47,-42,49,-7v4,32,-49,40,-49,7xm51,0r-43,0r31,-171r43,0","w":85,"k":{"\u00e6":2,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"j":7,"a":2}},"\u00f1":{"d":"130,-173v95,0,12,111,37,173r-45,0v-9,-45,6,-87,14,-123v-10,-25,-45,4,-65,4r-22,119r-43,0r31,-170r34,0r4,14v19,-3,35,-17,55,-17xm128,-212v12,-2,16,-7,26,-19r36,7v-18,27,-63,69,-96,31v-12,1,-19,12,-27,18r-36,-8v19,-19,32,-45,67,-48v20,-2,16,16,30,19","w":189},"\u00f3":{"d":"96,-176r-39,-7r66,-54r53,13xm8,-41v7,-59,9,-131,79,-131v39,0,85,-4,85,35v0,62,-3,140,-79,140v-45,0,-90,2,-85,-44xm51,-51v-3,23,31,12,52,13v23,-14,17,-59,26,-87v-2,-12,-25,-5,-39,-7v-43,-3,-27,57,-39,81","w":175},"\u00f2":{"d":"112,-176r-63,-49r54,-12r47,54xm8,-41v7,-59,9,-131,79,-131v39,0,85,-4,85,35v0,62,-3,140,-79,140v-45,0,-90,2,-85,-44xm51,-51v-3,23,31,12,52,13v23,-14,17,-59,26,-87v-2,-12,-25,-5,-39,-7v-43,-3,-27,57,-39,81","w":175},"\u00f4":{"d":"142,-176r-29,-22r-37,22r-39,-7r84,-69r59,69xm8,-41v7,-59,9,-131,79,-131v39,0,85,-4,85,35v0,62,-3,140,-79,140v-45,0,-90,2,-85,-44xm51,-51v-3,23,31,12,52,13v23,-14,17,-59,26,-87v-2,-12,-25,-5,-39,-7v-43,-3,-27,57,-39,81","w":178},"\u00f6":{"d":"119,-202v-4,-29,48,-41,49,-7v3,31,-49,41,-49,7xm49,-202v-4,-29,48,-41,49,-7v4,32,-49,40,-49,7xm8,-41v7,-59,9,-131,79,-131v39,0,85,-4,85,35v0,62,-3,140,-79,140v-45,0,-90,2,-85,-44xm51,-51v-3,23,31,12,52,13v23,-14,17,-59,26,-87v-2,-12,-25,-5,-39,-7v-43,-3,-27,57,-39,81","w":175},"\u00f5":{"d":"127,-212v12,-2,16,-7,26,-19r36,7v-18,27,-63,69,-96,31v-12,1,-19,12,-27,18r-36,-8v19,-19,32,-45,67,-48v20,-2,16,16,30,19xm8,-41v7,-59,9,-131,79,-131v39,0,85,-4,85,35v0,62,-3,140,-79,140v-45,0,-90,2,-85,-44xm51,-51v-3,23,31,12,52,13v23,-14,17,-59,26,-87v-2,-12,-25,-5,-39,-7v-43,-3,-27,57,-39,81","w":188},"\u00fa":{"d":"105,-176r-38,-7r66,-54r52,13xm72,-38v17,0,27,-17,46,-16r21,-117r44,0v-7,55,-30,110,-19,171r-44,0r-3,-21v-32,26,-118,39,-106,-31r21,-119r43,0r-22,123v0,10,7,10,19,10","k":{"v":13}},"\u00f9":{"d":"111,-176r-63,-49r55,-12r46,54xm72,-38v17,0,27,-17,46,-16r21,-117r44,0v-7,55,-30,110,-19,171r-44,0r-3,-21v-32,26,-118,39,-106,-31r21,-119r43,0r-22,123v0,10,7,10,19,10","k":{"v":13}},"\u00fb":{"d":"140,-176r-29,-22r-37,22r-39,-7r84,-69r59,69xm72,-38v17,0,27,-17,46,-16r21,-117r44,0v-7,55,-30,110,-19,171r-44,0r-3,-21v-32,26,-118,39,-106,-31r21,-119r43,0r-22,123v0,10,7,10,19,10","k":{"v":13}},"\u00fc":{"d":"125,-207v2,-26,49,-34,49,-2v0,15,-11,29,-28,29v-14,0,-22,-10,-21,-27xm55,-202v-4,-30,49,-41,49,-7v0,15,-11,29,-28,29v-12,1,-22,-9,-21,-22xm72,-38v17,0,27,-17,46,-16r21,-117r44,0v-7,55,-30,110,-19,171r-44,0r-3,-21v-32,26,-118,39,-106,-31r21,-119r43,0r-22,123v0,10,7,10,19,10","k":{"v":13}},"\u00b0":{"d":"14,-186v-4,-52,87,-73,85,-10v-6,25,-19,46,-49,47v-22,0,-35,-17,-36,-37xm54,-183v8,1,17,-18,5,-19v-9,-2,-17,17,-5,19","w":100},"\u00a2":{"d":"14,-41v10,-57,7,-134,79,-131r6,-33r43,0r-6,33v24,1,38,13,41,36r-39,14v-2,-7,-3,-9,-9,-10r-17,90v12,-4,25,-7,41,-7r-5,37v-14,0,-32,5,-43,9r-6,35r-44,0r6,-29v-32,-1,-46,-14,-47,-44xm86,-132v-28,8,-21,56,-28,85v1,7,2,9,10,10","w":167,"k":{"\u00ff":2,"\u00e6":6,"\u00e5":6,"\u00e3":6,"\u00e4":6,"\u00e2":6,"\u00e0":6,"\u00e1":6,"y":2,"k":5,"a":6,"-":6,"\u00fd":2}},"\u00a3":{"d":"40,-139v5,-58,28,-102,99,-89v10,2,21,3,34,6r-9,36v-31,-3,-74,-14,-76,21r-5,26r44,0r-6,38r-44,0r-4,61r76,0r-8,40r-159,0r7,-40r45,0r0,-61r-34,0r8,-38r32,0","w":159},"\u00a7":{"d":"47,-126v-39,-71,51,-135,127,-96v8,3,7,2,16,6r-13,33v-32,-15,-115,-14,-87,31v27,20,82,21,81,70v0,25,-10,48,-25,58v32,51,-17,117,-79,114v-27,-1,-34,-19,-64,-17r3,-39v30,-1,40,14,66,15v31,2,55,-41,21,-53v-33,-12,-71,-21,-70,-67v0,-23,9,-46,24,-55xm68,-78v0,19,51,46,56,16v5,-26,-21,-31,-40,-38v-11,6,-16,13,-16,22","w":179},"\u00b6":{"d":"58,-92v-49,-13,-26,-103,-1,-125v22,-19,66,-18,89,-3v4,-14,26,-10,44,-10r-48,257r-44,0r22,-122r-18,4r-22,118r-44,0","w":189},"\u00df":{"d":"108,-240v48,0,97,-2,89,51v-6,40,-48,40,-73,59v-3,3,-4,6,-4,10v20,23,74,13,73,56v-1,40,-23,65,-64,67v-28,0,-38,-18,-68,-16r6,-37v24,0,35,11,58,13v16,1,38,-19,19,-26v-27,-11,-64,-10,-64,-48v0,-57,46,-60,75,-81v-10,-16,-78,-15,-72,16r-37,203r-44,0r27,-144r-24,0r7,-40r24,0v8,-44,18,-83,72,-83","w":212},"\u00ae":{"d":"237,-137v0,84,-56,143,-139,143v-60,0,-97,-39,-97,-100v0,-84,57,-143,139,-143v59,0,97,39,97,100xm101,-118v15,1,35,7,35,-12v0,-9,7,-21,2,-27v-13,-1,-21,3,-31,6xm167,-54v50,-32,53,-156,-31,-150v-62,4,-98,46,-103,107v-5,65,78,89,125,51r-21,0r-23,-42v-6,0,-12,-4,-18,-3r-9,45r-30,0r27,-139v9,1,26,-5,24,7v23,-11,66,-14,64,22v-2,28,-7,54,-26,63","w":239},"\u00a9":{"d":"237,-137v0,84,-56,143,-139,143v-60,0,-97,-39,-97,-100v0,-84,57,-143,139,-143v59,0,97,39,97,100xm102,-27v61,0,102,-44,102,-107v0,-42,-25,-70,-68,-70v-62,0,-103,46,-103,107v0,41,25,70,69,70xm63,-73v13,-46,-1,-127,78,-112v19,0,27,8,31,26r-28,10v-2,-10,-36,-13,-36,6v0,23,-13,49,-10,70v21,-1,34,-8,56,-8r-4,27v-32,2,-86,27,-87,-19","w":239},"\u00b4":{"d":"80,-176r-39,-7r67,-54r52,13","w":182},"\u00a8":{"d":"103,-202v-4,-29,48,-41,49,-7v4,32,-49,40,-49,7xm33,-202v-4,-29,48,-41,49,-7v4,32,-49,40,-49,7","w":182},"\u00c6":{"d":"284,-191r-91,0r-9,48r77,0r-7,40r-78,0r-11,63r91,0r-8,40r-138,0r12,-66r-48,0r-46,66r-51,0r163,-231r151,0xm102,-106r27,0r10,-54","w":283,"k":{"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c0":8,"\u00c6":8,"\u00c5":8,"\u00c4":8,"A":8}},"\u00d8":{"d":"24,-10v-23,-23,-10,-57,-3,-94v9,-45,10,-138,80,-129r48,0r13,-23r45,0r-18,32v33,43,-1,106,-8,161v-5,40,-23,63,-68,63r-50,0r-11,20r-45,0xm127,-193v-26,-1,-48,-1,-47,27r-16,84xm86,-40v27,1,44,0,49,-27r16,-89","w":199,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c5":7,"\u00c4":7,"X":4,"A":7,".":19}},"\u00b1":{"d":"231,-197v-27,-6,-59,-6,-57,26r63,0r12,-66r44,0v-8,79,-39,157,-30,237r-44,0v-9,-48,6,-91,11,-133r-63,0r-24,133r-44,0r25,-133r-57,0r-25,133r-43,0r25,-133r-33,0r8,-38r32,0v2,-55,51,-83,109,-62r-9,36v-27,-5,-59,-7,-57,26r57,0v2,-55,51,-83,109,-62","w":311,"k":{"\u00ef":-4,"\u00ee":-4,"\u00ec":-4,"\u00ed":-4,"i":-4}},"\u00a5":{"d":"157,-142r22,0r-7,40r-47,0r-3,15r47,0r-7,40r-48,0r-8,47r-48,0r9,-47r-48,0r7,-40r48,0r3,-15r-48,0r7,-40r24,0r-44,-89r50,0r45,77r70,-77r53,0","w":207,"k":{"\u00d0":5,"\u00d9":27,"\u00db":27,"\u00da":27,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c8":5,"\u00cb":5,"\u00c1":30,"\u00ca":5,"\u00c2":30,"\u00ff":25,"\u00d5":14,"\u00c3":30,"\u00c0":30,"\u00f8":29,"\u00e6":25,"\u00b5":25,"\u00a5":2,"\u00b1":22,"\u00d8":14,"\u00c6":30,"\u00a2":29,"\u00fc":25,"\u00fb":25,"\u00f9":25,"\u00fa":25,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00f1":29,"\u00ef":11,"\u00ee":11,"\u00ec":11,"\u00ed":11,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":25,"\u00e3":25,"\u00e4":25,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00dc":27,"\u00d6":14,"\u00d1":7,"\u00c9":5,"\u00c7":4,"\u00c5":30,"\u00c4":30,"z":22,"y":25,"x":22,"w":20,"v":22,"u":25,"t":18,"s":28,"r":19,"q":28,"p":29,"o":29,"n":29,"m":29,"k":7,"j":18,"i":11,"h":7,"g":31,"f":22,"e":29,"d":22,"c":29,"b":14,"a":25,"Y":2,"X":4,"S":6,"Q":8,"O":14,"N":7,"J":11,"G":10,"E":5,"D":5,"C":4,"A":30,".":38,",":37,"\u00f0":22,"\u00fe":29,"\u00fd":25,"\u00dd":2}},"\u00b5":{"d":"55,-56v-8,22,18,20,33,14v10,-3,18,-8,30,-9r22,-120r43,0r-31,171r-34,0r-4,-14v-26,0,-40,22,-70,15r-12,67r-44,0r45,-239r43,0","w":195,"k":{"v":13}},"\u00aa":{"d":"76,-234v12,0,23,10,34,12r2,-11r36,0v-4,43,-23,88,-13,131r-37,0r-3,-15v-22,21,-88,29,-80,-21v6,-41,6,-96,61,-96xm132,-63r-133,0r5,-30r133,0xm50,-139v11,18,30,-6,46,-6r9,-47v-13,-1,-22,-12,-36,-8v-18,8,-12,44,-19,61","w":151},"\u00ba":{"d":"21,-132v5,-55,13,-114,87,-101v65,-2,33,94,14,123v-21,18,-106,25,-101,-22xm132,-63r-133,0r5,-30r133,0xm56,-140v-2,15,23,8,37,8v16,-10,11,-42,18,-61v0,-10,-17,-5,-27,-6v-30,-3,-20,42,-28,59","w":151},"\u00e6":{"d":"251,-11v-45,2,-110,32,-132,-7v-22,2,-40,20,-62,21v-36,2,-54,-16,-49,-50v8,-54,9,-130,79,-126v23,2,34,18,60,17v15,-20,49,-15,83,-16v31,0,50,14,50,43v0,60,-58,76,-121,75v-5,28,32,16,52,11v13,-3,29,-7,44,-7xm231,-110v9,-10,6,-26,-14,-22v-33,-5,-51,6,-50,39v23,-4,53,-2,64,-17xm70,-37v18,-5,27,-16,47,-18r12,-65v-14,-2,-26,-12,-39,-13v-42,-2,-28,59,-39,86v0,10,8,9,19,10","w":301,"k":{"\u00ff":2,"\u00e6":5,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"y":2,"w":2,"v":2,"a":5,"\u00fd":2}},"\u00f8":{"d":"14,-40v0,-59,7,-135,79,-132r32,0r13,-23r46,0r-20,32v26,21,6,69,3,103v-5,52,-41,69,-103,63r-13,23r-46,0r21,-34v-7,-7,-12,-18,-12,-32xm88,-37v46,8,35,-44,45,-75xm100,-132v-39,-7,-31,37,-40,66","w":188,"k":{"j":2,"b":4,"F":11}},"\u00bf":{"d":"131,-120r-48,0r10,-50r47,0xm-10,38v1,-62,28,-107,98,-93r-4,-48r46,0v6,31,20,63,7,94v-24,-2,-45,-7,-72,-8v-29,-1,-30,22,-32,48v-1,15,23,9,38,9v16,0,22,-1,28,-10r36,15v-15,33,-48,35,-96,35v-32,0,-49,-11,-49,-42","w":174},"\u00a1":{"d":"86,-121r-48,0r10,-50r47,0xm56,59r-55,0r41,-163r34,0","w":86},"\u00ac":{"d":"181,-71r-39,0r6,-33r-134,0r7,-40r173,0","w":200},"\u00ab":{"d":"128,-98r49,43r-21,34r-86,-78r114,-76r9,35xm57,-98r49,43r-21,34r-86,-78r114,-76r9,35","w":182},"\u00bb":{"d":"74,-21r-9,-36r65,-42r-49,-42r21,-34r86,77xm3,-21r-9,-36r65,-42r-50,-42r21,-34r87,77","w":182},"\u00c0":{"d":"111,-234r-63,-49r55,-13r46,55xm134,0r-10,-66r-68,0r-34,66r-51,0r127,-231r43,0r43,231r-50,0xm108,-168r-31,62r41,0","w":191,"k":{"\u00ff":10,"\u00b5":4,"\u00a5":25,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"y":10,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":11,"V":11,"T":11,"?":10,"\/":-19,"\u00fd":10,"\u00dd":25}},"\u00c3":{"d":"127,-285v10,20,29,15,41,-5r36,7v-18,28,-62,71,-96,32v-12,1,-19,11,-27,17r-36,-7v19,-20,42,-59,82,-44xm134,0r-10,-66r-68,0r-34,66r-51,0r127,-231r43,0r43,231r-50,0xm108,-168r-31,62r41,0","w":208,"k":{"\u00ff":10,"\u00b5":4,"\u00a5":25,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"y":10,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":11,"V":11,"T":11,"?":10,"\/":-19,"\u00fd":10,"\u00dd":25}},"\u00d5":{"d":"205,-283v-17,28,-63,71,-96,32v-12,1,-19,11,-27,17r-36,-7v16,-26,68,-72,93,-30v16,-1,18,-6,30,-19xm108,0v-59,2,-119,1,-99,-67v19,-65,3,-166,86,-166v48,0,105,-10,103,44v-22,70,2,186,-90,189xm63,-103v1,22,-27,63,10,63v28,0,50,5,56,-27r21,-116v-6,-19,-84,-18,-75,17v-8,41,-8,40,-12,63","w":213,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c5":7,"\u00c4":7,"X":4,"A":7,".":19}},"\u00f7":{"d":"133,-165r-48,0r10,-50r47,0xm184,-103r-173,0r7,-41r174,0xm108,-33r-47,0r9,-51r48,0","w":200},"\u00ff":{"d":"136,-202v-2,-28,48,-42,50,-7v2,30,-50,41,-50,7xm67,-202v-4,-29,48,-41,49,-7v4,31,-51,41,-49,7xm80,-38v18,-2,30,-15,48,-16r21,-117r44,0r-35,190v-8,74,-101,53,-158,37r6,-36v33,2,74,21,103,9v8,-11,8,-30,12,-45v-17,3,-33,18,-52,18v-89,0,-30,-115,-27,-173r43,0r-22,123v0,9,5,11,17,10","w":187,"k":{".":29,",":13}},"\u00a4":{"d":"32,-164v1,-77,90,-75,160,-56r-9,36v-31,0,-72,-16,-96,-1v-4,5,-6,14,-7,21r57,0r-7,41r-58,0r-2,14r57,0r-7,40r-57,0v-3,16,-10,35,15,32v26,-3,51,-8,79,-8r-4,36v-51,2,-139,38,-141,-31r3,-29r-20,0r7,-40r20,0r3,-14r-20,0r7,-41r20,0","w":184},"\u00b7":{"d":"69,-68r-47,0r9,-50r47,0","w":86},"\u00c2":{"d":"155,-234r-29,-23r-37,22r-39,-7r84,-68r59,69xm134,0r-10,-66r-68,0r-34,66r-51,0r127,-231r43,0r43,231r-50,0xm108,-168r-31,62r41,0","w":196,"k":{"\u00ff":10,"\u00b5":4,"\u00a5":25,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"y":10,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":11,"V":11,"T":11,"?":10,"\/":-19,"\u00fd":10,"\u00dd":25}},"\u00ca":{"d":"147,-234r-29,-23r-37,22r-39,-7r84,-68r59,69xm174,-191r-91,0r-9,48r78,0r-8,40r-77,0r-12,63r91,0r-7,40r-139,0r42,-231r139,0","w":174,"k":{"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c0":8,"\u00c6":8,"\u00c5":8,"\u00c4":8,"A":8}},"\u00c1":{"d":"132,-235r-39,-7r66,-54r53,14xm134,0r-10,-66r-68,0r-34,66r-51,0r127,-231r43,0r43,231r-50,0xm108,-168r-31,62r41,0","w":211,"k":{"\u00ff":10,"\u00b5":4,"\u00a5":25,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"y":10,"w":8,"v":5,"u":4,"Y":25,"X":2,"W":11,"V":11,"T":11,"?":10,"\/":-19,"\u00fd":10,"\u00dd":25}},"\u00cb":{"d":"128,-261v-3,-29,49,-40,49,-6v1,30,-48,41,-49,6xm58,-261v-3,-29,49,-40,49,-6v2,31,-49,40,-49,6xm174,-191r-91,0r-9,48r78,0r-8,40r-77,0r-12,63r91,0r-7,40r-139,0r42,-231r139,0","w":168,"k":{"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c0":8,"\u00c6":8,"\u00c5":8,"\u00c4":8,"A":8}},"\u00c8":{"d":"108,-234r-63,-49r55,-13r47,55xm174,-191r-91,0r-9,48r78,0r-8,40r-77,0r-12,63r91,0r-7,40r-139,0r42,-231r139,0","w":168,"k":{"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c0":8,"\u00c6":8,"\u00c5":8,"\u00c4":8,"A":8}},"\u00cd":{"d":"78,-235r-39,-7r66,-54r52,14xm53,0r-48,0r43,-231r47,0","w":89},"\u00ce":{"d":"0,-242r84,-68r59,69r-39,7r-28,-23r-37,22xm53,0r-48,0r43,-231r47,0","w":87},"\u00cf":{"d":"87,-261v-2,-27,48,-41,49,-6v3,32,-49,40,-49,6xm18,-261v-3,-29,50,-40,49,-6v-1,15,-12,28,-28,29v-12,0,-22,-10,-21,-23xm53,0r-48,0r43,-231r47,0","w":88},"\u00cc":{"d":"73,-234r-63,-49r54,-13r47,55xm53,0r-48,0r43,-231r47,0","w":88},"\u00d3":{"d":"127,-235r-38,-7r66,-54r52,14xm108,0v-59,2,-119,1,-99,-67v19,-65,3,-166,86,-166v48,0,105,-10,103,44v-22,70,2,186,-90,189xm63,-103v1,22,-27,63,10,63v28,0,50,5,56,-27r21,-116v-6,-19,-84,-18,-75,17v-8,41,-8,40,-12,63","w":199,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c5":7,"\u00c4":7,"X":4,"A":7,".":19}},"\u00d4":{"d":"156,-234r-29,-23r-36,22r-39,-7r84,-68r58,69xm108,0v-59,2,-119,1,-99,-67v19,-65,3,-166,86,-166v48,0,105,-10,103,44v-22,70,2,186,-90,189xm63,-103v1,22,-27,63,10,63v28,0,50,5,56,-27r21,-116v-6,-19,-84,-18,-75,17v-8,41,-8,40,-12,63","w":199,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c5":7,"\u00c4":7,"X":4,"A":7,".":19}},"\u00d2":{"d":"118,-234r-63,-49r54,-13r47,55xm108,0v-59,2,-119,1,-99,-67v19,-65,3,-166,86,-166v48,0,105,-10,103,44v-22,70,2,186,-90,189xm63,-103v1,22,-27,63,10,63v28,0,50,5,56,-27r21,-116v-6,-19,-84,-18,-75,17v-8,41,-8,40,-12,63","w":199,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c5":7,"\u00c4":7,"X":4,"A":7,".":19}},"\u00da":{"d":"131,-235r-40,-7r67,-54r52,14xm75,-37v18,0,36,-6,53,-8r35,-186r47,0r-43,231r-37,0r-4,-10v-46,12,-130,31,-116,-44r32,-177r47,0r-33,184v0,10,8,9,19,10","w":209},"\u00db":{"d":"158,-234r-29,-23r-36,22r-39,-7r84,-68r58,69xm75,-37v18,0,36,-6,53,-8r35,-186r47,0r-43,231r-37,0r-4,-10v-46,12,-130,31,-116,-44r32,-177r47,0r-33,184v0,10,8,9,19,10","w":209},"\u00d9":{"d":"99,-234r-63,-49r54,-13r47,55xm75,-37v18,0,36,-6,53,-8r35,-186r47,0r-43,231r-37,0r-4,-10v-46,12,-130,31,-116,-44r32,-177r47,0r-33,184v0,10,8,9,19,10","w":209},"\u00af":{"d":"144,-213r-133,0r7,-41r133,0","w":155},"\u00b8":{"d":"74,23r-28,39r-27,-10r13,-25r-6,0r7,-40r48,0","w":86},"\u00d0":{"d":"96,-220v50,-16,142,-27,119,52v-19,65,-2,168,-86,168r-117,0r24,-133r-23,0r7,-38r23,0r11,-60r38,0xm167,-169v12,-34,-29,-23,-57,-20v-8,1,-8,2,-16,3r-3,15r46,0r-7,38r-46,0r-17,93v32,-5,75,14,82,-27","w":212,"k":{"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00a5":11,"\u00c6":7,"\u00c5":7,"\u00c4":7,"Y":11,"W":7,"A":7,".":17,"\u00dd":11}},"\u00a0":{"w":180}}});
;

