/* Copyright (c) 2008 Kean Loong Tan http://www.gimiti.com/kltan
 * Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * jFlow
 * Version: 1.1 (May 22, 2008)
 * Requires: jQuery 1.2+
 */
(function($){$.fn.jFlow=function(options){var opts=$.extend({},$.fn.jFlow.defaults,options);var cur=0;var timer;var selected_class="jFlowSelected";var maxi=$(".jFlowControl").length;$(this).find(".jFlowControl").each(function(i){$(this).click(function(){dotimer();$(".jFlowControl").removeClass(selected_class);$(this).addClass(selected_class);var dur=Math.abs(cur-i);$(opts.slides).animate({marginLeft:"-"+(i*$(opts.slides).find(":first-child").width()+"px")},opts.duration*(dur));cur=i;});});$(opts.slides).before('<div id="jFlowSlide"></div>').appendTo("#jFlowSlide");$(opts.slides).find("div").each(function(){$(this).before('<div class="jFlowSlideContainer"></div>').appendTo($(this).prev());});$(".jFlowControl").eq(cur).addClass(selected_class);var resize=function(x){$("#jFlowSlide").css({position:"relative",width:opts.width,height:opts.height,overflow:"hidden"});$(opts.slides).css({position:"relative",width:$("#jFlowSlide").width()*$(".jFlowControl").length+"px",height:$("#jFlowSlide").height()+"px",overflow:"hidden"});$(opts.slides).children().css({position:"relative",width:$("#jFlowSlide").width()+"px",height:$("#jFlowSlide").height()+"px","float":"left"});$(opts.slides).css({marginLeft:"-"+(cur*$(opts.slides).find(":first-child").width()+"px")});}
resize();$(window).resize(function(){resize();});$(".jFlowPrev").click(function(){dotimer();doprev();});var doprev=function(x){if(cur>0)
cur--;else
cur=maxi-1;$(".jFlowControl").removeClass(selected_class);$(opts.slides).animate({marginLeft:"-"+(cur*$(opts.slides).find(":first-child").width()+"px")},opts.duration);$(".jFlowControl").eq(cur).addClass(selected_class);}
$(".jFlowNext").click(function(){donext();dotimer();});var donext=function(x){if(cur<maxi-1)
cur++;else
cur=0;$(".jFlowControl").removeClass(selected_class);$(opts.slides).animate({marginLeft:"-"+(cur*$(opts.slides).find(":first-child").width()+"px")},opts.duration);$(".jFlowControl").eq(cur).addClass(selected_class);}
var dotimer=function(x){if(timer!=null)
clearInterval(timer);timer=setInterval(function(){donext();},9000);}
dotimer();};$.fn.jFlow.defaults={easing:"swing",duration:400,width:"100%"};})(jQuery);
/**
 * --------------------------------------------------------------------
 * jQuery-Plugin "pngFix"
 * Version: 1.2, 09.03.2009
 * by Andreas Eberhard, andreas.eberhard@gmail.com
 *                      http://jquery.andreaseberhard.de/
 *
 * Copyright (c) 2007 Andreas Eberhard
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 *
 * Changelog:
 *    09.03.2009 Version 1.2
 *    - Update for jQuery 1.3.x, removed @ from selectors
 *    11.09.2007 Version 1.1
 *    - removed noConflict
 *    - added png-support for input type=image
 *    - 01.08.2007 CSS background-image support extension added by Scott Jehl, scott@filamentgroup.com, http://www.filamentgroup.com
 *    31.05.2007 initial Version 1.0
 * --------------------------------------------------------------------
 * @example $(function(){$(document).pngFix();});
 * @desc Fixes all PNG's in the document on document.ready
 *
 * jQuery(function(){jQuery(document).pngFix();});
 * @desc Fixes all PNG's in the document on document.ready when using noConflict
 *
 * @example $(function(){$('div.examples').pngFix();});
 * @desc Fixes all PNG's within div with class examples
 *
 * @example $(function(){$('div.examples').pngFix( { blankgif:'ext.gif' } );});
 * @desc Fixes all PNG's within div with class examples, provides blank gif for input with png
 * --------------------------------------------------------------------
 */
