// ---- 2b43022f14_minify_jquery.cycle.all.js
;(function($,undefined){var ver='2.9999';if($.support==undefined){$.support={opacity:!($.browser.msie)};}
function debug(s){$.fn.cycle.debug&&log(s);}
function log(){window.console&&console.log&&console.log('[cycle] '+Array.prototype.join.call(arguments,' '));}
$.expr[':'].paused=function(el){return el.cyclePause;}
$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!='stop'){if(!$.isReady&&o.s){log('DOM not ready, queuing slideshow');$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}
log('terminating; zero elements found by selector'+($.isReady?'':' (DOM not ready)'));return this;}
return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false)
return;opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout)
clearTimeout(this.cycleTimeout);this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false)
return;if(els.length<2){log('terminating; too few slides: '+els.length);return;}
var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.backwards);if(startTime){startTime+=(opts2.delay||0);if(startTime<10)
startTime=10;debug('first timeout: '+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts.backwards)},startTime);}});};function triggerPause(cont,byHover,onPager){var opts=$(cont).data('cycle.opts');var paused=!!cont.cyclePause;if(paused&&opts.paused)
opts.paused(cont,opts,byHover,onPager);else if(!paused&&opts.resumed)
opts.resumed(cont,opts,byHover,onPager);}
function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined)
cont.cycleStop=0;if(options===undefined||options===null)
options={};if(options.constructor==String){switch(options){case'destroy':case'stop':var opts=$(cont).data('cycle.opts');if(!opts)
return false;cont.cycleStop++;if(cont.cycleTimeout)
clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;opts.elements&&$(opts.elements).stop();$(cont).removeData('cycle.opts');if(options=='destroy')
destroy(opts);return false;case'toggle':cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);triggerPause(cont);return false;case'pause':cont.cyclePause=1;triggerPause(cont);return false;case'resume':cont.cyclePause=0;checkInstantResume(false,arg2,cont);triggerPause(cont);return false;case'prev':case'next':var opts=$(cont).data('cycle.opts');if(!opts){log('options not found, "prev/next" ignored');return false;}
$.fn.cycle[options](opts);return false;default:options={fx:options};};return options;}
else if(options.constructor==Number){var num=options;options=$(cont).data('cycle.opts');if(!options){log('options not found, can not advance slide');return false;}
if(num<0||num>=options.elements.length){log('invalid slide index: '+num);return false;}
options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}
if(typeof arg2=='string')
options.oneTimeFx=arg2;go(options.elements,options,1,num>=options.currSlide);return false;}
return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data('cycle.opts');if(!options){log('options not found, can not resume');return false;}
if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}
go(options.elements,options,1,!options.backwards);}}};function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute('filter');}
catch(smother){}}};function destroy(opts){if(opts.next)
$(opts.next).unbind(opts.prevNextEvent);if(opts.prev)
$(opts.prev).unbind(opts.prevNextEvent);if(opts.pager||opts.pagerAnchorBuilder)
$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});opts.pagerAnchors=null;if(opts.destroy)
opts.destroy(opts);};function buildOptions($cont,$slides,els,options,o){var startingSlideSpecified;var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});var meta=$.isFunction($cont.data)?$cont.data(opts.metaAttr):null;if(meta)
opts=$.extend(opts,meta);if(opts.autostop)
opts.countdown=opts.autostopCount||els.length;var cont=$cont[0];$cont.data('cycle.opts',opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];if(!$.support.opacity&&opts.cleartype)
opts.after.push(function(){removeFilter(this,opts);});if(opts.continuous)
opts.after.push(function(){go(els,opts,0,!opts.backwards);});saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg)
clearTypeFix($slides);if($cont.css('position')=='static')
$cont.css('position','relative');if(opts.width)
$cont.width(opts.width);if(opts.height&&opts.height!='auto')
$cont.height(opts.height);if(opts.startingSlide!=undefined){opts.startingSlide=parseInt(opts.startingSlide,10);if(opts.startingSlide>=els.length||opts.startSlide<0)
opts.startingSlide=0;else
startingSlideSpecified=true;}
else if(opts.backwards)
opts.startingSlide=els.length-1;else
opts.startingSlide=0;if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++)
opts.randomMap.push(i);opts.randomMap.sort(function(a,b){return Math.random()-0.5;});if(startingSlideSpecified){for(var cnt=0;cnt<els.length;cnt++){if(opts.startingSlide==opts.randomMap[cnt]){opts.randomIndex=cnt;}}}
else{opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}}
else if(opts.startingSlide>=els.length)
opts.startingSlide=0;opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:'absolute',top:0,left:0}).hide().each(function(i){var z;if(opts.backwards)
z=first?i<=first?els.length+(i-first):first-i:els.length-i;else
z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css('z-index',z)});$(els[first]).css('opacity',1).show();removeFilter(els[first],opts);if(opts.fit){if(!opts.aspect){if(opts.width)
$slides.width(opts.width);if(opts.height&&opts.height!='auto')
$slides.height(opts.height);}else{$slides.each(function(){var $slide=$(this);var ratio=(opts.aspect===true)?$slide.width()/$slide.height():opts.aspect;if(opts.width&&$slide.width()!=opts.width){$slide.width(opts.width);$slide.height(opts.width/ratio);}
if(opts.height&&$slide.height()<opts.height){$slide.height(opts.height);$slide.width(opts.height*ratio);}});}}
if(opts.center&&((!opts.fit)||opts.aspect)){$slides.each(function(){var $slide=$(this);$slide.css({"margin-left":opts.width?((opts.width-$slide.width())/2)+"px":0,"margin-top":opts.height?((opts.height-$slide.height())/2)+"px":0});});}
if(opts.center&&!opts.fit&&!opts.slideResize){$slides.each(function(){var $slide=$(this);$slide.css({"margin-left":opts.width?((opts.width-$slide.width())/2)+"px":0,"margin-top":opts.height?((opts.height-$slide.height())/2)+"px":0});});}
var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w)w=e.offsetWidth||e.width||$e.attr('width');if(!h)h=e.offsetHeight||e.height||$e.attr('height');maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}
if(maxw>0&&maxh>0)
$cont.css({width:maxw+'px',height:maxh+'px'});}
var pauseFlag=false;if(opts.pause)
$cont.hover(function(){pauseFlag=true;this.cyclePause++;triggerPause(cont,true);},function(){pauseFlag&&this.cyclePause--;triggerPause(cont,true);});if(supportMultiTransitions(opts)===false)
return false;var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr('height')||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr('width')||0);if($el.is('img')){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts,' - img slide not loaded, requeuing slideshow: ',this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options)},opts.requeueTimeout);requeue=true;return false;}
else{log('could not determine size of image: '+this.src,this.cycleW,this.cycleH);}}}
return true;});if(requeue)
return false;opts.cssBefore=opts.cssBefore||{};opts.cssAfter=opts.cssAfter||{};opts.cssFirst=opts.cssFirst||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(':eq('+first+')').css(opts.cssBefore);$($slides[first]).css(opts.cssFirst);if(opts.timeout){opts.timeout=parseInt(opts.timeout,10);if(opts.speed.constructor==String)
opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed,10);if(!opts.sync)
opts.speed=opts.speed/2;var buffer=opts.fx=='none'?0:opts.fx=='shuffle'?500:250;while((opts.timeout-opts.speed)<buffer)
opts.timeout+=opts.speed;}
if(opts.easing)
opts.easeIn=opts.easeOut=opts.easing;if(!opts.speedIn)
opts.speedIn=opts.speed;if(!opts.speedOut)
opts.speedOut=opts.speed;opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length)
opts.randomIndex=0;opts.nextSlide=opts.randomMap[opts.randomIndex];}
else if(opts.backwards)
opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;else
opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init))
init($cont,$slides,opts);else if(opts.fx!='custom'&&!opts.multiFx){log('unknown transition: '+opts.fx,'; slideshow terminating');return false;}}
var e0=$slides[first];if(!opts.skipInitializationCallbacks){if(opts.before.length)
opts.before[0].apply(e0,[e0,e0,opts,true]);if(opts.after.length)
opts.after[0].apply(e0,[e0,e0,opts,true]);}
if(opts.next)
$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1)});if(opts.prev)
$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0)});if(opts.pager||opts.pagerAnchorBuilder)
buildPager(els,opts);exposeAddSlide(opts,els);return opts;};function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});};function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(',')>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,'').split(',');for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log('discarding unknown transition: ',fx);opts.fxs.splice(i,1);i--;}}
if(!opts.fxs.length){log('No valid transitions named; slideshow terminating.');return false;}}
else if(opts.fx=='all'){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx))
opts.fxs.push(p);}}
if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}
debug('randomized fx sequence: ',opts.fxs);}
return true;};function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount)
opts.countdown++;els[prepend?'unshift':'push'](s);if(opts.els)
opts.els[prepend?'unshift':'push'](s);opts.slideCount=els.length;if(opts.random){opts.randomMap.push(opts.slideCount-1);opts.randomMap.sort(function(a,b){return Math.random()-0.5;});}
$s.css('position','absolute');$s[prepend?'prependTo':'appendTo'](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}
if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg)
clearTypeFix($s);if(opts.fit&&opts.width)
$s.width(opts.width);if(opts.fit&&opts.height&&opts.height!='auto')
$s.height(opts.height);s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder)
$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);if($.isFunction(opts.onAddSlide))
opts.onAddSlide($s);else
$s.hide();};}
$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init))
init(opts.$cont,$(opts.elements),opts);};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug('manualTrump in go(), stopping active transition');$(els).stop(true,true);opts.busy=0;}
if(opts.busy){debug('transition active, ignoring new tx request');return;}
var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual)
return;if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end)
opts.end(opts);return;}
var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(fwd&&(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length))
opts.lastFx=0;else if(!fwd&&(opts.lastFx==undefined||--opts.lastFx<0))
opts.lastFx=opts.fxs.length-1;fx=opts.fxs[opts.lastFx];}
if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}
$.fn.cycle.resetState(opts,fx);if(opts.before.length)
$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount)return;o.apply(next,[curr,next,opts,fwd]);});var after=function(){opts.busy=0;$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount)return;o.apply(next,[curr,next,opts,fwd]);});if(!p.cycleStop){queueNext();}};debug('tx firing('+fx+'); currSlide: '+opts.currSlide+'; nextSlide: '+opts.nextSlide);opts.busy=1;if(opts.fxFn)
opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);else if($.isFunction($.fn.cycle[opts.fx]))
$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);else
$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}
else{queueNext();}
if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;opts.randomMap.sort(function(a,b){return Math.random()-0.5;});}
opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide)
opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}
else if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}
else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}
else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}
else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}
if(changed&&opts.pager)
opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);function queueNext(){var ms=0,timeout=opts.timeout;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);if(opts.fx=='shuffle')
ms-=opts.speedOut;}
else if(opts.continuous&&p.cyclePause)
ms=10;if(ms>0)
p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.backwards)},ms);}};$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while(opts.fx!='none'&&(t-opts.speed)<250)
t+=opts.speed;debug('calculated timeout: '+t+'; speed: '+opts.speed);if(t!==false)
return t;}
return opts.timeout;};$.fn.cycle.next=function(opts){advance(opts,1);};$.fn.cycle.prev=function(opts){advance(opts,0);};function advance(opts,moveForward){var val=moveForward?1:-1;var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}
if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2)
opts.randomIndex=els.length-2;else if(opts.randomIndex==-1)
opts.randomIndex=els.length-1;opts.nextSlide=opts.randomMap[opts.randomIndex];}
else if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}
else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap)return false;opts.nextSlide=els.length-1;}
else if(opts.nextSlide>=els.length){if(opts.nowrap)return false;opts.nextSlide=0;}}
var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb))
cb(val>0,opts.nextSlide,els[opts.nextSlide]);go(els,opts,1,moveForward);return false;};function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);};$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug('pagerAnchorBuilder('+i+', el) returned: '+a);}
else
a='<a href="#">'+(i+1)+'</a>';if(!a)
return;var $a=$(a);if($a.parents('body').length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}
else{$a.appendTo($p);}}
opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);var pagerFn=function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}
var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb))
cb(opts.nextSlide,els[opts.nextSlide]);go(els,opts,1,opts.currSlide<i);}
if(/mouseenter|mouseover/i.test(opts.pagerEvent)){$a.hover(pagerFn,function(){});}
else{$a.bind(opts.pagerEvent,pagerFn);}
if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble)
$a.bind('click.cycle',function(){return false;});var cont=opts.$cont[0];var pauseFlag=false;if(opts.pauseOnPagerHover){$a.hover(function(){pauseFlag=true;cont.cyclePause++;triggerPause(cont,true,true);},function(){pauseFlag&&cont.cyclePause--;triggerPause(cont,true,true);});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd)
hops=c>l?c-l:opts.slideCount-l;else
hops=c<l?l-c:l+opts.slideCount-c;return hops;};function clearTypeFix($slides){debug('applying clearType background-color hack');function hex(s){s=parseInt(s,10).toString(16);return s.length<2?'0'+s:s;};function getBg(e){for(;e&&e.nodeName.toLowerCase()!='html';e=e.parentNode){var v=$.css(e,'background-color');if(v&&v.indexOf('rgb')>=0){var rgb=v.match(/\d+/g);return'#'+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}
if(v&&v!='transparent')
return v;}
return'#ffffff';};$slides.each(function(){$(this).css('background-color',getBg(this));});};$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();if(typeof opts.cssBefore.opacity=='undefined')
opts.cssBefore.opacity=1;opts.cssBefore.display='block';if(opts.slideResize&&w!==false&&next.cycleW>0)
opts.cssBefore.width=next.cycleW;if(opts.slideResize&&h!==false&&next.cycleH>0)
opts.cssBefore.height=next.cycleH;opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display='none';$(curr).css('zIndex',opts.slideCount+(rev===true?1:0));$(next).css('zIndex',opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=='number')
speedIn=speedOut=speedOverride;else
speedIn=speedOut=1;easeIn=easeOut=null;}
var fn=function(){$n.delay(1750).animate(opts.animIn,speedIn,easeIn,function(){cb();});};$l.delay(1750).animate(opts.animOut,speedOut,easeOut,function(){$l.css(opts.cssAfter);if(!opts.sync)
fn();});if(opts.sync)fn();};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(':eq('+opts.currSlide+')').css('opacity',0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={activePagerClass:'activeSlide',after:null,allowPagerClickBubble:false,animIn:null,animOut:null,aspect:false,autostop:0,autostopCount:0,backwards:false,before:null,center:null,cleartype:!$.support.opacity,cleartypeNoBg:false,containerResize:1,continuous:0,cssAfter:null,cssBefore:null,delay:0,easeIn:null,easeOut:null,easing:null,end:null,fastOnEvent:0,fit:0,fx:'fade',fxFn:null,height:'auto',manualTrump:true,metaAttr:'cycle',next:null,nowrap:0,onPagerEvent:null,onPrevNextEvent:null,pager:null,pagerAnchorBuilder:null,pagerEvent:'click.cycle',pause:0,pauseOnPagerHover:0,prev:null,prevNextEvent:'click.cycle',random:0,randomizeEffects:1,requeueOnImageNotLoaded:true,requeueTimeout:250,rev:0,shuffle:null,skipInitializationCallbacks:false,slideExpr:null,slideResize:1,speed:1000,speedIn:null,speedOut:null,startingSlide:undefined,sync:1,timeout:4000,timeoutFn:null,updateActivePagerLink:null,width:null};})(jQuery);(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.fadeout=function($cont,$slides,opts){$slides.not(':eq('+opts.currSlide+')').css({display:'block','opacity':1});opts.before.push(function(curr,next,opts,w,h,rev){$(curr).css('zIndex',opts.slideCount+(!rev===true?1:0));$(next).css('zIndex',opts.slideCount+(!rev===true?0:1));});opts.animIn.opacity=1;opts.animOut.opacity=0;opts.cssBefore.opacity=1;opts.cssBefore.display='block';opts.cssAfter.zIndex=0;};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore.top=h;opts.cssBefore.left=0;opts.cssFirst.top=0;opts.animIn.top=0;opts.animOut.top=-h;};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst.top=0;opts.cssBefore.top=-h;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.top=h;};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst.left=0;opts.cssBefore.left=w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=0-w;};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst.left=0;opts.cssBefore.left=-w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=w;};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css('overflow','hidden').width();opts.before.push(function(curr,next,opts,fwd){if(opts.rev)
fwd=!fwd;$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst.left=0;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.top=0;};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push(function(curr,next,opts,fwd){if(opts.rev)
fwd=!fwd;$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.left=0;};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.width=0;opts.animIn.width='show';opts.animOut.width=0;};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.height=0;opts.animIn.height='show';opts.animOut.height=0;};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css('overflow','visible').width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}
opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++)
opts.els.push($slides[i]);for(i=0;i<opts.currSlide;i++)
opts.els.push(opts.els.shift());opts.fxFn=function(curr,next,opts,cb,fwd){if(opts.rev)
fwd=!fwd;var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++)
fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());if(fwd){for(var i=0,len=opts.els.length;i<len;i++)
$(opts.els[i]).css('z-index',len-i+count);}
else{var z=$(curr).css('z-index');$el.css('z-index',parseInt(z,10)+1+count);}
$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb)cb();});});};$.extend(opts.cssBefore,{display:'block',opacity:1,top:0,left:0});};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;opts.animOut.width=next.cycleW;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.cssBefore.height=0;opts.animIn.top=0;opts.animOut.height=0;};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.height=0;opts.animOut.height=0;};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore.top=0;opts.cssBefore.width=0;opts.animIn.left=0;opts.animOut.width=0;};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});$.extend(opts.cssBefore,{top:0,left:0,width:0});opts.animIn.left=0;opts.animOut.width=0;};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;$.extend(opts.animIn,{top:0,left:0,width:next.cycleW,height:next.cycleH});$.extend(opts.animOut,{width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2});});opts.cssFirst.top=0;opts.cssFirst.left=0;opts.cssBefore.width=0;opts.cssBefore.height=0;};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;$.extend(opts.animIn,{top:0,left:0,width:next.cycleW,height:next.cycleH});});opts.cssBefore.width=0;opts.cssBefore.height=0;opts.animOut.opacity=0;};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css('overflow','hidden').width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore.left=w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=w;};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css('overflow','hidden').height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore.top=h;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.top=h;};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css('overflow','hidden').height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore.top=h;opts.cssBefore.left=w;opts.animIn.top=0;opts.animIn.left=0;opts.animOut.top=h;opts.animOut.left=w;};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn.left=0;opts.animIn.width=this.cycleW;opts.animOut.left=0;});opts.cssBefore.top=0;opts.cssBefore.width=0;};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn.top=0;opts.animIn.height=this.cycleH;opts.animOut.top=0;});opts.cssBefore.height=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn.left=0;opts.animIn.width=this.cycleW;opts.animOut.left=curr.cycleW/2;opts.animOut.width=0;});opts.cssBefore.top=0;opts.cssBefore.width=0;};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn.top=0;opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH/2;opts.animOut.height=0;});opts.cssBefore.height=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||'left';var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=='right')
opts.cssBefore.left=-w;else if(d=='up')
opts.cssBefore.top=h;else if(d=='down')
opts.cssBefore.top=-h;else
opts.cssBefore.left=w;});opts.animIn.left=0;opts.animIn.top=0;opts.cssBefore.top=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||'left';var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=='right')
opts.animOut.left=w;else if(d=='up')
opts.animOut.top=-h;else if(d=='down')
opts.animOut.top=h;else
opts.animOut.left=-w;});opts.animIn.left=0;opts.animIn.top=0;opts.cssBefore.top=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css('overflow','visible').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top)
$.extend(opts.animOut,{left:w*2,top:-h/2,opacity:0});else
opts.animOut.opacity=0;});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.animIn.left=0;};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip))
clip='rect(0px 0px '+h+'px 0px)';else if(/r2l/.test(opts.clip))
clip='rect(0px '+w+'px '+h+'px '+w+'px)';else if(/t2b/.test(opts.clip))
clip='rect(0px '+w+'px 0px 0px)';else if(/b2t/.test(opts.clip))
clip='rect('+h+'px '+w+'px '+h+'px 0px)';else if(/zoom/.test(opts.clip)){var top=parseInt(h/2,10);var left=parseInt(w/2,10);clip='rect('+top+'px '+left+'px '+top+'px '+left+'px)';}}
opts.cssBefore.clip=opts.cssBefore.clip||clip||'rect(0px 0px 0px 0px)';var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0],10),r=parseInt(d[1],10),b=parseInt(d[2],10),l=parseInt(d[3],10);opts.before.push(function(curr,next,opts){if(curr==next)return;var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display='block';var step=1,count=parseInt((opts.speedIn/13),10)-1;(function f(){var tt=t?t-parseInt(step*(t/count),10):0;var ll=l?l-parseInt(step*(l/count),10):0;var bb=b<h?b+parseInt(step*((h-b)/count||1),10):h;var rr=r<w?r+parseInt(step*((w-r)/count||1),10):w;$next.css({clip:'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)'});(step++<=count)?setTimeout(f,13):$curr.css('display','none');})();});$.extend(opts.cssBefore,{display:'block',opacity:1,top:0,left:0});opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;
// ---- 6081b40cc7_minify_cufon.1.09.js
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}})());;
// ---- 358c3e2096_minify_cufonConf.js
Cufon.replace('#stage h3',{fontFamily:'Franklin Gothic',letterSpacing:'normal'});Cufon.replace('#sidebar h1, #sidebar h2, #sidebar h3',{fontFamily:'Franklin Gothic',letterSpacing:'normal'});Cufon.replace('#content h1, #content h2, #content h3',{fontFamily:'Franklin Gothic',letterSpacing:'normal'});Cufon.replace('#footer h4',{fontFamily:'Franklin Gothic',fontSize:'12px',letterSpacing:'normal'});;
// ---- 6d5e0b6405_minify_cufon.font.1.js
Cufon.registerFont({"w":778,"face":{"font-family":"Franklin Gothic","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 3 6 0 0 2 0 4","ascent":"800","descent":"-200","x-height":"14","bbox":"-164 -1016 1149 250","underline-thickness":"50","underline-position":"-50","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":361},"\ufb01":{"d":"434,-756r188,0r0,150r-188,0r0,-150xm434,-532r188,0r0,532r-188,0r0,-532xm372,-638v-46,-11,-89,-1,-89,50r0,56r89,0r0,122r-89,0r0,410r-188,0r0,-410r-78,0r0,-122r78,0r0,-61v-4,-131,56,-183,184,-177v29,1,57,4,93,8r0,124","w":667},"\ufb02":{"d":"434,-756r188,0r0,756r-188,0r0,-756xm372,-638v-46,-11,-89,-1,-89,50r0,56r89,0r0,122r-89,0r0,410r-188,0r0,-410r-78,0r0,-122r78,0r0,-61v-4,-131,56,-183,184,-177v29,1,57,4,93,8r0,124","w":667},"\u00a0":{"w":361},"$":{"d":"689,-237v0,158,-116,232,-269,251r0,96r-96,0r0,-96v-138,-5,-226,-56,-291,-145r131,-102v42,53,95,84,160,91r0,-141v-136,-27,-260,-75,-260,-235v0,-157,112,-229,260,-246r0,-99r96,0r0,99v98,10,179,49,229,115r-126,106v-28,-33,-59,-54,-103,-65r0,126v159,23,269,86,269,245xm324,-608v-40,2,-67,53,-37,84v9,8,21,15,37,20r0,-104xm420,-149v42,-7,72,-60,38,-92v-9,-9,-23,-15,-38,-20r0,112","w":722},"%":{"d":"255,-626v-36,0,-67,31,-67,67v0,36,31,67,67,67v36,0,67,-31,67,-67v0,-36,-31,-67,-67,-67xm255,-354v-123,0,-205,-82,-205,-205v0,-123,82,-205,205,-205v123,0,205,82,205,205v0,123,-82,205,-205,205xm676,-764r94,0r-441,778r-93,0xm745,14v-123,0,-205,-82,-205,-205v0,-123,82,-205,205,-205v123,0,205,82,205,205v0,123,-82,205,-205,205xm745,-258v-36,0,-67,31,-67,67v0,36,31,67,67,67v36,0,67,-31,67,-67v0,-36,-31,-67,-67,-67","w":1000},"&":{"d":"418,-654v-28,0,-60,20,-58,52v4,51,32,74,64,110v34,-34,65,-47,69,-96v3,-44,-36,-65,-75,-66xm258,-212v1,97,146,99,196,42r-126,-139v-33,22,-70,46,-70,97xm710,-196v29,26,82,35,136,36r0,165v-113,13,-215,-20,-278,-72v-72,47,-168,81,-281,81v-137,0,-239,-65,-239,-202v0,-129,106,-171,191,-228v-38,-47,-67,-92,-67,-171v0,-126,100,-183,241,-183v131,0,248,40,248,171v0,110,-84,152,-155,197r90,102v39,-36,65,-80,84,-132r141,51v-22,74,-69,129,-111,185","w":889},"\u2019":{"d":"41,-756r196,0r0,181r-129,193r-67,0r69,-178r-69,0r0,-196","w":278},"(":{"d":"202,-352v0,170,42,282,116,404r-110,0v-73,-106,-144,-228,-144,-404v0,-171,83,-306,157,-404r110,0v-70,96,-129,242,-129,404","w":333},")":{"d":"131,-352v0,-170,-42,-282,-116,-404r110,0v73,106,144,228,144,404v0,171,-83,306,-157,404r-110,0v69,-97,129,-242,129,-404","w":333},"*":{"d":"186,-411r-83,-57r101,-97r-1,-5r-135,-18r33,-97v40,16,85,52,122,59r-24,-130r104,0r-25,130r3,3r120,-62r31,102r-136,16r-1,5r95,94r-79,58r-59,-123r-4,0","w":500},"+":{"d":"239,-192r-192,0r0,-122r192,0r0,-192r122,0r0,192r192,0r0,122r-192,0r0,192r-122,0r0,-192","w":600},",":{"d":"83,-196r196,0r0,180r-129,194r-67,0r69,-178r-69,0r0,-196","w":361},"-":{"d":"29,-340r267,0r0,154r-267,0r0,-154","w":333},"\u00ad":{"d":"29,-340r267,0r0,154r-267,0r0,-154","w":333},".":{"d":"83,-196r196,0r0,196r-196,0r0,-196","w":361},"\/":{"d":"191,-770r105,0r-209,784r-105,0","w":278},"0":{"d":"405,-140v83,-39,67,-241,57,-359v-7,-85,-62,-150,-145,-111v-84,39,-66,243,-57,359v7,85,62,150,145,111xm361,14v-269,0,-374,-247,-313,-516v33,-145,130,-262,313,-262v226,0,330,171,330,389v0,183,-73,306,-199,363v-40,17,-84,26,-131,26","w":722},"1":{"d":"140,-633v103,-15,169,-59,226,-123r116,0r0,600r122,0r0,156r-465,0r0,-156r127,0r0,-369v-40,11,-82,16,-126,22r0,-130","w":722},"2":{"d":"365,-764v174,0,299,70,299,226v0,112,-68,168,-137,215r-206,141r0,2r342,0r0,180r-616,0r0,-138r303,-246v38,-35,91,-76,96,-142v4,-58,-39,-96,-96,-94v-85,3,-125,64,-149,130r-156,-80v50,-116,154,-194,320,-194","w":722},"3":{"d":"497,-398v94,25,173,73,173,189v0,173,-157,223,-331,223v-152,0,-257,-60,-324,-150r141,-98v35,56,96,109,181,110v65,0,120,-29,117,-92v-4,-99,-116,-94,-221,-94r0,-144v93,2,190,-2,192,-89v2,-54,-46,-77,-97,-77v-72,0,-128,45,-169,82r-112,-111v91,-92,226,-137,397,-106v102,18,197,66,197,185v0,102,-74,138,-144,172","w":722},"4":{"d":"173,-306r181,0r0,-246r-2,0xm354,-162r-337,0r0,-144r355,-450r192,0r0,450r125,0r0,144r-125,0r0,162r-210,0r0,-162","w":722},"5":{"d":"455,-232v4,-124,-170,-122,-242,-66r-146,-81r38,-371r514,0r-16,180r-355,0r-13,120v34,-16,93,-30,139,-30v178,1,297,79,297,240v0,201,-205,285,-427,244v-97,-18,-172,-68,-223,-136r135,-107v39,57,84,109,173,109v69,0,124,-33,126,-102","w":722},"6":{"d":"470,-228v6,-95,-110,-112,-184,-73r-33,14v8,84,23,169,114,169v66,0,99,-45,103,-110xm383,14v-233,0,-347,-143,-347,-376v0,-191,88,-316,218,-376v94,-43,222,-29,298,18v47,29,83,76,108,142r-173,55v-19,-53,-40,-103,-111,-103v-101,0,-116,110,-124,207v50,-28,112,-40,184,-40v146,0,250,71,250,210v0,177,-126,263,-303,263","w":722},"7":{"d":"666,-640v-114,172,-225,369,-239,640r-251,0v51,-216,151,-385,271,-570r-369,0r12,-180r576,0r0,110","w":722},"8":{"d":"405,-468v27,-19,62,-35,62,-78v0,-58,-51,-80,-109,-80v-49,0,-99,17,-103,65v8,67,96,72,150,93xm352,-124v54,0,117,-14,117,-69v0,-79,-105,-81,-165,-107v-31,23,-69,41,-69,94v0,56,61,82,117,82xm655,-559v1,79,-59,118,-116,142v81,32,152,89,152,196v0,179,-170,235,-349,235v-159,0,-311,-49,-311,-208v0,-91,68,-131,135,-159v-63,-35,-115,-90,-115,-181v0,-172,146,-230,317,-230v113,0,210,42,259,112v19,26,28,56,28,93","w":722},"9":{"d":"252,-522v-6,95,110,112,184,73r33,-14v-7,-84,-31,-169,-114,-169v-66,0,-99,45,-103,110xm339,-764v232,0,347,143,347,376v0,191,-88,316,-218,376v-94,43,-222,29,-298,-18v-47,-29,-83,-76,-108,-142r173,-55v19,53,40,103,111,103v100,0,117,-109,124,-207v-50,28,-112,40,-184,40v-146,0,-250,-71,-250,-210v0,-177,126,-263,303,-263","w":722},":":{"d":"83,-196r196,0r0,196r-196,0r0,-196xm83,-532r196,0r0,196r-196,0r0,-196","w":361},";":{"d":"83,-532r196,0r0,196r-196,0r0,-196xm83,-196r196,0r0,180r-129,194r-67,0r69,-178r-69,0r0,-196","w":361},"\u037e":{"d":"83,-532r196,0r0,196r-196,0r0,-196xm83,-196r196,0r0,180r-129,194r-67,0r69,-178r-69,0r0,-196","w":361},"<":{"d":"47,-300r506,-214r0,115r-351,146r351,146r0,115r-506,-214r0,-94","w":600},"=":{"d":"47,-202r506,0r0,122r-506,0r0,-122xm47,-426r506,0r0,122r-506,0r0,-122","w":600},">":{"d":"553,-206r-506,214r0,-115r351,-146r-351,-146r0,-115r506,214r0,94","w":600},"?":{"d":"178,-196r196,0r0,196r-196,0r0,-196xm279,-648v-64,4,-95,46,-109,98r-155,-31v34,-124,126,-189,280,-189v136,0,247,50,247,171v0,160,-201,151,-191,325r-152,0v-5,-146,70,-216,136,-290v34,-38,-9,-87,-56,-84","w":557},"@":{"d":"304,-556v74,-39,186,-20,221,43r10,-54r101,0r-52,289v0,10,2,22,13,21v72,-9,99,-77,99,-161v0,-172,-109,-256,-281,-256v-185,0,-291,113,-291,297v0,191,118,295,310,295v82,0,152,-23,202,-64r105,0v-68,93,-169,160,-316,160v-191,0,-320,-99,-384,-234v-44,-93,-42,-218,-1,-313v72,-167,282,-288,514,-215v129,41,238,131,238,296v0,154,-87,243,-195,286v-59,24,-131,31,-137,-35v-27,21,-57,54,-105,52v-134,-6,-209,-139,-162,-277v20,-58,59,-103,111,-130xm385,-265v68,-3,109,-45,111,-113v2,-50,-36,-85,-87,-83v-62,3,-101,45,-103,107v-2,50,28,91,79,89","w":800},"A":{"d":"271,-756r233,0r259,756r-225,0r-45,-144r-258,0r-49,144r-171,0xm283,-300r161,0r-76,-247r-2,0"},"B":{"d":"502,-537v0,-97,-121,-80,-220,-81r0,162v98,-2,220,19,220,-81xm509,-222v3,-108,-126,-80,-227,-84r0,168v102,-1,224,19,227,-84xm737,-203v0,150,-113,202,-275,203r-396,0r0,-756r369,0v155,3,283,50,283,198v0,102,-77,138,-151,169v94,23,170,73,170,186"},"C":{"d":"706,-242v-48,169,-144,256,-346,256v-153,0,-248,-93,-300,-211v-41,-94,-41,-260,-1,-355v54,-130,160,-218,332,-218v183,0,283,105,308,266r-202,15v-10,-70,-38,-131,-115,-131v-107,0,-126,100,-126,234v0,146,19,250,146,250v86,0,124,-68,142,-141","w":722},"D":{"d":"750,-383v0,253,-143,383,-404,383r-286,0r0,-756v162,6,350,-20,471,28v133,53,219,165,219,345xm522,-384v-1,-129,-48,-226,-178,-228r-68,0r0,468v175,15,248,-75,246,-240"},"E":{"d":"60,-756r569,0r0,156r-353,0r0,137r226,0r0,156r-226,0r0,145r364,0r0,162r-580,0r0,-756","w":668},"F":{"d":"60,-756r580,0r0,156r-364,0r0,144r240,0r0,156r-240,0r0,300r-216,0r0,-756","w":668},"G":{"d":"256,-378v-4,147,38,274,182,234v45,-13,78,-47,82,-102r-127,0r0,-132r329,0r0,377r-62,0r-64,-79v-57,94,-243,119,-364,66v-129,-57,-204,-180,-204,-364v0,-241,122,-392,361,-392v191,0,297,104,337,261r-207,28v-11,-76,-46,-139,-130,-139v-116,0,-130,112,-133,242"},"H":{"d":"66,-756r216,0r0,287r214,0r0,-287r216,0r0,756r-216,0r0,-301r-214,0r0,301r-216,0r0,-756"},"I":{"d":"86,-756r216,0r0,756r-216,0r0,-756","w":388},"J":{"d":"78,-166v76,3,84,-53,84,-127r0,-463r216,0r0,533v2,160,-72,240,-237,237v-45,0,-89,-9,-129,-16r14,-169v16,2,34,5,52,5","w":444},"K":{"d":"66,-756r216,0r0,303r2,0r221,-303r206,0r-186,250r235,506r-231,0r-149,-323r-98,131r0,192r-216,0r0,-756"},"L":{"d":"60,-756r216,0r0,594r316,0r0,162r-532,0r0,-756","w":612},"M":{"d":"70,-756r314,0r120,362r2,0r116,-362r308,0r0,756r-216,0r0,-534r-2,0r-169,534r-129,0r-176,-534r-2,0r0,534r-166,0r0,-756","w":1000},"N":{"d":"70,-756r201,0r269,401r2,0r0,-401r166,0r0,756r-162,0r-308,-428r-2,0r0,428r-166,0r0,-756"},"O":{"d":"389,-770v239,0,361,151,361,392v0,241,-122,392,-361,392v-239,0,-361,-151,-361,-392v0,-241,122,-392,361,-392xm522,-378v0,-130,-11,-242,-133,-242v-121,0,-133,113,-133,242v0,131,13,242,133,242v119,0,133,-112,133,-242"},"P":{"d":"708,-523v0,213,-201,241,-432,231r0,292r-216,0r0,-756r377,0v168,1,271,74,271,233xm480,-522v0,-103,-105,-91,-204,-90r0,176v98,2,204,11,204,-86","w":722},"Q":{"d":"636,-75v30,33,56,53,105,58r0,150v-134,2,-209,-42,-255,-130v-31,7,-63,11,-97,11v-239,-6,-361,-151,-361,-392v0,-241,122,-392,361,-392v239,0,358,151,361,392v2,135,-42,238,-114,303xm522,-378v0,-130,-11,-242,-133,-242v-121,0,-133,113,-133,242v0,131,13,242,133,242v119,0,133,-112,133,-242"},"R":{"d":"501,-530v0,-54,-37,-82,-98,-82r-121,0r0,158v95,-1,219,16,219,-76xm729,-538v2,102,-67,159,-143,190r141,348r-240,0r-107,-310r-98,0r0,310r-216,0r0,-756r362,0v177,1,298,54,301,218"},"S":{"d":"57,-521v-9,-287,454,-316,585,-130r-126,104v-39,-44,-82,-66,-158,-67v-46,0,-89,14,-91,54v16,80,133,68,207,91v112,35,212,85,208,231v-5,202,-198,277,-419,245v-107,-15,-184,-64,-236,-140r130,-101v42,53,103,91,190,92v67,2,113,-19,119,-66v-7,-57,-76,-61,-130,-74v-138,-35,-274,-68,-279,-239","w":722},"T":{"d":"225,-606r-208,0r0,-150r632,0r0,150r-208,0r0,606r-216,0r0,-606","w":666},"U":{"d":"409,-148v94,0,131,-49,130,-155r0,-453r166,0r0,485v-4,192,-119,285,-322,285v-196,0,-310,-92,-310,-275r0,-495r216,0r0,476v1,83,42,132,120,132"},"V":{"d":"16,-756r223,0r170,494r2,0r169,-494r182,0r-270,756r-209,0"},"W":{"d":"6,-756r214,0r104,404r2,0r107,-404r180,0r103,404r2,0r106,-404r170,0r-201,756r-185,0r-107,-403r-2,0r-107,403r-185,0","w":1000},"X":{"d":"266,-375r-254,-381r247,0r128,202r132,-202r195,0r-232,342r284,414r-250,0r-157,-234r-148,234r-199,0"},"Y":{"d":"288,-321r-274,-435r245,0r158,257r151,-257r196,0r-260,417r0,339r-216,0r0,-321"},"Z":{"d":"20,-94r336,-506r-308,0r0,-156r600,0r0,88r-329,506r325,0r0,162r-624,0r0,-94","w":668},"[":{"d":"68,-756r251,0r0,48r-119,0r0,682r117,0r0,48r-249,0r0,-778","w":333},"\\":{"d":"-18,-770r105,0r209,784r-105,0","w":278},"]":{"d":"265,22r-249,0r0,-48r117,0r0,-682r-119,0r0,-48r251,0r0,778","w":333},"^":{"d":"192,-385r-125,0r174,-365r118,0r174,365r-125,0r-108,-245","w":600},"_":{"d":"0,125r0,-50r500,0r0,50r-500,0","w":500},"\u2018":{"d":"41,-563r129,-193r67,0r-69,178r69,0r0,196r-196,0r0,-181","w":278},"a":{"d":"258,-102v34,0,54,-14,77,-30r0,-111v-60,10,-135,17,-135,84v0,36,26,57,58,57xm273,-430v-49,0,-63,27,-74,65r-156,-33v22,-105,113,-148,237,-148v136,0,237,29,237,156r0,285v0,38,5,81,21,105r-193,0v-4,-14,-7,-30,-8,-48v-38,35,-95,62,-162,62v-94,0,-157,-55,-157,-157v0,-156,159,-185,318,-190r0,-44v1,-39,-27,-52,-63,-53","w":556},"b":{"d":"313,-424v-37,0,-54,17,-77,40r0,197v-1,53,24,91,71,91v76,0,87,-69,87,-162v0,-93,-6,-166,-81,-166xm369,14v-82,0,-140,-37,-173,-94r-34,80r-114,0r0,-756r188,0r0,290r2,0v31,-49,81,-74,148,-74v148,0,204,123,204,270v0,161,-69,284,-221,284","w":611},"c":{"d":"293,14v-173,0,-272,-105,-272,-280v0,-171,100,-280,270,-280v139,0,215,73,244,190r-170,11v-3,-46,-20,-82,-70,-79v-69,5,-78,78,-78,158v0,100,13,158,97,158v62,0,84,-43,100,-90r135,24v-45,108,-112,188,-256,188","w":556},"d":{"d":"301,-102v31,1,60,-23,74,-40r0,-243v-22,-21,-38,-45,-78,-45v-75,0,-80,92,-80,172v0,75,8,155,84,156xm234,-540v61,0,111,33,141,68r0,-284r188,0r0,756r-182,0r0,-54v-55,50,-167,98,-249,44v-70,-46,-111,-136,-111,-246v0,-154,59,-284,213,-284","w":611},"e":{"d":"390,-333v3,-54,-23,-103,-78,-103v-64,0,-86,44,-88,103r166,0xm305,-546v189,0,284,115,281,315r-369,0v-2,74,52,124,124,123v53,-1,103,-36,121,-78r124,56v-61,89,-141,144,-281,144v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280","w":610},"f":{"d":"372,-638v-46,-11,-89,-1,-89,50r0,56r89,0r0,122r-89,0r0,410r-188,0r0,-410r-78,0r0,-122r78,0r0,-61v-4,-131,56,-183,184,-177v29,1,57,4,93,8r0,124","w":389},"g":{"d":"362,-380v0,-42,-33,-78,-75,-76v-47,2,-80,30,-82,77v-2,44,36,80,79,80v43,0,78,-37,78,-81xm317,-12v-71,0,-194,-23,-169,57v50,41,207,35,274,7v22,-9,18,-35,-2,-45v-25,-14,-63,-19,-103,-19xm270,-546v82,0,153,12,202,54v29,-35,75,-53,133,-54r0,114v-20,-13,-72,-32,-90,-3v9,11,14,32,15,48v-2,134,-123,185,-278,172v-45,-4,-61,23,-39,43v150,27,386,-12,386,168v0,169,-239,185,-429,166v-78,-8,-164,-21,-164,-97v0,-60,55,-73,96,-94v-36,-12,-77,-38,-75,-86v3,-73,70,-94,121,-120v-58,-19,-116,-71,-111,-145v8,-113,105,-166,233,-166","w":611},"h":{"d":"317,-414v-35,1,-59,29,-81,48r0,366r-188,0r0,-756r188,0r0,300v44,-42,91,-90,173,-90v93,0,153,58,153,161r0,385r-188,0r0,-337v0,-44,-12,-77,-57,-77","w":610},"i":{"d":"45,-756r188,0r0,150r-188,0r0,-150xm45,-532r188,0r0,532r-188,0r0,-532","w":278},"j":{"d":"88,-756r188,0r0,150r-188,0r0,-150xm10,16v47,1,78,-9,78,-57r0,-492r188,0r0,490v4,158,-110,219,-266,199r0,-140","w":333},"k":{"d":"48,-756r188,0r0,422r187,-212r179,0r-172,189r172,357r-209,0r-95,-218v-24,18,-40,42,-62,62r0,156r-188,0r0,-756","w":610},"l":{"d":"45,-756r188,0r0,756r-188,0r0,-756","w":278},"m":{"d":"321,-414v-37,1,-65,22,-81,44r0,370r-188,0r0,-532r188,0r0,75v48,-39,92,-89,176,-89v75,0,122,36,143,96v48,-48,92,-96,185,-96v96,0,148,59,148,150r0,396r-188,0r0,-338v0,-44,-13,-77,-57,-76v-37,1,-65,22,-81,44r0,370r-188,0r0,-338v0,-44,-13,-77,-57,-76","w":944},"n":{"d":"317,-414v-35,1,-59,29,-81,48r0,366r-188,0r0,-532r188,0r0,76v44,-42,91,-90,173,-90v93,0,153,58,153,161r0,385r-188,0r0,-337v0,-44,-12,-77,-57,-77","w":610},"o":{"d":"305,-546v176,0,284,104,284,280v0,177,-107,280,-284,280v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280xm217,-266v0,85,8,158,88,158v80,0,88,-73,88,-158v0,-85,-9,-158,-88,-158v-79,0,-88,73,-88,158","w":610},"p":{"d":"310,-430v-31,-1,-60,23,-74,40r0,243v22,21,38,45,78,45v75,0,80,-92,80,-172v0,-75,-8,-155,-84,-156xm377,8v-61,0,-111,-33,-141,-68r0,220r-188,0r0,-692r182,0r0,54v55,-50,168,-98,250,-44v70,46,110,136,110,246v0,154,-59,284,-213,284","w":611},"q":{"d":"298,-108v37,0,54,-17,77,-40r0,-197v1,-53,-24,-91,-71,-91v-76,0,-87,69,-87,162v0,93,6,166,81,166xm242,-546v82,0,140,37,173,94r34,-80r114,0r0,692r-188,0r0,-226r-2,0v-31,49,-81,74,-148,74v-148,0,-204,-123,-204,-270v0,-161,69,-284,221,-284","w":611},"r":{"d":"423,-349v-58,-32,-147,-38,-190,9r0,340r-188,0r0,-532r188,0v2,26,-4,61,2,83v37,-56,102,-90,188,-97r0,197","w":444},"s":{"d":"533,-173v0,146,-118,187,-273,187v-116,0,-193,-35,-245,-112r111,-71v35,51,74,72,152,73v44,0,91,-14,80,-55v-38,-42,-168,-40,-219,-61v-62,-25,-105,-70,-108,-147v-10,-224,380,-240,463,-82r-111,65v-17,-35,-64,-54,-114,-54v-36,0,-72,6,-72,41v7,34,36,30,84,37v84,13,147,31,189,59v42,28,63,68,63,120","w":556},"t":{"d":"278,14v-115,1,-183,-31,-183,-144r0,-280r-78,0r0,-122r88,0r13,-187r165,0r0,187r89,0r0,122r-89,0r0,251v-2,49,53,50,94,38r0,125v-30,6,-66,10,-99,10","w":389},"u":{"d":"293,-118v35,-1,59,-29,81,-48r0,-366r188,0r0,532r-188,0r0,-76v-44,42,-91,90,-173,90v-93,0,-153,-58,-153,-161r0,-385r188,0r0,337v0,44,12,77,57,77","w":610},"v":{"d":"5,-532r198,0r102,287r2,0r104,-287r140,0r-206,532r-137,0","w":556},"w":{"d":"10,-532r195,0r86,266r2,0r86,-266r135,0r82,266r2,0r86,-266r139,0r-184,532r-135,0r-89,-260r-2,0r-84,260r-139,0","w":833},"x":{"d":"201,-266r-191,-266r219,0r85,132r87,-132r161,0r-170,232r211,300r-221,0r-103,-162r-112,162r-160,0","w":610},"y":{"d":"32,24v58,14,185,17,156,-61r-186,-495r200,0r102,299r2,0r106,-299r143,0r-202,497v-42,129,-134,216,-321,192r0,-133","w":556},"z":{"d":"22,-84r249,-332r-221,0r0,-116r463,0r0,84r-247,332r249,0r0,116r-493,0r0,-84","w":556},"{":{"d":"113,-256v-1,-47,-46,-55,-92,-56r0,-110v46,-1,92,-9,92,-56r0,-138v7,-80,58,-140,138,-140r100,0r0,90r-55,0v-45,0,-51,24,-51,67r0,134v-1,68,-58,88,-115,99v62,6,115,31,115,97r0,134v1,42,8,67,51,67r55,0r0,90r-100,0v-81,-6,-138,-59,-138,-140r0,-138","w":333},"|":{"d":"172,-750r0,1000r-122,0r0,-1000r122,0","w":222},"}":{"d":"220,-478v1,47,46,55,92,56r0,110v-46,1,-92,9,-92,56r0,138v-6,80,-57,140,-138,140r-100,0r0,-90r55,0v43,0,51,-25,51,-67r0,-134v1,-68,58,-88,115,-99v-62,-6,-115,-31,-115,-97r0,-134v-1,-43,-6,-67,-51,-67r-55,0r0,-90r100,0v80,6,138,60,138,140r0,138","w":333},"~":{"d":"192,-226v-47,0,-68,40,-84,72r-41,-108v25,-45,58,-86,124,-86v81,0,139,59,213,68v47,-4,66,-42,88,-72r41,108v-30,40,-57,86,-124,86v-87,0,-124,-68,-217,-68","w":600},"\u00a1":{"d":"69,-596r196,0r0,196r-196,0r0,-196xm112,-322r111,0r52,482r-216,0","w":334},"\u00a2":{"d":"625,-174v-47,118,-132,204,-297,185r-50,134r-73,0r55,-150v-97,-36,-163,-127,-163,-261v0,-200,157,-317,361,-267r42,-113r73,0r-54,144v46,32,75,81,92,143r-149,10r-89,239v68,12,102,-37,117,-88xm371,-424v-69,0,-78,78,-78,158v0,54,7,93,21,117r99,-263v-11,-8,-25,-12,-42,-12","w":722},"\u00a3":{"d":"31,-159v97,4,152,-77,118,-171r-118,0r0,-96r96,0v-10,-34,-17,-71,-17,-113v0,-150,119,-225,282,-225v163,0,273,79,271,250r-181,0v2,-67,-12,-112,-80,-112v-47,0,-76,36,-76,82v-1,41,16,82,21,118r159,0r0,96r-151,0v0,48,-7,93,-24,128v39,17,86,39,136,42v56,3,64,-42,61,-98r164,0v0,171,-42,271,-205,272v-94,0,-166,-45,-224,-88v-59,61,-121,87,-232,88r0,-173","w":722},"\u2044":{"d":"251,-764r80,0r-414,778r-81,0","w":167},"\u2215":{"d":"251,-764r80,0r-414,778r-81,0","w":167},"\u00a5":{"d":"260,-116r-184,0r0,-110r184,0r0,-83r-184,0r0,-110r125,0r-195,-331r245,0r138,254r131,-254r196,0r-192,331r140,0r0,110r-188,0r0,83r188,0r0,110r-188,0r0,116r-216,0r0,-116","w":722},"\u0192":{"d":"628,-628v-30,-7,-75,-16,-96,6v-27,29,-26,84,-38,127r110,0r0,116r-128,0v-41,179,-37,419,-151,521v-60,53,-182,44,-260,18r24,-117v25,12,77,29,101,3v9,-10,17,-27,21,-51r66,-374r-96,0r0,-116r118,0v23,-143,51,-269,224,-269v48,0,93,9,134,16","w":722},"\u00a7":{"d":"430,-237v33,1,48,-35,26,-61v-43,-51,-97,-103,-169,-125v-44,3,-37,49,-10,77v38,41,94,94,153,109xm182,-621v-1,-142,193,-181,308,-122v33,17,61,46,88,85r-119,78v-15,-33,-34,-72,-79,-74v-45,-2,-64,50,-28,82v76,68,184,121,238,214v51,88,-6,200,-92,203r-1,7v26,27,47,56,47,105v0,106,-70,163,-185,163v-110,0,-168,-44,-216,-114r118,-86v11,39,34,75,81,78v49,4,69,-54,31,-87v-77,-66,-188,-115,-241,-207v-29,-50,-28,-126,10,-166v21,-23,48,-37,83,-41r3,-6v-27,-26,-45,-63,-46,-112","w":722},"\u00a4":{"d":"360,-516v-83,0,-138,56,-138,138v0,83,55,138,138,138v82,0,138,-55,138,-138v0,-82,-56,-138,-138,-138xm158,-238v-60,-58,-61,-223,0,-280r-58,-58r63,-63r57,57v57,-55,218,-58,276,-2r58,-58r68,68r-56,56v57,59,54,223,-2,282r56,56r-60,60r-58,-58v-56,63,-225,62,-284,2r-57,57r-61,-61","w":722},"'":{"d":"57,-756r164,0r0,374r-164,0r0,-374","w":278},"\u201c":{"d":"286,-563r129,-193r67,0r-69,178r69,0r0,196r-196,0r0,-181xm18,-563r129,-193r67,0r-69,178r69,0r0,196r-196,0r0,-181","w":500},"\u00ab":{"d":"352,-89r-119,-163r117,-159r122,0r-120,161r123,161r-123,0xm144,-89r-119,-163r117,-159r122,0r-120,161r123,161r-123,0","w":500},"\u2039":{"d":"137,-89r-119,-163r117,-159r122,0r-120,161r123,161r-123,0","w":278},"\u203a":{"d":"141,-250r-123,-161r123,0r119,163r-117,159r-122,0","w":278},"\u2013":{"d":"0,-311r500,0r0,122r-500,0r0,-122","w":500},"\u2020":{"d":"358,-306v-25,132,-32,267,-41,412r-78,0v-4,-69,-9,-138,-14,-206v-5,-68,-14,-137,-27,-206r41,-164r-6,-8r-172,36r0,-160r172,36r6,-8r-38,-182r154,0r-38,182r6,8r172,-36r0,160r-172,-36r-6,8","w":556},"\u2021":{"d":"198,-325v18,-40,34,-91,36,-146r-6,-9r-172,37r0,-159r172,37r6,-9r-38,-182r164,0r-38,182r6,9r172,-37r0,159r-172,-37r-6,9v2,55,18,106,36,146v-18,40,-34,91,-36,146r6,9r172,-37r0,159r-172,-37r-6,9r38,182r-164,0r38,-182r-6,-9r-172,37r0,-159r172,37r6,-9v-2,-55,-18,-106,-36,-146","w":556},"\u00b7":{"d":"181,-205v-49,0,-90,-41,-90,-90v0,-49,41,-90,90,-90v49,0,90,41,90,90v0,49,-41,90,-90,90","w":361},"\u2219":{"d":"181,-205v-49,0,-90,-41,-90,-90v0,-49,41,-90,90,-90v49,0,90,41,90,90v0,49,-41,90,-90,90","w":361},"\u00b6":{"d":"3,-582v0,-239,319,-160,545,-174r0,862r-114,0r0,-772r-94,0r0,772r-114,0r0,-513v-128,-2,-223,-47,-223,-175","w":620},"\u2022":{"d":"250,-189v-113,0,-189,-76,-189,-189v0,-113,76,-189,189,-189v113,0,189,76,189,189v0,113,-76,189,-189,189","w":500},"\u201a":{"d":"41,-196r196,0r0,181r-129,193r-67,0r69,-178r-69,0r0,-196","w":278},"\u201e":{"d":"286,-196r196,0r0,181r-129,193r-67,0r69,-178r-69,0r0,-196xm18,-196r196,0r0,181r-129,193r-67,0r69,-178r-69,0r0,-196","w":500},"\u201d":{"d":"286,-756r196,0r0,181r-129,193r-67,0r69,-178r-69,0r0,-196xm18,-756r196,0r0,181r-129,193r-67,0r69,-178r-69,0r0,-196","w":500},"\u00bb":{"d":"356,-250r-123,-161r123,0r119,163r-117,159r-122,0xm148,-250r-123,-161r123,0r119,163r-117,159r-122,0","w":500},"\u2026":{"d":"735,-196r196,0r0,196r-196,0r0,-196xm402,-196r196,0r0,196r-196,0r0,-196xm69,-196r196,0r0,196r-196,0r0,-196","w":1000},"\u2030":{"d":"194,-648v-33,0,-59,26,-59,59v0,33,26,59,59,59v33,0,59,-26,59,-59v0,-33,-26,-59,-59,-59xm194,-414v-105,0,-175,-70,-175,-175v0,-105,70,-175,175,-175v105,0,175,70,175,175v0,105,-70,175,-175,175xm560,-770r89,0r-441,785r-86,0xm974,14v-105,0,-175,-70,-175,-175v0,-105,70,-175,175,-175v105,0,175,70,175,175v0,105,-70,175,-175,175xm974,-220v-33,0,-59,26,-59,59v0,33,26,59,59,59v33,0,59,-26,59,-59v0,-33,-26,-59,-59,-59xm575,14v-105,0,-175,-70,-175,-175v0,-105,70,-175,175,-175v105,0,175,70,175,175v0,105,-70,175,-175,175xm575,-220v-33,0,-59,26,-59,59v0,33,26,59,59,59v33,0,59,-26,59,-59v0,-33,-26,-59,-59,-59","w":1168},"\u00bf":{"d":"379,-400r-196,0r0,-196r196,0r0,196xm278,52v64,-4,95,-46,109,-98r155,31v-33,124,-127,189,-280,189v-137,0,-247,-50,-247,-171v0,-160,201,-151,191,-325r152,0v5,146,-70,216,-136,290v-34,38,9,87,56,84","w":557},"`":{"d":"-26,-740r155,0r93,146r-100,0","w":278},"\u00b4":{"d":"149,-740r155,0r-148,146r-100,0","w":278},"\u02c6":{"d":"75,-740r125,0r116,146r-114,0r-64,-82r-64,82r-112,0","w":278},"\u02dc":{"d":"207,-686v22,3,49,-21,50,-42r65,0v-15,62,-37,120,-112,120v-57,0,-88,-34,-146,-34v-23,0,-42,19,-44,41r-64,0v12,-66,42,-122,115,-122v54,0,92,32,136,37","w":278},"\u00af":{"d":"-15,-699r308,0r0,84r-308,0r0,-84","w":278},"\u02c9":{"d":"-15,-699r308,0r0,84r-308,0r0,-84","w":278},"\u02d8":{"d":"36,-740v7,95,199,98,206,0r65,0v-16,92,-64,145,-168,145v-102,0,-163,-45,-168,-145r65,0","w":278},"\u02d9":{"d":"70,-725r138,0r0,128r-138,0r0,-128","w":278},"\u00a8":{"d":"166,-725r138,0r0,128r-138,0r0,-128xm-28,-725r138,0r0,128r-138,0r0,-128","w":278},"\u02da":{"d":"139,-578v-64,0,-107,-43,-107,-107v0,-64,43,-107,107,-107v64,0,107,43,107,107v0,64,-43,107,-107,107xm139,-744v-33,0,-59,26,-59,59v0,33,26,59,59,59v33,0,59,-26,59,-59v0,-33,-26,-59,-59,-59","w":278},"\u00b8":{"d":"245,99v34,103,-82,152,-181,120v-17,-6,-33,-11,-48,-16r19,-42v41,16,125,33,130,-22v4,-41,-53,-43,-85,-29r-21,-20r59,-90r53,0r-43,61v40,-9,105,1,117,38","w":278},"\u02dd":{"d":"260,-740r155,0r-148,146r-100,0xm37,-740r155,0r-148,146r-100,0","w":278},"\u02db":{"d":"219,123v-6,46,43,57,76,39r0,53v-79,27,-161,-12,-156,-96v4,-65,59,-96,100,-127r68,0v-31,40,-80,71,-88,131","w":278},"\u02c7":{"d":"-38,-740r112,0r64,82r64,-82r114,0r-116,146r-125,0","w":278},"\u2014":{"d":"0,-311r1000,0r0,122r-1000,0r0,-122","w":1000},"\u00c6":{"d":"462,-600r-26,0r-111,253r137,0r0,-253xm315,-756r649,0r0,156r-292,0r0,137r170,0r0,156r-168,0r0,145r298,0r0,162r-509,0r0,-167r-212,0r-73,167r-198,0","w":1000},"\u00aa":{"d":"130,-528v-3,47,57,41,84,24r0,-79v-39,7,-81,12,-84,55xm175,-692v-29,0,-39,15,-46,37r-101,-20v16,-64,76,-88,154,-89v92,0,154,20,154,108v0,74,-12,168,14,220r-126,0v-3,-9,-4,-19,-5,-30v-28,24,-57,34,-106,38v-96,7,-130,-106,-69,-163v38,-36,103,-42,170,-46v3,-35,-6,-55,-39,-55","w":361},"\u00d8":{"d":"389,-136v133,0,136,-148,131,-288r-232,231v20,40,50,57,101,57xm389,14v-101,0,-175,-29,-232,-76r-78,77r-83,-83r85,-85v-35,-63,-53,-138,-53,-225v0,-241,122,-392,361,-392v94,0,171,25,232,76r76,-76r85,85r-84,83v35,62,52,137,52,224v0,241,-122,392,-361,392xm389,-620v-135,0,-135,151,-131,290r232,-233v-20,-38,-50,-57,-101,-57"},"\u0152":{"d":"983,-600r-319,0r0,137r203,0r0,156r-203,0r0,145r324,0r0,162r-604,0v-239,-5,-372,-139,-372,-374v0,-170,71,-292,188,-350v42,-21,90,-32,146,-32r637,0r0,156xm360,-160v139,4,94,-172,100,-299v4,-86,-12,-150,-100,-147v-121,5,-132,116,-132,247v0,116,23,196,132,199","w":1000},"\u00ba":{"d":"194,-764v112,0,189,58,189,169v0,109,-73,167,-183,167v-112,0,-186,-55,-186,-166v0,-108,70,-170,180,-170xm198,-506v56,0,53,-59,53,-115v-1,-35,-13,-65,-53,-65v-50,0,-52,44,-52,95v0,45,5,86,52,85","w":397},"\u00e6":{"d":"686,-333v-7,-52,-22,-101,-79,-103v-63,-2,-85,44,-86,103r165,0xm206,-149v0,48,64,67,104,40v14,-9,28,-18,41,-28v-7,-31,-14,-63,-15,-99v-68,1,-130,18,-130,87xm274,-436v-40,0,-68,31,-72,67r-157,-34v26,-99,108,-143,231,-143v73,1,134,18,182,50v47,-33,95,-50,146,-50v188,-1,278,118,270,315r-358,0v3,75,35,123,112,123v53,-1,103,-36,121,-78r121,58v-46,89,-146,142,-278,142v-95,0,-152,-30,-202,-91v-45,48,-124,91,-209,91v-100,0,-163,-57,-163,-156v0,-156,156,-187,321,-191v4,-61,-11,-103,-65,-103","w":889},"\u0131":{"d":"45,-532r188,0r0,532r-188,0r0,-532","w":278},"\u00f8":{"d":"589,-266v0,177,-107,280,-284,280v-67,0,-124,-16,-171,-47r-64,60r-71,-74r63,-61v-26,-42,-41,-92,-41,-158v0,-176,107,-280,284,-280v63,0,118,15,164,46r70,-68r72,81r-66,63v26,42,44,93,44,158xm305,-424v-82,0,-87,79,-88,166r147,-141v-14,-17,-31,-25,-59,-25xm305,-108v84,0,87,-82,88,-171r-150,142v13,20,32,29,62,29","w":610},"\u0153":{"d":"733,-333v-7,-52,-22,-101,-79,-103v-63,-2,-85,44,-86,103r165,0xm217,-266v0,85,8,158,88,158v80,0,88,-73,88,-158v0,-85,-9,-158,-88,-158v-79,0,-88,73,-88,158xm639,-546v190,0,285,115,282,315r-358,0v1,72,43,123,112,123v53,0,103,-36,121,-78r125,56v-62,88,-141,144,-282,144v-66,0,-120,-21,-160,-51v-39,32,-107,51,-174,51v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280v69,0,132,20,172,52v42,-29,97,-52,162,-52","w":945},"\u00df":{"d":"278,-648v-46,1,-49,50,-50,96r0,552r-188,0r0,-562v7,-139,102,-208,246,-208v133,0,228,61,233,190v4,96,-44,140,-108,168v109,19,160,91,160,217v0,121,-69,196,-187,201v-39,2,-83,-7,-109,-18r0,-124v10,3,27,10,39,10v63,0,69,-54,69,-117v-1,-67,-24,-123,-104,-110r0,-116v48,0,58,-40,58,-87v0,-51,-8,-93,-59,-92","w":611},"\u00f7":{"d":"302,-365v-57,0,-94,-37,-94,-94v0,-56,37,-94,94,-94v56,0,94,38,94,94v0,57,-38,94,-94,94xm302,47v-57,0,-94,-37,-94,-94v0,-56,37,-94,94,-94v56,0,94,38,94,94v0,57,-38,94,-94,94xm47,-314r506,0r0,122r-506,0r0,-122","w":600},"\u00ae":{"d":"123,-101v-89,-81,-156,-272,-84,-429v60,-134,177,-240,361,-240v184,0,301,107,361,240v71,156,1,346,-84,429v-91,90,-276,153,-429,84v-47,-21,-88,-50,-125,-84xm476,-468v0,-69,-81,-40,-139,-46r0,100v62,-3,139,19,139,-54xm578,-458v0,77,-44,107,-114,111r108,183r-103,0r-96,-178r-36,0r0,178r-96,0r0,-422v152,4,337,-31,337,128xm130,-378v0,177,95,290,270,290v176,0,270,-113,270,-290v0,-177,-95,-290,-270,-290v-176,0,-270,113,-270,290","w":800},"\u00e7":{"d":"258,11v-150,-17,-237,-113,-237,-277v0,-171,100,-280,270,-280v139,0,215,73,244,190r-170,11v-3,-46,-20,-82,-70,-79v-69,5,-78,78,-78,158v0,100,13,158,97,158v62,0,84,-43,100,-90r135,24v-42,105,-107,180,-240,187r-34,48v55,-11,127,6,124,73v-5,109,-157,106,-236,69r19,-42v41,16,125,33,130,-22v4,-41,-53,-43,-85,-29r-21,-20","w":556},"\u00b1":{"d":"47,-122r506,0r0,122r-506,0r0,-122xm239,-267r-192,0r0,-122r192,0r0,-117r122,0r0,117r192,0r0,122r-192,0r0,117r-122,0r0,-117","w":600},"\u00c7":{"d":"404,139v4,-41,-53,-43,-85,-29r-21,-20r51,-77v-203,-20,-321,-159,-321,-385v0,-246,128,-398,363,-398v183,0,283,105,308,266r-202,15v-10,-70,-38,-131,-115,-131v-107,0,-126,100,-126,234v0,146,19,250,146,250v86,0,124,-68,142,-141r162,35v-43,154,-131,240,-304,254r-35,49v55,-11,127,6,124,73v-5,109,-157,106,-236,69r19,-42v41,16,125,33,130,-22","w":722},"\u00a9":{"d":"130,-378v0,177,95,290,270,290v176,0,270,-113,270,-290v0,-177,-95,-290,-270,-290v-176,0,-270,113,-270,290xm123,-101v-89,-81,-156,-272,-84,-429v60,-134,177,-240,361,-240v184,0,301,107,361,240v71,156,1,346,-84,429v-91,90,-276,153,-429,84v-47,-21,-88,-50,-125,-84xm411,-250v47,0,85,-22,88,-68r99,0v-17,98,-78,164,-187,164v-136,0,-217,-88,-217,-224v0,-138,77,-225,215,-225v103,0,172,63,185,161r-95,0v-7,-45,-43,-65,-90,-65v-69,0,-99,53,-99,127v0,68,36,130,101,130","w":800},"\u00ac":{"d":"47,-426r506,0r0,317r-122,0r0,-195r-384,0r0,-122","w":600},"\u2122":{"d":"451,-756r156,0r89,239r89,-239r156,0r0,412r-110,0r0,-268r-2,0r-89,268r-88,0r-89,-268r-2,0r0,268r-110,0r0,-412xm124,-666r-111,0r0,-90r344,0r0,90r-111,0r0,322r-122,0r0,-322","w":1000},"\u00b0":{"d":"200,-466v-90,0,-149,-59,-149,-149v0,-90,60,-149,149,-149v89,0,149,60,149,149v0,89,-59,149,-149,149xm200,-692v-42,0,-77,35,-77,77v0,42,35,77,77,77v42,0,77,-35,77,-77v0,-42,-35,-77,-77,-77","w":400},"\u00b5":{"d":"374,-56v-32,28,-83,58,-138,36r0,180r-188,0r0,-692r188,0r0,337v0,44,12,79,57,77v36,-2,69,-24,81,-51r0,-363r188,0r0,532r-188,0r0,-56","w":610},"\u03bc":{"d":"374,-56v-32,28,-83,58,-138,36r0,180r-188,0r0,-692r188,0r0,337v0,44,12,79,57,77v36,-2,69,-24,81,-51r0,-363r188,0r0,532r-188,0r0,-56","w":610},"#":{"d":"328,-437r-17,124r97,0r18,-124r-98,0xm99,-313r105,0r17,-124r-90,0r0,-102r104,0r29,-211r107,0r-29,211r98,0r28,-211r108,0r-29,211r90,0r0,102r-104,0r-17,124r90,0r0,102r-105,0r-29,211r-107,0r28,-211r-97,0r-29,211r-107,0r29,-211r-90,0r0,-102","w":722},"\u00c1":{"d":"271,-756r233,0r259,756r-225,0r-45,-144r-258,0r-49,144r-171,0xm283,-300r161,0r-76,-247r-2,0xm399,-952r155,0r-148,146r-100,0"},"\u00c2":{"d":"271,-756r233,0r259,756r-225,0r-45,-144r-258,0r-49,144r-171,0xm283,-300r161,0r-76,-247r-2,0xm325,-952r125,0r116,146r-114,0r-64,-82r-64,82r-112,0"},"\u00c4":{"d":"271,-756r233,0r259,756r-225,0r-45,-144r-258,0r-49,144r-171,0xm283,-300r161,0r-76,-247r-2,0xm416,-937r138,0r0,128r-138,0r0,-128xm222,-937r138,0r0,128r-138,0r0,-128"},"\u00c0":{"d":"271,-756r233,0r259,756r-225,0r-45,-144r-258,0r-49,144r-171,0xm283,-300r161,0r-76,-247r-2,0xm224,-952r155,0r93,146r-100,0"},"\u00c5":{"d":"271,-756r233,0r259,756r-225,0r-45,-144r-258,0r-49,144r-171,0xm283,-300r161,0r-76,-247r-2,0xm389,-802v-64,0,-107,-43,-107,-107v0,-64,43,-107,107,-107v64,0,107,43,107,107v0,64,-43,107,-107,107xm389,-968v-33,0,-59,26,-59,59v0,33,26,59,59,59v33,0,59,-26,59,-59v0,-33,-26,-59,-59,-59"},"\u00c3":{"d":"271,-756r233,0r259,756r-225,0r-45,-144r-258,0r-49,144r-171,0xm283,-300r161,0r-76,-247r-2,0xm457,-898v22,3,49,-21,50,-42r65,0v-15,62,-37,120,-112,120v-57,0,-88,-34,-146,-34v-23,0,-42,19,-44,41r-64,0v12,-66,42,-122,115,-122v54,0,92,32,136,37"},"\u00c9":{"d":"60,-756r569,0r0,156r-353,0r0,137r226,0r0,156r-226,0r0,145r364,0r0,162r-580,0r0,-756xm344,-952r155,0r-148,146r-100,0","w":668},"\u00ca":{"d":"60,-756r569,0r0,156r-353,0r0,137r226,0r0,156r-226,0r0,145r364,0r0,162r-580,0r0,-756xm270,-952r125,0r116,146r-114,0r-64,-82r-64,82r-112,0","w":668},"\u00cb":{"d":"60,-756r569,0r0,156r-353,0r0,137r226,0r0,156r-226,0r0,145r364,0r0,162r-580,0r0,-756xm361,-937r138,0r0,128r-138,0r0,-128xm167,-937r138,0r0,128r-138,0r0,-128","w":668},"\u00c8":{"d":"60,-756r569,0r0,156r-353,0r0,137r226,0r0,156r-226,0r0,145r364,0r0,162r-580,0r0,-756xm169,-952r155,0r93,146r-100,0","w":668},"\u00cd":{"d":"86,-756r216,0r0,756r-216,0r0,-756xm204,-952r155,0r-148,146r-100,0","w":388},"\u00ce":{"d":"86,-756r216,0r0,756r-216,0r0,-756xm130,-952r125,0r116,146r-114,0r-64,-82r-64,82r-112,0","w":388},"\u00cf":{"d":"86,-756r216,0r0,756r-216,0r0,-756xm221,-937r138,0r0,128r-138,0r0,-128xm27,-937r138,0r0,128r-138,0r0,-128","w":388},"\u00cc":{"d":"86,-756r216,0r0,756r-216,0r0,-756xm29,-952r155,0r93,146r-100,0","w":388},"\u00d1":{"d":"70,-756r201,0r269,401r2,0r0,-401r166,0r0,756r-162,0r-308,-428r-2,0r0,428r-166,0r0,-756xm457,-898v22,3,49,-21,50,-42r65,0v-15,62,-37,120,-112,120v-57,0,-88,-34,-146,-34v-23,0,-42,19,-44,41r-64,0v12,-66,42,-122,115,-122v54,0,92,32,136,37"},"\u00d3":{"d":"389,-770v239,0,361,151,361,392v0,241,-122,392,-361,392v-239,0,-361,-151,-361,-392v0,-241,122,-392,361,-392xm522,-378v0,-130,-11,-242,-133,-242v-121,0,-133,113,-133,242v0,131,13,242,133,242v119,0,133,-112,133,-242xm399,-952r155,0r-148,146r-100,0"},"\u00d4":{"d":"389,-770v239,0,361,151,361,392v0,241,-122,392,-361,392v-239,0,-361,-151,-361,-392v0,-241,122,-392,361,-392xm522,-378v0,-130,-11,-242,-133,-242v-121,0,-133,113,-133,242v0,131,13,242,133,242v119,0,133,-112,133,-242xm325,-952r125,0r116,146r-114,0r-64,-82r-64,82r-112,0"},"\u00d6":{"d":"389,-770v239,0,361,151,361,392v0,241,-122,392,-361,392v-239,0,-361,-151,-361,-392v0,-241,122,-392,361,-392xm522,-378v0,-130,-11,-242,-133,-242v-121,0,-133,113,-133,242v0,131,13,242,133,242v119,0,133,-112,133,-242xm416,-937r138,0r0,128r-138,0r0,-128xm222,-937r138,0r0,128r-138,0r0,-128"},"\u00d2":{"d":"389,-770v239,0,361,151,361,392v0,241,-122,392,-361,392v-239,0,-361,-151,-361,-392v0,-241,122,-392,361,-392xm522,-378v0,-130,-11,-242,-133,-242v-121,0,-133,113,-133,242v0,131,13,242,133,242v119,0,133,-112,133,-242xm224,-952r155,0r93,146r-100,0"},"\u00d5":{"d":"389,-770v239,0,361,151,361,392v0,241,-122,392,-361,392v-239,0,-361,-151,-361,-392v0,-241,122,-392,361,-392xm522,-378v0,-130,-11,-242,-133,-242v-121,0,-133,113,-133,242v0,131,13,242,133,242v119,0,133,-112,133,-242xm457,-898v22,3,49,-21,50,-42r65,0v-15,62,-37,120,-112,120v-57,0,-88,-34,-146,-34v-23,0,-42,19,-44,41r-64,0v12,-66,42,-122,115,-122v54,0,92,32,136,37"},"\u00da":{"d":"409,-148v94,0,131,-49,130,-155r0,-453r166,0r0,485v-4,192,-119,285,-322,285v-196,0,-310,-92,-310,-275r0,-495r216,0r0,476v1,83,42,132,120,132xm399,-952r155,0r-148,146r-100,0"},"\u00db":{"d":"409,-148v94,0,131,-49,130,-155r0,-453r166,0r0,485v-4,192,-119,285,-322,285v-196,0,-310,-92,-310,-275r0,-495r216,0r0,476v1,83,42,132,120,132xm325,-952r125,0r116,146r-114,0r-64,-82r-64,82r-112,0"},"\u00dc":{"d":"409,-148v94,0,131,-49,130,-155r0,-453r166,0r0,485v-4,192,-119,285,-322,285v-196,0,-310,-92,-310,-275r0,-495r216,0r0,476v1,83,42,132,120,132xm416,-937r138,0r0,128r-138,0r0,-128xm222,-937r138,0r0,128r-138,0r0,-128"},"\u00d9":{"d":"409,-148v94,0,131,-49,130,-155r0,-453r166,0r0,485v-4,192,-119,285,-322,285v-196,0,-310,-92,-310,-275r0,-495r216,0r0,476v1,83,42,132,120,132xm224,-952r155,0r93,146r-100,0"},"\u0178":{"d":"288,-321r-274,-435r245,0r158,257r151,-257r196,0r-260,417r0,339r-216,0r0,-321xm431,-937r138,0r0,128r-138,0r0,-128xm237,-937r138,0r0,128r-138,0r0,-128"},"\u00e1":{"d":"258,-102v34,0,54,-14,77,-30r0,-111v-60,10,-135,17,-135,84v0,36,26,57,58,57xm273,-430v-49,0,-63,27,-74,65r-156,-33v22,-105,113,-148,237,-148v136,0,237,29,237,156r0,285v0,38,5,81,21,105r-193,0v-4,-14,-7,-30,-8,-48v-38,35,-95,62,-162,62v-94,0,-157,-55,-157,-157v0,-156,159,-185,318,-190r0,-44v1,-39,-27,-52,-63,-53xm288,-740r155,0r-148,146r-100,0","w":556},"\u00e2":{"d":"258,-102v34,0,54,-14,77,-30r0,-111v-60,10,-135,17,-135,84v0,36,26,57,58,57xm273,-430v-49,0,-63,27,-74,65r-156,-33v22,-105,113,-148,237,-148v136,0,237,29,237,156r0,285v0,38,5,81,21,105r-193,0v-4,-14,-7,-30,-8,-48v-38,35,-95,62,-162,62v-94,0,-157,-55,-157,-157v0,-156,159,-185,318,-190r0,-44v1,-39,-27,-52,-63,-53xm214,-740r125,0r116,146r-114,0r-64,-82r-64,82r-112,0","w":556},"\u00e4":{"d":"258,-102v34,0,54,-14,77,-30r0,-111v-60,10,-135,17,-135,84v0,36,26,57,58,57xm273,-430v-49,0,-63,27,-74,65r-156,-33v22,-105,113,-148,237,-148v136,0,237,29,237,156r0,285v0,38,5,81,21,105r-193,0v-4,-14,-7,-30,-8,-48v-38,35,-95,62,-162,62v-94,0,-157,-55,-157,-157v0,-156,159,-185,318,-190r0,-44v1,-39,-27,-52,-63,-53xm305,-725r138,0r0,128r-138,0r0,-128xm111,-725r138,0r0,128r-138,0r0,-128","w":556},"\u00e0":{"d":"258,-102v34,0,54,-14,77,-30r0,-111v-60,10,-135,17,-135,84v0,36,26,57,58,57xm273,-430v-49,0,-63,27,-74,65r-156,-33v22,-105,113,-148,237,-148v136,0,237,29,237,156r0,285v0,38,5,81,21,105r-193,0v-4,-14,-7,-30,-8,-48v-38,35,-95,62,-162,62v-94,0,-157,-55,-157,-157v0,-156,159,-185,318,-190r0,-44v1,-39,-27,-52,-63,-53xm113,-740r155,0r93,146r-100,0","w":556},"\u00e5":{"d":"258,-102v34,0,54,-14,77,-30r0,-111v-60,10,-135,17,-135,84v0,36,26,57,58,57xm273,-430v-49,0,-63,27,-74,65r-156,-33v22,-105,113,-148,237,-148v136,0,237,29,237,156r0,285v0,38,5,81,21,105r-193,0v-4,-14,-7,-30,-8,-48v-38,35,-95,62,-162,62v-94,0,-157,-55,-157,-157v0,-156,159,-185,318,-190r0,-44v1,-39,-27,-52,-63,-53xm290,-578v-64,0,-107,-43,-107,-107v0,-64,43,-107,107,-107v64,0,107,43,107,107v0,64,-43,107,-107,107xm290,-744v-33,0,-59,26,-59,59v0,33,26,59,59,59v33,0,59,-26,59,-59v0,-33,-26,-59,-59,-59","w":556},"\u00e3":{"d":"258,-102v34,0,54,-14,77,-30r0,-111v-60,10,-135,17,-135,84v0,36,26,57,58,57xm273,-430v-49,0,-63,27,-74,65r-156,-33v22,-105,113,-148,237,-148v136,0,237,29,237,156r0,285v0,38,5,81,21,105r-193,0v-4,-14,-7,-30,-8,-48v-38,35,-95,62,-162,62v-94,0,-157,-55,-157,-157v0,-156,159,-185,318,-190r0,-44v1,-39,-27,-52,-63,-53xm346,-686v22,3,49,-21,50,-42r65,0v-15,62,-37,120,-112,120v-57,0,-88,-34,-146,-34v-23,0,-42,19,-44,41r-64,0v12,-66,42,-122,115,-122v54,0,92,32,136,37","w":556},"\u00e9":{"d":"390,-333v3,-54,-23,-103,-78,-103v-64,0,-86,44,-88,103r166,0xm305,-546v189,0,284,115,281,315r-369,0v-2,74,52,124,124,123v53,-1,103,-36,121,-78r124,56v-61,89,-141,144,-281,144v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280xm315,-740r155,0r-148,146r-100,0","w":610},"\u00ea":{"d":"390,-333v3,-54,-23,-103,-78,-103v-64,0,-86,44,-88,103r166,0xm305,-546v189,0,284,115,281,315r-369,0v-2,74,52,124,124,123v53,-1,103,-36,121,-78r124,56v-61,89,-141,144,-281,144v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280xm241,-740r125,0r116,146r-114,0r-64,-82r-64,82r-112,0","w":610},"\u00eb":{"d":"390,-333v3,-54,-23,-103,-78,-103v-64,0,-86,44,-88,103r166,0xm305,-546v189,0,284,115,281,315r-369,0v-2,74,52,124,124,123v53,-1,103,-36,121,-78r124,56v-61,89,-141,144,-281,144v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280xm332,-725r138,0r0,128r-138,0r0,-128xm138,-725r138,0r0,128r-138,0r0,-128","w":610},"\u00e8":{"d":"390,-333v3,-54,-23,-103,-78,-103v-64,0,-86,44,-88,103r166,0xm305,-546v189,0,284,115,281,315r-369,0v-2,74,52,124,124,123v53,-1,103,-36,121,-78r124,56v-61,89,-141,144,-281,144v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280xm140,-740r155,0r93,146r-100,0","w":610},"\u00ed":{"d":"45,-532r188,0r0,532r-188,0r0,-532xm149,-740r155,0r-148,146r-100,0","w":278},"\u00ee":{"d":"45,-532r188,0r0,532r-188,0r0,-532xm75,-740r125,0r116,146r-114,0r-64,-82r-64,82r-112,0","w":278},"\u00ef":{"d":"45,-532r188,0r0,532r-188,0r0,-532xm166,-725r138,0r0,128r-138,0r0,-128xm-28,-725r138,0r0,128r-138,0r0,-128","w":278},"\u00ec":{"d":"45,-532r188,0r0,532r-188,0r0,-532xm-26,-740r155,0r93,146r-100,0","w":278},"\u00f1":{"d":"317,-414v-35,1,-59,29,-81,48r0,366r-188,0r0,-532r188,0r0,76v44,-42,91,-90,173,-90v93,0,153,58,153,161r0,385r-188,0r0,-337v0,-44,-12,-77,-57,-77xm373,-686v22,3,49,-21,50,-42r65,0v-15,62,-37,120,-112,120v-57,0,-88,-34,-146,-34v-23,0,-42,19,-44,41r-64,0v12,-66,42,-122,115,-122v54,0,92,32,136,37","w":610},"\u00f3":{"d":"305,-546v176,0,284,104,284,280v0,177,-107,280,-284,280v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280xm217,-266v0,85,8,158,88,158v80,0,88,-73,88,-158v0,-85,-9,-158,-88,-158v-79,0,-88,73,-88,158xm315,-740r155,0r-148,146r-100,0","w":610},"\u00f4":{"d":"305,-546v176,0,284,104,284,280v0,177,-107,280,-284,280v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280xm217,-266v0,85,8,158,88,158v80,0,88,-73,88,-158v0,-85,-9,-158,-88,-158v-79,0,-88,73,-88,158xm241,-740r125,0r116,146r-114,0r-64,-82r-64,82r-112,0","w":610},"\u00f6":{"d":"305,-546v176,0,284,104,284,280v0,177,-107,280,-284,280v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280xm217,-266v0,85,8,158,88,158v80,0,88,-73,88,-158v0,-85,-9,-158,-88,-158v-79,0,-88,73,-88,158xm332,-725r138,0r0,128r-138,0r0,-128xm138,-725r138,0r0,128r-138,0r0,-128","w":610},"\u00f2":{"d":"305,-546v176,0,284,104,284,280v0,177,-107,280,-284,280v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280xm217,-266v0,85,8,158,88,158v80,0,88,-73,88,-158v0,-85,-9,-158,-88,-158v-79,0,-88,73,-88,158xm140,-740r155,0r93,146r-100,0","w":610},"\u00f5":{"d":"305,-546v176,0,284,104,284,280v0,177,-107,280,-284,280v-178,0,-284,-101,-284,-280v0,-176,107,-280,284,-280xm217,-266v0,85,8,158,88,158v80,0,88,-73,88,-158v0,-85,-9,-158,-88,-158v-79,0,-88,73,-88,158xm373,-686v22,3,49,-21,50,-42r65,0v-15,62,-37,120,-112,120v-57,0,-88,-34,-146,-34v-23,0,-42,19,-44,41r-64,0v12,-66,42,-122,115,-122v54,0,92,32,136,37","w":610},"\u00fa":{"d":"293,-118v35,-1,59,-29,81,-48r0,-366r188,0r0,532r-188,0r0,-76v-44,42,-91,90,-173,90v-93,0,-153,-58,-153,-161r0,-385r188,0r0,337v0,44,12,77,57,77xm315,-740r155,0r-148,146r-100,0","w":610},"\u00fb":{"d":"293,-118v35,-1,59,-29,81,-48r0,-366r188,0r0,532r-188,0r0,-76v-44,42,-91,90,-173,90v-93,0,-153,-58,-153,-161r0,-385r188,0r0,337v0,44,12,77,57,77xm241,-740r125,0r116,146r-114,0r-64,-82r-64,82r-112,0","w":610},"\u00fc":{"d":"293,-118v35,-1,59,-29,81,-48r0,-366r188,0r0,532r-188,0r0,-76v-44,42,-91,90,-173,90v-93,0,-153,-58,-153,-161r0,-385r188,0r0,337v0,44,12,77,57,77xm332,-725r138,0r0,128r-138,0r0,-128xm138,-725r138,0r0,128r-138,0r0,-128","w":610},"\u00f9":{"d":"293,-118v35,-1,59,-29,81,-48r0,-366r188,0r0,532r-188,0r0,-76v-44,42,-91,90,-173,90v-93,0,-153,-58,-153,-161r0,-385r188,0r0,337v0,44,12,77,57,77xm140,-740r155,0r93,146r-100,0","w":610},"\u00ff":{"d":"32,24v58,14,185,17,156,-61r-186,-495r200,0r102,299r2,0r106,-299r143,0r-202,497v-42,129,-134,216,-321,192r0,-133xm305,-725r138,0r0,128r-138,0r0,-128xm111,-725r138,0r0,128r-138,0r0,-128","w":556},"!":{"d":"69,-196r196,0r0,196r-196,0r0,-196xm59,-756r216,0r-53,482r-111,0","w":334},"\"":{"d":"302,-756r164,0r0,374r-164,0r0,-374xm34,-756r164,0r0,374r-164,0r0,-374","w":500},"\u0141":{"d":"60,-263r-70,34r0,-108r70,-34r0,-385r216,0r0,282r224,-107r0,108r-224,107r0,204r316,0r0,162r-532,0r0,-263","w":612},"\u0142":{"d":"45,-299r-82,51r0,-93r82,-51r0,-364r188,0r0,246r82,-51r0,93r-82,51r0,417r-188,0r0,-299","w":278},"\u00be":{"d":"681,-184r110,0r-1,-126xm792,-88r-219,0r0,-96r231,-270r125,0r0,270r81,0r0,96r-81,0r0,88r-137,0r0,-88xm499,-435v-3,107,-109,131,-216,131v-89,0,-169,-33,-210,-89r91,-57v24,31,67,56,118,56v37,0,73,-9,73,-46v0,-55,-72,-56,-139,-56r0,-84v57,1,120,-4,120,-54v0,-29,-30,-34,-60,-34v-45,0,-81,17,-110,37r-72,-65v51,-45,107,-68,195,-68v92,0,187,23,191,115v3,62,-53,80,-94,102v58,14,115,43,113,112xm750,-764r80,0r-414,778r-81,0","w":1083},"\u00bc":{"d":"681,-184r110,0r-1,-126xm792,-88r-219,0r0,-96r231,-270r125,0r0,270r81,0r0,96r-81,0r0,88r-137,0r0,-88xm74,-699v68,-10,103,-25,147,-65r77,0r0,350r78,0r0,102r-303,0r0,-102r81,0r0,-211v-25,6,-52,14,-80,17r0,-91xm708,-764r80,0r-414,778r-81,0","w":1083},"\u00b9":{"d":"84,-699v68,-10,103,-25,147,-65r77,0r0,350r78,0r0,102r-303,0r0,-102r81,0r0,-211v-25,6,-52,14,-80,17r0,-91","w":469},"\u00d7":{"d":"64,-407r82,-82r154,154r154,-154r82,82r-155,154r155,154r-82,82r-154,-155r-154,155r-82,-82r154,-154","w":600},"\u00de":{"d":"498,-422v2,-108,-118,-89,-222,-90r0,174v101,-1,221,17,222,-84xm726,-426v0,169,-123,234,-292,238r-158,0r0,188r-216,0r0,-756r216,0r0,100r174,0v164,3,276,71,276,230","w":740},"\u00a6":{"d":"172,-175r0,350r-122,0r0,-350r122,0xm172,-675r0,350r-122,0r0,-350r122,0","w":222},"\u00d0":{"d":"750,-383v0,253,-143,383,-404,383r-286,0r0,-364r-54,0r0,-122r54,0r0,-270v162,6,350,-20,471,28v133,53,219,165,219,345xm522,-384v-1,-129,-48,-226,-178,-228r-68,0r0,126r159,0r0,122r-159,0r0,220v175,15,248,-75,246,-240"},"\u00bd":{"d":"815,-452v110,0,195,38,195,135v0,65,-45,103,-89,129r-129,76r0,2r217,0r0,110r-400,0r0,-87r214,-161v17,-16,38,-33,40,-62v2,-34,-25,-45,-57,-46v-49,0,-84,29,-97,68r-102,-48v34,-71,103,-116,208,-116xm74,-699v68,-10,103,-25,147,-65r77,0r0,350r78,0r0,102r-303,0r0,-102r81,0r0,-211v-25,6,-52,14,-80,17r0,-91xm679,-764r80,0r-414,778r-81,0","w":1083},"\u2212":{"d":"47,-314r506,0r0,122r-506,0r0,-122","w":600},"\u00f0":{"d":"217,-266v0,85,8,158,88,158v80,0,88,-73,88,-158v0,-85,-9,-158,-88,-158v-79,0,-88,73,-88,158xm262,-526v61,0,113,25,136,69v-4,-86,-75,-141,-132,-181r-94,63r-77,-58r81,-53v-21,-15,-59,-25,-89,-35r90,-118v55,13,109,32,153,55r102,-65r70,59r-97,63v116,84,182,228,184,420v2,198,-93,321,-284,321v-178,0,-284,-101,-284,-280v0,-159,81,-260,241,-260","w":610},"\u00fe":{"d":"310,-430v-31,-1,-60,23,-74,40r0,243v22,21,38,45,78,45v75,0,80,-92,80,-172v0,-75,-8,-155,-84,-156xm377,8v-61,0,-111,-33,-141,-68r0,220r-188,0r0,-916r188,0r0,274v50,-48,166,-92,244,-40v69,46,110,136,110,246v0,154,-59,284,-213,284","w":611},"\u00b2":{"d":"241,-764v110,0,195,38,195,135v0,65,-45,103,-89,129r-129,76r0,2r217,0r0,110r-400,0r0,-87r214,-161v17,-16,38,-33,40,-62v2,-34,-25,-45,-57,-46v-49,0,-84,29,-97,68r-102,-48v34,-71,103,-116,208,-116","w":469},"\u00b3":{"d":"436,-435v-3,107,-109,131,-216,131v-89,0,-169,-33,-210,-89r91,-57v24,31,67,56,118,56v37,0,73,-9,73,-46v0,-55,-72,-56,-139,-56r0,-84v57,1,120,-4,120,-54v0,-29,-30,-34,-60,-34v-45,0,-81,17,-110,37r-72,-65v51,-45,107,-68,195,-68v92,0,187,23,191,115v3,62,-53,80,-94,102v58,14,115,43,113,112","w":469},"\u0160":{"d":"57,-521v-9,-287,454,-316,585,-130r-126,104v-39,-44,-82,-66,-158,-67v-46,0,-89,14,-91,54v16,80,133,68,207,91v112,35,212,85,208,231v-5,202,-198,277,-419,245v-107,-15,-184,-64,-236,-140r130,-101v42,53,103,91,190,92v67,2,113,-19,119,-66v-7,-57,-76,-61,-130,-74v-138,-35,-274,-68,-279,-239xm184,-952r112,0r64,82r64,-82r114,0r-116,146r-125,0","w":722},"\u00dd":{"d":"288,-321r-274,-435r245,0r158,257r151,-257r196,0r-260,417r0,339r-216,0r0,-321xm419,-952r155,0r-148,146r-100,0"},"\u017d":{"d":"20,-94r336,-506r-308,0r0,-156r600,0r0,88r-329,506r325,0r0,162r-624,0r0,-94xm157,-952r112,0r64,82r64,-82r114,0r-116,146r-125,0","w":668},"\u0161":{"d":"533,-173v0,146,-118,187,-273,187v-116,0,-193,-35,-245,-112r111,-71v35,51,74,72,152,73v44,0,91,-14,80,-55v-38,-42,-168,-40,-219,-61v-62,-25,-105,-70,-108,-147v-10,-224,380,-240,463,-82r-111,65v-17,-35,-64,-54,-114,-54v-36,0,-72,6,-72,41v7,34,36,30,84,37v84,13,147,31,189,59v42,28,63,68,63,120xm101,-740r112,0r64,82r64,-82r114,0r-116,146r-125,0","w":556},"\u00fd":{"d":"32,24v58,14,185,17,156,-61r-186,-495r200,0r102,299r2,0r106,-299r143,0r-202,497v-42,129,-134,216,-321,192r0,-133xm288,-740r155,0r-148,146r-100,0","w":556},"\u017e":{"d":"22,-84r249,-332r-221,0r0,-116r463,0r0,84r-247,332r249,0r0,116r-493,0r0,-84xm101,-740r112,0r64,82r64,-82r114,0r-116,146r-125,0","w":556}}});;
// ---- 67a882fdf0_minify_navHover.js
$(document).ready(function(){if($.browser.msie&&parseInt($.browser.version,10)<9)
return;$('#nav ul li ul li').each(function(index,objElement){if($(objElement).children('a').hasClass('submenu'))
$(this).append('<span class="indicator stay"></span>');});$('#nav ul li ul').each(function(index,objElement){if($(objElement).children('li').length=='1')
$(objElement).children('li').addClass('first');});$('#nav ul li').hover(function(){$(this).addClass('hover');if($(this).children('a').hasClass('submenu'))
$(this).append('<span class="indicator remove"></span>');$(this).children('ul').css('opacity',0).css('display','block').delay(150).animate({'opacity':0.97,'display':'block'},200);},function(){$(this).removeClass('hover');$(this).children('.remove').remove();$(this).children('ul').css('opacity',1).css('display','block').delay(50).animate({'opacity':0,},200,function(){$(this).css('display','none')});});});;
// ---- a842d2339a_minify_socialMedia.js
function loadFacebookIFrame(){$('#servicelinks .facebook').remove();$('#servicelinks').prepend('<iframe src="//www.facebook.com/plugins/like.php?href='+document.location.href+'&amp;send=false&amp;layout=button_count&amp;width=75&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=20&amp;appId=259885247372698" scrolling="no" frameborder="0" style="float: left; border:none; overflow:hidden; margin: -2px 10px 0px 0px; width:75px; height:20px;" allowTransparency="true"></iframe>');return false;};;
// ---- d7f53926fe_minify_stageSlideshow.js
$(document).ready(function(){if($("#stage").hasClass("small")){$("#stage ul").stageSlideshowSmall();}else{$("#stage ul").stageSlideshowBig();}});$.fn.stageSlideshowBig=function(options){var blnFirstTime=true;var intTimeout=10000;var intFadeOut=1000;if($('#stage ul li').length==1){$('.pause').hide();return;}
$("#stage ul").cycle({timeout:intTimeout,speed:500,pause:false,pauseOnPagerHover:0,fx:'scrollLeft',next:'#next',prev:'#prev',before:onBefore,after:onAfter});function onBefore(currElement,nextElement,opts,isForward){if(!blnFirstTime)
$(".overlay").delay(250).fadeOut(1250,"swing");};function onAfter(currElement,nextElement,opts,isForward){if($(nextElement.lastElementChild).children().size()>1){blnFirstTime=false;$(nextElement.lastElementChild).delay(250).fadeIn(1250,"swing");}};$('.pause').click(function(){if($(this).hasClass('paused')){$(this).removeClass('paused');$("#stage ul").cycle('resume');}else{$(this).addClass('paused');$("#stage ul").cycle('pause');}});};$.fn.stageSlideshowSmall=function(options){var intTimeout=3500;$("#stage ul").cycle({timeout:intTimeout,pause:false,pauseOnPagerHover:0,fx:'fade'});};;
// ---- 6636f42711_minify_partnerSlideshow.js
$.fn.reverse=[].reverse;$.fn.shuffle=function(){return this.each(function(){var items=$(this).children();return(items.length)?$(this).html($.shuffle(items)):this;});};$.shuffle=function(arr){for(var j,x,i=arr.length;i;j=parseInt(Math.random()*i),x=arr[--i],arr[i]=arr[j],arr[j]=x);return arr;};$.fn.showPartner=function(options){var opts=$.extend({size:5,showDuration:15000,fadeDuration:250,fadeDelay:125},options||{}),that=$(this),timer;function start(){timer=setInterval(function(){fadeLogosOut(function(){that.find('li').slice(0,opts.size).detach().appendTo(that);fadeLogosIn();});},opts.showDuration);};function stop(){clearInterval(timer);}
function fadeLogosIn(){that.find('li').slice(0,opts.size).each(function(index){$(this).delay((index+1)*opts.fadeDelay).fadeIn(opts.fadeDuration);});}
function fadeLogosOut(callback){var list=that.find('li');size=Math.min(list.size(),opts.size);list.slice(0,size).reverse().each(function(index){$(this).delay((index+1)*opts.fadeDelay).fadeOut(opts.fadeDuration,(index===size-1)?callback:undefined);});}
$(this).shuffle().find('li').hide().end().mouseover(stop).mouseout(start);setTimeout(fadeLogosIn,500);start();};function grayscale(src){var canvas=document.createElement('canvas');var ctx=canvas.getContext('2d');var imgObj=new Image();imgObj.src=src;canvas.width=imgObj.width;canvas.height=imgObj.height;ctx.drawImage(imgObj,0,0);var imgPixels=ctx.getImageData(0,0,canvas.width,canvas.height);for(var y=0;y<imgPixels.height;y++){for(var x=0;x<imgPixels.width;x++){var i=(y*4)*imgPixels.width+x*4;var avg=(imgPixels.data[i]+imgPixels.data[i+1]+imgPixels.data[i+2])/3;imgPixels.data[i]=avg;imgPixels.data[i+1]=avg;imgPixels.data[i+2]=avg;}}
ctx.putImageData(imgPixels,0,0,0,0,imgPixels.width,imgPixels.height);return canvas.toDataURL();};$(window).load(function(){$('.partner ul li img').each(function(){var el=$(this);el.css({"position":"absolute"}).wrap("<div class='img_wrapper' style='display: inline-block'>").clone().addClass('img_grayscale').css({"position":"absolute","z-index":"998","opacity":"0"}).insertBefore(el).queue(function(){var el=$(this);el.parent().css({"width":this.width,"height":this.height});el.dequeue();});this.src=grayscale(this.src);});$('.partner ul li img').mouseover(function(){$(this).parent().find('img:first').stop().animate({opacity:1},1000);})
$('.img_grayscale').mouseout(function(){$(this).stop().animate({opacity:0},1000);});});;
// ---- 8661b68833_minify_javascript_ebd9c81938.js
var browserName=navigator.appName;var browserVer=parseInt(navigator.appVersion);var version="";var msie4=(browserName=="Microsoft Internet Explorer"&&browserVer>=4);if((browserName=="Netscape"&&browserVer>=3)||msie4||browserName=="Konqueror"||browserName=="Opera"){version="n3";}else{version="n2";}
function blurLink(theObject){if(msie4){theObject.blur();}}
function decryptCharcode(n,start,end,offset){n=n+offset;if(offset>0&&n>end){n=start+(n-end-1);}else if(offset<0&&n<start){n=end-(start-n-1);}
return String.fromCharCode(n);}
function decryptString(enc,offset){var dec="";var len=enc.length;for(var i=0;i<len;i++){var n=enc.charCodeAt(i);if(n>=0x2B&&n<=0x3A){dec+=decryptCharcode(n,0x2B,0x3A,offset);}else if(n>=0x40&&n<=0x5A){dec+=decryptCharcode(n,0x40,0x5A,offset);}else if(n>=0x61&&n<=0x7A){dec+=decryptCharcode(n,0x61,0x7A,offset);}else{dec+=enc.charAt(i);}}
return dec;}
function linkTo_UnCryptMailto(s){location.href=decryptString(s,-1);};
// ---- 1ac7691f78_minify_shadowbox.js
(function(window,undefined){var S={version:"3.0.3"}
var ua=navigator.userAgent.toLowerCase();if(ua.indexOf('windows')>-1||ua.indexOf('win32')>-1){S.isWindows=true;}else if(ua.indexOf('macintosh')>-1||ua.indexOf('mac os x')>-1){S.isMac=true;}else if(ua.indexOf('linux')>-1){S.isLinux=true;}
S.isIE=ua.indexOf('msie')>-1;S.isIE6=ua.indexOf('msie 6')>-1;S.isIE7=ua.indexOf('msie 7')>-1;S.isGecko=ua.indexOf('gecko')>-1&&ua.indexOf('safari')==-1;S.isWebKit=ua.indexOf('applewebkit/')>-1;var inlineId=/#(.+)$/,galleryName=/^(light|shadow)box\[(.*?)\]/i,inlineParam=/\s*([a-z_]*?)\s*=\s*(.+)\s*/i,fileExtension=/[0-9a-z]+$/i,scriptPath=/(.+\/)shadowbox\.js/i;var open=false,initialized=false,lastOptions={},slideDelay=0,slideStart,slideTimer;S.current=-1;S.dimensions=null;S.ease=function(state){return 1+Math.pow(state-1,3);}
S.errorInfo={fla:{name:"Flash",url:"http://www.adobe.com/products/flashplayer/"},qt:{name:"QuickTime",url:"http://www.apple.com/quicktime/download/"},wmp:{name:"Windows Media Player",url:"http://www.microsoft.com/windows/windowsmedia/"},f4m:{name:"Flip4Mac",url:"http://www.flip4mac.com/wmv_download.htm"}};S.gallery=[];S.onReady=noop;S.path=null;S.player=null;S.playerId="sb-player";S.options={animate:true,animateFade:true,autoplayMovies:true,continuous:false,enableKeys:true,flashParams:{bgcolor:"#000000",allowfullscreen:true},flashVars:{},flashVersion:"9.0.115",handleOversize:"resize",handleUnsupported:"link",onChange:noop,onClose:noop,onFinish:noop,onOpen:noop,showMovieControls:true,skipSetup:false,slideshowDelay:0,viewportPadding:20};S.getCurrent=function(){return S.current>-1?S.gallery[S.current]:null;}
S.hasNext=function(){return S.gallery.length>1&&(S.current!=S.gallery.length-1||S.options.continuous);}
S.isOpen=function(){return open;}
S.isPaused=function(){return slideTimer=="pause";}
S.applyOptions=function(options){lastOptions=apply({},S.options);apply(S.options,options);}
S.revertOptions=function(){apply(S.options,lastOptions);}
S.init=function(options,callback){if(initialized)
return;initialized=true;if(S.skin.options)
apply(S.options,S.skin.options);if(options)
apply(S.options,options);if(!S.path){var path,scripts=document.getElementsByTagName("script");for(var i=0,len=scripts.length;i<len;++i){path=scriptPath.exec(scripts[i].src);if(path){S.path=path[1];break;}}}
if(callback)
S.onReady=callback;bindLoad();}
S.open=function(obj){if(open)
return;var gc=S.makeGallery(obj);S.gallery=gc[0];S.current=gc[1];obj=S.getCurrent();if(obj==null)
return;S.applyOptions(obj.options||{});filterGallery();if(S.gallery.length){obj=S.getCurrent();if(S.options.onOpen(obj)===false)
return;open=true;S.skin.onOpen(obj,load);}}
S.close=function(){if(!open)
return;open=false;if(S.player){S.player.remove();S.player=null;}
if(typeof slideTimer=="number"){clearTimeout(slideTimer);slideTimer=null;}
slideDelay=0;listenKeys(false);S.options.onClose(S.getCurrent());S.skin.onClose();S.revertOptions();}
S.play=function(){if(!S.hasNext())
return;if(!slideDelay)
slideDelay=S.options.slideshowDelay*1000;if(slideDelay){slideStart=now();slideTimer=setTimeout(function(){slideDelay=slideStart=0;S.next();},slideDelay);if(S.skin.onPlay)
S.skin.onPlay();}}
S.pause=function(){if(typeof slideTimer!="number")
return;slideDelay=Math.max(0,slideDelay-(now()-slideStart));if(slideDelay){clearTimeout(slideTimer);slideTimer="pause";if(S.skin.onPause)
S.skin.onPause();}}
S.change=function(index){if(!(index in S.gallery)){if(S.options.continuous){index=(index<0?S.gallery.length+index:0);if(!(index in S.gallery))
return;}else{return;}}
S.current=index;if(typeof slideTimer=="number"){clearTimeout(slideTimer);slideTimer=null;slideDelay=slideStart=0;}
S.options.onChange(S.getCurrent());load(true);}
S.next=function(){S.change(S.current+1);}
S.previous=function(){S.change(S.current-1);}
S.setDimensions=function(height,width,maxHeight,maxWidth,topBottom,leftRight,padding,preserveAspect){var originalHeight=height,originalWidth=width;var extraHeight=2*padding+topBottom;if(height+extraHeight>maxHeight)
height=maxHeight-extraHeight;var extraWidth=2*padding+leftRight;if(width+extraWidth>maxWidth)
width=maxWidth-extraWidth;var changeHeight=(originalHeight-height)/originalHeight,changeWidth=(originalWidth-width)/originalWidth,oversized=(changeHeight>0||changeWidth>0);if(preserveAspect&&oversized){if(changeHeight>changeWidth){width=Math.round((originalWidth/originalHeight)*height);}else if(changeWidth>changeHeight){height=Math.round((originalHeight/originalWidth)*width);}}
S.dimensions={height:height+topBottom,width:width+leftRight,innerHeight:height,innerWidth:width,top:Math.floor((maxHeight-(height+extraHeight))/2+padding),left:Math.floor((maxWidth-(width+extraWidth))/2+padding),oversized:oversized};return S.dimensions;}
S.makeGallery=function(obj){var gallery=[],current=-1;if(typeof obj=="string")
obj=[obj];if(typeof obj.length=="number"){each(obj,function(i,o){if(o.content){gallery[i]=o;}else{gallery[i]={content:o};}});current=0;}else{if(obj.tagName){var cacheObj=S.getCache(obj);obj=cacheObj?cacheObj:S.makeObject(obj);}
if(obj.gallery){gallery=[];var o;for(var key in S.cache){o=S.cache[key];if(o.gallery&&o.gallery==obj.gallery){if(current==-1&&o.content==obj.content)
current=gallery.length;gallery.push(o);}}
if(current==-1){gallery.unshift(obj);current=0;}}else{gallery=[obj];current=0;}}
each(gallery,function(i,o){gallery[i]=apply({},o);});return[gallery,current];}
S.makeObject=function(link,options){var obj={content:link.href,title:link.getAttribute("title")||"",link:link};if(options){options=apply({},options);each(["player","title","height","width","gallery"],function(i,o){if(typeof options[o]!="undefined"){obj[o]=options[o];delete options[o];}});obj.options=options;}else{obj.options={};}
if(!obj.player)
obj.player=S.getPlayer(obj.content);var rel=link.getAttribute("rel");if(rel){var match=rel.match(galleryName);if(match)
obj.gallery=escape(match[2]);each(rel.split(';'),function(i,p){match=p.match(inlineParam);if(match){if(match[1]=='options'){obj[match[1]]=eval('('+match[2]+')');}
else{obj[match[1]]=match[2];}}});}
return obj;}
S.getPlayer=function(content){if(content.indexOf("#")>-1&&content.indexOf(document.location.href)==0)
return"inline";var q=content.indexOf("?");if(q>-1)
content=content.substring(0,q);var ext,m=content.match(fileExtension);if(m)
ext=m[0].toLowerCase();if(ext){if(S.img&&S.img.ext.indexOf(ext)>-1)
return"img";if(S.swf&&S.swf.ext.indexOf(ext)>-1)
return"swf";if(S.flv&&S.flv.ext.indexOf(ext)>-1)
return"flv";if(S.qt&&S.qt.ext.indexOf(ext)>-1){if(S.wmp&&S.wmp.ext.indexOf(ext)>-1){return"qtwmp";}else{return"qt";}}
if(S.wmp&&S.wmp.ext.indexOf(ext)>-1)
return"wmp";}
return"iframe";}
function filterGallery(){var err=S.errorInfo,plugins=S.plugins,obj,remove,needed,m,format,replace,inlineEl,flashVersion;for(var i=0;i<S.gallery.length;++i){obj=S.gallery[i]
remove=false;needed=null;switch(obj.player){case"flv":case"swf":if(!plugins.fla)
needed="fla";break;case"qt":if(!plugins.qt)
needed="qt";break;case"wmp":if(S.isMac){if(plugins.qt&&plugins.f4m){obj.player="qt";}else{needed="qtf4m";}}else if(!plugins.wmp){needed="wmp";}
break;case"qtwmp":if(plugins.qt){obj.player="qt";}else if(plugins.wmp){obj.player="wmp";}else{needed="qtwmp";}
break;}
if(needed){if(S.options.handleUnsupported=="link"){switch(needed){case"qtf4m":format="shared";replace=[err.qt.url,err.qt.name,err.f4m.url,err.f4m.name];break;case"qtwmp":format="either";replace=[err.qt.url,err.qt.name,err.wmp.url,err.wmp.name];break;default:format="single";replace=[err[needed].url,err[needed].name];}
obj.player="html";obj.content='<div class="sb-message">'+sprintf(S.lang.errors[format],replace)+'</div>';}else{remove=true;}}else if(obj.player=="inline"){m=inlineId.exec(obj.content);if(m){inlineEl=get(m[1]);if(inlineEl){obj.content=inlineEl.innerHTML;}else{remove=true;}}else{remove=true;}}else if(obj.player=="swf"||obj.player=="flv"){flashVersion=(obj.options&&obj.options.flashVersion)||S.options.flashVersion;if(S.flash&&!S.flash.hasFlashPlayerVersion(flashVersion)){obj.width=310;obj.height=177;}}
if(remove){S.gallery.splice(i,1);if(i<S.current){--S.current;}else if(i==S.current){S.current=i>0?i-1:i;}
--i;}}}
function listenKeys(on){if(!S.options.enableKeys)
return;(on?addEvent:removeEvent)(document,"keydown",handleKey);}
function handleKey(e){if(e.metaKey||e.shiftKey||e.altKey||e.ctrlKey)
return;var code=keyCode(e),handler;switch(code){case 81:case 88:case 27:handler=S.close;break;case 37:handler=S.previous;break;case 39:handler=S.next;break;case 32:handler=typeof slideTimer=="number"?S.pause:S.play;break;}
if(handler){preventDefault(e);handler();}}
function load(changing){listenKeys(false);var obj=S.getCurrent();var player=(obj.player=="inline"?"html":obj.player);if(typeof S[player]!="function")
throw"unknown player "+player;if(changing){S.player.remove();S.revertOptions();S.applyOptions(obj.options||{});}
S.player=new S[player](obj,S.playerId);if(S.gallery.length>1){var next=S.gallery[S.current+1]||S.gallery[0];if(next.player=="img"){var a=new Image();a.src=next.content;}
var prev=S.gallery[S.current-1]||S.gallery[S.gallery.length-1];if(prev.player=="img"){var b=new Image();b.src=prev.content;}}
S.skin.onLoad(changing,waitReady);}
function waitReady(){if(!open)
return;if(typeof S.player.ready!="undefined"){var timer=setInterval(function(){if(open){if(S.player.ready){clearInterval(timer);timer=null;S.skin.onReady(show);}}else{clearInterval(timer);timer=null;}},10);}else{S.skin.onReady(show);}}
function show(){if(!open)
return;S.player.append(S.skin.body,S.dimensions);S.skin.onShow(finish);}
function finish(){if(!open)
return;if(S.player.onLoad)
S.player.onLoad();S.options.onFinish(S.getCurrent());if(!S.isPaused())
S.play();listenKeys(true);}
if(!Array.prototype.indexOf){Array.prototype.indexOf=function(obj,from){var len=this.length>>>0;from=from||0;if(from<0)
from+=len;for(;from<len;++from){if(from in this&&this[from]===obj)
return from;}
return-1;}}
function now(){return(new Date).getTime();}
function apply(original,extension){for(var property in extension)
original[property]=extension[property];return original;}
function each(obj,callback){var i=0,len=obj.length;for(var value=obj[0];i<len&&callback.call(value,i,value)!==false;value=obj[++i]){}}
function sprintf(str,replace){return str.replace(/\{(\w+?)\}/g,function(match,i){return replace[i];});}
function noop(){}
function get(id){return document.getElementById(id);}
function remove(el){el.parentNode.removeChild(el);}
var supportsOpacity=true,supportsFixed=true;function checkSupport(){var body=document.body,div=document.createElement("div");supportsOpacity=typeof div.style.opacity==="string";div.style.position="fixed";div.style.margin=0;div.style.top="20px";body.appendChild(div,body.firstChild);supportsFixed=div.offsetTop==20;body.removeChild(div);}
S.getStyle=(function(){var opacity=/opacity=([^)]*)/,getComputedStyle=document.defaultView&&document.defaultView.getComputedStyle;return function(el,style){var ret;if(!supportsOpacity&&style=="opacity"&&el.currentStyle){ret=opacity.test(el.currentStyle.filter||"")?(parseFloat(RegExp.$1)/100)+"":"";return ret===""?"1":ret;}
if(getComputedStyle){var computedStyle=getComputedStyle(el,null);if(computedStyle)
ret=computedStyle[style];if(style=="opacity"&&ret=="")
ret="1";}else{ret=el.currentStyle[style];}
return ret;}})();S.appendHTML=function(el,html){if(el.insertAdjacentHTML){el.insertAdjacentHTML("BeforeEnd",html);}else if(el.lastChild){var range=el.ownerDocument.createRange();range.setStartAfter(el.lastChild);var frag=range.createContextualFragment(html);el.appendChild(frag);}else{el.innerHTML=html;}}
S.getWindowSize=function(dimension){if(document.compatMode==="CSS1Compat")
return document.documentElement["client"+dimension];return document.body["client"+dimension];}
S.setOpacity=function(el,opacity){var style=el.style;if(supportsOpacity){style.opacity=(opacity==1?"":opacity);}else{style.zoom=1;if(opacity==1){if(typeof style.filter=="string"&&(/alpha/i).test(style.filter))
style.filter=style.filter.replace(/\s*[\w\.]*alpha\([^\)]*\);?/gi,"");}else{style.filter=(style.filter||"").replace(/\s*[\w\.]*alpha\([^\)]*\)/gi,"")+" alpha(opacity="+(opacity*100)+")";}}}
S.clearOpacity=function(el){S.setOpacity(el,1);}
function getTarget(e){var target=e.target?e.target:e.srcElement;return target.nodeType==3?target.parentNode:target;}
function getPageXY(e){var x=e.pageX||(e.clientX+(document.documentElement.scrollLeft||document.body.scrollLeft)),y=e.pageY||(e.clientY+(document.documentElement.scrollTop||document.body.scrollTop));return[x,y];}
function preventDefault(e){e.preventDefault();}
function keyCode(e){return e.which?e.which:e.keyCode;}
function addEvent(el,type,handler){if(el.addEventListener){el.addEventListener(type,handler,false);}else{if(el.nodeType===3||el.nodeType===8)
return;if(el.setInterval&&(el!==window&&!el.frameElement))
el=window;if(!handler.__guid)
handler.__guid=addEvent.guid++;if(!el.events)
el.events={};var handlers=el.events[type];if(!handlers){handlers=el.events[type]={};if(el["on"+type])
handlers[0]=el["on"+type];}
handlers[handler.__guid]=handler;el["on"+type]=addEvent.handleEvent;}}
addEvent.guid=1;addEvent.handleEvent=function(event){var result=true;event=event||addEvent.fixEvent(((this.ownerDocument||this.document||this).parentWindow||window).event);var handlers=this.events[event.type];for(var i in handlers){this.__handleEvent=handlers[i];if(this.__handleEvent(event)===false)
result=false;}
return result;}
addEvent.preventDefault=function(){this.returnValue=false;}
addEvent.stopPropagation=function(){this.cancelBubble=true;}
addEvent.fixEvent=function(e){e.preventDefault=addEvent.preventDefault;e.stopPropagation=addEvent.stopPropagation;return e;}
function removeEvent(el,type,handler){if(el.removeEventListener){el.removeEventListener(type,handler,false);}else{if(el.events&&el.events[type])
delete el.events[type][handler.__guid];}}
var loaded=false,DOMContentLoaded;if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);S.load();}}else if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);S.load();}}}
function doScrollCheck(){if(loaded)
return;try{document.documentElement.doScroll("left");}catch(e){setTimeout(doScrollCheck,1);return;}
S.load();}
function bindLoad(){if(document.readyState==="complete")
return S.load();if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);window.addEventListener("load",S.load,false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);window.attachEvent("onload",S.load);var topLevel=false;try{topLevel=window.frameElement===null;}catch(e){}
if(document.documentElement.doScroll&&topLevel)
doScrollCheck();}}
S.load=function(){if(loaded)
return;if(!document.body)
return setTimeout(S.load,13);loaded=true;checkSupport();S.onReady();if(!S.options.skipSetup)
S.setup();S.skin.init();}
S.plugins={};if(navigator.plugins&&navigator.plugins.length){var names=[];each(navigator.plugins,function(i,p){names.push(p.name);});names=names.join(',');var f4m=names.indexOf('Flip4Mac')>-1;S.plugins={fla:names.indexOf('Shockwave Flash')>-1,qt:names.indexOf('QuickTime')>-1,wmp:!f4m&&names.indexOf('Windows Media')>-1,f4m:f4m};}else{var detectPlugin=function(name){var axo;try{axo=new ActiveXObject(name);}catch(e){}
return!!axo;}
S.plugins={fla:detectPlugin('ShockwaveFlash.ShockwaveFlash'),qt:detectPlugin('QuickTime.QuickTime'),wmp:detectPlugin('wmplayer.ocx'),f4m:false};}
var relAttr=/^(light|shadow)box/i,expando="shadowboxCacheKey",cacheKey=1;S.cache={};S.select=function(selector){var links=[];if(!selector){var rel;each(document.getElementsByTagName("a"),function(i,el){rel=el.getAttribute("rel");if(rel&&relAttr.test(rel))
links.push(el);});}else{var length=selector.length;if(length){if(typeof selector=="string"){if(S.find)
links=S.find(selector);}else if(length==2&&typeof selector[0]=="string"&&selector[1].nodeType){if(S.find)
links=S.find(selector[0],selector[1]);}else{for(var i=0;i<length;++i)
links[i]=selector[i];}}else{links.push(selector);}}
return links;}
S.setup=function(selector,options){each(S.select(selector),function(i,link){S.addCache(link,options);});}
S.teardown=function(selector){each(S.select(selector),function(i,link){S.removeCache(link);});}
S.addCache=function(link,options){var key=link[expando];if(key==undefined){key=cacheKey++;link[expando]=key;addEvent(link,"click",handleClick);}
S.cache[key]=S.makeObject(link,options);}
S.removeCache=function(link){removeEvent(link,"click",handleClick);delete S.cache[link[expando]];link[expando]=null;}
S.getCache=function(link){var key=link[expando];return(key in S.cache&&S.cache[key]);}
S.clearCache=function(){for(var key in S.cache)
S.removeCache(S.cache[key].link);S.cache={};}
function handleClick(e){S.open(this);if(S.gallery.length)
preventDefault(e);}
S.find=(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true;[0,0].sort(function(){baseHasDuplicate=false;return 0;});var Sizzle=function(selector,context,results,seed){results=results||[];var origContext=context=context||document;if(context.nodeType!==1&&context.nodeType!==9){return[];}
if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,extra,prune=true,contextXML=isXML(context),soFar=selector;while((chunker.exec(""),m=chunker.exec(soFar))!==null){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]){selector+=parts.shift();}
set=posProcess(selector,set);}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){var ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0];}
if(context){var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);set=ret.expr?Sizzle.filter(ret.expr,ret.set):ret.set;if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,contextXML);}}else{checkSet=parts=[];}}
if(!checkSet){checkSet=set;}
if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context&&context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,origContext,results,seed);Sizzle.uniqueSort(results);}
return results;};Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.leftMatch[type].exec(expr))){var left=match[1];match.splice(1,1);if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop===result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr===old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break;}}
old=expr;}
return curLoop;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag){part=part.toLowerCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName.toLowerCase()===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=part.toLowerCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").replace(/[\t\n]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem);}}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){return match[1].toLowerCase();},CHILD:function(match){if(match[1]==="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]==="even"&&"2n"||match[2]==="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if((chunker.exec(match[3])||"").length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return/h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toLowerCase()==="button";},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0===i;},eq:function(elem,i,match){return match[3]-0===i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||getText([elem])||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}else{throw"Syntax error, unrecognized expression: "+name;}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while((node=node.previousSibling)){if(node.nodeType===1){return false;}}
if(type==="first"){return true;}
node=elem;case'last':while((node=node.nextSibling)){if(node.nodeType===1){return false;}}
return true;case'nth':var first=match[2],last=match[3];if(first===1&&last===0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first===0){return diff===0;}else{return(diff%first===0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName.toLowerCase()===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!==check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source);}
var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes,0);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true;}
return a.compareDocumentPosition?-1:1;}
var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true;}
return a.sourceIndex?-1:1;}
var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true;}
return a.ownerDocument?-1:1;}
var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.setStart(a,0);aRange.setEnd(a,0);bRange.setStart(b,0);bRange.setEnd(b,0);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
function getText(elems){var ret="",elem;for(var i=0;elems[i];i++){elem=elems[i];if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue;}else if(elem.nodeType!==8){ret+=getText(elem.childNodes);}}
return ret;}
(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();form.innerHTML="<a name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);root=form=null;})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}
div=null;})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}
div=null;})();}
(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(!div.getElementsByClassName||div.getElementsByClassName("e").length===0){return;}
div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return;}
Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};div=null;})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName.toLowerCase()===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false;};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};return Sizzle;})();S.flash=(function(){var swfobject=function(){var UNDEF="undefined",OBJECT="object",SHOCKWAVE_FLASH="Shockwave Flash",SHOCKWAVE_FLASH_AX="ShockwaveFlash.ShockwaveFlash",FLASH_MIME_TYPE="application/x-shockwave-flash",EXPRESS_INSTALL_ID="SWFObjectExprInst",win=window,doc=document,nav=navigator,domLoadFnArr=[],regObjArr=[],objIdArr=[],listenersArr=[],script,timer=null,storedAltContent=null,storedAltContentId=null,isDomLoaded=false,isExpressInstallActive=false;var ua=function(){var w3cdom=typeof doc.getElementById!=UNDEF&&typeof doc.getElementsByTagName!=UNDEF&&typeof doc.createElement!=UNDEF,playerVersion=[0,0,0],d=null;if(typeof nav.plugins!=UNDEF&&typeof nav.plugins[SHOCKWAVE_FLASH]==OBJECT){d=nav.plugins[SHOCKWAVE_FLASH].description;if(d&&!(typeof nav.mimeTypes!=UNDEF&&nav.mimeTypes[FLASH_MIME_TYPE]&&!nav.mimeTypes[FLASH_MIME_TYPE].enabledPlugin)){d=d.replace(/^.*\s+(\S+\s+\S+$)/,"$1");playerVersion[0]=parseInt(d.replace(/^(.*)\..*$/,"$1"),10);playerVersion[1]=parseInt(d.replace(/^.*\.(.*)\s.*$/,"$1"),10);playerVersion[2]=/r/.test(d)?parseInt(d.replace(/^.*r(.*)$/,"$1"),10):0;}}
else if(typeof win.ActiveXObject!=UNDEF){var a=null,fp6Crash=false;try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".7");}
catch(e){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".6");playerVersion=[6,0,21];a.AllowScriptAccess="always";}
catch(e){if(playerVersion[0]==6){fp6Crash=true;}}
if(!fp6Crash){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX);}
catch(e){}}}
if(!fp6Crash&&a){try{d=a.GetVariable("$version");if(d){d=d.split(" ")[1].split(",");playerVersion=[parseInt(d[0],10),parseInt(d[1],10),parseInt(d[2],10)];}}
catch(e){}}}
var u=nav.userAgent.toLowerCase(),p=nav.platform.toLowerCase(),webkit=/webkit/.test(u)?parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,ie=false,windows=p?/win/.test(p):/win/.test(u),mac=p?/mac/.test(p):/mac/.test(u);return{w3cdom:w3cdom,pv:playerVersion,webkit:webkit,ie:ie,win:windows,mac:mac};}();var onDomLoad=function(){if(!ua.w3cdom){return;}
addDomLoadEvent(main);if(ua.ie&&ua.win){try{doc.write("<scr"+"ipt id=__ie_ondomload defer=true src=//:></scr"+"ipt>");script=getElementById("__ie_ondomload");if(script){addListener(script,"onreadystatechange",checkReadyState);}}
catch(e){}}
if(ua.webkit&&typeof doc.readyState!=UNDEF){timer=setInterval(function(){if(/loaded|complete/.test(doc.readyState)){callDomLoadFunctions();}},10);}
if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("DOMContentLoaded",callDomLoadFunctions,null);}
addLoadEvent(callDomLoadFunctions);}();function checkReadyState(){if(script.readyState=="complete"){script.parentNode.removeChild(script);callDomLoadFunctions();}}
function callDomLoadFunctions(){if(isDomLoaded){return;}
if(ua.ie&&ua.win){var s=createElement("span");try{var t=doc.getElementsByTagName("body")[0].appendChild(s);t.parentNode.removeChild(t);}
catch(e){return;}}
isDomLoaded=true;if(timer){clearInterval(timer);timer=null;}
var dl=domLoadFnArr.length;for(var i=0;i<dl;i++){domLoadFnArr[i]();}}
function addDomLoadEvent(fn){if(isDomLoaded){fn();}
else{domLoadFnArr[domLoadFnArr.length]=fn;}}
function addLoadEvent(fn){if(typeof win.addEventListener!=UNDEF){win.addEventListener("load",fn,false);}
else if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("load",fn,false);}
else if(typeof win.attachEvent!=UNDEF){addListener(win,"onload",fn);}
else if(typeof win.onload=="function"){var fnOld=win.onload;win.onload=function(){fnOld();fn();};}
else{win.onload=fn;}}
function main(){var rl=regObjArr.length;for(var i=0;i<rl;i++){var id=regObjArr[i].id;if(ua.pv[0]>0){var obj=getElementById(id);if(obj){regObjArr[i].width=obj.getAttribute("width")?obj.getAttribute("width"):"0";regObjArr[i].height=obj.getAttribute("height")?obj.getAttribute("height"):"0";if(hasPlayerVersion(regObjArr[i].swfVersion)){if(ua.webkit&&ua.webkit<312){fixParams(obj);}
setVisibility(id,true);}
else if(regObjArr[i].expressInstall&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){showExpressInstall(regObjArr[i]);}
else{displayAltContent(obj);}}}
else{setVisibility(id,true);}}}
function fixParams(obj){var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var e=createElement("embed"),a=nestedObj.attributes;if(a){var al=a.length;for(var i=0;i<al;i++){if(a[i].nodeName=="DATA"){e.setAttribute("src",a[i].nodeValue);}
else{e.setAttribute(a[i].nodeName,a[i].nodeValue);}}}
var c=nestedObj.childNodes;if(c){var cl=c.length;for(var j=0;j<cl;j++){if(c[j].nodeType==1&&c[j].nodeName=="PARAM"){e.setAttribute(c[j].getAttribute("name"),c[j].getAttribute("value"));}}}
obj.parentNode.replaceChild(e,obj);}}
function showExpressInstall(regObj){isExpressInstallActive=true;var obj=getElementById(regObj.id);if(obj){if(regObj.altContentId){var ac=getElementById(regObj.altContentId);if(ac){storedAltContent=ac;storedAltContentId=regObj.altContentId;}}
else{storedAltContent=abstractAltContent(obj);}
if(!(/%$/.test(regObj.width))&&parseInt(regObj.width,10)<310){regObj.width="310";}
if(!(/%$/.test(regObj.height))&&parseInt(regObj.height,10)<137){regObj.height="137";}
doc.title=doc.title.slice(0,47)+" - Flash Player Installation";var pt=ua.ie&&ua.win?"ActiveX":"PlugIn",dt=doc.title,fv="MMredirectURL="+win.location+"&MMplayerType="+pt+"&MMdoctitle="+dt,replaceId=regObj.id;if(ua.ie&&ua.win&&obj.readyState!=4){var newObj=createElement("div");replaceId+="SWFObjectNew";newObj.setAttribute("id",replaceId);obj.parentNode.insertBefore(newObj,obj);obj.style.display="none";var fn=function(){obj.parentNode.removeChild(obj);};addListener(win,"onload",fn);}
createSWF({data:regObj.expressInstall,id:EXPRESS_INSTALL_ID,width:regObj.width,height:regObj.height},{flashvars:fv},replaceId);}}
function displayAltContent(obj){if(ua.ie&&ua.win&&obj.readyState!=4){var el=createElement("div");obj.parentNode.insertBefore(el,obj);el.parentNode.replaceChild(abstractAltContent(obj),el);obj.style.display="none";var fn=function(){obj.parentNode.removeChild(obj);};addListener(win,"onload",fn);}
else{obj.parentNode.replaceChild(abstractAltContent(obj),obj);}}
function abstractAltContent(obj){var ac=createElement("div");if(ua.win&&ua.ie){ac.innerHTML=obj.innerHTML;}
else{var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var c=nestedObj.childNodes;if(c){var cl=c.length;for(var i=0;i<cl;i++){if(!(c[i].nodeType==1&&c[i].nodeName=="PARAM")&&!(c[i].nodeType==8)){ac.appendChild(c[i].cloneNode(true));}}}}}
return ac;}
function createSWF(attObj,parObj,id){var r,el=getElementById(id);if(el){if(typeof attObj.id==UNDEF){attObj.id=id;}
if(ua.ie&&ua.win){var att="";for(var i in attObj){if(attObj[i]!=Object.prototype[i]){if(i.toLowerCase()=="data"){parObj.movie=attObj[i];}
else if(i.toLowerCase()=="styleclass"){att+=' class="'+attObj[i]+'"';}
else if(i.toLowerCase()!="classid"){att+=' '+i+'="'+attObj[i]+'"';}}}
var par="";for(var j in parObj){if(parObj[j]!=Object.prototype[j]){par+='<param name="'+j+'" value="'+parObj[j]+'" />';}}
el.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+att+'>'+par+'</object>';objIdArr[objIdArr.length]=attObj.id;r=getElementById(attObj.id);}
else if(ua.webkit&&ua.webkit<312){var e=createElement("embed");e.setAttribute("type",FLASH_MIME_TYPE);for(var k in attObj){if(attObj[k]!=Object.prototype[k]){if(k.toLowerCase()=="data"){e.setAttribute("src",attObj[k]);}
else if(k.toLowerCase()=="styleclass"){e.setAttribute("class",attObj[k]);}
else if(k.toLowerCase()!="classid"){e.setAttribute(k,attObj[k]);}}}
for(var l in parObj){if(parObj[l]!=Object.prototype[l]){if(l.toLowerCase()!="movie"){e.setAttribute(l,parObj[l]);}}}
el.parentNode.replaceChild(e,el);r=e;}
else{var o=createElement(OBJECT);o.setAttribute("type",FLASH_MIME_TYPE);for(var m in attObj){if(attObj[m]!=Object.prototype[m]){if(m.toLowerCase()=="styleclass"){o.setAttribute("class",attObj[m]);}
else if(m.toLowerCase()!="classid"){o.setAttribute(m,attObj[m]);}}}
for(var n in parObj){if(parObj[n]!=Object.prototype[n]&&n.toLowerCase()!="movie"){createObjParam(o,n,parObj[n]);}}
el.parentNode.replaceChild(o,el);r=o;}}
return r;}
function createObjParam(el,pName,pValue){var p=createElement("param");p.setAttribute("name",pName);p.setAttribute("value",pValue);el.appendChild(p);}
function removeSWF(id){var obj=getElementById(id);if(obj&&(obj.nodeName=="OBJECT"||obj.nodeName=="EMBED")){if(ua.ie&&ua.win){if(obj.readyState==4){removeObjectInIE(id);}
else{win.attachEvent("onload",function(){removeObjectInIE(id);});}}
else{obj.parentNode.removeChild(obj);}}}
function removeObjectInIE(id){var obj=getElementById(id);if(obj){for(var i in obj){if(typeof obj[i]=="function"){obj[i]=null;}}
obj.parentNode.removeChild(obj);}}
function getElementById(id){var el=null;try{el=doc.getElementById(id);}
catch(e){}
return el;}
function createElement(el){return doc.createElement(el);}
function addListener(target,eventType,fn){target.attachEvent(eventType,fn);listenersArr[listenersArr.length]=[target,eventType,fn];}
function hasPlayerVersion(rv){var pv=ua.pv,v=rv.split(".");v[0]=parseInt(v[0],10);v[1]=parseInt(v[1],10)||0;v[2]=parseInt(v[2],10)||0;return(pv[0]>v[0]||(pv[0]==v[0]&&pv[1]>v[1])||(pv[0]==v[0]&&pv[1]==v[1]&&pv[2]>=v[2]))?true:false;}
function createCSS(sel,decl){if(ua.ie&&ua.mac){return;}
var h=doc.getElementsByTagName("head")[0],s=createElement("style");s.setAttribute("type","text/css");s.setAttribute("media","screen");if(!(ua.ie&&ua.win)&&typeof doc.createTextNode!=UNDEF){s.appendChild(doc.createTextNode(sel+" {"+decl+"}"));}
h.appendChild(s);if(ua.ie&&ua.win&&typeof doc.styleSheets!=UNDEF&&doc.styleSheets.length>0){var ls=doc.styleSheets[doc.styleSheets.length-1];if(typeof ls.addRule==OBJECT){ls.addRule(sel,decl);}}}
function setVisibility(id,isVisible){var v=isVisible?"visible":"hidden";if(isDomLoaded&&getElementById(id)){getElementById(id).style.visibility=v;}
else{createCSS("#"+id,"visibility:"+v);}}
function urlEncodeIfNecessary(s){var regex=/[\\\"<>\.;]/;var hasBadChars=regex.exec(s)!=null;return hasBadChars?encodeURIComponent(s):s;}
var cleanup=function(){if(ua.ie&&ua.win){window.attachEvent("onunload",function(){var ll=listenersArr.length;for(var i=0;i<ll;i++){listenersArr[i][0].detachEvent(listenersArr[i][1],listenersArr[i][2]);}
var il=objIdArr.length;for(var j=0;j<il;j++){removeSWF(objIdArr[j]);}
for(var k in ua){ua[k]=null;}
ua=null;for(var l in swfobject){swfobject[l]=null;}
swfobject=null;});}}();return{registerObject:function(objectIdStr,swfVersionStr,xiSwfUrlStr){if(!ua.w3cdom||!objectIdStr||!swfVersionStr){return;}
var regObj={};regObj.id=objectIdStr;regObj.swfVersion=swfVersionStr;regObj.expressInstall=xiSwfUrlStr?xiSwfUrlStr:false;regObjArr[regObjArr.length]=regObj;setVisibility(objectIdStr,false);},getObjectById:function(objectIdStr){var r=null;if(ua.w3cdom){var o=getElementById(objectIdStr);if(o){var n=o.getElementsByTagName(OBJECT)[0];if(!n||(n&&typeof o.SetVariable!=UNDEF)){r=o;}
else if(typeof n.SetVariable!=UNDEF){r=n;}}}
return r;},embedSWF:function(swfUrlStr,replaceElemIdStr,widthStr,heightStr,swfVersionStr,xiSwfUrlStr,flashvarsObj,parObj,attObj){if(!ua.w3cdom||!swfUrlStr||!replaceElemIdStr||!widthStr||!heightStr||!swfVersionStr){return;}
widthStr+="";heightStr+="";if(hasPlayerVersion(swfVersionStr)){setVisibility(replaceElemIdStr,false);var att={};if(attObj&&typeof attObj===OBJECT){for(var i in attObj){if(attObj[i]!=Object.prototype[i]){att[i]=attObj[i];}}}
att.data=swfUrlStr;att.width=widthStr;att.height=heightStr;var par={};if(parObj&&typeof parObj===OBJECT){for(var j in parObj){if(parObj[j]!=Object.prototype[j]){par[j]=parObj[j];}}}
if(flashvarsObj&&typeof flashvarsObj===OBJECT){for(var k in flashvarsObj){if(flashvarsObj[k]!=Object.prototype[k]){if(typeof par.flashvars!=UNDEF){par.flashvars+="&"+k+"="+flashvarsObj[k];}
else{par.flashvars=k+"="+flashvarsObj[k];}}}}
addDomLoadEvent(function(){createSWF(att,par,replaceElemIdStr);if(att.id==replaceElemIdStr){setVisibility(replaceElemIdStr,true);}});}
else if(xiSwfUrlStr&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){isExpressInstallActive=true;setVisibility(replaceElemIdStr,false);addDomLoadEvent(function(){var regObj={};regObj.id=regObj.altContentId=replaceElemIdStr;regObj.width=widthStr;regObj.height=heightStr;regObj.expressInstall=xiSwfUrlStr;showExpressInstall(regObj);});}},getFlashPlayerVersion:function(){return{major:ua.pv[0],minor:ua.pv[1],release:ua.pv[2]};},hasFlashPlayerVersion:hasPlayerVersion,createSWF:function(attObj,parObj,replaceElemIdStr){if(ua.w3cdom){return createSWF(attObj,parObj,replaceElemIdStr);}
else{return undefined;}},removeSWF:function(objElemIdStr){if(ua.w3cdom){removeSWF(objElemIdStr);}},createCSS:function(sel,decl){if(ua.w3cdom){createCSS(sel,decl);}},addDomLoadEvent:addDomLoadEvent,addLoadEvent:addLoadEvent,getQueryParamValue:function(param){var q=doc.location.search||doc.location.hash;if(param==null){return urlEncodeIfNecessary(q);}
if(q){var pairs=q.substring(1).split("&");for(var i=0;i<pairs.length;i++){if(pairs[i].substring(0,pairs[i].indexOf("="))==param){return urlEncodeIfNecessary(pairs[i].substring((pairs[i].indexOf("=")+1)));}}}
return"";},expressInstallCallback:function(){if(isExpressInstallActive&&storedAltContent){var obj=getElementById(EXPRESS_INSTALL_ID);if(obj){obj.parentNode.replaceChild(storedAltContent,obj);if(storedAltContentId){setVisibility(storedAltContentId,true);if(ua.ie&&ua.win){storedAltContent.style.display="block";}}
storedAltContent=null;storedAltContentId=null;isExpressInstallActive=false;}}}};}();return swfobject;})();S.lang={code:'de',of:'von',loading:'ladend',cancel:'Abbrechen',next:'Nächste',previous:'Vorige',play:'Abspielen',pause:'Pause',close:'Schließen',errors:{single:'Um den Inhalt anzeigen zu können muss die Browser-Erweiterung <a href="{0}">{1}</a> installiert werden.',shared:'Um den Inhalt anzeigen zu können müssen die beiden Browser-Erweiterungen <a href="{0}">{1}</a> und <a href="{2}">{3}</a> installiert werden.',either:'Um den Inhalt anzeigen zu können muss eine der beiden Browser-Erweiterungen <a href="{0}">{1}</a> oder <a href="{2}">{3}</a> installiert werden.'}};var jwControllerHeight=20;S.flv=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls)
this.height+=jwControllerHeight;this.width=obj.width?parseInt(obj.width,10):300;}
S.flv.ext=["flv","m4v"];S.flv.prototype={append:function(body,dims){var tmp=document.createElement('div');tmp.id=this.id;body.appendChild(tmp);var height=dims.innerHeight,width=dims.innerWidth,swf=S.path+"player.swf",version=S.options.flashVersion,express=S.path+"expressInstall.swf",flashvars=apply({file:this.obj.content,height:height,width:width,autostart:(S.options.autoplayMovies?"true":"false"),controlbar:(S.options.showMovieControls?"bottom":"none"),backcolor:"0x000000",frontcolor:"0xCCCCCC",lightcolor:"0x557722"},S.options.flashVars),params=S.options.flashParams;S.flash.embedSWF(swf,this.id,width,height,version,express,flashvars,params);},remove:function(){S.flash.expressInstallCallback();S.flash.removeSWF(this.id);},onWindowResize:function(){var dims=S.dimensions,el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth;}}
S.html=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;this.width=obj.width?parseInt(obj.width,10):500;}
S.html.prototype={append:function(body,dims){var div=document.createElement("div");div.id=this.id;div.className="html";div.innerHTML=this.obj.content;body.appendChild(div);},remove:function(){var el=get(this.id);if(el)
remove(el);}}
S.iframe=function(obj,id){this.obj=obj;this.id=id;var overlay=get("sb-overlay");this.height=obj.height?parseInt(obj.height,10):overlay.offsetHeight;this.width=obj.width?parseInt(obj.width,10):overlay.offsetWidth;}
S.iframe.prototype={append:function(body,dims){var scrolling='';if(this.obj.iframeScrolling==='dynamic_noScrollFallback'&&(S.isIE6||S.isIE7)){scrolling='no';}else if(this.obj.iframeScrolling!=='no'&&this.obj.iframeScrolling!=='yes'){scrolling='auto';}else{scrolling=this.obj.iframeScrolling;}
var html='<iframe id="'+this.id+'" name="'+this.id+'" height="100%" '+'width="100%" frameborder="0" marginwidth="0" marginheight="0" '+'style="visibility:hidden;" '+'onload="this.style.visibility=\'visible\'" '+'scrolling="'+scrolling+'"';if(S.isIE){html+=' allowtransparency="true"';if(S.isIE6)
html+=' src="javascript:false;document.write(\'\');"';}
html+='></iframe>';body.innerHTML=html;},remove:function(){var el=get(this.id);if(el){remove(el);if(S.isGecko)
delete window.frames[this.id];}},onLoad:function(){var win=S.isIE?get(this.id).contentWindow:window.frames[this.id];win.location.href=this.obj.content;var iframeInstance=this;window.setTimeout(function(){iframeInstance.triggerResize(iframeInstance)},100);window.setTimeout(function(){iframeInstance.triggerResize(iframeInstance)},500);window.setTimeout(function(){iframeInstance.triggerResize(iframeInstance)},1000);},triggerResize:function(iframeInstance){if(typeof iframeInstance!=='object'){iframeInstance=this;}
var win=window.frames[iframeInstance.id];if(typeof win!=='undefined'){if(win.document.body===null){window.setTimeout(function(){iframeInstance.triggerResize(iframeInstance)},10);}else{var dims=setDimensions(iframeInstance.height,iframeInstance.width);iframeInstance.onWindowResize(dims);}}},onWindowResize:function(dims){if(this.obj.iframeScrolling!=='dynamic'&&this.obj.iframeScrolling!=='dynamic_noScrollFallback'){return;}
var element=document.getElementById(this.id);var win=S.isIE?get(this.id).contentWindow:window.frames[this.id];if(dims.oversized){element.style.overflow='auto';if(this.obj.width<=dims.width){element.style.overflowX='hidden';}else if(this.obj.height<=dims.height){element.style.overflowY='hidden';}
win.document.body.style.overflow='auto';}else{element.style.overflow='hidden';win.document.body.style.overflow='hidden';}}}
var pre,proxyId="sb-drag-proxy",dragData,dragProxy,dragTarget;function resetDrag(){dragData={x:0,y:0,startX:null,startY:null};}
function updateProxy(){var dims=S.dimensions;apply(dragProxy.style,{height:dims.innerHeight+"px",width:dims.innerWidth+"px"});}
function enableDrag(){resetDrag();var style=["position:absolute","cursor:"+(S.isGecko?"-moz-grab":"move"),"background-color:"+(S.isIE?"#fff;filter:alpha(opacity=0)":"transparent")].join(";");S.appendHTML(S.skin.body,'<div id="'+proxyId+'" style="'+style+'"></div>');dragProxy=get(proxyId);updateProxy();addEvent(dragProxy,"mousedown",startDrag);}
function disableDrag(){if(dragProxy){removeEvent(dragProxy,"mousedown",startDrag);remove(dragProxy);dragProxy=null;}
dragTarget=null;}
function startDrag(e){preventDefault(e);var xy=getPageXY(e);dragData.startX=xy[0];dragData.startY=xy[1];dragTarget=get(S.player.id);addEvent(document,"mousemove",positionDrag);addEvent(document,"mouseup",endDrag);if(S.isGecko)
dragProxy.style.cursor="-moz-grabbing";}
function positionDrag(e){var player=S.player,dims=S.dimensions,xy=getPageXY(e);var moveX=xy[0]-dragData.startX;dragData.startX+=moveX;dragData.x=Math.max(Math.min(0,dragData.x+moveX),dims.innerWidth-player.width);var moveY=xy[1]-dragData.startY;dragData.startY+=moveY;dragData.y=Math.max(Math.min(0,dragData.y+moveY),dims.innerHeight-player.height);apply(dragTarget.style,{left:dragData.x+"px",top:dragData.y+"px"});}
function endDrag(){removeEvent(document,"mousemove",positionDrag);removeEvent(document,"mouseup",endDrag);if(S.isGecko)
dragProxy.style.cursor="-moz-grab";}
S.img=function(obj,id){this.obj=obj;this.id=id;this.ready=false;var self=this;pre=new Image();pre.onload=function(){self.height=obj.height?parseInt(obj.height,10):pre.height;self.width=obj.width?parseInt(obj.width,10):pre.width;self.ready=true;pre.onload=null;pre=null;}
pre.src=obj.content;}
S.img.ext=["bmp","gif","jpg","jpeg","png"];S.img.prototype={append:function(body,dims){var img=document.createElement("img");img.id=this.id;img.src=this.obj.content;img.style.position="absolute";var height,width;if(dims.oversized&&S.options.handleOversize=="resize"){height=dims.innerHeight;width=dims.innerWidth;}else{height=this.height;width=this.width;}
img.setAttribute("height",height);img.setAttribute("width",width);body.appendChild(img);},remove:function(){var el=get(this.id);if(el)
remove(el);disableDrag();if(pre){pre.onload=null;pre=null;}},onLoad:function(){var dims=S.dimensions;if(dims.oversized&&S.options.handleOversize=="drag")
enableDrag();},onWindowResize:function(){var dims=S.dimensions;switch(S.options.handleOversize){case"resize":var el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth;break;case"drag":if(dragTarget){var top=parseInt(S.getStyle(dragTarget,"top")),left=parseInt(S.getStyle(dragTarget,"left"));if(top+this.height<dims.innerHeight)
dragTarget.style.top=dims.innerHeight-this.height+"px";if(left+this.width<dims.innerWidth)
dragTarget.style.left=dims.innerWidth-this.width+"px";updateProxy();}
break;}}}
var qtControllerHeight=16;S.qt=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls)
this.height+=qtControllerHeight;this.width=obj.width?parseInt(obj.width,10):300;}
S.qt.ext=["dv","mov","moov","movie","mp4","avi","mpg","mpeg"];S.qt.prototype={append:function(body,dims){var opt=S.options,autoplay=String(opt.autoplayMovies),controls=String(opt.showMovieControls);var html="<object",movie={id:this.id,name:this.id,height:this.height,width:this.width,kioskmode:"true"};if(S.isIE){movie.classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B";movie.codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0";}else{movie.type="video/quicktime";movie.data=this.obj.content;}
for(var m in movie)
html+=" "+m+'="'+movie[m]+'"';html+=">";var params={src:this.obj.content,scale:"aspect",controller:controls,autoplay:autoplay};for(var p in params)
html+='<param name="'+p+'" value="'+params[p]+'">';html+="</object>";body.innerHTML=html;},remove:function(){try{document[this.id].Stop();}catch(e){}
var el=get(this.id);if(el)
remove(el);}}
S.swf=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;this.width=obj.width?parseInt(obj.width,10):300;}
S.swf.ext=["swf"];S.swf.prototype={append:function(body,dims){var tmp=document.createElement("div");tmp.id=this.id;body.appendChild(tmp);var height=dims.innerHeight,width=dims.innerWidth,swf=this.obj.content,version=S.options.flashVersion,express=S.path+"expressInstall.swf",flashvars=S.options.flashVars,params=S.options.flashParams;S.flash.embedSWF(swf,this.id,width,height,version,express,flashvars,params);},remove:function(){S.flash.expressInstallCallback();S.flash.removeSWF(this.id);},onWindowResize:function(){var dims=S.dimensions,el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth;}}
var wmpControllerHeight=(S.isIE?70:45);S.wmp=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls)
this.height+=wmpControllerHeight;this.width=obj.width?parseInt(obj.width,10):300;}
S.wmp.ext=["asf","avi","mpg","mpeg","wm","wmv"];S.wmp.prototype={append:function(body,dims){var opt=S.options,autoplay=opt.autoplayMovies?1:0;var movie='<object id="'+this.id+'" name="'+this.id+'" height="'+this.height+'" width="'+this.width+'"',params={autostart:opt.autoplayMovies?1:0};if(S.isIE){movie+=' classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6"';params.url=this.obj.content;params.uimode=opt.showMovieControls?"full":"none";}else{movie+=' type="video/x-ms-wmv"';movie+=' data="'+this.obj.content+'"'
params.showcontrols=opt.showMovieControls?1:0;}
movie+=">";for(var p in params)
movie+='<param name="'+p+'" value="'+params[p]+'">';movie+="</object>";body.innerHTML=movie;},remove:function(){if(S.isIE){try{window[this.id].controls.stop();window[this.id].URL="movie"+now()+".wmv";window[this.id]=function(){};}catch(e){}}
var el=get(this.id);if(el){setTimeout(function(){remove(el);},10);}}}
var overlayOn=false,visibilityCache=[],pngIds=["sb-nav-close","sb-nav-next","sb-nav-play","sb-nav-pause","sb-nav-previous"],container,overlay,wrapper,doWindowResize=true;function animate(el,property,to,duration,callback){var isOpacity=(property=="opacity"),anim=isOpacity?S.setOpacity:function(el,value){el.style[property]=""+
value+"px";};if(duration==0||(!isOpacity&&!S.options.animate)||(isOpacity&&!S.options.animateFade)){anim(el,to);if(callback)
callback();return;}
var from=parseFloat(S.getStyle(el,property))||0;var delta=to-from;if(delta==0){if(callback)
callback();return;}
duration*=1000;var begin=now(),ease=S.ease,end=begin+duration,time;var interval=setInterval(function(){time=now();if(time>=end){clearInterval(interval);interval=null;anim(el,to);if(callback)
callback();}else{anim(el,from+ease((time-begin)/duration)*delta);}},10);}
function setSize(){container.style.height=S.getWindowSize("Height")+"px";container.style.width=S.getWindowSize("Width")+"px";}
function setPosition(){container.style.top=document.documentElement.scrollTop+"px";container.style.left=document.documentElement.scrollLeft+"px";}
function toggleTroubleElements(on){if(on){each(visibilityCache,function(i,el){el[0].style.visibility=el[1]||'';});}else{visibilityCache=[];each(S.options.troubleElements,function(i,tag){each(document.getElementsByTagName(tag),function(j,el){visibilityCache.push([el,el.style.visibility]);el.style.visibility="hidden";});});}}
function toggleNav(id,on){var el=get("sb-nav-"+id);if(el)
el.style.display=on?"":"none";}
function toggleLoading(on,callback){var loading=get("sb-loading"),playerName=S.getCurrent().player,anim=(playerName=="img"||playerName=="html");if(on){S.setOpacity(loading,0);loading.style.display="block";var wrapped=function(){S.clearOpacity(loading);if(callback)
callback();}
if(anim){animate(loading,"opacity",1,S.options.fadeDuration,wrapped);}else{wrapped();}}else{var wrapped=function(){loading.style.display="none";S.clearOpacity(loading);if(callback)
callback();}
if(anim){animate(loading,"opacity",0,S.options.fadeDuration,wrapped);}else{wrapped();}}}
function buildBars(callback){var obj=S.getCurrent();get("sb-title-inner").innerHTML=obj.title||"";var close,next,play,pause,previous;if(S.options.displayNav){close=true;var len=S.gallery.length;if(len>1){if(S.options.continuous){next=previous=true;}else{next=(len-1)>S.current;previous=S.current>0;}}
if(S.options.slideshowDelay>0&&S.hasNext()){pause=!S.isPaused();play=!pause;}}else{close=next=play=pause=previous=false;}
toggleNav("close",close);toggleNav("next",next);toggleNav("play",play);toggleNav("pause",pause);toggleNav("previous",previous);var counter="";if(S.options.displayCounter&&S.gallery.length>1){var len=S.gallery.length;if(S.options.counterType=="skip"){var i=0,end=len,limit=parseInt(S.options.counterLimit)||0;if(limit<len&&limit>2){var h=Math.floor(limit/2);i=S.current-h;if(i<0)
i+=len;end=S.current+(limit-h);if(end>len)
end-=len;}
while(i!=end){if(i==len)
i=0;counter+='<a onclick="Shadowbox.change('+i+');"'
if(i==S.current)
counter+=' class="sb-counter-current"';counter+=">"+(++i)+"</a>";}}else{counter=[S.current+1,S.lang.of,len].join(' ');}}
get("sb-counter").innerHTML=counter;callback();}
function showBars(callback){var titleInner=get("sb-title-inner"),infoInner=get("sb-info-inner"),duration=0.35;titleInner.style.visibility=infoInner.style.visibility="";if(titleInner.innerHTML!="")
animate(titleInner,"marginTop",0,duration);animate(infoInner,"marginTop",0,duration,callback);}
function hideBars(anim,callback){var title=get("sb-title"),info=get("sb-info"),titleHeight=title.offsetHeight,infoHeight=info.offsetHeight,titleInner=get("sb-title-inner"),infoInner=get("sb-info-inner"),duration=(anim?0.35:0);animate(titleInner,"marginTop",titleHeight,duration);animate(infoInner,"marginTop",infoHeight*-1,duration,function(){titleInner.style.visibility=infoInner.style.visibility="hidden";callback();});}
function adjustHeight(height,top,anim,callback){var wrapperInner=get("sb-wrapper-inner"),duration=(anim?S.options.resizeDuration:0);animate(wrapper,"top",top,duration);animate(wrapperInner,"height",height,duration,callback);}
function adjustWidth(width,left,anim,callback){var duration=(anim?S.options.resizeDuration:0);animate(wrapper,"left",left,duration);animate(wrapper,"width",width,duration,callback);}
function setDimensions(height,width){var bodyInner=get("sb-body-inner"),height=parseInt(height),width=parseInt(width),topBottom=wrapper.offsetHeight-bodyInner.offsetHeight,leftRight=wrapper.offsetWidth-bodyInner.offsetWidth,maxHeight=overlay.offsetHeight,maxWidth=overlay.offsetWidth,padding=parseInt(S.options.viewportPadding)||20,preserveAspect=(S.options.preserveAspectWhileResizing&&S.player&&S.options.handleOversize!="drag");return S.setDimensions(height,width,maxHeight,maxWidth,topBottom,leftRight,padding,preserveAspect);}
var K={};K.markup=""+'<div id="sb-container">'+'<div id="sb-overlay"></div>'+'<div id="sb-wrapper">'+'<div id="sb-title">'+'<div id="sb-title-inner"></div>'+'</div>'+'<div id="sb-wrapper-inner">'+'<div id="sb-body">'+'<div id="sb-body-inner"></div>'+'<div id="sb-loading">'+'<div id="sb-loading-inner"><span>{loading}</span></div>'+'</div>'+'</div>'+'</div>'+'<div id="sb-info">'+'<div id="sb-info-inner">'+'<div id="sb-counter"></div>'+'<div id="sb-nav">'+'<a id="sb-nav-close" title="{close}" onclick="Shadowbox.close()"></a>'+'<a id="sb-nav-next" title="{next}" onclick="Shadowbox.next()"></a>'+'<a id="sb-nav-play" title="{play}" onclick="Shadowbox.play()"></a>'+'<a id="sb-nav-pause" title="{pause}" onclick="Shadowbox.pause()"></a>'+'<a id="sb-nav-previous" title="{previous}" onclick="Shadowbox.previous()"></a>'+'</div>'+'</div>'+'</div>'+'</div>'+'</div>';K.options={animSequence:"sync",counterLimit:10,counterType:"default",displayCounter:true,displayNav:true,fadeDuration:0.35,initialHeight:160,initialWidth:320,modal:false,overlayColor:"#000",overlayOpacity:0.5,resizeDuration:0.35,showOverlay:true,troubleElements:["select","object","embed","canvas"]};K.init=function(){S.appendHTML(document.body,sprintf(K.markup,S.lang));K.body=get("sb-body-inner");container=get("sb-container");overlay=get("sb-overlay");wrapper=get("sb-wrapper");if(!supportsFixed)
container.style.position="absolute";if(!supportsOpacity){var el,m,re=/url\("(.*\.png)"\)/;each(pngIds,function(i,id){el=get(id);if(el){m=S.getStyle(el,"backgroundImage").match(re);if(m){el.style.backgroundImage="none";el.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,src="+
m[1]+",sizingMethod=scale);";}}});}
var timer;addEvent(window,"resize",function(){if(timer){clearTimeout(timer);timer=null;}
if(open)
timer=setTimeout(K.onWindowResize,10);});}
K.onOpen=function(obj,callback){doWindowResize=false;container.style.display="block";setSize();var dims=setDimensions(S.options.initialHeight,S.options.initialWidth);adjustHeight(dims.innerHeight,dims.top);adjustWidth(dims.width,dims.left);if(S.options.showOverlay){overlay.style.backgroundColor=S.options.overlayColor;S.setOpacity(overlay,0);if(!S.options.modal)
addEvent(overlay,"click",S.close);overlayOn=true;}
if(!supportsFixed){setPosition();addEvent(window,"scroll",setPosition);}
toggleTroubleElements();container.style.visibility="visible";if(overlayOn){animate(overlay,"opacity",S.options.overlayOpacity,S.options.fadeDuration,callback);}else{callback();}}
K.onLoad=function(changing,callback){toggleLoading(true);while(K.body.firstChild)
remove(K.body.firstChild);hideBars(changing,function(){if(!open)
return;if(!changing)
wrapper.style.visibility="visible";buildBars(callback);});}
K.onReady=function(callback){if(!open)
return;var player=S.player,dims=setDimensions(player.height,player.width);var wrapped=function(){showBars(callback);}
switch(S.options.animSequence){case"hw":adjustHeight(dims.innerHeight,dims.top,true,function(){adjustWidth(dims.width,dims.left,true,wrapped);});break;case"wh":adjustWidth(dims.width,dims.left,true,function(){adjustHeight(dims.innerHeight,dims.top,true,wrapped);});break;default:adjustWidth(dims.width,dims.left,true);adjustHeight(dims.innerHeight,dims.top,true,wrapped);}}
K.onShow=function(callback){toggleLoading(false,callback);doWindowResize=true;}
K.onClose=function(){if(!supportsFixed)
removeEvent(window,"scroll",setPosition);removeEvent(overlay,"click",S.close);wrapper.style.visibility="hidden";var callback=function(){container.style.visibility="hidden";container.style.display="none";toggleTroubleElements(true);}
if(overlayOn){animate(overlay,"opacity",0,S.options.fadeDuration,callback);}else{callback();}}
K.onPlay=function(){toggleNav("play",false);toggleNav("pause",true);}
K.onPause=function(){toggleNav("pause",false);toggleNav("play",true);}
K.onWindowResize=function(){if(!doWindowResize)
return;setSize();var player=S.player,dims=setDimensions(player.height,player.width);adjustWidth(dims.width,dims.left);adjustHeight(dims.innerHeight,dims.top);if(player.onWindowResize)
player.onWindowResize(dims);}
S.skin=K;window['Shadowbox']=S;})(window);;