(function($){jQuery.fn.pngFix=function(settings){settings=jQuery.extend({blankgif:'blank.gif'},settings);var ie55=(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)==4&&navigator.appVersion.indexOf("MSIE 5.5")!=-1);var ie6=(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)==4&&navigator.appVersion.indexOf("MSIE 6.0")!=-1);if(jQuery.browser.msie&&(ie55||ie6)){jQuery(this).find("img[src$=.png]").each(function(){jQuery(this).attr('width',jQuery(this).width());jQuery(this).attr('height',jQuery(this).height());var prevStyle='';var strNewHTML='';var imgId=(jQuery(this).attr('id'))?'id="'+jQuery(this).attr('id')+'" ':'';var imgClass=(jQuery(this).attr('class'))?'class="'+jQuery(this).attr('class')+'" ':'';var imgTitle=(jQuery(this).attr('title'))?'title="'+jQuery(this).attr('title')+'" ':'';var imgAlt=(jQuery(this).attr('alt'))?'alt="'+jQuery(this).attr('alt')+'" ':'';var imgAlign=(jQuery(this).attr('align'))?'float:'+jQuery(this).attr('align')+';':'';var imgHand=(jQuery(this).parent().attr('href'))?'cursor:hand;':'';if(this.style.border){prevStyle+='border:'+this.style.border+';';this.style.border='';}
if(this.style.padding){prevStyle+='padding:'+this.style.padding+';';this.style.padding='';}
if(this.style.margin){prevStyle+='margin:'+this.style.margin+';';this.style.margin='';}
var imgStyle=(this.style.cssText);strNewHTML+='<span '+imgId+imgClass+imgTitle+imgAlt;strNewHTML+='style="position:relative;white-space:pre-line;display:inline-block;background:transparent;'+imgAlign+imgHand;strNewHTML+='width:'+jQuery(this).width()+'px;'+'height:'+jQuery(this).height()+'px;';strNewHTML+='filter:progid:DXImageTransform.Microsoft.AlphaImageLoader'+'(src=\''+jQuery(this).attr('src')+'\', sizingMethod=\'scale\');';strNewHTML+=imgStyle+'"></span>';if(prevStyle!=''){strNewHTML='<span style="position:relative;display:inline-block;'+prevStyle+imgHand+'width:'+jQuery(this).width()+'px;'+'height:'+jQuery(this).height()+'px;'+'">'+strNewHTML+'</span>';}
jQuery(this).hide();jQuery(this).after(strNewHTML);});jQuery(this).find("*").each(function(){var bgIMG=jQuery(this).css('background-image');if(bgIMG.indexOf(".png")!=-1){var iebg=bgIMG.split('url("')[1].split('")')[0];jQuery(this).css('background-image','none');jQuery(this).get(0).runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+iebg+"',sizingMethod='scale')";}});jQuery(this).find("input[src$=.png]").each(function(){var bgIMG=jQuery(this).attr('src');jQuery(this).get(0).runtimeStyle.filter='progid:DXImageTransform.Microsoft.AlphaImageLoader'+'(src=\''+bgIMG+'\', sizingMethod=\'scale\');';jQuery(this).attr('src',settings.blankgif)});}
return jQuery;};})(jQuery);
;(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"></span>'].join('')),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl();},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}},o.delay);},getMenu=function($menu){var menu=$menu.parents(['ul.',c.menuClass,':first'].join(''))[0];sf.op=sf.o[menu.serial];return menu;},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone());};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(' ')).filter('li:has(ul)').removeClass(o.pathClass);});sf.o[s]=sf.op=o;$('li:has(ul)',this)[($.fn.hoverIntent&&!o.disableHI)?'hoverIntent':'hover'](over,out).each(function(){if(o.autoArrows)addArrow($('>a:first-child',this));}).not('.'+c.bcClass).hideSuperfishUl();var $a=$('a',this);$a.each(function(i){var $li=$a.eq(i).parents('li');$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});});o.onInit.call(this);}).each(function(){var menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7))menuClasses.push(c.shadowClass);$(this).addClass(menuClasses.join(' '));});};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined)
this.toggleClass(sf.c.shadowClass+'-off');};sf.c={bcClass:'sf-breadcrumb',menuClass:'sf-js-enabled',anchorClass:'sf-with-ul',arrowClass:'sf-sub-indicator',shadowClass:'sf-shadow'};sf.defaults={hoverClass:'sfHover',pathClass:'overideThisToUse',pathLevels:1,delay:800,animation:{opacity:'show'},speed:'normal',autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:'';o.retainPath=false;var $ul=$(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass).find('>ul').hide().css('visibility','hidden');o.onHide.call($ul);return this;},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+'-off',$ul=this.addClass(o.hoverClass).find('>ul:hidden').css('visibility','visible');sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul);});return this;}});})(jQuery);
/* =========================================================

// jquery.innerfade.js

// Datum: 2008-02-14
// Firma: Medienfreunde Hofmann & Baldes GbR
// Author: Torsten Baldes
// Mail: t.baldes@medienfreunde.com
// Web: http://medienfreunde.com

// based on the work of Matt Oakes http://portfolio.gizone.co.uk/applications/slideshow/
// and Ralf S. Engelschall http://trainofthoughts.org/

 *
 *  <ul id="news"> 
 *      <li>content 1</li>
 *      <li>content 2</li>
 *      <li>content 3</li>
 *  </ul>
 *  
 *  $('#news').innerfade({ 
 *	  animationtype: Type of animation 'fade' or 'slide' (Default: 'fade'), 
 *	  speed: Fading-/Sliding-Speed in milliseconds or keywords (slow, normal or fast) (Default: 'normal'), 
 *	  timeout: Time between the fades in milliseconds (Default: '2000'), 
 *	  type: Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence'), 
 * 		containerheight: Height of the containing element in any css-height-value (Default: 'auto'),
 *	  runningclass: CSS-Class which the container getâ€™s applied (Default: 'innerfade'),
 *	  children: optional children selector (Default: null)
 *  }); 
 *

// ========================================================= */
(function($){$.fn.innerfade=function(options){return this.each(function(){$.innerfade(this,options);});};$.innerfade=function(container,options){var settings={'animationtype':'fade','speed':'normal','type':'sequence','timeout':2000,'containerheight':'auto','runningclass':'innerfade','children':null};if(options)
$.extend(settings,options);if(settings.children===null)
var elements=$(container).children();else
var elements=$(container).children(settings.children);if(elements.length>1){$(container).css('position','relative').css('height',settings.containerheight).addClass(settings.runningclass);for(var i=0;i<elements.length;i++){$(elements[i]).css('z-index',String(elements.length-i)).css('position','absolute').hide();};if(settings.type=="sequence"){setTimeout(function(){$.innerfade.next(elements,settings,1,0);},settings.timeout);$(elements[0]).show();}else if(settings.type=="random"){var last=Math.floor(Math.random()*(elements.length));setTimeout(function(){do{current=Math.floor(Math.random()*(elements.length));}while(last==current);$.innerfade.next(elements,settings,current,last);},settings.timeout);$(elements[last]).show();}else if(settings.type=='random_start'){settings.type='sequence';var current=Math.floor(Math.random()*(elements.length));setTimeout(function(){$.innerfade.next(elements,settings,(current+1)%elements.length,current);},settings.timeout);$(elements[current]).show();}else{alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');}}};$.innerfade.next=function(elements,settings,current,last){if(settings.animationtype=='slide'){$(elements[last]).slideUp(settings.speed);$(elements[current]).slideDown(settings.speed);}else if(settings.animationtype=='fade'){$(elements[last]).fadeOut(settings.speed);$(elements[current]).fadeIn(settings.speed,function(){removeFilter($(this)[0]);});}else
alert('Innerfade-animationtype must either be \'slide\' or \'fade\'');if(settings.type=="sequence"){if((current+1)<elements.length){current=current+1;last=current-1;}else{current=0;last=elements.length-1;}}else if(settings.type=="random"){last=current;while(current==last)
current=Math.floor(Math.random()*elements.length);}else
alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');setTimeout((function(){$.innerfade.next(elements,settings,current,last);}),settings.timeout);};})(jQuery);function removeFilter(element){if(element.style.removeAttribute){element.style.removeAttribute('filter');}}
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
(function($){var tmp,loading,overlay,wrap,outer,inner,close,nav_left,nav_right,selectedIndex=0,selectedOpts={},selectedArray=[],currentIndex=0,currentOpts={},currentArray=[],ajaxLoader=null,imgPreloader=new Image(),imgRegExp=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,swfRegExp=/[^\.]\.(swf)\s*$/i,loadingTimer,loadingFrame=1,start_pos,final_pos,busy=false,shadow=20,fx=$.extend($('<div/>')[0],{prop:0}),titleh=0,isIE6=!$.support.opacity&&!window.XMLHttpRequest,fancybox_abort=function(){loading.hide();imgPreloader.onerror=imgPreloader.onload=null;if(ajaxLoader){ajaxLoader.abort();}
tmp.empty();},fancybox_error=function(){$.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>',{'scrolling':'no','padding':20,'transitionIn':'none','transitionOut':'none'});},fancybox_get_viewport=function(){return[$(window).width(),$(window).height(),$(document).scrollLeft(),$(document).scrollTop()];},fancybox_get_zoom_to=function(){var view=fancybox_get_viewport(),to={},margin=currentOpts.margin,resize=currentOpts.autoScale,horizontal_space=(shadow+margin)*2,vertical_space=(shadow+margin)*2,double_padding=(currentOpts.padding*2),ratio;if(currentOpts.width.toString().indexOf('%')>-1){to.width=((view[0]*parseFloat(currentOpts.width))/100)-(shadow*2);resize=false;}else{to.width=currentOpts.width+double_padding;}
if(currentOpts.height.toString().indexOf('%')>-1){to.height=((view[1]*parseFloat(currentOpts.height))/100)-(shadow*2);resize=false;}else{to.height=currentOpts.height+double_padding;}
if(resize&&(to.width>(view[0]-horizontal_space)||to.height>(view[1]-vertical_space))){if(selectedOpts.type=='image'||selectedOpts.type=='swf'){horizontal_space+=double_padding;vertical_space+=double_padding;ratio=Math.min(Math.min(view[0]-horizontal_space,currentOpts.width)/currentOpts.width,Math.min(view[1]-vertical_space,currentOpts.height)/currentOpts.height);to.width=Math.round(ratio*(to.width-double_padding))+double_padding;to.height=Math.round(ratio*(to.height-double_padding))+double_padding;}else{to.width=Math.min(to.width,(view[0]-horizontal_space));to.height=Math.min(to.height,(view[1]-vertical_space));}}
to.top=view[3]+((view[1]-(to.height+(shadow*2)))*0.5);to.left=view[2]+((view[0]-(to.width+(shadow*2)))*0.5);if(currentOpts.autoScale===false){to.top=Math.max(view[3]+margin,to.top);to.left=Math.max(view[2]+margin,to.left);}
return to;},fancybox_format_title=function(title){if(title&&title.length){switch(currentOpts.titlePosition){case'inside':return title;case'over':return'<span id="fancybox-title-over">'+title+'</span>';default:return'<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">'+title+'</span><span id="fancybox-title-right"></span></span>';}}
return false;},fancybox_process_title=function(){var title=currentOpts.title,width=final_pos.width-(currentOpts.padding*2),titlec='fancybox-title-'+currentOpts.titlePosition;$('#fancybox-title').remove();titleh=0;if(currentOpts.titleShow===false){return;}
title=$.isFunction(currentOpts.titleFormat)?currentOpts.titleFormat(title,currentArray,currentIndex,currentOpts):fancybox_format_title(title);if(!title||title===''){return;}
$('<div id="fancybox-title" class="'+titlec+'" />').css({'width':width,'paddingLeft':currentOpts.padding,'paddingRight':currentOpts.padding}).html(title).appendTo('body');switch(currentOpts.titlePosition){case'inside':titleh=$("#fancybox-title").outerHeight(true)-currentOpts.padding;final_pos.height+=titleh;break;case'over':$('#fancybox-title').css('bottom',currentOpts.padding);break;default:$('#fancybox-title').css('bottom',$("#fancybox-title").outerHeight(true)*-1);break;}
$('#fancybox-title').appendTo(outer).hide();},fancybox_set_navigation=function(){$(document).unbind('keydown.fb').bind('keydown.fb',function(e){if(e.keyCode==27&&currentOpts.enableEscapeButton){e.preventDefault();$.fancybox.close();}else if(e.keyCode==37){e.preventDefault();$.fancybox.prev();}else if(e.keyCode==39){e.preventDefault();$.fancybox.next();}});if($.fn.mousewheel){wrap.unbind('mousewheel.fb');if(currentArray.length>1){wrap.bind('mousewheel.fb',function(e,delta){e.preventDefault();if(busy||delta===0){return;}
if(delta>0){$.fancybox.prev();}else{$.fancybox.next();}});}}
if(!currentOpts.showNavArrows){return;}
if((currentOpts.cyclic&&currentArray.length>1)||currentIndex!==0){nav_left.show();}
if((currentOpts.cyclic&&currentArray.length>1)||currentIndex!=(currentArray.length-1)){nav_right.show();}},fancybox_preload_images=function(){var href,objNext;if((currentArray.length-1)>currentIndex){href=currentArray[currentIndex+1].href;if(typeof href!=='undefined'&&href.match(imgRegExp)){objNext=new Image();objNext.src=href;}}
if(currentIndex>0){href=currentArray[currentIndex-1].href;if(typeof href!=='undefined'&&href.match(imgRegExp)){objNext=new Image();objNext.src=href;}}},_finish=function(){inner.css('overflow',(currentOpts.scrolling=='auto'?(currentOpts.type=='image'||currentOpts.type=='iframe'||currentOpts.type=='swf'?'hidden':'auto'):(currentOpts.scrolling=='yes'?'auto':'visible')));if(!$.support.opacity){inner.get(0).style.removeAttribute('filter');wrap.get(0).style.removeAttribute('filter');}
$('#fancybox-title').show();if(currentOpts.hideOnContentClick){inner.one('click',$.fancybox.close);}
if(currentOpts.hideOnOverlayClick){overlay.one('click',$.fancybox.close);}
if(currentOpts.showCloseButton){close.show();}
fancybox_set_navigation();$(window).bind("resize.fb",$.fancybox.center);if(currentOpts.centerOnScroll){$(window).bind("scroll.fb",$.fancybox.center);}else{$(window).unbind("scroll.fb");}
if($.isFunction(currentOpts.onComplete)){currentOpts.onComplete(currentArray,currentIndex,currentOpts);}
busy=false;fancybox_preload_images();},fancybox_draw=function(pos){var width=Math.round(start_pos.width+(final_pos.width-start_pos.width)*pos),height=Math.round(start_pos.height+(final_pos.height-start_pos.height)*pos),top=Math.round(start_pos.top+(final_pos.top-start_pos.top)*pos),left=Math.round(start_pos.left+(final_pos.left-start_pos.left)*pos);wrap.css({'width':width+'px','height':height+'px','top':top+'px','left':left+'px'});width=Math.max(width-currentOpts.padding*2,0);height=Math.max(height-(currentOpts.padding*2+(titleh*pos)),0);inner.css({'width':width+'px','height':height+'px'});if(typeof final_pos.opacity!=='undefined'){wrap.css('opacity',(pos<0.5?0.5:pos));}},fancybox_get_obj_pos=function(obj){var pos=obj.offset();pos.top+=parseFloat(obj.css('paddingTop'))||0;pos.left+=parseFloat(obj.css('paddingLeft'))||0;pos.top+=parseFloat(obj.css('border-top-width'))||0;pos.left+=parseFloat(obj.css('border-left-width'))||0;pos.width=obj.width();pos.height=obj.height();return pos;},fancybox_get_zoom_from=function(){var orig=selectedOpts.orig?$(selectedOpts.orig):false,from={},pos,view;if(orig&&orig.length){pos=fancybox_get_obj_pos(orig);from={width:(pos.width+(currentOpts.padding*2)),height:(pos.height+(currentOpts.padding*2)),top:(pos.top-currentOpts.padding-shadow),left:(pos.left-currentOpts.padding-shadow)};}else{view=fancybox_get_viewport();from={width:1,height:1,top:view[3]+view[1]*0.5,left:view[2]+view[0]*0.5};}
return from;},fancybox_show=function(){loading.hide();if(wrap.is(":visible")&&$.isFunction(currentOpts.onCleanup)){if(currentOpts.onCleanup(currentArray,currentIndex,currentOpts)===false){$.event.trigger('fancybox-cancel');busy=false;return;}}
currentArray=selectedArray;currentIndex=selectedIndex;currentOpts=selectedOpts;inner.get(0).scrollTop=0;inner.get(0).scrollLeft=0;if(currentOpts.overlayShow){if(isIE6){$('select:not(#fancybox-tmp select)').filter(function(){return this.style.visibility!=='hidden';}).css({'visibility':'hidden'}).one('fancybox-cleanup',function(){this.style.visibility='inherit';});}
overlay.css({'background-color':currentOpts.overlayColor,'opacity':currentOpts.overlayOpacity}).unbind().show();}
final_pos=fancybox_get_zoom_to();fancybox_process_title();if(wrap.is(":visible")){$(close.add(nav_left).add(nav_right)).hide();var pos=wrap.position(),equal;start_pos={top:pos.top,left:pos.left,width:wrap.width(),height:wrap.height()};equal=(start_pos.width==final_pos.width&&start_pos.height==final_pos.height);inner.fadeOut(currentOpts.changeFade,function(){var finish_resizing=function(){inner.html(tmp.contents()).fadeIn(currentOpts.changeFade,_finish);};$.event.trigger('fancybox-change');inner.empty().css('overflow','hidden');if(equal){inner.css({top:currentOpts.padding,left:currentOpts.padding,width:Math.max(final_pos.width-(currentOpts.padding*2),1),height:Math.max(final_pos.height-(currentOpts.padding*2)-titleh,1)});finish_resizing();}else{inner.css({top:currentOpts.padding,left:currentOpts.padding,width:Math.max(start_pos.width-(currentOpts.padding*2),1),height:Math.max(start_pos.height-(currentOpts.padding*2),1)});fx.prop=0;$(fx).animate({prop:1},{duration:currentOpts.changeSpeed,easing:currentOpts.easingChange,step:fancybox_draw,complete:finish_resizing});}});return;}
wrap.css('opacity',1);if(currentOpts.transitionIn=='elastic'){start_pos=fancybox_get_zoom_from();inner.css({top:currentOpts.padding,left:currentOpts.padding,width:Math.max(start_pos.width-(currentOpts.padding*2),1),height:Math.max(start_pos.height-(currentOpts.padding*2),1)}).html(tmp.contents());wrap.css(start_pos).show();if(currentOpts.opacity){final_pos.opacity=0;}
fx.prop=0;$(fx).animate({prop:1},{duration:currentOpts.speedIn,easing:currentOpts.easingIn,step:fancybox_draw,complete:_finish});}else{inner.css({top:currentOpts.padding,left:currentOpts.padding,width:Math.max(final_pos.width-(currentOpts.padding*2),1),height:Math.max(final_pos.height-(currentOpts.padding*2)-titleh,1)}).html(tmp.contents());wrap.css(final_pos).fadeIn(currentOpts.transitionIn=='none'?0:currentOpts.speedIn,_finish);}},fancybox_process_inline=function(){tmp.width(selectedOpts.width);tmp.height(selectedOpts.height);if(selectedOpts.width=='auto'){selectedOpts.width=tmp.width();}
if(selectedOpts.height=='auto'){selectedOpts.height=tmp.height();}
fancybox_show();},fancybox_process_image=function(){busy=true;selectedOpts.width=imgPreloader.width;selectedOpts.height=imgPreloader.height;$("<img />").attr({'id':'fancybox-img','src':imgPreloader.src,'alt':selectedOpts.title}).appendTo(tmp);fancybox_show();},fancybox_start=function(){fancybox_abort();var obj=selectedArray[selectedIndex],href,type,title,str,emb,selector,data;selectedOpts=$.extend({},$.fn.fancybox.defaults,(typeof $(obj).data('fancybox')=='undefined'?selectedOpts:$(obj).data('fancybox')));title=obj.title||$(obj).title||selectedOpts.title||'';if(obj.nodeName&&!selectedOpts.orig){selectedOpts.orig=$(obj).children("img:first").length?$(obj).children("img:first"):$(obj);}
if(title===''&&selectedOpts.orig){title=selectedOpts.orig.attr('alt');}
if(obj.nodeName&&(/^(?:javascript|#)/i).test(obj.href)){href=selectedOpts.href||null;}else{href=selectedOpts.href||obj.href||null;}
if(selectedOpts.type){type=selectedOpts.type;if(!href){href=selectedOpts.content;}}else if(selectedOpts.content){type='html';}else if(href){if(href.match(imgRegExp)){type='image';}else if(href.match(swfRegExp)){type='swf';}else if($(obj).hasClass("iframe")){type='iframe';}else if(href.match(/#/)){obj=href.substr(href.indexOf("#"));type=$(obj).length>0?'inline':'ajax';}else{type='ajax';}}else{type='inline';}
selectedOpts.type=type;selectedOpts.href=href;selectedOpts.title=title;if(selectedOpts.autoDimensions&&selectedOpts.type!=='iframe'&&selectedOpts.type!=='swf'){selectedOpts.width='auto';selectedOpts.height='auto';}
if(selectedOpts.modal){selectedOpts.overlayShow=true;selectedOpts.hideOnOverlayClick=false;selectedOpts.hideOnContentClick=false;selectedOpts.enableEscapeButton=false;selectedOpts.showCloseButton=false;}
if($.isFunction(selectedOpts.onStart)){if(selectedOpts.onStart(selectedArray,selectedIndex,selectedOpts)===false){busy=false;return;}}
tmp.css('padding',(shadow+selectedOpts.padding+selectedOpts.margin));$('.fancybox-inline-tmp').unbind('fancybox-cancel').bind('fancybox-change',function(){$(this).replaceWith(inner.children());});switch(type){case'html':tmp.html(selectedOpts.content);fancybox_process_inline();break;case'inline':$('<div class="fancybox-inline-tmp" />').hide().insertBefore($(obj)).bind('fancybox-cleanup',function(){$(this).replaceWith(inner.children());}).bind('fancybox-cancel',function(){$(this).replaceWith(tmp.children());});$(obj).appendTo(tmp);fancybox_process_inline();break;case'image':busy=false;$.fancybox.showActivity();imgPreloader=new Image();imgPreloader.onerror=function(){fancybox_error();};imgPreloader.onload=function(){imgPreloader.onerror=null;imgPreloader.onload=null;fancybox_process_image();};imgPreloader.src=href;break;case'swf':str='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+selectedOpts.width+'" height="'+selectedOpts.height+'"><param name="movie" value="'+href+'"></param>';emb='';$.each(selectedOpts.swf,function(name,val){str+='<param name="'+name+'" value="'+val+'"></param>';emb+=' '+name+'="'+val+'"';});str+='<embed src="'+href+'" type="application/x-shockwave-flash" width="'+selectedOpts.width+'" height="'+selectedOpts.height+'"'+emb+'></embed></object>';tmp.html(str);fancybox_process_inline();break;case'ajax':selector=href.split('#',2);data=selectedOpts.ajax.data||{};if(selector.length>1){href=selector[0];if(typeof data=="string"){data+='&selector='+selector[1];}else{data.selector=selector[1];}}
busy=false;$.fancybox.showActivity();ajaxLoader=$.ajax($.extend(selectedOpts.ajax,{url:href,data:data,error:fancybox_error,success:function(data,textStatus,XMLHttpRequest){if(ajaxLoader.status==200){tmp.html(data);fancybox_process_inline();}}}));break;case'iframe':$('<iframe id="fancybox-frame" name="fancybox-frame'+new Date().getTime()+'" frameborder="0" hspace="0" scrolling="'+selectedOpts.scrolling+'" src="'+selectedOpts.href+'"></iframe>').appendTo(tmp);fancybox_show();break;}},fancybox_animate_loading=function(){if(!loading.is(':visible')){clearInterval(loadingTimer);return;}
$('div',loading).css('top',(loadingFrame*-40)+'px');loadingFrame=(loadingFrame+1)%12;},fancybox_init=function(){if($("#fancybox-wrap").length){return;}
$('body').append(tmp=$('<div id="fancybox-tmp"></div>'),loading=$('<div id="fancybox-loading"><div></div></div>'),overlay=$('<div id="fancybox-overlay"></div>'),wrap=$('<div id="fancybox-wrap"></div>'));if(!$.support.opacity){wrap.addClass('fancybox-ie');loading.addClass('fancybox-ie');}
outer=$('<div id="fancybox-outer"></div>').append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>').appendTo(wrap);outer.append(inner=$('<div id="fancybox-inner"></div>'),close=$('<a id="fancybox-close"></a>'),nav_left=$('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),nav_right=$('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));close.click($.fancybox.close);loading.click($.fancybox.cancel);nav_left.click(function(e){e.preventDefault();$.fancybox.prev();});nav_right.click(function(e){e.preventDefault();$.fancybox.next();});if(isIE6){overlay.get(0).style.setExpression('height',"document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");loading.get(0).style.setExpression('top',"(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");outer.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>');}};$.fn.fancybox=function(options){$(this).data('fancybox',$.extend({},options,($.metadata?$(this).metadata():{}))).unbind('click.fb').bind('click.fb',function(e){e.preventDefault();if(busy){return;}
busy=true;$(this).blur();selectedArray=[];selectedIndex=0;var rel=$(this).attr('rel')||'';if(!rel||rel==''||rel==='nofollow'){selectedArray.push(this);}else{selectedArray=$("a[rel="+rel+"], area[rel="+rel+"]");selectedIndex=selectedArray.index(this);}
fancybox_start();return false;});return this;};$.fancybox=function(obj){if(busy){return;}
busy=true;var opts=typeof arguments[1]!=='undefined'?arguments[1]:{};selectedArray=[];selectedIndex=opts.index||0;if($.isArray(obj)){for(var i=0,j=obj.length;i<j;i++){if(typeof obj[i]=='object'){$(obj[i]).data('fancybox',$.extend({},opts,obj[i]));}else{obj[i]=$({}).data('fancybox',$.extend({content:obj[i]},opts));}}
selectedArray=jQuery.merge(selectedArray,obj);}else{if(typeof obj=='object'){$(obj).data('fancybox',$.extend({},opts,obj));}else{obj=$({}).data('fancybox',$.extend({content:obj},opts));}
selectedArray.push(obj);}
if(selectedIndex>selectedArray.length||selectedIndex<0){selectedIndex=0;}
fancybox_start();};$.fancybox.showActivity=function(){clearInterval(loadingTimer);loading.show();loadingTimer=setInterval(fancybox_animate_loading,66);};$.fancybox.hideActivity=function(){loading.hide();};$.fancybox.next=function(){return $.fancybox.pos(currentIndex+1);};$.fancybox.prev=function(){return $.fancybox.pos(currentIndex-1);};$.fancybox.pos=function(pos){if(busy){return;}
pos=parseInt(pos,10);if(pos>-1&&currentArray.length>pos){selectedIndex=pos;fancybox_start();}
if(currentOpts.cyclic&&currentArray.length>1&&pos<0){selectedIndex=currentArray.length-1;fancybox_start();}
if(currentOpts.cyclic&&currentArray.length>1&&pos>=currentArray.length){selectedIndex=0;fancybox_start();}
return;};$.fancybox.cancel=function(){if(busy){return;}
busy=true;$.event.trigger('fancybox-cancel');fancybox_abort();if(selectedOpts&&$.isFunction(selectedOpts.onCancel)){selectedOpts.onCancel(selectedArray,selectedIndex,selectedOpts);}
busy=false;};$.fancybox.close=function(){if(busy||wrap.is(':hidden')){return;}
busy=true;if(currentOpts&&$.isFunction(currentOpts.onCleanup)){if(currentOpts.onCleanup(currentArray,currentIndex,currentOpts)===false){busy=false;return;}}
fancybox_abort();$(close.add(nav_left).add(nav_right)).hide();$('#fancybox-title').remove();wrap.add(inner).add(overlay).unbind();$(window).unbind("resize.fb scroll.fb");$(document).unbind('keydown.fb');function _cleanup(){overlay.fadeOut('fast');wrap.hide();$.event.trigger('fancybox-cleanup');inner.empty();if($.isFunction(currentOpts.onClosed)){currentOpts.onClosed(currentArray,currentIndex,currentOpts);}
currentArray=selectedOpts=[];currentIndex=selectedIndex=0;currentOpts=selectedOpts={};busy=false;}
inner.css('overflow','hidden');if(currentOpts.transitionOut=='elastic'){start_pos=fancybox_get_zoom_from();var pos=wrap.position();final_pos={top:pos.top,left:pos.left,width:wrap.width(),height:wrap.height()};if(currentOpts.opacity){final_pos.opacity=1;}
fx.prop=1;$(fx).animate({prop:0},{duration:currentOpts.speedOut,easing:currentOpts.easingOut,step:fancybox_draw,complete:_cleanup});}else{wrap.fadeOut(currentOpts.transitionOut=='none'?0:currentOpts.speedOut,_cleanup);}};$.fancybox.resize=function(){var c,h;if(busy||wrap.is(':hidden')){return;}
busy=true;c=inner.wrapInner("<div style='overflow:auto'></div>").children();h=c.height();wrap.css({height:h+(currentOpts.padding*2)+titleh});inner.css({height:h});c.replaceWith(c.children());$.fancybox.center();};$.fancybox.center=function(){busy=true;var view=fancybox_get_viewport(),margin=currentOpts.margin,to={};to.top=view[3]+((view[1]-((wrap.height()-titleh)+(shadow*2)))*0.5);to.left=view[2]+((view[0]-(wrap.width()+(shadow*2)))*0.5);to.top=Math.max(view[3]+margin,to.top);to.left=Math.max(view[2]+margin,to.left);wrap.css(to);busy=false;};$.fn.fancybox.defaults={padding:10,margin:20,opacity:false,modal:false,cyclic:false,scrolling:'auto',width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:'transparent'},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.3,overlayColor:'#666',titleShow:true,titlePosition:'outside',titleFormat:null,transitionIn:'fade',transitionOut:'fade',speedIn:300,speedOut:300,changeSpeed:300,changeFade:'fast',easingIn:'swing',easingOut:'swing',showCloseButton:true,showNavArrows:true,enableEscapeButton:true,onStart:null,onCancel:null,onComplete:null,onCleanup:null,onClosed:null};$(document).ready(function(){fancybox_init();});})(jQuery);

$(document).ready(function(){$('#divStarRating').ratings(5).bind('ratingchanged',function(event,data){$('#rating').attr('value',data.rating);});$('#addReviewLnk').click(function(){$('#reviewDiv').slideToggle('slow');});});jQuery.fn.ratings=function(stars,initialRating){var elements=this;return this.each(function(){if(!initialRating)
initialRating=0;var containerElement=this;var container=jQuery(this);var starsCollection=Array();containerElement.rating=initialRating;container.css('overflow','auto');for(var starIdx=0;starIdx<stars;starIdx++){var starElement=document.createElement('div');var star=jQuery(starElement);starElement.rating=starIdx+1;star.addClass('jquery-ratings-star');if(starIdx<initialRating){star.addClass('jquery-ratings-full');}
container.append(star);starsCollection.push(star);star.click(function(){elements.triggerHandler("ratingchanged",{rating:this.rating});containerElement.rating=this.rating;});star.mouseenter(function(){for(var index=0;index<this.rating;index++){starsCollection[index].addClass('jquery-ratings-full');}
for(var index=this.rating;index<stars;index++){starsCollection[index].removeClass('jquery-ratings-full');}});container.mouseleave(function(){for(var index=0;index<containerElement.rating;index++){starsCollection[index].addClass('jquery-ratings-full');}
for(var index=containerElement.rating;index<stars;index++){starsCollection[index].removeClass('jquery-ratings-full');}});}});};
/*
 *
 * Copyright (c) 2006-2010 Sam Collett (http://www.texotela.co.uk)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 * 
 * Version 1.1.1
 * Demo: http://www.texotela.co.uk/code/jquery/numeric/
 *
 */
(function($){$.fn.numeric=function(decimal,callback)
{decimal=decimal||".";callback=typeof callback=="function"?callback:function(){};this.keypress(function(e)
{var key=e.charCode?e.charCode:e.keyCode?e.keyCode:0;if(key==13&&this.nodeName.toLowerCase()=="input")
{return true;}
else if(key==13)
{return false;}
var allow=false;if((e.ctrlKey&&key==97)||(e.ctrlKey&&key==65))return true;if((e.ctrlKey&&key==120)||(e.ctrlKey&&key==88))return true;if((e.ctrlKey&&key==99)||(e.ctrlKey&&key==67))return true;if((e.ctrlKey&&key==122)||(e.ctrlKey&&key==90))return true;if((e.ctrlKey&&key==118)||(e.ctrlKey&&key==86)||(e.shiftKey&&key==45))return true;if(key<48||key>57)
{if(key==45&&this.value.length==0)return true;if(key==decimal.charCodeAt(0)&&this.value.indexOf(decimal)!=-1)
{allow=false;}
if(key!=8&&key!=9&&key!=13&&key!=35&&key!=36&&key!=37&&key!=39&&key!=46)
{allow=false;}
else
{if(typeof e.charCode!="undefined")
{if(e.keyCode==e.which&&e.which!=0)
{allow=true;}
else if(e.keyCode!=0&&e.charCode==0&&e.which==0)
{allow=true;}}}
if(key==decimal.charCodeAt(0))
{if(!this.containsDecimal)
{allow=true;this.containsDecimal=true;}
else
{allow=false;}}}
else
{allow=true;}
return allow;}).blur(function()
{var val=$(this).val();if(val!="")
{var re=new RegExp("^\\d+$|\\d*"+decimal+"\\d+");if(!re.exec(val))
{callback.apply(this);}}});return this;};})(jQuery);

ï»¿;(function($){if(/1\.(0|1|2)\.(0|1|2)/.test($.fn.jquery)||/^1.1/.test($.fn.jquery)){alert('blockUI requires jQuery v1.2.3 or later!  You are using v'+$.fn.jquery);return;}
$.fn._fadeIn=$.fn.fadeIn;var noOp=function(){};var mode=document.documentMode||0;var setExpr=$.browser.msie&&(($.browser.version<8&&!mode)||mode<8);var ie6=$.browser.msie&&/MSIE 6.0/.test(navigator.userAgent)&&!mode;$.blockUI=function(opts){install(window,opts);};$.unblockUI=function(opts){remove(window,opts);};$.growlUI=function(title,message,timeout,onClose){var $m=$('<div class="growlUI"></div>');if(title)$m.append('<h1>'+title+'</h1>');if(message)$m.append('<h2>'+message+'</h2>');if(timeout==undefined)timeout=3000;$.blockUI({message:$m,fadeIn:700,fadeOut:1000,centerY:false,timeout:timeout,showOverlay:false,onUnblock:onClose,css:$.blockUI.defaults.growlCSS});};$.fn.block=function(opts){return this.unblock({fadeOut:0}).each(function(){if($.css(this,'position')=='static')
this.style.position='relative';if($.browser.msie)
this.style.zoom=1;install(this,opts);});};$.fn.unblock=function(opts){return this.each(function(){remove(this,opts);});};$.blockUI.version=2.33;$.blockUI.defaults={message:'<h1>Please wait...</h1>',title:null,draggable:true,theme:false,css:{padding:0,margin:0,width:'30%',top:'40%',left:'35%',textAlign:'center',color:'#000',border:'3px solid #aaa',backgroundColor:'#fff',cursor:'wait'},themedCSS:{width:'30%',top:'40%',left:'35%'},overlayCSS:{backgroundColor:'#000',opacity:0.6,cursor:'wait'},growlCSS:{width:'350px',top:'10px',left:'',right:'10px',border:'none',padding:'5px',opacity:0.6,cursor:'default',color:'#fff',backgroundColor:'#000','-webkit-border-radius':'10px','-moz-border-radius':'10px','border-radius':'10px'},iframeSrc:/^https/i.test(window.location.href||'')?'javascript:false':'about:blank',forceIframe:false,baseZ:1000,centerX:true,centerY:true,allowBodyStretch:true,bindEvents:true,constrainTabKey:true,fadeIn:200,fadeOut:400,timeout:0,showOverlay:true,focusInput:true,applyPlatformOpacityRules:true,onBlock:null,onUnblock:null,quirksmodeOffsetHack:4};var pageBlock=null;var pageBlockEls=[];function install(el,opts){var full=(el==window);var msg=opts&&opts.message!==undefined?opts.message:undefined;opts=$.extend({},$.blockUI.defaults,opts||{});opts.overlayCSS=$.extend({},$.blockUI.defaults.overlayCSS,opts.overlayCSS||{});var css=$.extend({},$.blockUI.defaults.css,opts.css||{});var themedCSS=$.extend({},$.blockUI.defaults.themedCSS,opts.themedCSS||{});msg=msg===undefined?opts.message:msg;if(full&&pageBlock)
remove(window,{fadeOut:0});if(msg&&typeof msg!='string'&&(msg.parentNode||msg.jquery)){var node=msg.jquery?msg[0]:msg;var data={};$(el).data('blockUI.history',data);data.el=node;data.parent=node.parentNode;data.display=node.style.display;data.position=node.style.position;if(data.parent)
data.parent.removeChild(node);}
var z=opts.baseZ;var lyr1=($.browser.msie||opts.forceIframe)?$('<iframe class="blockUI" style="z-index:'+(z++)+';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0" src="'+opts.iframeSrc+'"></iframe>'):$('<div class="blockUI" style="display:none"></div>');var lyr2=$('<div class="blockUI blockOverlay" style="z-index:'+(z++)+';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0"></div>');var lyr3,s;if(opts.theme&&full){s='<div class="blockUI blockMsg blockPage ui-dialog ui-widget ui-corner-all" style="z-index:'+z+';display:none;position:fixed">'+'<div class="ui-widget-header ui-dialog-titlebar blockTitle">'+(opts.title||'&nbsp;')+'</div>'+'<div class="ui-widget-content ui-dialog-content"></div>'+'</div>';}
else if(opts.theme){s='<div class="blockUI blockMsg blockElement ui-dialog ui-widget ui-corner-all" style="z-index:'+z+';display:none;position:absolute">'+'<div class="ui-widget-header ui-dialog-titlebar blockTitle">'+(opts.title||'&nbsp;')+'</div>'+'<div class="ui-widget-content ui-dialog-content"></div>'+'</div>';}
else if(full){s='<div class="blockUI blockMsg blockPage" style="z-index:'+z+';display:none;position:fixed"></div>';}
else{s='<div class="blockUI blockMsg blockElement" style="z-index:'+z+';display:none;position:absolute"></div>';}
lyr3=$(s);if(msg){if(opts.theme){lyr3.css(themedCSS);lyr3.addClass('ui-widget-content');}
else
lyr3.css(css);}
if(!opts.applyPlatformOpacityRules||!($.browser.mozilla&&/Linux/.test(navigator.platform)))
lyr2.css(opts.overlayCSS);lyr2.css('position',full?'fixed':'absolute');if($.browser.msie||opts.forceIframe)
lyr1.css('opacity',0.0);var layers=[lyr1,lyr2,lyr3],$par=full?$('body'):$(el);$.each(layers,function(){this.appendTo($par);});if(opts.theme&&opts.draggable&&$.fn.draggable){lyr3.draggable({handle:'.ui-dialog-titlebar',cancel:'li'});}
var expr=setExpr&&(!$.boxModel||$('object,embed',full?null:el).length>0);if(ie6||expr){if(full&&opts.allowBodyStretch&&$.boxModel)
$('html,body').css('height','100%');if((ie6||!$.boxModel)&&!full){var t=sz(el,'borderTopWidth'),l=sz(el,'borderLeftWidth');var fixT=t?'(0 - '+t+')':0;var fixL=l?'(0 - '+l+')':0;}
$.each([lyr1,lyr2,lyr3],function(i,o){var s=o[0].style;s.position='absolute';if(i<2){full?s.setExpression('height','Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.boxModel?0:'+opts.quirksmodeOffsetHack+') + "px"'):s.setExpression('height','this.parentNode.offsetHeight + "px"');full?s.setExpression('width','jQuery.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"'):s.setExpression('width','this.parentNode.offsetWidth + "px"');if(fixL)s.setExpression('left',fixL);if(fixT)s.setExpression('top',fixT);}
else if(opts.centerY){if(full)s.setExpression('top','(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"');s.marginTop=0;}
else if(!opts.centerY&&full){var top=(opts.css&&opts.css.top)?parseInt(opts.css.top):0;var expression='((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + '+top+') + "px"';s.setExpression('top',expression);}});}
if(msg){if(opts.theme)
lyr3.find('.ui-widget-content').append(msg);else
lyr3.append(msg);if(msg.jquery||msg.nodeType)
$(msg).show();}
if(($.browser.msie||opts.forceIframe)&&opts.showOverlay)
lyr1.show();if(opts.fadeIn){var cb=opts.onBlock?opts.onBlock:noOp;var cb1=(opts.showOverlay&&!msg)?cb:noOp;var cb2=msg?cb:noOp;if(opts.showOverlay)
lyr2._fadeIn(opts.fadeIn,cb1);if(msg)
lyr3._fadeIn(opts.fadeIn,cb2);}
else{if(opts.showOverlay)
lyr2.show();if(msg)
lyr3.show();if(opts.onBlock)
opts.onBlock();}
bind(1,el,opts);if(full){pageBlock=lyr3[0];pageBlockEls=$(':input:enabled:visible',pageBlock);if(opts.focusInput)
setTimeout(focus,20);}
else
center(lyr3[0],opts.centerX,opts.centerY);if(opts.timeout){var to=setTimeout(function(){full?$.unblockUI(opts):$(el).unblock(opts);},opts.timeout);$(el).data('blockUI.timeout',to);}};function remove(el,opts){var full=(el==window);var $el=$(el);var data=$el.data('blockUI.history');var to=$el.data('blockUI.timeout');if(to){clearTimeout(to);$el.removeData('blockUI.timeout');}
opts=$.extend({},$.blockUI.defaults,opts||{});bind(0,el,opts);var els;if(full)
els=$('body').children().filter('.blockUI').add('body > .blockUI');else
els=$('.blockUI',el);if(full)
pageBlock=pageBlockEls=null;if(opts.fadeOut){els.fadeOut(opts.fadeOut);setTimeout(function(){reset(els,data,opts,el);},opts.fadeOut);}
else
reset(els,data,opts,el);};function reset(els,data,opts,el){els.each(function(i,o){if(this.parentNode)
this.parentNode.removeChild(this);});if(data&&data.el){data.el.style.display=data.display;data.el.style.position=data.position;if(data.parent)
data.parent.appendChild(data.el);$(el).removeData('blockUI.history');}
if(typeof opts.onUnblock=='function')
opts.onUnblock(el,opts);};function bind(b,el,opts){var full=el==window,$el=$(el);if(!b&&(full&&!pageBlock||!full&&!$el.data('blockUI.isBlocked')))
return;if(!full)
$el.data('blockUI.isBlocked',b);if(!opts.bindEvents||(b&&!opts.showOverlay))
return;var events='mousedown mouseup keydown keypress';b?$(document).bind(events,opts,handler):$(document).unbind(events,handler);};function handler(e){if(e.keyCode&&e.keyCode==9){if(pageBlock&&e.data.constrainTabKey){var els=pageBlockEls;var fwd=!e.shiftKey&&e.target==els[els.length-1];var back=e.shiftKey&&e.target==els[0];if(fwd||back){setTimeout(function(){focus(back)},10);return false;}}}
if($(e.target).parents('div.blockMsg').length>0)
return true;return $(e.target).parents().children().filter('div.blockUI').length==0;};function focus(back){if(!pageBlockEls)
return;var e=pageBlockEls[back===true?pageBlockEls.length-1:0];if(e)
e.focus();};function center(el,x,y){var p=el.parentNode,s=el.style;var l=((p.offsetWidth-el.offsetWidth)/2)-sz(p,'borderLeftWidth');var t=((p.offsetHeight-el.offsetHeight)/2)-sz(p,'borderTopWidth');if(x)s.left=l>0?(l+'px'):'0';if(y)s.top=t>0?(t+'px'):'0';};function sz(el,p){return parseInt($.css(el,p))||0;};})(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:
 * ©1993 Erik Spiekermann
 * 
 * Manufacturer:
 * Erik Spiekermann
 */
Cufon.registerFont({"w":208,"face":{"font-family":"meta-plus","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 4 0 0 2 0 4","ascent":"283","descent":"-77","x-height":"4","bbox":"-42 -333 434.047 81","underline-thickness":"7.2","underline-position":"-43.92","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":81,"k":{"Y":4,"W":8,"V":8,"T":8}},"#":{"d":"11,-72r0,-33r34,0r6,-45r-30,0r0,-33r35,0r10,-72r35,0r-10,72r35,0r10,-72r35,0r-10,72r31,0r0,33r-35,0r-6,45r30,0r0,33r-34,0r-11,72r-34,0r10,-72r-36,0r-10,72r-35,0r10,-72r-30,0xm86,-150r-6,45r36,0r6,-45r-36,0","w":203},"$":{"d":"75,-111v-86,-13,-70,-149,15,-146r0,-26r31,0r0,26v27,2,50,12,67,24r-23,36v-28,-27,-113,-25,-88,25v44,22,119,25,116,93v-3,53,-38,78,-88,84r0,29r-31,0r0,-29v-26,-3,-50,-12,-70,-22r19,-40v28,20,109,39,112,-14v1,-26,-36,-36,-60,-40","w":205},"%":{"d":"233,-250r-131,250r-34,0r131,-250r34,0xm10,-191v0,-40,23,-63,61,-63v36,0,61,21,61,62v0,42,-22,62,-61,63v-37,1,-62,-24,-61,-62xm168,-58v0,-40,23,-63,61,-63v37,0,62,23,62,62v-1,41,-22,62,-62,63v-37,1,-62,-24,-61,-62xm93,-193v5,-38,-41,-46,-43,-13v-2,22,-2,51,21,50v19,-1,19,-16,22,-37xm251,-60v5,-38,-41,-46,-43,-13v-1,22,-2,51,21,50v19,-1,19,-15,22,-37","w":301},"&":{"d":"105,-240v64,-6,98,68,49,103r-23,13r42,39v3,-10,3,-23,3,-37v13,2,32,-4,41,2v0,27,-4,49,-12,67r54,53r-67,0r-15,-15v-43,36,-159,27,-159,-48v0,-28,15,-48,45,-62v-17,-14,-30,-26,-30,-54v0,-41,30,-57,72,-61xm106,-206v-33,-1,-25,46,-4,55r2,3v16,-8,24,-20,24,-34v0,-13,-9,-25,-22,-24xm89,-99v-33,17,-23,69,20,69v17,0,30,-4,38,-12","w":257},"'":{"d":"76,-255r0,102r-45,0r0,-102r45,0","w":106},"(":{"d":"114,61v-94,-22,-115,-180,-73,-277v13,-31,42,-51,72,-65r13,28v-46,28,-58,83,-55,163v3,59,16,103,56,123","w":126},")":{"d":"10,-282v104,22,121,227,53,306v-14,17,-33,28,-53,36v-3,-11,-18,-29,-6,-32v42,-29,53,-86,49,-159v-3,-58,-14,-102,-55,-122","w":123},"*":{"d":"152,-221r11,35r-47,15r29,41r-29,22r-31,-42r-29,40r-29,-22r30,-39r-48,-17r12,-34r47,17r0,-50r37,0r0,50","w":173},"+":{"d":"89,-132r0,-76r45,0r0,76r76,0r0,46r-76,0r0,76r-45,0r0,-76r-76,0r0,-46r76,0","w":227},",":{"d":"46,-56v40,-1,45,59,22,84v-10,11,-22,20,-37,24r-19,-20v12,-2,25,-9,26,-20v-3,-14,-26,-18,-24,-37v2,-17,15,-31,32,-31","w":96},"-":{"d":"104,-120r0,42r-86,0r0,-42r86,0","w":121},".":{"d":"17,-26v0,-17,14,-32,31,-32v17,0,32,14,32,32v-1,18,-14,32,-32,32v-17,0,-31,-15,-31,-32","w":96},"\/":{"d":"151,-275r-96,330r-32,0r97,-330r31,0","w":172},"0":{"d":"14,-91v0,-58,30,-97,86,-97v57,0,85,38,85,96v0,57,-30,96,-86,96v-56,0,-85,-38,-85,-95xm99,-31v28,0,33,-29,33,-60v0,-34,-3,-62,-32,-62v-27,0,-33,29,-33,60v0,34,2,62,32,62","w":197,"k":{"3":-6}},"1":{"d":"60,-132v-14,7,-27,15,-43,20r-12,-26r69,-50r33,0r0,149r28,0r0,39r-114,0r0,-39r39,0r0,-93","w":149,"k":{"7":6,"3":3,"2":3,"0":6}},"2":{"d":"12,-154v34,-45,161,-57,161,23v0,56,-54,71,-93,92r100,-1r-11,40r-150,0r0,-44v36,-18,77,-36,97,-67v9,-51,-52,-40,-75,-14","w":194,"k":{"8":-3}},"3":{"d":"105,-121v-3,-43,-69,-25,-83,-6r-26,-31v47,-50,195,-35,157,59v-6,12,-17,21,-31,26v25,8,43,26,43,55v0,71,-80,90,-157,82r-11,-33v52,7,108,-4,111,-53v1,-33,-34,-34,-67,-31r0,-41v29,5,66,1,64,-27","w":183,"k":{"7":3,"2":9}},"4":{"d":"160,-137r-1,96r27,0r0,41v-9,-1,-21,1,-28,-1v4,17,1,43,2,64r-46,6r1,-70v-34,2,-72,0,-107,1r0,-33r70,-153r49,0r-63,139v-2,4,-8,7,-1,6r53,0v-1,-31,4,-58,6,-87","w":197},"5":{"d":"110,-19v0,-47,-55,-43,-92,-29r12,-136r123,0r-8,41r-70,0r-5,50v51,-8,92,18,92,68v0,70,-66,98,-140,89r-11,-36v44,13,99,0,99,-47","w":177,"k":{"9":3}},"6":{"d":"102,5v-90,3,-112,-119,-65,-184v27,-38,69,-63,117,-80r10,35v-43,14,-80,38,-93,83v48,-31,118,5,115,64v-2,51,-33,79,-84,82xm135,-76v0,-42,-45,-45,-70,-26v-4,35,2,71,35,70v23,0,35,-19,35,-44","w":201,"k":{"8":-6,"7":3,"3":3}},"7":{"d":"13,-184r150,0v-18,93,-86,141,-94,243r-53,13v22,-80,49,-156,91,-214v-33,2,-70,0,-105,1","w":165,"k":{"4":12,"3":-12,"0":3}},"8":{"d":"188,-181v0,28,-21,47,-46,53v56,7,76,91,21,121v-53,29,-155,12,-151,-55v2,-30,20,-52,43,-61v-20,-7,-36,-27,-36,-54v0,-47,38,-67,86,-67v46,0,83,19,83,63xm102,-208v-36,0,-45,45,-11,54r14,7v13,-7,30,-15,30,-36v0,-18,-13,-25,-33,-25xm107,-28v33,0,49,-40,23,-57v-10,-6,-23,-13,-41,-19v-36,16,-28,76,18,76","w":216,"k":{"2":6}},"9":{"d":"98,-190v84,-4,104,97,72,164v-21,45,-70,81,-121,100r-26,-30v41,-13,78,-39,95,-77v-53,23,-110,-16,-107,-73v2,-51,34,-82,87,-84xm100,-65v23,0,32,-14,32,-40v0,-26,-10,-49,-35,-48v-22,0,-34,21,-34,45v-1,24,13,43,37,43","w":203,"k":{"5":3}},":":{"d":"24,-132v0,-19,13,-31,31,-32v18,-1,31,14,31,32v0,17,-14,30,-31,30v-16,1,-32,-14,-31,-30xm23,-24v0,-18,13,-33,32,-33v17,0,31,15,31,33v0,15,-15,31,-32,30v-16,0,-31,-15,-31,-30","w":109},";":{"d":"23,-132v0,-18,11,-32,31,-32v17,0,31,14,31,31v-1,18,-12,31,-30,31v-19,0,-32,-13,-32,-30xm54,-56v40,0,45,59,22,84v-10,11,-22,20,-37,24r-19,-20v12,-2,25,-9,26,-20v-5,-15,-24,-16,-24,-36v0,-18,14,-32,32,-32","w":112},"<":{"d":"404,-137v18,1,29,12,30,30v1,16,-14,32,-30,31v-17,-1,-30,-12,-30,-31v0,-16,14,-31,30,-30xm315,-137v15,-1,31,15,30,30v0,19,-13,30,-30,31v-16,1,-32,-15,-31,-31v0,-18,13,-29,31,-30xm142,-270v16,0,31,14,30,30v0,18,-12,30,-30,30v-18,0,-30,-12,-30,-30v0,-16,13,-30,30,-30xm225,-137v15,0,31,15,30,30v0,19,-13,31,-30,31v-17,0,-30,-12,-30,-31v-1,-15,15,-30,30,-30xm94,-204v15,-1,31,15,30,30v0,19,-12,31,-30,31v-16,1,-31,-15,-30,-31v0,-18,13,-28,30,-30xm135,-137v18,1,31,12,31,30v1,16,-15,32,-31,31v-17,-1,-30,-12,-30,-31v-1,-15,15,-31,30,-30xm46,-137v16,-1,30,14,30,30v0,19,-13,30,-30,31v-16,1,-31,-15,-30,-31v1,-18,12,-29,30,-30xm94,-71v16,-1,31,15,30,31v-1,18,-12,29,-30,30v-15,1,-31,-15,-30,-30v0,-19,13,-29,30,-31xm142,-4v15,0,31,15,30,30v-1,18,-12,31,-30,31v-19,0,-29,-13,-30,-31v-1,-16,14,-30,30,-30","w":452},"=":{"d":"219,-166r0,45r-198,0r0,-45r198,0xm219,-97r0,45r-198,0r0,-45r198,0","w":239},">":{"d":"46,-76v-16,1,-31,-15,-30,-31v1,-18,12,-29,30,-30v16,-1,30,14,30,30v0,19,-13,30,-30,31xm135,-76v-17,-1,-30,-12,-30,-31v-1,-15,15,-31,30,-30v18,1,31,12,31,30v1,16,-15,32,-31,31xm308,-210v-18,0,-30,-12,-30,-30v-1,-16,14,-30,30,-30v16,0,30,13,30,30v0,18,-12,30,-30,30xm225,-76v-17,0,-30,-12,-30,-31v-1,-15,15,-30,30,-30v15,0,31,15,30,30v0,19,-13,31,-30,31xm356,-143v-18,0,-30,-12,-30,-31v-1,-15,15,-31,30,-30v17,2,30,12,30,30v1,16,-14,32,-30,31xm315,-76v-16,1,-32,-15,-31,-31v0,-18,13,-29,31,-30v15,-1,31,15,30,30v0,19,-13,30,-30,31xm404,-76v-17,-1,-30,-12,-30,-31v0,-16,14,-31,30,-30v18,1,29,12,30,30v1,16,-14,32,-30,31xm356,-10v-18,-1,-29,-12,-30,-30v-1,-16,14,-32,30,-31v17,2,30,12,30,31v1,15,-15,31,-30,30xm308,57v-18,0,-29,-13,-30,-31v-1,-15,15,-30,30,-30v16,0,31,14,30,30v-1,18,-11,31,-30,31","w":452},"?":{"d":"106,-25v0,15,-15,30,-30,30v-15,0,-29,-14,-29,-30v0,-16,14,-30,30,-30v15,0,29,14,29,30xm152,-194v0,60,-71,50,-60,114r-41,0v-16,-53,26,-71,51,-97v8,-20,-7,-35,-27,-35v-18,0,-30,9,-39,17r-22,-31v30,-41,138,-40,138,32","w":174},"@":{"d":"181,-176r3,-16r34,0r-17,94v1,7,3,11,10,11v23,-4,31,-26,31,-54v0,-58,-36,-88,-94,-88v-62,0,-96,39,-100,102v-5,92,110,127,174,79r40,0v-33,62,-158,71,-209,17v-22,-23,-42,-53,-41,-96v2,-83,55,-134,137,-134v75,0,127,41,127,118v0,56,-28,84,-79,88v-19,1,-26,-9,-30,-20v-28,37,-105,18,-98,-41v-6,-62,75,-109,112,-60xm133,-87v43,6,54,-76,11,-77v-38,-4,-53,74,-11,77","w":288},"A":{"d":"133,-251r79,251r-54,0r-18,-59r-73,0r-18,59r-53,0r82,-251r55,0xm128,-101v-10,-29,-17,-62,-24,-95r-25,95r49,0","k":{"\u2019":19,"x":-12,"w":1,"v":1,"l":6,"j":2,"Z":-5,"Y":19,"X":-9,"V":6,"U":4,"T":21,"S":-8,"O":7,"J":-9,"G":3,"C":6,"A":-15}},"B":{"d":"207,-70v1,81,-91,71,-177,70r0,-250r85,0v81,-14,111,95,42,117v29,10,50,26,50,63xm123,-151v33,-10,26,-63,-14,-56r-29,0r0,57xm150,-76v0,-34,-33,-35,-69,-33r0,68v38,2,69,0,69,-35","w":220,"k":{"Y":13,"W":2,"V":4,"T":6,"S":-3,"J":-5}},"C":{"d":"13,-120v0,-104,90,-169,176,-116r-22,34v-51,-35,-97,2,-97,72v0,54,13,94,59,95v19,0,31,-6,43,-16r23,32v-19,15,-38,23,-70,23v-70,0,-112,-54,-112,-124","w":197,"k":{"z":-6,"y":17,"Z":-5,"Y":-8,"X":-6,"W":-4,"V":-3,"S":-6,"O":5,"G":7,"D":6,"C":7,"A":-12}},"D":{"d":"213,-124v-1,78,-36,130,-122,124r-61,0r0,-250r94,1v61,9,90,54,89,125xm157,-120v0,-57,-12,-99,-76,-91r0,170v59,7,76,-21,76,-79","w":228,"k":{"Z":5,"Y":11,"X":10,"W":2,"V":6,"T":6,"M":5,"A":5}},"E":{"d":"173,-250r-7,41r-85,0r0,58r71,0r0,41r-71,0r0,67r95,0r0,43r-146,0r0,-250r143,0","w":192,"k":{"y":13,"x":-6,"w":11,"v":8,"u":3,"Z":-3,"X":-5,"J":-7,"A":-5}},"F":{"d":"166,-250r-6,40r-79,0r0,58r63,0r0,41r-63,0r0,111r-51,0r0,-250r136,0","w":172,"k":{"\u00e6":15,"y":8,"u":15,"s":12,"r":14,"o":13,"e":14,"a":21,"Y":-11,"W":-5,"V":-8,"U":3,"T":-5,"S":3,"R":3,"P":3,"O":3,"N":3,"M":10,"L":3,"K":3,"I":3,"H":3,"F":3,"E":3,"D":3,"B":3,"A":16,".":35,",":34}},"G":{"d":"14,-123v-8,-109,112,-170,192,-102r-26,31v-16,-13,-34,-19,-53,-19v-49,0,-55,43,-57,93v-3,67,32,98,87,79r0,-57r-39,0r-6,-41r97,0r0,120v-24,13,-50,22,-83,22v-77,0,-106,-49,-112,-126","w":231,"k":{"y":7,"Y":9,"V":8,"J":-3,"A":-3}},"H":{"d":"80,-250r0,97r72,0r0,-97r51,0r0,250r-51,0r0,-112r-72,0r0,112r-50,0r0,-250r50,0","w":233,"k":{"W":-3,"S":-3}},"I":{"d":"83,-250r0,250r-53,0r0,-250r53,0","w":113},"J":{"d":"-5,33v24,-13,34,-35,34,-76r0,-207r51,0r-3,250v-9,30,-31,48,-59,59","w":110,"k":{"M":3}},"K":{"d":"82,-250r0,114r71,-114r62,0r-80,116r89,134r-66,0r-76,-131r0,131r-52,0r0,-250r52,0","w":221,"k":{"y":10,"w":14,"v":16,"u":4,"o":10,"e":15,"a":2,"Y":-3,"X":-11,"V":-3,"U":6,"Q":11,"O":11,"M":7,"G":8,"C":12,"A":-8}},"L":{"d":"82,-250r0,208r89,0r-9,42r-132,0r0,-250r52,0","w":173,"k":{"\u2019":13,"y":19,"u":2,"o":5,"e":6,"Z":-5,"Y":31,"X":-9,"W":21,"V":27,"U":10,"T":30,"R":3,"Q":10,"P":8,"O":12,"L":8,"I":3,"H":5,"G":17,"E":6,"C":8,"B":9,"A":-11," ":11}},"M":{"d":"111,-250r41,165v11,-56,29,-111,43,-165r64,0r22,250r-49,0r-11,-175r-49,175r-43,0r-46,-176r-10,176r-50,0r23,-250r65,0","w":304,"k":{"y":7,"Y":11,"T":11,"J":-2}},"N":{"d":"86,-250r64,139v5,12,8,23,11,32r-5,-171r48,0r0,250r-52,0r-77,-178r4,178r-49,0r0,-250r56,0","w":234,"k":{"Z":5,"Y":5,"S":-5,"O":3,"J":-3}},"O":{"d":"14,-124v0,-75,33,-129,108,-129v76,0,108,53,108,127v0,75,-31,128,-106,130v-78,2,-110,-57,-110,-128xm172,-125v0,-48,-6,-90,-51,-90v-45,0,-51,40,-51,91v0,59,6,89,52,89v44,0,50,-37,50,-90","w":240,"k":{"l":-5,"Z":3,"Y":10,"X":11,"W":3,"V":7,"T":11,"G":-3,"D":-3,"A":2}},"P":{"d":"202,-173v0,63,-48,87,-121,81r0,92r-51,0r0,-250r93,1v49,2,79,29,79,76xm120,-134v38,-4,36,-80,-7,-76r-32,0r0,77","w":207,"k":{"y":-5,"t":-7,"r":3,"o":4,"e":5,"d":6,"a":4,"Z":5,"Y":-3,"X":9,"W":-3,"V":-3,"M":4,"L":3,"I":5,"A":11,".":45,",":47," ":6}},"Q":{"d":"229,-126v1,52,-18,94,-49,114v22,10,41,30,76,22v-9,16,-8,40,-36,37v-42,-5,-59,-33,-97,-43v-78,2,-110,-58,-110,-128v0,-74,33,-129,109,-129v75,0,106,51,107,127xm171,-125v1,-50,-6,-90,-50,-90v-45,0,-52,41,-52,91v0,59,7,89,53,89v44,0,49,-37,49,-90","w":239,"k":{"Y":6,"T":11,"E":-5,"A":3}},"R":{"d":"123,-250v88,-11,99,137,18,142v30,31,47,70,71,108r-60,0r-50,-87v-6,-10,-11,-15,-22,-17r0,104r-50,0r0,-250r93,0xm144,-176v0,-34,-30,-35,-64,-34r0,68v36,2,64,-1,64,-34","w":218,"k":{"y":3,"w":4,"u":3,"o":8,"e":11,"d":9,"a":5,"Y":9,"X":-3,"W":4,"V":12,"U":6,"T":12,"S":-3,"Q":3,"O":5,"N":3,"C":3,"B":1}},"S":{"d":"47,-123v-60,-43,-18,-143,60,-135v32,3,64,10,84,25r-24,36v-28,-27,-112,-25,-87,25v43,22,115,24,115,93v0,92,-124,99,-189,62r19,-40v28,20,112,39,113,-14v0,-37,-66,-34,-91,-52","w":210,"k":{"y":5,"v":5,"p":6,"e":3,"X":5,"W":4,"V":3,"T":3,"M":3}},"T":{"d":"186,-250r-8,42r-60,0r0,208r-51,0r0,-208r-61,0r0,-42r180,0","w":186,"k":{"\u2019":-13,"\u00e6":24,"}":-4,"z":23,"y":16,"x":21,"w":23,"v":21,"u":24,"s":29,"r":22,"o":36,"m":25,"i":5,"e":32,"d":35,"c":36,"a":33,"]":-4,"Y":-12,"W":-4,"V":-12,"T":-6,"S":4,"Q":12,"O":13,"M":10,"I":-3,"G":9,"F":3,"E":4,"C":9,"A":21,";":19,":":19,".":23,"-":19,",":23,")":-4," ":6}},"U":{"d":"120,5v-55,0,-91,-22,-91,-81r0,-174r51,0r0,164v-13,56,77,62,77,18r1,-182r51,0r-2,200v-9,36,-41,55,-87,55","w":237,"k":{"g":5,"Y":6,"X":6,"J":-3,"A":6}},"V":{"d":"52,-250r53,174v15,-62,38,-116,57,-174r53,0r-88,252r-45,0r-85,-252r55,0","w":212,"k":{"\u2019":-13,"\u00e6":15,"}":-4,"y":4,"u":18,"s":12,"r":11,"o":14,"i":5,"g":18,"e":19,"d":15,"a":21,"]":-9,"Z":3,"Y":-9,"X":-3,"W":-6,"V":-11,"U":3,"T":-9,"S":6,"Q":4,"O":3,"G":6,"F":5,"C":9,"A":15,";":13,":":13,".":31,"-":17,",":31,")":-4}},"W":{"d":"57,-250r35,181r13,-80r22,-101r56,0r33,178r14,-83r21,-95r52,0r-60,252r-55,0r-34,-174r-33,174r-57,0r-60,-252r53,0","w":308,"k":{"\u2019":-13,"\u00e6":12,"}":-4,"y":5,"u":8,"r":3,"o":16,"m":8,"i":5,"e":16,"d":10,"a":17,"]":-9,"Z":1,"V":-3,"S":3,"Q":6,"P":9,"O":9,"J":3,"G":4,"F":7,"E":-1,"C":7,"A":7,";":15,":":15,".":26,"-":18,",":26,")":-7}},"X":{"d":"71,-250r33,67r35,-67r60,0r-65,113r77,137r-61,0r-45,-88r-44,88r-63,0r79,-134r-68,-116r62,0","k":{"\u2019":-9,"y":10,"u":4,"o":5,"e":6,"Y":-6,"X":-14,"V":-3,"S":-6,"Q":9,"O":6,"J":-8,"I":3,"H":5,"G":6,"C":12,"A":-9}},"Y":{"d":"55,-250r44,100r46,-100r59,0r-79,147r0,103r-53,0r0,-103r-78,-147r61,0","w":198,"k":{"\u2019":-5,"\u00e6":21,"}":-4,"v":13,"u":20,"t":9,"s":19,"q":23,"p":19,"o":23,"i":3,"e":26,"d":23,"a":26,"]":-9,"Y":-18,"X":-5,"W":-7,"V":-18,"T":-14,"R":5,"Q":6,"O":3,"M":8,"G":6,"C":10,"A":18,";":19,":":19,".":30,"-":21,",":30,")":-4}},"Z":{"d":"178,-250r0,36r-106,174r109,-1r-13,41r-156,0r0,-35r108,-175v-32,3,-68,2,-103,2r11,-42r150,0","w":189,"k":{"y":5,"w":5,"o":4,"e":8,"Y":-5,"X":-3,"V":-6,"U":-3,"T":-6,"S":-3,"K":-3,"C":8}},"[":{"d":"49,-231r0,255r33,0r0,32r-76,0r0,-320r76,0r0,33r-33,0","w":102,"k":{"W":-3,"J":-12}},"\\":{"d":"-3,-261r41,-13r107,280r-40,13","w":146},"]":{"d":"53,24r0,-255r-33,0r0,-33r76,0r0,320r-76,0r0,-32r33,0","w":106},"^":{"d":"147,-255r64,132r-51,0r-40,-86r-40,86r-51,0r65,-132r53,0","w":239},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"`":{"d":"91,-201r-80,-36r21,-37r74,47","w":121},"a":{"d":"113,-114v7,-56,-54,-31,-75,-14r-21,-34v40,-32,156,-47,143,39v3,38,-10,88,16,103r-25,29v-11,-4,-21,-13,-26,-22v-28,36,-112,23,-112,-38v0,-53,44,-64,100,-63xm65,-53v-2,28,33,31,46,12v-1,-12,4,-31,-1,-40v-29,1,-44,2,-45,28","w":185,"k":{"\u2019":10,"\u201d":5}},"b":{"d":"185,-95v6,72,-63,126,-116,82v3,20,-29,11,-48,13v11,-71,5,-175,2,-255r49,-12v2,29,4,63,1,93v9,-10,22,-15,39,-15v52,1,69,41,73,94xm130,-94v11,-46,-33,-71,-55,-40r0,85v7,5,15,13,27,12v27,-1,28,-26,28,-57","w":196,"k":{"\u2019":3,"\u201d":13,"w":2,"v":2,".":6,",":5}},"c":{"d":"13,-91v0,-82,80,-127,137,-77r-23,31v-8,-7,-17,-14,-29,-14v-29,0,-29,27,-32,62v-4,53,36,73,67,39r22,29v-14,15,-33,25,-62,25v-53,0,-80,-39,-80,-95","w":158},"d":{"d":"13,-89v0,-67,52,-118,111,-87r-1,-90r48,7v3,85,-7,184,6,259r-43,0v-1,-2,-2,-6,-3,-11v-53,41,-118,-6,-118,-78xm100,-36v10,0,18,-7,23,-12r0,-88v-32,-29,-60,-1,-57,47v2,30,4,53,34,53","w":198},"e":{"d":"65,-77v-5,52,54,58,85,28r19,28v-59,53,-156,21,-156,-69v0,-60,25,-98,81,-98v62,0,79,45,77,111r-106,0xm94,-153v-21,0,-29,18,-28,41v17,-2,42,4,55,-2v2,-24,-8,-38,-27,-39","w":183,"k":{"\u2019":3}},"f":{"d":"114,-225v-15,-11,-39,-8,-39,14r0,27r46,0r-12,33r-34,0r0,151r-47,0r0,-151r-17,0r0,-33r18,0v-19,-67,45,-104,101,-71","w":111,"k":{"\u2019":-26,"\u201d":-40,"}":-19,"]":-42,".":6,",":6,")":-40}},"g":{"d":"93,-188v33,0,74,19,94,-7r20,31v-11,11,-27,17,-46,12v29,41,-8,93,-65,85v-9,5,-17,6,-19,15v4,8,24,3,34,5v44,-1,71,17,72,56v2,81,-167,84,-173,9v0,-8,3,-14,5,-19r44,0v-7,23,8,35,33,35v22,0,42,-5,42,-25v0,-48,-117,4,-113,-52v1,-21,15,-26,34,-31v-26,-7,-40,-24,-40,-51v0,-43,34,-63,78,-63xm122,-125v0,-17,-11,-27,-29,-27v-18,0,-29,10,-29,27v0,18,12,26,29,26v20,0,29,-8,29,-26","w":198},"h":{"d":"25,-213v0,-14,-1,-32,-4,-42r50,-12v4,28,3,66,2,97v31,-32,105,-26,105,41r0,129r-47,0r0,-124v3,-40,-44,-22,-57,-8r0,132r-49,0r0,-213","w":200,"k":{"\u201d":3}},"i":{"d":"73,-189r0,189r-48,0r0,-181xm20,-235v0,-15,15,-30,30,-30v15,0,29,14,29,30v0,16,-14,30,-30,30v-15,0,-29,-14,-29,-30","w":98},"j":{"d":"3,53v16,-13,24,-28,24,-57r0,-173r48,-11r-2,205v-3,36,-23,49,-50,62xm21,-235v0,-15,15,-30,30,-30v16,0,30,14,30,29v0,16,-14,30,-30,30v-16,0,-30,-14,-30,-29","w":100},"k":{"d":"180,-184r-59,77r73,107r-57,0r-62,-104r47,-80r58,0xm71,-267v7,82,1,179,3,267r-48,0r-1,-231v0,-7,-2,-15,-3,-25","w":185},"l":{"d":"98,-1v-43,15,-75,-5,-76,-61r-2,-193r49,-11v8,67,-1,155,4,228v1,6,9,11,17,8","w":109},"m":{"d":"26,0v-3,-57,7,-131,-7,-176r43,-12v4,6,5,10,7,19v25,-26,72,-25,89,6v26,-39,103,-33,103,32r0,131r-47,0r-1,-135v-3,-25,-38,-8,-46,3r0,132r-46,0r0,-120v7,-40,-35,-30,-48,-14r0,134r-47,0","w":285},"n":{"d":"25,0v-2,-59,6,-129,-6,-177r43,-12v5,8,6,16,6,23v29,-30,103,-33,103,31r0,135r-48,0r0,-120v5,-42,-36,-24,-50,-10r0,130r-48,0","w":195,"k":{"\u2019":8}},"o":{"d":"12,-91v0,-58,27,-97,82,-97v51,0,85,37,84,95v-1,60,-27,97,-84,97v-54,0,-82,-38,-82,-95xm126,-93v0,-36,-2,-59,-31,-59v-27,0,-30,29,-30,59v0,36,2,59,31,62v27,-3,30,-27,30,-62","w":189,"k":{"\u2019":15,"\u201d":11,"y":4,"x":5,"w":4,"v":6,".":6}},"p":{"d":"185,-97v4,73,-49,122,-114,91v2,23,1,49,1,73r-46,12r-3,-259r43,-8r3,17v8,-10,27,-17,45,-17v50,0,68,38,71,91xm132,-93v0,-28,-2,-55,-28,-56v-12,0,-23,5,-32,14r0,90v30,24,60,4,60,-48","w":195,"k":{"\u2019":11,"\u201d":11,".":6,",":6}},"q":{"d":"87,-189v20,-2,36,7,44,19v1,-7,1,-9,3,-15r40,0v-9,76,-2,170,-4,253r-46,12r1,-89v-54,37,-114,-10,-114,-80v0,-60,23,-96,76,-100xm64,-95v-8,52,32,75,60,46r0,-87v-25,-29,-69,-2,-60,41","w":198,"k":{"\u2019":6,"\u201d":9}},"r":{"d":"25,0v-2,-58,6,-130,-7,-177r43,-12v4,8,7,17,8,27v11,-16,34,-35,61,-23r-13,43v-17,-9,-31,-2,-44,12r0,130r-48,0","w":126,"k":{"y":-12,"v":-9,"t":-8,"q":4,"o":4,"g":5,"e":4,"d":3,"a":4,".":24,"-":15,",":26}},"s":{"d":"39,-85v-51,-31,-16,-115,46,-104v29,-1,48,9,66,17r-16,32v-20,-18,-84,-19,-64,16v31,17,90,13,87,66v-4,74,-96,77,-153,43r17,-36v17,9,37,20,62,21v19,1,33,-23,17,-35v-15,-11,-45,-10,-62,-20","w":169},"t":{"d":"70,-59v-4,31,17,34,38,26r6,29v-42,18,-92,7,-92,-47r0,-100r-18,0r0,-33r18,0v0,-16,-1,-30,2,-44r49,-12v-2,16,-2,39,-3,56r43,0r-12,33r-31,0r0,92","w":120},"u":{"d":"128,-13v-36,34,-121,18,-107,-49r0,-118r48,-9r0,118v0,21,0,39,21,39v12,0,27,-9,30,-17r0,-130r46,-10r0,141v-1,14,4,27,11,34r-34,19v-6,-5,-12,-11,-15,-18","w":191,"k":{"\u2019":5,"\u201d":3}},"v":{"d":"45,-188r39,128v6,-46,25,-83,36,-124r50,0r-67,184r-40,0r-67,-181","w":168,"k":{"q":5,"o":5,"e":5,"d":5,"c":5,"a":8,".":27,",":27}},"w":{"d":"51,-186r26,128r13,-64r17,-62r46,0r28,126r24,-126r50,0r-53,184r-44,0r-30,-126v-7,44,-20,84,-29,126r-45,0r-51,-181","w":256,"k":{"e":2,"d":2,"c":5,".":22,",":12}},"x":{"d":"58,-190r31,58v8,-17,16,-38,25,-52r57,0r-55,85r66,99r-61,0r-34,-61v-8,19,-23,43,-34,61r-62,0r68,-98r-51,-78","w":180,"k":{"e":4,"d":2,"c":7}},"y":{"d":"47,-187r42,146v11,-51,26,-97,41,-143r50,0r-84,227v-12,22,-34,34,-63,38r-16,-32v28,-5,46,-23,54,-49r-12,0r-61,-181","w":178,"k":{"o":5,"e":2,"d":2,"c":2,".":32,",":32}},"z":{"d":"153,-184r0,33r-82,118r85,0r-12,33r-135,0r0,-30r86,-120r-79,0r0,-34r137,0","w":164,"k":{"o":2,"e":2,"d":2}},"{":{"d":"55,-104v78,-1,-12,134,77,119r0,41v-49,4,-84,-5,-84,-52v0,-41,11,-93,-39,-87r0,-41v19,-1,38,-5,39,-25v0,-54,-9,-117,47,-115r37,0r0,42v-23,-1,-41,0,-41,23v0,43,10,98,-36,95","w":140,"k":{"Y":-4,"W":-4,"V":-4,"T":-4,"J":-12}},"|":{"d":"63,-272r0,278r-46,0r0,-278r46,0","w":79},"}":{"d":"87,-103v-79,-1,13,-135,-77,-119r0,-42v50,-4,85,5,85,53v0,41,-12,93,39,87r0,41v-19,1,-40,4,-39,25v0,53,9,116,-47,114r-38,0r0,-41v22,0,41,2,41,-23v0,-42,-10,-99,36,-95","w":141},"~":{"d":"203,-105v-19,51,-86,20,-122,6v-16,2,-24,14,-31,25r-13,-39v13,-42,74,-29,104,-11v22,13,41,-4,49,-20","w":239},"\u00c4":{"d":"133,-251r79,251r-54,0r-18,-59r-73,0r-18,59r-53,0r82,-251r55,0xm128,-101v-10,-29,-17,-62,-24,-95r-25,95r49,0xm40,-287v0,-16,14,-27,28,-27v14,0,27,12,27,27v0,16,-11,28,-27,28v-15,0,-28,-12,-28,-28xm144,-314v14,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28v0,-17,11,-26,28,-27"},"\u00c5":{"d":"133,-251r79,251r-54,0r-18,-59r-73,0r-18,59r-53,0r82,-251r55,0xm128,-101v-10,-29,-17,-62,-24,-95r-25,95r49,0xm67,-295v0,-23,16,-38,39,-38v22,0,37,15,37,38v0,23,-15,38,-38,38v-23,0,-38,-15,-38,-38xm106,-314v-9,0,-20,9,-19,19v-1,9,9,19,18,18v9,1,19,-9,18,-18v0,-9,-7,-19,-17,-19"},"\u00c7":{"d":"94,1v-49,-12,-81,-61,-81,-121v0,-104,90,-169,176,-116r-22,34v-51,-35,-97,2,-97,72v0,54,13,94,59,95v18,0,30,-6,43,-16r23,32v-20,16,-41,24,-76,23r-2,8v17,0,26,14,26,28v1,31,-47,40,-71,23v7,-16,9,-27,30,-17v5,0,9,-4,9,-7v-1,-14,-22,1,-24,-12","w":197},"\u00c9":{"d":"173,-250r-7,41r-85,0r0,58r71,0r0,41r-71,0r0,67r95,0r0,43r-146,0r0,-250r143,0xm145,-295r-80,36r-15,-26r75,-47","w":192},"\u00d1":{"d":"86,-250r64,139v5,12,8,23,11,32r-5,-171r48,0r0,250r-52,0r-77,-178r4,178r-49,0r0,-250r56,0xm184,-288v-17,30,-61,19,-92,9v-10,0,-18,3,-24,10r-15,-27v10,-11,24,-22,45,-21v25,1,51,24,71,2","w":234},"\u00d6":{"d":"14,-124v0,-75,33,-129,108,-129v76,0,108,53,108,127v0,75,-31,128,-106,130v-78,2,-110,-57,-110,-128xm172,-125v0,-48,-6,-90,-51,-90v-45,0,-51,40,-51,91v0,59,6,89,52,89v44,0,50,-37,50,-90xm57,-287v0,-16,14,-27,28,-27v14,0,27,12,27,27v0,16,-11,28,-27,28v-15,0,-28,-12,-28,-28xm161,-314v14,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28v0,-17,11,-26,28,-27","w":240},"\u00dc":{"d":"120,5v-55,0,-91,-22,-91,-81r0,-174r51,0r0,164v-13,56,77,62,77,18r1,-182r51,0r-2,200v-9,36,-41,55,-87,55xm50,-287v0,-16,14,-27,28,-27v14,0,27,12,27,27v0,16,-11,28,-27,28v-15,0,-28,-12,-28,-28xm154,-314v14,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28v0,-17,11,-26,28,-27","w":237},"\u00e1":{"d":"113,-114v7,-56,-54,-31,-75,-14r-21,-34v40,-32,156,-47,143,39v3,38,-10,88,16,103r-25,29v-11,-4,-21,-13,-26,-22v-28,36,-112,23,-112,-38v0,-53,44,-64,100,-63xm65,-53v-2,28,33,31,46,12v-1,-12,4,-31,-1,-40v-29,1,-44,2,-45,28xm147,-237r-80,36r-15,-26r75,-47","w":185},"\u00e0":{"d":"113,-114v7,-56,-54,-31,-75,-14r-21,-34v39,-32,156,-47,143,39v3,38,-10,88,16,103r-25,29v-11,-4,-21,-13,-26,-22v-29,37,-116,22,-112,-38v4,-53,42,-64,100,-63xm65,-53v-2,28,33,31,46,12v-1,-12,4,-31,-1,-40v-29,1,-44,2,-45,28xm121,-201r-80,-36r21,-37r74,47","w":185},"\u00e2":{"d":"113,-114v7,-56,-54,-31,-75,-14r-21,-34v40,-32,156,-47,143,39v3,38,-10,88,16,103r-25,29v-11,-4,-21,-13,-26,-22v-28,36,-112,23,-112,-38v0,-53,44,-64,100,-63xm65,-53v-2,28,33,31,46,12v-1,-12,4,-31,-1,-40v-29,1,-44,2,-45,28xm89,-274r66,49r-16,26r-50,-27r-49,27r-16,-26","w":185},"\u00e4":{"d":"113,-114v7,-56,-54,-31,-75,-14r-21,-34v40,-33,156,-46,143,39v3,38,-10,88,16,103r-25,29v-11,-4,-21,-13,-26,-22v-29,37,-116,22,-112,-38v4,-53,42,-64,100,-63xm65,-53v-2,28,33,31,46,12v-1,-12,4,-31,-1,-40v-29,1,-44,2,-45,28xm24,-229v0,-15,14,-28,29,-28v15,0,28,13,28,28v0,16,-13,29,-29,29v-15,0,-28,-14,-28,-29xm129,-257v15,0,28,13,28,28v0,15,-13,29,-29,29v-15,0,-28,-14,-28,-29v0,-15,14,-28,29,-28","w":185},"\u00e3":{"d":"113,-114v7,-56,-54,-31,-75,-14r-21,-34v40,-32,156,-47,143,39v3,38,-10,88,16,103r-25,29v-11,-4,-21,-13,-26,-22v-28,36,-112,23,-112,-38v0,-53,44,-64,100,-63xm65,-53v-2,28,33,31,46,12v-1,-12,4,-31,-1,-40v-29,1,-44,2,-45,28xm158,-230v-17,30,-61,19,-92,9v-10,0,-18,3,-24,10r-15,-27v10,-11,24,-22,45,-21v25,1,51,24,71,2","w":185},"\u00e5":{"d":"113,-114v7,-56,-54,-31,-75,-14r-21,-34v40,-32,156,-47,143,39v3,38,-10,88,16,103r-25,29v-11,-4,-21,-13,-26,-22v-28,36,-112,23,-112,-38v0,-53,44,-64,100,-63xm65,-53v-2,28,33,31,46,12v-1,-12,4,-31,-1,-40v-29,1,-44,2,-45,28xm55,-237v0,-23,16,-38,39,-38v22,0,37,15,37,38v0,23,-15,38,-38,38v-23,0,-38,-15,-38,-38xm94,-256v-9,0,-20,9,-19,19v-1,9,9,19,18,18v9,1,19,-9,18,-18v0,-9,-7,-19,-17,-19","w":185},"\u00e7":{"d":"71,2v-39,-10,-58,-44,-58,-93v0,-82,80,-127,137,-77r-23,31v-8,-7,-17,-14,-29,-14v-29,0,-29,27,-32,62v-5,54,36,72,67,39r22,29v-13,15,-32,25,-59,25r-2,8v17,0,26,14,26,28v1,31,-47,40,-71,23v7,-15,9,-27,29,-17v5,0,10,-3,9,-7v0,-14,-21,1,-23,-12","w":158},"\u00e9":{"d":"65,-77v-5,52,54,58,85,28r19,28v-59,53,-156,21,-156,-69v0,-60,25,-98,81,-98v62,0,79,45,77,111r-106,0xm94,-153v-21,0,-29,18,-28,41v17,-2,42,4,55,-2v2,-24,-8,-38,-27,-39xm146,-237r-80,36r-15,-26r75,-47","w":183},"\u00e8":{"d":"65,-77v-5,52,54,58,85,28r19,28v-59,53,-156,21,-156,-69v0,-60,25,-98,81,-98v62,0,79,45,77,111r-106,0xm94,-153v-21,0,-29,18,-28,41v17,-2,42,4,55,-2v2,-24,-8,-38,-27,-39xm113,-201r-80,-36r21,-37r74,47","w":183},"\u00ea":{"d":"65,-77v-5,52,54,58,85,28r19,28v-59,53,-156,21,-156,-69v0,-60,25,-98,81,-98v62,0,79,45,77,111r-106,0xm94,-153v-21,0,-29,18,-28,41v17,-2,42,4,55,-2v2,-24,-8,-38,-27,-39xm94,-274r66,49r-16,26r-50,-27r-49,27r-16,-26","w":183},"\u00eb":{"d":"65,-77v-5,52,54,58,85,28r19,28v-59,53,-156,21,-156,-69v0,-60,25,-98,81,-98v62,0,79,45,77,111r-106,0xm94,-153v-21,0,-29,18,-28,41v17,-2,42,4,55,-2v2,-24,-8,-38,-27,-39xm28,-229v0,-16,14,-27,28,-27v14,0,27,12,27,27v0,16,-11,28,-27,28v-15,0,-28,-12,-28,-28xm132,-256v14,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28v0,-17,11,-26,28,-27","w":183},"\u00ed":{"d":"73,-189r0,189r-48,0r0,-181xm109,-237r-80,36r-15,-26r75,-47","w":98},"\u00ec":{"d":"73,-189r0,189r-48,0r0,-181xm73,-201r-80,-36r21,-37r74,47","w":98},"\u00ee":{"d":"73,-189r0,189r-48,0r0,-181xm52,-274r66,49r-16,26r-50,-27r-49,27r-16,-26","w":98},"\u00ef":{"d":"73,-189r0,189r-48,0r0,-181xm-12,-229v0,-16,14,-27,28,-27v14,0,27,12,27,27v0,16,-11,28,-27,28v-15,0,-28,-12,-28,-28xm92,-256v14,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28v0,-17,11,-26,28,-27","w":98},"\u00f1":{"d":"25,0v-2,-59,6,-129,-6,-177r43,-12v5,8,6,16,6,23v29,-30,103,-33,103,31r0,135r-48,0r0,-120v5,-42,-36,-24,-50,-10r0,130r-48,0xm163,-230v-17,30,-61,19,-92,9v-10,0,-18,3,-24,10r-15,-27v10,-11,24,-22,45,-21v25,1,51,24,71,2","w":195},"\u00f3":{"d":"12,-91v0,-58,27,-97,82,-97v51,0,85,37,84,95v-1,60,-27,97,-84,97v-54,0,-82,-38,-82,-95xm126,-93v0,-36,-2,-59,-31,-59v-27,0,-30,29,-30,59v0,36,2,59,31,62v27,-3,30,-27,30,-62xm147,-237r-80,36r-15,-26r75,-47","w":189},"\u00f2":{"d":"12,-91v0,-58,27,-97,82,-97v51,0,85,37,84,95v-1,60,-27,97,-84,97v-54,0,-82,-38,-82,-95xm126,-93v0,-36,-2,-59,-31,-59v-27,0,-30,29,-30,59v0,36,2,59,31,62v27,-3,30,-27,30,-62xm113,-201r-80,-36r21,-37r74,47","w":189},"\u00f4":{"d":"12,-91v0,-58,27,-97,82,-97v51,0,85,37,84,95v-1,60,-27,97,-84,97v-54,0,-82,-38,-82,-95xm126,-93v0,-36,-2,-59,-31,-59v-27,0,-30,29,-30,59v0,36,2,59,31,62v27,-3,30,-27,30,-62xm95,-274r66,49r-16,26r-50,-27r-49,27r-16,-26","w":189},"\u00f6":{"d":"12,-91v0,-58,27,-97,82,-97v51,0,85,37,84,95v-1,60,-27,97,-84,97v-54,0,-82,-38,-82,-95xm126,-93v0,-36,-2,-59,-31,-59v-27,0,-30,29,-30,59v0,36,2,59,31,62v27,-3,30,-27,30,-62xm28,-229v0,-16,14,-27,28,-27v14,0,27,12,27,27v0,16,-11,28,-27,28v-15,0,-28,-12,-28,-28xm132,-256v14,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28v0,-17,11,-26,28,-27","w":189},"\u00f5":{"d":"12,-91v0,-58,27,-97,82,-97v51,0,85,37,84,95v-1,60,-27,97,-84,97v-54,0,-82,-38,-82,-95xm126,-93v0,-36,-2,-59,-31,-59v-27,0,-30,29,-30,59v0,36,2,59,31,62v27,-3,30,-27,30,-62xm160,-230v-17,30,-61,19,-92,9v-10,0,-18,3,-24,10r-15,-27v10,-11,24,-22,45,-21v25,1,51,24,71,2","w":189},"\u00fa":{"d":"128,-13v-36,34,-121,18,-107,-49r0,-118r48,-9r0,118v0,21,0,39,21,39v12,0,27,-9,30,-17r0,-130r46,-10r0,141v-1,14,4,27,11,34r-34,19v-6,-5,-12,-11,-15,-18xm147,-237r-80,36r-15,-26r75,-47","w":191},"\u00f9":{"d":"128,-13v-36,34,-121,18,-107,-49r0,-118r48,-9r0,118v0,21,0,39,21,39v12,0,27,-9,30,-17r0,-130r46,-10r0,141v-1,14,4,27,11,34r-34,19v-6,-5,-12,-11,-15,-18xm127,-201r-80,-36r21,-37r74,47","w":191},"\u00fb":{"d":"128,-13v-36,34,-121,18,-107,-49r0,-118r48,-9r0,118v0,21,0,39,21,39v12,0,27,-9,30,-17r0,-130r46,-10r0,141v-1,14,4,27,11,34r-34,19v-6,-5,-12,-11,-15,-18xm97,-274r66,49r-16,26r-50,-27r-49,27r-16,-26","w":191},"\u00fc":{"d":"128,-13v-36,34,-121,18,-107,-49r0,-118r48,-9r0,118v0,21,0,39,21,39v12,0,27,-9,30,-17r0,-130r46,-10r0,141v-1,14,4,27,11,34r-34,19v-6,-5,-12,-11,-15,-18xm31,-229v0,-16,14,-27,28,-27v14,0,27,12,27,27v0,16,-11,28,-27,28v-15,0,-28,-12,-28,-28xm135,-256v14,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28v0,-17,11,-26,28,-27","w":191},"\u2020":{"d":"63,-196r0,-54r48,0r0,54r58,0r-8,43r-50,0r0,153r-48,0r0,-153r-54,0r0,-43r54,0","w":177},"\u00b0":{"d":"9,-191v0,-39,22,-63,60,-63v38,0,63,20,62,62v0,41,-22,62,-62,63v-37,1,-61,-25,-60,-62xm91,-193v6,-38,-40,-46,-42,-13v-2,22,-3,51,21,50v19,-1,18,-16,21,-37","w":142},"\u00a2":{"d":"15,-91v1,-52,22,-86,64,-96r0,-35r34,0r0,34v19,2,28,11,40,20r-24,31v-8,-7,-17,-14,-29,-14v-29,0,-28,27,-31,62v-5,54,36,72,67,39r22,29v-12,12,-25,20,-45,24r0,37r-34,0r0,-37v-42,-7,-64,-43,-64,-94","w":162},"\u00a3":{"d":"184,-196v-23,-28,-80,-16,-75,29r0,18r56,0r0,37r-56,0r0,71r91,0r0,41r-179,0r0,-41r34,0r0,-71r-34,0r0,-37r34,0v-18,-102,95,-138,165,-86","w":218},"\u00a7":{"d":"29,-200v-2,-78,134,-77,158,-22r-46,26v-5,-13,-17,-21,-33,-22v-19,-1,-32,22,-15,34v35,26,102,25,104,83v1,22,-14,40,-30,47v11,8,20,24,20,42v1,83,-151,86,-173,21r46,-23v5,24,48,34,66,15v6,-55,-110,-32,-106,-106v1,-27,12,-43,31,-54v-12,-9,-22,-22,-22,-41xm135,-69v24,-12,8,-45,-11,-48r-42,-20v-36,36,26,56,53,68","w":221},"\u2022":{"d":"26,-127v0,-38,26,-64,64,-64v38,0,64,26,64,64v0,38,-26,63,-64,63v-38,0,-64,-25,-64,-63","w":180},"\u00b6":{"d":"100,-122v-45,-1,-76,-21,-77,-65v-2,-84,99,-66,180,-68r0,300r-32,0r0,-274r-39,0r0,274r-32,0r0,-167","w":221},"\u00df":{"d":"25,0v13,-37,5,-97,7,-147r-29,0r0,-37r29,0v-3,-53,27,-72,76,-77v68,-6,107,71,51,104v-9,5,-26,15,-7,23v29,10,54,29,54,65v0,56,-55,85,-109,69r11,-33v33,14,60,-30,37,-56v-25,-17,-71,-53,-25,-83v20,-13,14,-53,-13,-52v-22,1,-26,21,-26,47v0,58,8,133,-7,177r-49,0","w":223},"\u00ae":{"d":"10,-127v0,-79,53,-134,134,-134v81,0,134,55,134,134v0,79,-53,133,-134,133v-81,0,-134,-54,-134,-133xm47,-127v0,61,38,101,97,101v59,0,97,-41,97,-101v0,-61,-38,-102,-97,-102v-59,0,-97,41,-97,102xm149,-199v51,-8,61,76,13,79v20,13,29,38,42,58v-18,-2,-45,7,-48,-12v-10,-13,-18,-33,-27,-42r0,54r-35,0r0,-137r55,0xm129,-143v15,0,29,1,28,-14v0,-13,-13,-14,-28,-14r0,28","w":288},"\u00a9":{"d":"10,-127v0,-79,53,-134,134,-134v81,0,134,55,134,134v0,79,-53,133,-134,133v-81,0,-134,-54,-134,-133xm47,-127v0,61,38,101,97,101v59,0,97,-41,97,-101v0,-61,-38,-102,-97,-102v-59,0,-97,41,-97,102xm120,-130v-6,42,29,58,52,36r18,23v-41,33,-117,8,-109,-54v-6,-60,60,-95,106,-60r-17,23v-22,-18,-53,-8,-50,32","w":288},"\u2122":{"d":"18,-220r0,-35r125,0r0,35r-43,0r0,113r-39,0r0,-113r-43,0xm227,-255r35,97r35,-97r53,0r0,148r-39,0r-1,-96r-35,96r-26,0r-36,-96r0,96r-38,0r0,-148r52,0","w":371},"\u00b4":{"d":"109,-237r-80,36r-15,-26r75,-47","w":121},"\u00a8":{"d":"25,-229v0,-16,14,-27,28,-27v14,0,27,12,27,27v0,16,-11,28,-27,28v-15,0,-28,-12,-28,-28xm129,-256v14,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28v0,-17,11,-26,28,-27","w":179},"\u2260":{"d":"19,-121r0,-45r113,0r33,-55r29,17v-9,13,-16,27,-26,38r48,0r0,45r-75,0r-13,24r88,0r0,45r-113,0r-33,55r-29,-17v8,-14,17,-27,26,-38r-48,0r0,-45r75,0r13,-24r-88,0","w":239},"\u00c6":{"d":"148,-59r-69,0r-34,59r-56,0r149,-250r152,0r-6,41r-86,0r0,58r72,0r0,41r-71,0r0,67r96,0r0,43r-147,0r0,-59xm148,-101r1,-88r-47,88r46,0","w":310},"\u00d8":{"d":"46,-28v-58,-68,-36,-225,77,-225v20,0,37,4,52,12r22,-35r27,14r-25,40v21,22,30,54,32,96v5,98,-73,156,-162,118r-24,40r-26,-15xm122,-215v-58,1,-54,84,-47,139r78,-127v-8,-7,-16,-12,-31,-12xm123,-35v58,2,53,-82,46,-137r-78,128v9,6,20,9,32,9","w":246},"\u221e":{"d":"192,-138v45,-34,133,-28,133,44v0,71,-90,80,-135,46r-26,-19v-24,18,-48,40,-87,40v-41,0,-69,-20,-71,-64v-3,-73,93,-82,138,-45r24,16xm221,-82v15,14,59,19,57,-12v-3,-40,-62,-17,-75,0xm53,-92v4,41,61,16,75,0v-17,-17,-69,-41,-75,0","w":332},"\u00b1":{"d":"107,-102r0,52r-44,0r0,-52r-54,0r0,-41r54,0r0,-49r44,0r0,49r54,0r0,41r-54,0xm9,0r0,-41r151,0r0,41r-151,0","w":171},"\u2264":{"d":"14,-93r0,-34r138,-65r0,48r-75,31r75,25r0,46xm14,0r0,-39r138,0r0,39r-138,0","w":165},"\u2265":{"d":"13,-42r0,-47r74,-24r-74,-31r0,-48r137,65r0,34xm13,0r0,-39r137,0r0,39r-137,0","w":165},"\u00a5":{"d":"-5,-250r61,0v14,34,33,63,44,100r46,-100r60,0r-56,101r38,0r0,37r-57,0v-5,6,-6,16,-5,27r62,0r0,37r-62,0r0,48r-53,0r0,-48r-61,0r0,-37r61,0v1,-11,0,-21,-5,-27r-56,0r0,-37r37,0","w":203},"\u00b5":{"d":"131,-13v-13,13,-41,24,-61,13v2,21,1,45,1,67r-47,12r0,-259r48,-9r0,118v0,21,0,39,21,39v12,0,26,-8,29,-17r0,-130r46,-10v5,58,-12,137,12,175r-35,19v-6,-5,-11,-11,-14,-18","w":193},"\u03bc":{"d":"131,-13v-13,13,-41,24,-61,13v2,21,1,45,1,67r-47,12r0,-259r48,-9r0,118v0,21,0,39,21,39v12,0,26,-8,29,-17r0,-130r46,-10v5,58,-12,137,12,175r-35,19v-6,-5,-11,-11,-14,-18","w":193},"\u2202":{"d":"27,-248v84,16,148,67,148,161v0,56,-26,91,-81,91v-51,0,-80,-32,-80,-81v0,-53,38,-81,95,-74v-24,-33,-58,-57,-110,-63xm96,-35v31,0,34,-41,29,-72v-24,-15,-66,-7,-62,31v2,22,11,42,33,41","w":187},"\u2211":{"d":"156,0r-144,0r0,-33r87,-90r-86,-91r12,-33r143,0r-14,40r-75,0r79,82r-82,84r93,0","w":178},"\u220f":{"d":"143,0r0,-36r24,0r0,-158r-85,0r0,158r25,0r0,36r-99,0r0,-36r26,0r0,-158r-26,0r0,-41r233,0r0,41r-26,0r0,158r26,0r0,36r-98,0","w":249},"\u03c0":{"d":"198,-6v-30,20,-72,10,-72,-33r0,-110r-48,0v-3,50,8,114,-9,149r-48,0v19,-35,8,-98,11,-149r-24,0r0,-39r188,0r0,39r-24,0r0,105v-2,14,11,9,15,5","w":204},"\u222b":{"d":"-19,18v14,14,38,17,40,-12r15,-206v0,-57,61,-75,107,-49r-20,39v-11,-14,-38,-16,-40,12r-15,207v0,55,-61,76,-106,49","w":86},"\u00aa":{"d":"87,-222v0,-16,1,-27,-16,-26v-12,0,-25,5,-40,15r-16,-25v30,-24,116,-37,107,29v2,29,-8,68,13,77r-18,22v-13,-3,-20,-25,-30,-9v-28,19,-78,3,-75,-36v3,-38,32,-49,75,-47xm139,-111r0,28r-131,0r0,-28r131,0xm86,-197v-37,-10,-47,39,-19,39v7,0,13,-3,19,-9r0,-30","w":145},"\u00ba":{"d":"12,-203v0,-43,20,-72,62,-72v40,0,64,28,63,71v-2,44,-20,73,-63,73v-41,0,-62,-29,-62,-72xm141,-111r0,28r-132,0r0,-28r132,0xm96,-204v0,-27,-2,-42,-21,-42v-33,0,-30,87,0,87v20,0,21,-20,21,-45","w":149},"\u03a9":{"d":"123,-213v-85,-3,-79,166,-16,183r0,30r-93,0r0,-32r34,0v-21,-20,-33,-52,-33,-91v0,-76,37,-125,109,-125v77,0,106,54,109,130v1,38,-14,67,-33,86r35,0r0,32r-93,0r0,-30v31,-13,46,-38,45,-84v-1,-54,-12,-97,-64,-99","w":248},"\u2126":{"d":"123,-213v-85,-3,-79,166,-16,183r0,30r-93,0r0,-32r34,0v-21,-20,-33,-52,-33,-91v0,-76,37,-125,109,-125v77,0,106,54,109,130v1,38,-14,67,-33,86r35,0r0,32r-93,0r0,-30v31,-13,46,-38,45,-84v-1,-54,-12,-97,-64,-99","w":248},"\u00e6":{"d":"262,-20v-35,32,-103,34,-131,1v-27,41,-124,34,-119,-32v4,-52,41,-64,99,-63v0,-22,0,-36,-22,-35v-21,1,-37,11,-53,21r-21,-34v29,-22,96,-40,128,-9v9,-9,25,-17,43,-17v62,1,80,45,78,111v-34,2,-76,-4,-106,2v-3,50,55,55,85,26xm63,-53v-2,29,35,30,47,12v-2,-12,4,-32,-2,-40v-29,1,-44,2,-45,28xm187,-153v-20,0,-29,18,-29,41v17,-2,42,4,56,-2v2,-24,-8,-39,-27,-39","w":280},"\u00f8":{"d":"41,-19v-45,-50,-27,-169,58,-169v15,0,28,3,40,9r21,-35r22,13r-23,38v17,16,24,38,24,70v0,73,-55,114,-121,89r-21,34r-22,-12xm82,-37v42,22,55,-27,48,-78xm118,-145v-42,-24,-54,27,-47,77","w":200},"\u00bf":{"d":"58,-224v0,-16,13,-30,30,-30v16,0,29,14,29,30v0,15,-15,30,-30,30v-15,0,-29,-14,-29,-30xm12,-56v0,-61,69,-47,60,-114r41,0v13,48,-17,70,-45,90v-18,13,-6,45,21,43v18,-2,29,-9,39,-17r22,31v-33,38,-138,39,-138,-33","w":161},"\u00a1":{"d":"67,-170r11,168r-58,8r10,-176r37,0xm19,-224v0,-16,14,-30,30,-30v16,0,29,14,29,30v0,15,-15,30,-30,30v-15,0,-29,-14,-29,-30","w":98},"\u00ac":{"d":"135,-21r0,-50r-115,0r0,-40r159,0r0,90r-44,0","w":210},"\u221a":{"d":"117,3r-39,0r-54,-153r-24,0r0,-34r60,0r38,112v18,-66,45,-125,66,-188r49,0","w":213},"\u0192":{"d":"-4,46v17,-12,28,-22,30,-50r10,-146r-16,0r0,-34r19,0v-9,-65,44,-104,98,-71r-15,30v-15,-11,-38,-6,-39,14r-2,27r43,0r-12,34r-32,0r-14,174v-7,30,-25,40,-48,55","w":112},"\u2248":{"d":"218,-228v-14,-8,-36,-2,-36,17r0,27r44,0r-12,34r-31,0r0,150r-47,0r0,-150r-60,0r0,150r-48,0r0,-150r-16,0r0,-34r18,0v-19,-67,44,-104,101,-71r-16,30v-15,-11,-41,-7,-40,14r0,27r61,0v-17,-65,39,-102,98,-74","w":219},"\u0394":{"d":"0,0r88,-230r44,0r87,230r-219,0xm108,-166r-48,125r93,0","w":219},"\u2206":{"d":"0,0r88,-230r44,0r87,230r-219,0xm108,-166r-48,125r93,0","w":219},"\u00ab":{"d":"106,-27r-33,22r-57,-85r57,-84r33,22r-42,62xm193,-27r-32,22r-58,-85r58,-84r32,22r-41,62","w":193},"\u00bb":{"d":"103,-152r32,-22r58,84r-58,85r-32,-22r41,-63xm15,-152r33,-22r57,84r-57,85r-33,-22r42,-63","w":193},"\u2026":{"d":"13,-26v0,-17,14,-32,31,-32v17,0,32,14,32,32v0,19,-13,32,-31,32v-17,0,-32,-14,-32,-32xm103,-26v0,-17,14,-32,31,-32v17,0,32,14,32,32v0,19,-13,32,-31,32v-17,0,-32,-14,-32,-32xm193,-26v0,-17,14,-32,31,-32v17,0,32,14,32,32v0,19,-13,32,-31,32v-17,0,-32,-14,-32,-32","w":269},"\u00a0":{"w":119},"\u00c0":{"d":"133,-251r79,251r-54,0r-18,-59r-73,0r-18,59r-53,0r82,-251r55,0xm128,-101v-10,-29,-17,-62,-24,-95r-25,95r49,0xm122,-259r-80,-36r21,-37r74,47"},"\u00c3":{"d":"133,-251r79,251r-54,0r-18,-59r-73,0r-18,59r-53,0r82,-251r55,0xm128,-101v-10,-29,-17,-62,-24,-95r-25,95r49,0xm172,-288v-17,30,-61,19,-92,9v-10,0,-18,3,-24,10r-15,-27v10,-11,24,-22,45,-21v25,1,51,24,71,2"},"\u00d5":{"d":"14,-124v0,-75,33,-129,108,-129v76,0,108,53,108,127v0,75,-31,128,-106,130v-78,2,-110,-57,-110,-128xm172,-125v0,-48,-6,-90,-51,-90v-45,0,-51,40,-51,91v0,59,6,89,52,89v44,0,50,-37,50,-90xm184,-288v-17,30,-61,19,-92,9v-10,0,-18,3,-24,10r-15,-27v10,-11,24,-22,45,-21v25,1,51,24,71,2","w":240},"\u0152":{"d":"13,-126v0,-80,42,-124,131,-124r143,0r-6,41r-86,0r0,58r72,0r0,41r-72,0r0,67r97,0r0,43r-181,-1v-71,-3,-98,-53,-98,-125xm73,-130v0,58,17,105,75,87r0,-161v-51,-13,-75,15,-75,74","w":307},"\u0153":{"d":"177,-77v-5,52,54,58,85,28r19,29v-35,30,-93,35,-127,5v-14,12,-30,19,-55,19v-55,0,-79,-39,-83,-95v-5,-79,80,-124,137,-78v14,-13,32,-19,53,-19v61,2,79,46,77,111r-106,0xm233,-112v7,-36,-29,-54,-48,-30v-5,7,-8,17,-8,30r56,0xm130,-93v0,-36,-1,-59,-30,-59v-28,0,-30,29,-30,59v1,36,1,59,30,62v27,-3,30,-27,30,-62","w":288},"\u2013":{"d":"174,-117r0,37r-175,0r0,-37r175,0","w":173},"\u2014":{"d":"301,-117r0,37r-256,0r0,-37r256,0","w":346},"\u201c":{"d":"131,-150v-63,-8,-33,-106,15,-108r19,20v-12,3,-25,8,-26,20v3,14,24,18,24,37v0,18,-15,33,-32,31xm50,-150v-50,0,-41,-86,-6,-99v6,-4,13,-7,21,-9r19,20v-12,3,-25,8,-26,20v3,14,23,18,23,37v0,17,-14,31,-31,31","w":176,"k":{"z":3,"u":5,"s":13,"r":5,"q":12,"p":5,"o":11,"n":5,"m":10,"g":14,"e":13,"d":13,"c":17,"a":12,"T":-9,"A":15}},"\u201d":{"d":"46,-256v39,0,45,60,22,84v-10,11,-21,20,-36,24r-19,-20v12,-2,24,-10,26,-20v-3,-14,-24,-18,-24,-37v0,-17,14,-31,31,-31xm128,-256v50,0,40,86,6,99v-6,4,-14,7,-21,9r-19,-20v12,-2,24,-10,26,-20v-3,-15,-24,-18,-24,-37v0,-18,14,-31,32,-31","w":176},"\u2018":{"d":"50,-150v-52,-1,-40,-86,-6,-99v6,-4,13,-7,21,-9r19,20v-13,3,-25,9,-26,21v4,14,23,16,23,36v0,17,-14,31,-31,31","w":97,"k":{"\u2018":10,"s":13,"q":15,"p":5,"o":18,"n":3,"m":5,"g":14,"e":18,"d":18,"c":18,"a":12,"Y":-6,"X":-2,"W":-5,"V":-5,"T":-5,"A":15}},"\u2019":{"d":"45,-256v39,0,45,60,22,84v-10,11,-21,20,-36,24r-19,-20v12,-2,24,-9,25,-20v-3,-14,-23,-18,-23,-37v0,-17,14,-31,31,-31","w":96,"k":{"\u2019":24,"v":9,"s":27,"r":25,"m":25,"l":7,"d":34," ":13}},"\u00f7":{"d":"241,-235v0,-15,15,-30,30,-30v15,0,29,14,29,30v0,16,-14,30,-30,30v-15,0,-29,-14,-29,-30xm221,-228v-15,-8,-37,-2,-37,17r0,27r110,0r0,184r-48,0r0,-150r-61,0r0,150r-47,0r0,-150r-62,0r0,150r-47,0r0,-150r-17,0r0,-34r18,0v-18,-67,45,-104,101,-71r-15,30v-15,-10,-40,-8,-40,14r0,27r63,0v-17,-65,38,-102,97,-74","w":316},"\u25ca":{"d":"319,-1v-36,13,-74,0,-75,-45r-3,-209r49,-11v8,67,-1,155,4,228v1,6,9,11,17,8xm218,-228v-15,-8,-37,-2,-37,17r0,27r45,0r-13,34r-30,0r0,150r-47,0r0,-150r-61,0r0,150r-47,0r0,-150r-16,0r0,-34r17,0v-18,-67,45,-104,101,-71r-15,30v-15,-10,-40,-8,-40,14r0,27r61,0v-17,-65,38,-102,97,-74","w":316},"\u00ff":{"d":"47,-187r42,146v11,-51,26,-97,41,-143r50,0r-84,227v-12,22,-34,34,-63,38r-16,-32v28,-5,46,-23,54,-49r-12,0r-61,-181xm31,-229v0,-16,14,-27,28,-27v14,0,27,12,27,27v0,16,-11,28,-27,28v-15,0,-28,-12,-28,-28xm135,-256v14,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28v0,-17,11,-26,28,-27","w":178},"\u0178":{"d":"55,-250r45,100v14,-35,30,-67,46,-100r59,0r-80,147r0,103r-52,0r0,-103r-78,-147r60,0xm36,-286v0,-15,13,-28,28,-28v15,0,28,12,27,28v0,15,-12,28,-27,28v-14,0,-28,-12,-28,-28xm140,-314v15,0,27,12,27,28v0,15,-12,28,-27,28v-15,0,-28,-12,-28,-28v1,-17,11,-27,28,-28","w":200},"\u2044":{"d":"187,-275r-190,330r-39,0r190,-330r39,0","w":120},"\u00a4":{"d":"131,-135v12,18,13,56,-1,73r17,26r-42,25v-8,-15,-14,-29,-39,-26r-13,26r-41,-25r15,-24v-12,-19,-12,-56,1,-74r-17,-25r43,-25v7,14,12,30,39,26r13,-26r41,25xm101,-98v6,-38,-41,-48,-43,-14v-2,22,-4,51,21,50v20,-1,19,-15,22,-36","w":160},"\u2039":{"d":"104,-27r-33,22r-57,-85r57,-84r33,22r-42,62","w":114},"\u203a":{"d":"13,-152r33,-22r57,84r-57,85r-33,-22r42,-63","w":114},"\ufb01":{"d":"132,-235v0,-15,15,-30,30,-30v15,0,29,14,29,30v0,16,-14,30,-30,30v-15,0,-29,-14,-29,-30xm112,-228v-15,-8,-37,-2,-37,17r0,27r110,0r0,184r-48,0r0,-150r-61,0r0,150r-48,0r0,-150r-16,0r0,-34r18,0v-17,-65,38,-102,97,-74"},"\ufb02":{"d":"212,-1v-43,15,-75,-4,-76,-61r-3,-193r50,-11r3,228v1,6,9,11,17,8xm110,-228v-14,-8,-36,-2,-36,17r0,27r44,0r-12,34r-31,0r0,150r-47,0r0,-150r-16,0r0,-34r16,0v-17,-65,39,-102,98,-74","w":215},"\u2021":{"d":"165,-98r0,44r-54,0r0,54r-48,0r0,-54r-58,0r8,-44r50,0r0,-55r-54,0r0,-43r54,0r0,-54r48,0r0,54r58,0r-8,43r-50,0r0,55r54,0","w":180},"\u00b7":{"d":"21,-99v-1,-18,14,-33,32,-32v18,0,32,16,32,33v0,18,-13,31,-33,31v-18,0,-31,-14,-31,-32","w":109},"\u201a":{"d":"48,-56v39,-1,44,60,21,84v-10,10,-21,20,-36,24r-19,-20v12,-2,25,-9,26,-20v-3,-14,-24,-18,-24,-37v0,-18,14,-31,32,-31","w":96},"\u201e":{"d":"47,-56v52,1,40,86,6,99v-6,4,-14,7,-21,9r-19,-20v12,-2,25,-9,26,-20v-3,-15,-26,-18,-24,-37v1,-17,15,-31,32,-31xm128,-56v39,0,45,60,22,84v-10,11,-21,20,-37,24r-19,-20v12,-2,25,-9,26,-20v-3,-14,-23,-18,-23,-37v0,-17,14,-31,31,-31","w":177},"\u2030":{"d":"232,-250r-131,250r-34,0r131,-250r34,0xm9,-191v0,-39,22,-63,60,-63v38,0,63,21,62,62v0,41,-22,62,-62,63v-37,1,-61,-25,-60,-62xm167,-58v0,-40,22,-63,61,-63v38,0,62,21,61,62v-1,40,-21,62,-61,63v-37,1,-62,-24,-61,-62xm300,-58v0,-40,23,-63,61,-63v36,0,63,23,62,62v-1,41,-22,62,-62,63v-37,1,-62,-24,-61,-62xm249,-60v6,-38,-40,-46,-42,-13v-1,22,-3,51,21,50v19,-1,18,-16,21,-37xm91,-193v6,-38,-40,-46,-42,-13v-2,22,-3,51,21,50v19,-1,18,-16,21,-37xm383,-60v5,-37,-41,-47,-43,-13v-1,22,-3,51,21,50v19,-1,19,-15,22,-37","w":432},"\u00c2":{"d":"133,-251r79,251r-54,0r-18,-59r-73,0r-18,59r-53,0r82,-251r55,0xm128,-101v-10,-29,-17,-62,-24,-95r-25,95r49,0xm103,-332r66,49r-16,26r-50,-27r-49,27r-16,-26"},"\u00ca":{"d":"173,-250r-7,41r-85,0r0,58r71,0r0,41r-71,0r0,67r95,0r0,43r-146,0r0,-250r143,0xm99,-332r66,49r-16,26r-50,-27r-49,27r-16,-26","w":192},"\u00c1":{"d":"135,-251r78,251r-54,0r-17,-59r-74,0r-17,59r-53,0r82,-251r55,0xm130,-101v-10,-29,-17,-62,-24,-95r-25,95r49,0xm165,-294r-81,36r-15,-27r75,-47"},"\u00cb":{"d":"173,-250r-7,41r-85,0r0,58r71,0r0,41r-71,0r0,67r95,0r0,43r-146,0r0,-250r143,0xm36,-287v0,-16,14,-27,28,-27v14,0,27,12,27,27v0,16,-11,28,-27,28v-15,0,-28,-12,-28,-28xm140,-314v14,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28v0,-17,11,-26,28,-27","w":192},"\u00c8":{"d":"173,-250r-7,41r-85,0r0,58r71,0r0,41r-71,0r0,67r95,0r0,43r-146,0r0,-250r143,0xm125,-259r-80,-36r21,-37r74,47","w":192},"\u00cd":{"d":"83,-250r0,250r-53,0r0,-250r53,0xm112,-295r-80,36r-15,-26r75,-47","w":113},"\u00ce":{"d":"83,-250r0,250r-53,0r0,-250r53,0xm58,-332r66,49r-16,26r-50,-27r-49,27r-16,-26","w":113},"\u00cf":{"d":"83,-250r0,250r-53,0r0,-250r53,0xm-8,-287v0,-16,14,-27,28,-27v14,0,27,12,27,27v0,16,-11,28,-27,28v-15,0,-28,-12,-28,-28xm96,-314v14,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28v0,-17,11,-26,28,-27","w":113},"\u00cc":{"d":"83,-250r0,250r-53,0r0,-250r53,0xm86,-259r-80,-36r21,-37r74,47","w":113},"\u00d3":{"d":"14,-124v0,-75,33,-129,108,-129v76,0,108,53,108,127v0,75,-31,128,-106,130v-78,2,-110,-57,-110,-128xm172,-125v0,-48,-6,-90,-51,-90v-45,0,-51,40,-51,91v0,59,6,89,52,89v44,0,50,-37,50,-90xm179,-295r-80,36r-15,-26r75,-47","w":240},"\u00d4":{"d":"14,-124v0,-75,33,-129,108,-129v76,0,108,53,108,127v0,75,-31,128,-106,130v-78,2,-110,-57,-110,-128xm172,-125v0,-48,-6,-90,-51,-90v-45,0,-51,40,-51,91v0,59,6,89,52,89v44,0,50,-37,50,-90xm117,-332r66,49r-16,26r-50,-27r-49,27r-16,-26","w":240},"\u00d2":{"d":"14,-124v0,-75,33,-129,108,-129v76,0,108,53,108,127v0,75,-31,128,-106,130v-78,2,-110,-57,-110,-128xm172,-125v0,-48,-6,-90,-51,-90v-45,0,-51,40,-51,91v0,59,6,89,52,89v44,0,50,-37,50,-90xm145,-259r-80,-36r21,-37r74,47","w":240},"\u00da":{"d":"120,5v-55,0,-91,-22,-91,-81r0,-174r51,0r0,164v-13,56,77,62,77,18r1,-182r51,0r-2,200v-9,36,-41,55,-87,55xm159,-295r-80,36r-15,-26r75,-47","w":237},"\u00db":{"d":"120,5v-55,0,-91,-22,-91,-81r0,-174r51,0r0,164v-13,56,77,62,77,18r1,-182r51,0r-2,200v-9,36,-41,55,-87,55xm110,-332r66,49r-16,26r-50,-27r-49,27r-16,-26","w":237},"\u00d9":{"d":"120,5v-55,0,-91,-22,-91,-81r0,-174r51,0r0,164v-13,56,77,62,77,18r1,-182r51,0r-2,200v-9,36,-41,55,-87,55xm134,-259r-80,-36r21,-37r74,47","w":237},"\u0131":{"d":"73,-189r0,189r-48,0r0,-181","w":98},"\u02c6":{"d":"72,-274r66,49r-16,26r-50,-27r-49,27r-16,-26","w":144},"\u02dc":{"d":"136,-230v-17,30,-61,19,-92,9v-10,0,-18,3,-24,10r-15,-27v10,-11,24,-22,45,-21v25,1,51,24,71,2","w":141},"\u00af":{"d":"127,-268r0,28r-113,0r0,-28r113,0","w":142},"\u02d8":{"d":"72,-199r-66,-49r16,-26r50,27r49,-27r16,26","w":144},"\u02d9":{"d":"15,-235v0,-15,15,-30,30,-30v15,0,30,15,30,30v0,15,-15,30,-30,30v-15,0,-30,-15,-30,-30","w":90},"\u02da":{"d":"18,-237v0,-23,16,-38,39,-38v22,0,37,15,37,38v0,23,-15,38,-38,38v-23,0,-38,-15,-38,-38xm57,-256v-9,0,-20,9,-19,19v-1,9,9,19,18,18v9,1,19,-9,18,-18v0,-9,-7,-19,-17,-19","w":113},"\u00b8":{"d":"87,39v0,-14,-22,1,-23,-12r9,-31r26,2r-5,14v17,0,26,14,26,28v1,31,-47,40,-71,23v7,-15,9,-27,29,-17v5,0,10,-3,9,-7","w":154},"\u02dd":{"d":"84,-267r-42,78r-28,-12r30,-82xm166,-260r-53,70r-26,-16r42,-77","w":178},"\u02db":{"d":"93,5v-9,8,-32,32,-11,41v8,0,13,-4,19,-6r11,23v-29,20,-87,3,-68,-41v6,-14,14,-22,23,-31","w":154},"\u02c7":{"d":"131,-249v-17,29,-67,57,-100,23v-7,-8,-17,-16,-22,-23r13,-16v10,10,28,23,50,23v21,-1,35,-15,48,-23","w":144},"\"":{"d":"158,-255r0,102r-45,0r0,-102r45,0xm75,-255r0,102r-45,0r0,-102r45,0","w":187},"!":{"d":"33,-80r-10,-167r57,-9r-10,176r-37,0xm82,-25v0,16,-15,30,-31,30v-15,0,-29,-15,-29,-30v-1,-15,15,-30,30,-30v15,0,30,15,30,30","w":106}}});

$(document).ready(function(){Cufon.replace('h1,h2,h3,.jFlowControl,.jFlowSelected,#strapline,.font,legend');});
