/*!
 * TE Bilisim JS Engine 2.0
 * Copyright (c) 2000-2011 Abdullah Tekin (http://tebilisim.com)
 *
 * Yazilimin tum haklari telif haklari kanununca korunmaktadir.
 *
 * Yasadisi ihlal tespit edildigi takdirde TE Bilisim hukuki yollar
 * ile hakkini savunacagini temin eder...
 */
 


/*!
 * jQuery Tools v1.2.5 - The missing UI library for the Web
 * 
 * scrollable/scrollable.js
 * scrollable/scrollable.autoscroll.js
 * scrollable/scrollable.navigator.js
 * tabs/tabs.js
 * 
 * NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE.
 * 
 * http://flowplayer.org/tools/
 * 
 */
(function(a){a.tools=a.tools||{version:"v1.2.5"},a.tools.scrollable={conf:{activeClass:"active",circular:!1,clonedClass:"cloned",disabledClass:"disabled",easing:"swing",initialIndex:0,item:null,items:".items",keyboard:!0,mousewheel:!1,next:".next",prev:".prev",speed:400,vertical:!1,touch:!0,wheelSpeed:0}};function b(a,b){var c=parseInt(a.css(b),10);if(c)return c;var d=a[0].currentStyle;return d&&d.width&&parseInt(d.width,10)}function c(b,c){var d=a(c);return d.length<2?d:b.parent().find(c)}var d;function e(b,e){var f=this,g=b.add(f),h=b.children(),i=0,j=e.vertical;d||(d=f),h.length>1&&(h=a(e.items,b)),a.extend(f,{getConf:function(){return e},getIndex:function(){return i},getSize:function(){return f.getItems().size()},getNaviButtons:function(){return m.add(n)},getRoot:function(){return b},getItemWrap:function(){return h},getItems:function(){return h.children(e.item).not("."+e.clonedClass)},move:function(a,b){return f.seekTo(i+a,b)},next:function(a){return f.move(1,a)},prev:function(a){return f.move(-1,a)},begin:function(a){return f.seekTo(0,a)},end:function(a){return f.seekTo(f.getSize()-1,a)},focus:function(){d=f;return f},addItem:function(b){b=a(b),e.circular?(h.children("."+e.clonedClass+":last").before(b),h.children("."+e.clonedClass+":first").replaceWith(b.clone().addClass(e.clonedClass))):h.append(b),g.trigger("onAddItem",[b]);return f},seekTo:function(b,c,k){b.jquery||(b*=1);if(e.circular&&b===0&&i==-1&&c!==0)return f;if(!e.circular&&b<0||b>f.getSize()||b<-1)return f;var l=b;b.jquery?b=f.getItems().index(b):l=f.getItems().eq(b);var m=a.Event("onBeforeSeek");if(!k){g.trigger(m,[b,c]);if(m.isDefaultPrevented()||!l.length)return f}var n=j?{top:-l.position().top}:{left:-l.position().left};i=b,d=f,c===undefined&&(c=e.speed),h.animate(n,c,e.easing,k||function(){g.trigger("onSeek",[b])});return f}}),a.each(["onBeforeSeek","onSeek","onAddItem"],function(b,c){a.isFunction(e[c])&&a(f).bind(c,e[c]),f[c]=function(b){b&&a(f).bind(c,b);return f}});if(e.circular){var k=f.getItems().slice(-1).clone().prependTo(h),l=f.getItems().eq(1).clone().appendTo(h);k.add(l).addClass(e.clonedClass),f.onBeforeSeek(function(a,b,c){if(!a.isDefaultPrevented()){if(b==-1){f.seekTo(k,c,function(){f.end(0)});return a.preventDefault()}b==f.getSize()&&f.seekTo(l,c,function(){f.begin(0)})}}),f.seekTo(0,0,function(){})}var m=c(b,e.prev).click(function(){f.prev()}),n=c(b,e.next).click(function(){f.next()});!e.circular&&f.getSize()>1&&(f.onBeforeSeek(function(a,b){setTimeout(function(){a.isDefaultPrevented()||(m.toggleClass(e.disabledClass,b<=0),n.toggleClass(e.disabledClass,b>=f.getSize()-1))},1)}),e.initialIndex||m.addClass(e.disabledClass)),e.mousewheel&&a.fn.mousewheel&&b.mousewheel(function(a,b){if(e.mousewheel){f.move(b<0?1:-1,e.wheelSpeed||50);return!1}});if(e.touch){var o={};h[0].ontouchstart=function(a){var b=a.touches[0];o.x=b.clientX,o.y=b.clientY},h[0].ontouchmove=function(a){if(a.touches.length==1&&!h.is(":animated")){var b=a.touches[0],c=o.x-b.clientX,d=o.y-b.clientY;f[j&&d>0||!j&&c>0?"next":"prev"](),a.preventDefault()}}}e.keyboard&&a(document).bind("keydown.scrollable",function(b){if(e.keyboard&&!b.altKey&&!b.ctrlKey&&!a(b.target).is(":input")){if(e.keyboard!="static"&&d!=f)return;var c=b.keyCode;if(j&&(c==38||c==40)){f.move(c==38?-1:1);return b.preventDefault()}if(!j&&(c==37||c==39)){f.move(c==37?-1:1);return b.preventDefault()}}}),e.initialIndex&&f.seekTo(e.initialIndex,0,function(){})}a.fn.scrollable=function(b){var c=this.data("scrollable");if(c)return c;b=a.extend({},a.tools.scrollable.conf,b),this.each(function(){c=new e(a(this),b),a(this).data("scrollable",c)});return b.api?c:this}})(jQuery);
(function(a){var b=a.tools.scrollable;b.autoscroll={conf:{autoplay:!0,interval:3e3,autopause:!0}},a.fn.autoscroll=function(c){typeof c=="number"&&(c={interval:c});var d=a.extend({},b.autoscroll.conf,c),e;this.each(function(){var b=a(this).data("scrollable");b&&(e=b);var c,f=!0;b.play=function(){c||(f=!1,c=setInterval(function(){b.next()},d.interval))},b.pause=function(){c=clearInterval(c)},b.stop=function(){b.pause(),f=!0},d.autopause&&b.getRoot().add(b.getNaviButtons()).hover(b.pause,b.play),d.autoplay&&b.play()});return d.api?e:this}})(jQuery);
(function(a){var b=a.tools.scrollable;b.navigator={conf:{navi:".navi",naviItem:null,activeClass:"active",indexed:!1,idPrefix:null,history:!1}};function c(b,c){var d=a(c);return d.length<2?d:b.parent().find(c)}a.fn.navigator=function(d){typeof d=="string"&&(d={navi:d}),d=a.extend({},b.navigator.conf,d);var e;this.each(function(){var b=a(this).data("scrollable"),f=d.navi.jquery?d.navi:c(b.getRoot(),d.navi),g=b.getNaviButtons(),h=d.activeClass,i=d.history&&a.fn.history;b&&(e=b),b.getNaviButtons=function(){return g.add(f)};function j(a,c,d){b.seekTo(c);if(i)location.hash&&(location.hash=a.attr("href").replace("#",""));else return d.preventDefault()}function k(){return f.find(d.naviItem||"> *")}function l(b){var c=a("<"+(d.naviItem||"a")+"/>").click(function(c){j(a(this),b,c)}).attr("href","#"+b);b===0&&c.addClass(h),d.indexed&&c.text(b+1),d.idPrefix&&c.attr("id",d.idPrefix+b);return c.appendTo(f)}k().length?k().each(function(b){a(this).click(function(c){j(a(this),b,c)})}):a.each(b.getItems(),function(a){l(a)}),b.onBeforeSeek(function(a,b){setTimeout(function(){if(!a.isDefaultPrevented()){var c=k().eq(b);!a.isDefaultPrevented()&&c.length&&k().removeClass(h).eq(b).addClass(h)}},1)});function m(a,b){var c=k().eq(b.replace("#",""));c.length||(c=k().filter("[href="+b+"]")),c.click()}b.onAddItem(function(a,c){c=l(b.getItems().index(c)),i&&c.history(m)}),i&&k().history(m)});return d.api?e:this}})(jQuery);
(function(a){a.tools=a.tools||{version:"v1.2.5"},a.tools.tabs={conf:{tabs:"a",current:"current",onBeforeClick:null,onClick:null,effect:"default",initialIndex:0,event:"click",rotate:!1,history:!1},addEffect:function(a,c){b[a]=c}};var b={"default":function(a,b){this.getPanes().hide().eq(a).show(),b.call()},fade:function(a,b){var c=this.getConf(),d=c.fadeOutSpeed,e=this.getPanes();d?e.fadeOut(d):e.hide(),e.eq(a).fadeIn(c.fadeInSpeed,b)},slide:function(a,b){this.getPanes().slideUp(200),this.getPanes().eq(a).slideDown(400,b)},ajax:function(a,b){this.getPanes().eq(0).load(this.getTabs().eq(a).attr("href"),b)}},c;a.tools.tabs.addEffect("horizontal",function(b,d){c||(c=this.getPanes().eq(0).width()),this.getCurrentPane().animate({width:0},function(){a(this).hide()}),this.getPanes().eq(b).animate({width:c},function(){a(this).show(),d.call()})});function d(c,d,e){var f=this,g=c.add(this),h=c.find(e.tabs),i=d.jquery?d:c.children(d),j;h.length||(h=c.children()),i.length||(i=c.parent().find(d)),i.length||(i=a(d)),a.extend(this,{click:function(c,d){var i=h.eq(c);typeof c=="string"&&c.replace("#","")&&(i=h.filter("[href*="+c.replace("#","")+"]"),c=Math.max(h.index(i),0));if(e.rotate){var k=h.length-1;if(c<0)return f.click(k,d);if(c>k)return f.click(0,d)}if(!i.length){if(j>=0)return f;c=e.initialIndex,i=h.eq(c)}if(c===j)return f;d=d||a.Event(),d.type="onBeforeClick",g.trigger(d,[c]);if(!d.isDefaultPrevented()){b[e.effect].call(f,c,function(){d.type="onClick",g.trigger(d,[c])}),j=c,h.removeClass(e.current),i.addClass(e.current);return f}},getConf:function(){return e},getTabs:function(){return h},getPanes:function(){return i},getCurrentPane:function(){return i.eq(j)},getCurrentTab:function(){return h.eq(j)},getIndex:function(){return j},next:function(){return f.click(j+1)},prev:function(){return f.click(j-1)},destroy:function(){h.unbind(e.event).removeClass(e.current),i.find("a[href^=#]").unbind("click.T");return f}}),a.each("onBeforeClick,onClick".split(","),function(b,c){a.isFunction(e[c])&&a(f).bind(c,e[c]),f[c]=function(b){b&&a(f).bind(c,b);return f}}),e.history&&a.fn.history&&(a.tools.history.init(h),e.event="history"),h.each(function(b){a(this).bind(e.event,function(a){f.click(b,a);return a.preventDefault()})}),i.find("a[href^=#]").bind("click.T",function(b){f.click(a(this).attr("href"),b)}),location.hash&&e.tabs=="a"&&c.find("[href="+location.hash+"]").length?f.click(location.hash):(e.initialIndex===0||e.initialIndex>0)&&f.click(e.initialIndex)}a.fn.tabs=function(b,c){var e=this.data("tabs");e&&(e.destroy(),this.removeData("tabs")),a.isFunction(c)&&(c={onBeforeClick:c}),c=a.extend({},a.tools.tabs.conf,c),this.each(function(){e=new d(a(this),b,c),a(this).data("tabs",e)});return c.api?e:this}})(jQuery);
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.65 (07-APR-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
;(function($){var ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.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(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options,o);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};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"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){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,1);}return false;default:options={fx: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 removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});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]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}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){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var 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&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;i<els.length;i++){var $e=$(els[i]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}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 requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingOp=($.browser.opera&&this.cycleW==42&&this.cycleH==19&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||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.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){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){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){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 txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];var 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){var 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(var i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("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;$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"){$slides.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){$.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){$(els).stop(true,true);opts.busy=false;}if(opts.busy){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.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){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(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}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(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){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){if(++opts.randomIndex==els.length){opts.randomIndex=0;}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;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):'<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);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.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){function hex(s){s=parseInt(s).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.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();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(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,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$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={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);
;(function($){$.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,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,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,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,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){$.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){$.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,top:0,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,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var 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);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,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)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};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.cssFirst={top:0};opts.cssBefore={left:0,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,top:0,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,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;});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;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,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;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,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,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,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,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,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,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top: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,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,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,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,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,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height: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,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,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,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,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){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,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 t=parseInt(h/2);var l=parseInt(w/2);clip="rect("+t+"px "+l+"px "+t+"px "+l+"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]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);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))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);
/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */
jQuery.cookie=function(a,b,c){if(typeof b!="undefined"){c=c||{};if(b===null){b="";c=$.extend({},c);c.expires=-1}var d="";if(c.expires&&(typeof c.expires=="number"||c.expires.toUTCString)){var e;if(typeof c.expires=="number"){e=new Date;e.setTime(e.getTime()+c.expires*24*60*60*1e3)}else{e=c.expires}d="; expires="+e.toUTCString()}var f=c.path?"; path="+c.path:"";var g=c.domain?"; domain="+c.domain:"";var h=c.secure?"; secure":"";document.cookie=[a,"=",encodeURIComponent(b),d,f,g,h].join("")}else{var i=null;if(document.cookie&&document.cookie!=""){var j=document.cookie.split(";");for(var k=0;k<j.length;k++){var l=jQuery.trim(j[k]);if(l.substring(0,a.length+1)==a+"="){i=decodeURIComponent(l.substring(a.length+1));break}}}return i}}
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.03
 */
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}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},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},textDecoration:function(G,F){if(!F){F=this.getStyle(G)}var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D]){continue}if(F.get("textDecoration").indexOf(D)!=-1){C[D]=F.get("color")}E=false}if(E){break}F=this.getStyle(B=B.parentNode)}return C},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 B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};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(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.w;this.baseSize=parseInt(B["units-per-em"],10);this.family=B["font-family"].toLowerCase();this.weight=B["font-weight"];this.style=B["font-style"]||"normal";this.viewBox=(function(){var E=B.bbox.split(/\s+/);var D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return D})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent}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)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,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 B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}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(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,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){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(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").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(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R}if(T>Y){Y=T}if(R>W){W=R}if(T<F){F=T}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue}if(r){h-=ac=r[B]||0;N[ae-1]-=ac}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k}if(v===undefined){return null}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline)}if(u.overline){s(ah.ascent,u.overline)}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y){continue}if(y.d){aj.beginPath();if(y.code){c(y.code,aj)}else{y.code=d("m"+y.d,aj)}aj.fill()}aj.translate(N[k++],0)}aj.restore()}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag])}aj.fillStyle=w}else{aj.fillStyle=Z.get("color")}af();if(u["line-through"]){s(-ah.descent,u["line-through"])}return C}})());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 g=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(g?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(h,i){return a(h,/(?:em|ex|%)$|^[a-z-]+$/i.test(i)?"1em":i)}function a(k,l){if(/px$/i.test(l)){return parseFloat(l)}var j=k.style.left,i=k.runtimeStyle.left;k.runtimeStyle.left=k.currentStyle.left;k.style.left=l.replace("%","em");var h=k.style.pixelLeft;k.style.left=j;k.runtimeStyle.left=i;return h}var f={};function d(o){var p=o.id;if(!f[p]){var m=o.stops,n=document.createElement("cvml:fill"),h=[];n.type="gradient";n.angle=180;n.focus="0";n.method="sigma";n.color=m[0][1];for(var l=1,i=m.length-1;l<i;++l){h.push(m[l][0]*100+"% "+m[l][1])}n.colors=h.join(",");n.color2=m[i][1];f[p]=n}return f[p]}return function(aj,K,ad,G,O,ak,ab){var o=(K===null);if(o){K=O.alt}var M=aj.viewBox;var q=ad.computedFontSize||(ad.computedFontSize=new Cufon.CSS.Size(c(ak,ad.get("fontSize"))+"px",aj.baseSize));var aa=ad.computedLSpacing;if(aa==undefined){aa=ad.get("letterSpacing");ad.computedLSpacing=aa=(aa=="normal")?0:~~q.convertFrom(a(ak,aa))}var C,r;if(o){C=O;r=O.firstChild}else{C=document.createElement("span");C.className="cufon cufon-vml";C.alt=K;r=document.createElement("span");r.className="cufon-vml-canvas";C.appendChild(r);if(G.printable){var ag=document.createElement("span");ag.className="cufon-alt";ag.appendChild(document.createTextNode(K));C.appendChild(ag)}if(!ab){C.appendChild(document.createElement("cvml:shape"))}}var ap=C.style;var V=r.style;var m=q.convert(M.height),am=Math.ceil(m);var Z=am/m;var T=Z*Cufon.CSS.fontStretch(ad.get("fontStretch"));var Y=M.minX,X=M.minY;V.height=am;V.top=Math.round(q.convert(X-aj.ascent));V.left=Math.round(q.convert(Y));ap.height=q.convert(aj.height)+"px";var v=G.enableTextDecoration?Cufon.CSS.textDecoration(ak,ad):{};var J=ad.get("color");var ao=Cufon.CSS.textTransform(K,ad).split(""),B;var p=aj.glyphs,H,s,af;var h=0,P=[],W=0,x;var z,L=G.textShadow;for(var ai=0,ah=0,ae=ao.length;ai<ae;++ai){H=p[B=ao[ai]]||aj.missingGlyph;if(!H){continue}if(s){h-=af=s[B]||0;P[ah-1]-=af}h+=x=P[ah++]=~~(H.w||aj.w)+aa;s=H.k}if(x===undefined){return null}var A=-Y+h+(M.width-x);var an=q.convert(A*T),ac=Math.round(an);var S=A+","+M.height,n;var N="r"+S+"ns";var y=G.textGradient&&d(G.textGradient);for(ai=0,ah=0;ai<ae;++ai){H=p[ao[ai]]||aj.missingGlyph;if(!H){continue}if(o){z=r.childNodes[ah];while(z.firstChild){z.removeChild(z.firstChild)}}else{z=document.createElement("cvml:shape");r.appendChild(z)}z.stroked="f";z.coordsize=S;z.coordorigin=n=(Y-W)+","+X;z.path=(H.d?"m"+H.d+"xe":"")+"m"+n+N;z.fillcolor=J;if(y){z.appendChild(y.cloneNode(false))}var al=z.style;al.width=ac;al.height=am;if(L){var u=L[0],t=L[1];var F=Cufon.CSS.color(u.color),D;var R=document.createElement("cvml:shadow");R.on="t";R.color=F.color;R.offset=u.offX+","+u.offY;if(t){D=Cufon.CSS.color(t.color);R.type="double";R.color2=D.color;R.offset2=t.offX+","+t.offY}R.opacity=F.opacity||(D&&D.opacity)||1;z.appendChild(R)}W+=P[ah++]}var Q=z.nextSibling,w,E;if(G.forceHitArea){if(!Q){Q=document.createElement("cvml:rect");Q.stroked="f";Q.className="cufon-vml-cover";w=document.createElement("cvml:fill");w.opacity=0;Q.appendChild(w);r.appendChild(Q)}E=Q.style;E.width=ac;E.height=am}else{if(Q){r.removeChild(Q)}}ap.width=Math.max(Math.ceil(q.convert(h*T)),0);if(g){var U=ad.computedYAdjust;if(U===undefined){var I=ad.get("lineHeight");if(I=="normal"){I="1em"}else{if(!isNaN(I)){I+="em"}}ad.computedYAdjust=U=0.5*(a(ak,I)-parseFloat(ap.height))}if(U){ap.marginTop=Math.ceil(U)+"px";ap.marginBottom=U+"px"}}return C}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
 /*
 * Copyright (c) 2011 Abdullah Tekin.
 * Open Menu
 *
 * @version 1.03
 */
Cufon.registerFont({"w":225,"face":{"font-family":"Futura Md BT","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 2 2 2 4 2 2 4","ascent":"274","descent":"-86","x-height":"7","bbox":"-17 -344 352 85.1441","underline-thickness":"47.8125","underline-position":"-17.0508","unicode-range":"U+0020-U+015F"},"glyphs":{" ":{"w":112},"!":{"d":"29,-86r0,-183r65,0r0,183r-65,0xm62,7v-19,0,-36,-17,-36,-36v-1,-20,17,-36,36,-36v19,0,35,17,35,36v0,19,-16,36,-35,36","w":123},"\"":{"d":"73,-253r39,0r0,99r-39,0r0,-99xm13,-253r39,0r0,99r-39,0r0,-99","w":125},"#":{"d":"124,-148r-14,41r43,0r14,-41r-43,0xm120,-258r44,0r-24,69r41,0r25,-69r44,0r-25,69r48,0r-15,41r-47,0r-14,40r48,0r-15,41r-48,0r-25,69r-44,0r25,-69r-41,0r-25,69r-44,0r24,-69r-48,0r15,-41r48,0r14,-40r-50,0r15,-41r49,0","w":276},"$":{"d":"200,-84v3,50,-34,84,-81,88r0,43r-23,0r0,-42v-40,-1,-63,-15,-86,-37r32,-51v17,19,33,32,62,34v25,2,41,-27,24,-45v-37,-22,-105,-23,-105,-86v0,-50,36,-77,83,-82r0,-25r23,0r0,25v23,2,42,11,59,22r-22,50v-13,-12,-28,-19,-49,-20v-15,0,-29,7,-28,21v1,20,15,21,36,27v53,14,72,25,75,78"},"%":{"d":"53,-189v0,26,2,44,22,44v20,0,22,-18,22,-44v0,-26,-2,-44,-22,-44v-20,0,-22,18,-22,44xm75,-260v41,0,66,29,66,71v0,42,-25,71,-66,71v-41,0,-66,-29,-66,-71v0,-42,25,-71,66,-71xm254,-108v-30,-3,-24,58,-17,77v23,25,39,2,39,-34v0,-26,-2,-41,-22,-43xm254,-135v40,0,66,29,66,70v0,42,-25,72,-66,72v-41,0,-66,-29,-66,-72v0,-42,25,-71,66,-70xm69,7r155,-267r33,0r-156,267r-32,0","w":325},"&":{"d":"262,-94v-11,14,-22,25,-35,36r56,58r-78,0r-23,-26v-40,50,-166,45,-162,-39v2,-43,25,-59,60,-78v-13,-15,-23,-30,-24,-52v-1,-35,33,-61,71,-61v44,0,76,22,76,63v0,31,-19,50,-44,65r30,32v13,-10,25,-23,36,-36xm105,-107v-24,15,-35,64,5,64v17,0,26,-9,37,-18xm133,-215v-35,0,-22,47,-4,57v10,-10,26,-17,26,-36v0,-12,-9,-21,-22,-21","w":290},"'":{"d":"13,-253r39,0r0,99r-39,0r0,-99","w":65},"(":{"d":"122,-239v-67,64,-66,228,-2,295r-38,26v-56,-59,-82,-169,-48,-265v10,-28,26,-56,48,-82","w":130},")":{"d":"49,-265v55,59,81,169,48,266v-10,28,-27,55,-48,81r-38,-26v64,-67,66,-231,-2,-295","w":130},"*":{"d":"105,-212r37,-28r17,31r-42,17r42,17r-17,31r-37,-28r7,45r-36,0r6,-45r-36,28r-18,-31r43,-17r-43,-17r18,-31r36,28r-6,-45r36,0","w":187},"+":{"d":"129,-215r42,0r0,87r84,0r0,41r-84,0r0,87r-42,0r0,-87r-84,0r0,-41r84,0r0,-87","w":299},",":{"d":"42,-58r66,0r-55,110r-48,0","w":112},"-":{"d":"22,-60r0,-57r120,0r0,57r-120,0","w":164,"k":{"x":6,"s":-13,"q":-7,"o":-7,"g":-7,"e":-7,"d":-7,"c":-7,"Y":28,"X":13,"W":20,"V":21,"T":33,"S":-7,"Q":-13,"O":-13,"J":-20,"G":-13,"C":-7,"A":6}},".":{"d":"56,7v-19,0,-35,-17,-35,-36v0,-19,16,-35,35,-35v20,0,37,15,36,35v0,19,-17,36,-36,36","w":112},"\/":{"d":"0,33r126,-296r39,0r-126,296r-39,0","w":164},"0":{"d":"113,-260v68,0,97,60,97,136v1,74,-31,131,-97,131v-67,0,-98,-59,-98,-134v0,-74,31,-133,98,-133xm113,-208v-31,4,-33,38,-33,81v0,43,2,77,33,81v31,-4,32,-39,32,-81v0,-43,-2,-75,-32,-81"},"1":{"d":"86,0r0,-197r-55,0r31,-58r88,0r0,255r-64,0"},"2":{"d":"111,-260v68,0,116,55,87,117v-14,30,-50,61,-73,88r78,0r0,55r-196,0r115,-137v25,-18,31,-72,-10,-72v-24,0,-35,18,-34,44v-20,-1,-44,2,-62,-1v-1,-58,36,-94,95,-94"},"3":{"d":"112,7v-58,0,-99,-34,-97,-92r65,0v-1,23,8,38,31,38v22,0,34,-11,34,-32v-1,-27,-17,-37,-46,-35r0,-41v45,9,53,-56,12,-57v-17,0,-29,11,-29,28r-62,0v1,-51,39,-76,94,-76v47,0,84,22,84,66v0,29,-17,46,-40,53v31,5,50,29,50,64v0,51,-43,84,-96,84"},"4":{"d":"127,-108r1,-104v-17,38,-43,69,-64,104r63,0xm127,0r0,-58r-117,0r0,-50r95,-148r80,0r0,148r29,0r0,50r-29,0r0,58r-58,0"},"5":{"d":"142,-89v2,-50,-78,-59,-102,-25r-9,-6r21,-135r140,0r0,53r-97,0r-5,33v63,-17,116,19,116,83v0,93,-122,115,-185,72r5,-62v18,12,35,32,65,32v30,0,51,-16,51,-45"},"6":{"d":"152,-83v0,-24,-15,-40,-39,-40v-24,0,-39,16,-39,40v0,24,16,39,39,39v23,0,39,-16,39,-39xm113,7v-75,0,-117,-68,-88,-139v11,-29,52,-90,73,-123r72,0r-60,91v54,-17,102,22,102,77v0,57,-41,94,-99,94"},"7":{"d":"34,0r97,-197r-109,0r0,-58r197,0r0,12r-112,243r-73,0"},"8":{"d":"82,-188v0,19,11,30,30,30v18,0,32,-11,31,-30v0,-19,-12,-29,-31,-29v-18,0,-30,11,-30,29xm77,-79v1,21,13,34,35,34v22,0,36,-13,36,-34v0,-20,-14,-34,-36,-34v-22,0,-35,13,-35,34xm200,-190v0,29,-16,47,-42,53v33,5,53,30,53,66v-1,52,-42,78,-99,78v-57,0,-98,-26,-98,-78v0,-36,20,-61,53,-66v-26,-6,-42,-24,-42,-53v0,-47,35,-70,87,-70v52,0,88,22,88,70"},"9":{"d":"76,-170v0,24,15,40,38,40v24,0,39,-16,39,-40v0,-24,-15,-39,-39,-39v-24,0,-38,15,-38,39xm113,-260v77,0,118,69,88,141v-14,33,-50,85,-72,119r-71,0r60,-89v-55,18,-103,-23,-103,-77v0,-56,40,-94,98,-94"},":":{"d":"62,-105v-19,0,-36,-16,-36,-35v-1,-20,17,-36,36,-36v19,0,35,17,35,36v0,19,-16,35,-35,35xm62,7v-19,0,-36,-17,-36,-36v-1,-20,16,-35,36,-35v19,0,35,16,35,35v0,19,-16,36,-35,36","w":123},";":{"d":"78,-105v-19,0,-35,-16,-35,-35v0,-19,16,-36,35,-36v20,0,36,16,36,36v0,20,-16,35,-36,35xm47,-58r65,0r-54,110r-49,0","w":123},"<":{"d":"253,-213r0,44r-150,62r150,61r0,45r-207,-86r0,-41","w":299},"=":{"d":"45,-88r210,0r0,40r-210,0r0,-40xm45,-167r210,0r0,41r-210,0r0,-41","w":299},">":{"d":"46,-213r207,85r0,41r-207,86r0,-45r151,-61r-151,-62r0,-44","w":299},"?":{"d":"106,7v-19,0,-36,-17,-36,-36v0,-19,17,-36,36,-36v19,0,35,17,35,36v0,20,-15,37,-35,36xm195,-192v0,37,-22,66,-57,67r0,38r-60,0r0,-73v31,1,60,-2,59,-31v0,-15,-11,-30,-27,-29v-16,1,-27,9,-28,26v-19,-1,-43,2,-60,-1v0,-47,39,-75,90,-75v48,0,83,31,83,78","w":217},"@":{"d":"243,-18v-23,1,-36,-9,-39,-28v-24,46,-119,33,-110,-33v-8,-69,81,-135,127,-78r9,-16r36,0r-28,113v0,7,3,11,11,10v35,1,62,-45,61,-84v-1,-58,-52,-96,-114,-95v-89,1,-139,54,-145,137v-8,118,160,145,236,83r17,24v-32,25,-70,41,-122,41v-99,0,-168,-50,-168,-147v0,-108,75,-171,183,-171v87,0,149,44,149,128v0,65,-37,112,-103,116xm137,-78v0,33,31,39,49,20v19,-19,44,-92,-4,-92v-27,0,-45,40,-45,72","w":360},"A":{"d":"95,-96r70,0r-35,-120v-9,43,-24,80,-35,120xm-3,0r89,-257r88,0r89,257r-70,0r-13,-46r-100,0r-13,46r-70,0","w":259,"k":{"y":6,"Y":13,"W":6,"V":6,"U":6,"T":15,"Q":6,"O":6,"G":6,"C":6,";":-7,":":-7,"-":8}},"B":{"d":"152,-180v0,-29,-29,-25,-60,-26r0,51v31,0,60,3,60,-25xm229,-73v1,92,-109,70,-202,73r0,-257v86,3,190,-19,191,64v-1,33,-17,47,-47,54v36,3,58,27,58,66xm163,-80v0,-34,-36,-28,-71,-29r0,56v33,-1,71,5,71,-27","w":244,"k":{"-":-10}},"C":{"d":"17,-128v0,-107,104,-163,197,-119r0,76v-17,-18,-32,-30,-59,-31v-41,-2,-68,33,-68,75v0,40,29,73,68,72v27,-1,43,-13,59,-31r0,76v-91,46,-197,-13,-197,-118","w":226,"k":{";":-7,":":-7,"-":-8}},"D":{"d":"259,-128v4,120,-99,135,-232,128r0,-257r54,0v120,-6,175,29,178,129xm188,-128v0,-57,-31,-74,-91,-72r0,142v58,1,91,-14,91,-70","w":275,"k":{"Y":6,"W":6,"V":6,"A":6,";":-7,":":-7,".":15,"-":-11,",":15}},"E":{"d":"27,0r0,-257r158,0r0,56r-89,0r0,45r84,0r0,55r-84,0r0,43r89,0r0,58r-158,0","w":204,"k":{";":-7,":":-7,".":-7,"-":-7,",":-7}},"F":{"d":"27,0r0,-257r158,0r0,56r-89,0r0,45r84,0r0,55r-84,0r0,101r-69,0","w":195,"k":{"A":6,";":15,":":15,".":58,",":58}},"G":{"d":"86,-126v-6,64,63,100,113,66v12,-9,19,-20,21,-35r-70,0r0,-54r138,0v5,97,-42,155,-134,155v-86,-1,-131,-52,-137,-134v-11,-137,190,-179,253,-76r-61,29v-33,-54,-133,-25,-123,49","w":303,"k":{"Y":6,"T":6,";":-7,":":-7,".":10,"-":-8,",":10}},"H":{"d":"27,0r0,-257r71,0r0,100r93,0r0,-100r70,0r0,257r-70,0r0,-105r-93,0r0,105r-71,0","w":288,"k":{".":6,",":6}},"I":{"d":"29,0r0,-257r71,0r0,257r-71,0","w":129},"J":{"d":"60,-49v23,-7,18,-24,18,-67r0,-141r70,0v-8,106,35,265,-77,264v-35,0,-59,-17,-75,-41r42,-39v2,13,10,22,22,24","w":172,"k":{";":11,":":11,".":18,"-":6,",":18}},"K":{"d":"27,0r0,-257r70,0r0,117r81,-117r82,0r-95,125r103,132r-87,0r-84,-115r0,115r-70,0","w":261,"k":{"y":6,"Y":6,"W":6,"O":13,"C":13,"A":6,";":-7,":":-7,".":-7,"-":18,",":-7}},"L":{"d":"27,0r0,-257r71,0r0,197r87,0r0,60r-158,0","w":191,"k":{"y":13,"Y":20,"W":13,"V":20,"T":13,"O":6,";":-7,":":-7,".":-7,"-":6,",":-7}},"M":{"d":"237,-169v-12,55,-32,115,-47,169r-47,0r-47,-169r-21,169r-65,0r40,-257r69,0r47,167v13,-59,31,-111,47,-167r70,0r40,257r-66,0","w":332},"N":{"d":"91,-178v6,55,4,118,4,178r-68,0r0,-257r68,0v40,60,88,110,121,177v-7,-55,-3,-117,-4,-177r67,0r0,257r-67,0r-98,-133v-7,-11,-16,-29,-23,-45","w":306,"k":{";":10,":":10,".":10,",":10}},"O":{"d":"154,-263v82,0,138,54,138,135v0,81,-56,135,-138,135v-81,0,-137,-54,-137,-135v0,-82,55,-135,137,-135xm87,-128v0,41,27,75,67,75v39,0,67,-34,67,-75v0,-42,-29,-76,-67,-76v-38,0,-67,34,-67,76","w":308,"k":{"Y":6,"X":13,"V":6,"T":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"220,-170v3,72,-47,90,-127,85r0,85r-66,0r0,-257r74,0v82,-5,116,21,119,87xm152,-172v0,-30,-26,-30,-59,-30r0,60v33,1,59,1,59,-30","w":228,"k":{"o":6,"e":6,"a":6,"A":18,";":10,":":10,".":79,"-":15,",":79}},"Q":{"d":"87,-128v0,47,38,88,85,72r-36,-47r61,0r13,18v29,-46,-1,-119,-56,-119v-38,0,-67,36,-67,76xm292,-128v0,43,-17,74,-42,96r47,62r-60,0r-27,-36v-93,38,-197,-23,-193,-122v3,-82,55,-135,137,-135v83,0,138,54,138,135","w":308,"k":{";":-7,":":-7,".":11,"-":-10,",":11}},"R":{"d":"219,-177v0,42,-23,65,-58,73r71,104r-80,0r-59,-101r0,101r-66,0r0,-257r74,0v80,-4,118,16,118,80xm150,-168v0,-33,-24,-36,-57,-35r0,67v32,1,57,-2,57,-32","w":230,"k":{"o":6,"e":6,".":-7,"-":10,",":-7}},"S":{"d":"197,-84v7,96,-137,118,-190,53r32,-52v17,18,34,32,61,35v26,3,44,-31,24,-46v-33,-24,-104,-23,-104,-86v0,-81,108,-106,165,-60r-22,50v-14,-12,-29,-19,-49,-21v-15,-1,-29,8,-29,22v0,19,16,21,37,27v53,14,70,25,75,78","w":209,"k":{";":-7,":":-7,".":6,"-":-11,",":6}},"T":{"d":"65,0r0,-197r-58,0r0,-60r185,0r0,60r-57,0r0,197r-70,0","w":199,"k":{"y":29,"w":29,"u":29,"s":23,"r":16,"o":29,"e":29,"c":29,"a":29,"O":6,"C":6,"A":15,";":29,":":29,".":46,"-":33,",":46}},"U":{"d":"140,7v-96,2,-114,-51,-114,-155r0,-109r70,0r0,125v-1,49,0,79,44,80v51,1,45,-45,45,-98r0,-107r70,0r0,136v4,93,-30,126,-115,128","w":280,"k":{"A":6,";":11,":":11,".":21,"-":10,",":21}},"V":{"d":"101,0r-108,-257r75,0r60,178v16,-63,40,-118,60,-178r74,0r-107,257r-54,0","w":255,"k":{"y":6,"u":20,"o":26,"e":26,"a":26,"O":6,"A":6,";":18,":":18,".":53,"-":29,",":53}},"W":{"d":"203,-257r40,160r39,-160r70,0r-72,257r-65,0r-41,-144v-11,50,-27,96,-40,144r-65,0r-73,-257r71,0r38,161r41,-161r57,0","w":349,"k":{"u":6,"r":10,"o":13,"i":-7,"e":13,"a":13,"A":6,";":21,":":21,".":44,"-":21,",":44}},"X":{"d":"88,-257v12,26,30,52,39,81v9,-28,28,-55,40,-81r83,0r-86,123r95,134r-79,0v-17,-33,-38,-62,-53,-98v-13,37,-35,65,-52,98r-80,0r95,-135r-86,-122r84,0","w":254,"k":{"e":6,"O":13,"C":13,";":6,":":6,".":-7,"-":18,",":-7}},"Y":{"d":"73,0r0,-117r-90,-140r81,0v14,29,32,57,43,88v10,-32,30,-59,43,-88r81,0r-90,140r0,117r-68,0","w":214,"k":{"u":21,"o":33,"e":33,"a":33,"O":6,"C":6,"A":13,";":38,":":38,".":48,"-":43,",":48}},"Z":{"d":"228,0r-227,0r130,-202r-105,0r0,-55r217,0r-130,201r115,0r0,56","w":243,"k":{";":-7,":":-7,".":-7,"-":6,",":-7}},"[":{"d":"32,-263r89,0r0,42r-39,0r0,259r39,0r0,43r-89,0r0,-344","w":130},"\\":{"d":"126,33r-126,-296r39,0r126,296r-39,0","w":164},"]":{"d":"99,-263r0,344r-89,0r0,-43r38,0r0,-259r-38,0r0,-42r89,0","w":130},"^":{"d":"155,-257r50,0r82,99r-47,0r-60,-60r-61,60r-46,0","w":360},"_":{"d":"0,43r180,0r0,42r-180,0r0,-42","w":180},"`":{"d":"39,-263r50,0r32,61r-27,0","w":180},"a":{"d":"117,-44v27,0,41,-18,41,-45v0,-27,-14,-45,-41,-45v-27,0,-41,18,-41,45v0,27,14,45,41,45xm96,-183v31,0,48,14,60,35r0,-30r57,0r0,178r-57,0r0,-29v-15,21,-32,35,-64,36v-51,0,-78,-42,-78,-96v0,-55,30,-95,82,-94","w":237},"b":{"d":"120,-133v-26,0,-41,18,-41,44v0,27,14,45,41,45v26,0,40,-18,40,-45v0,-27,-14,-44,-40,-44xm141,7v-29,-1,-46,-16,-60,-36r0,29r-58,0r0,-272r60,0r-2,124v14,-24,28,-35,62,-35v49,-1,80,41,80,94v0,55,-30,96,-82,96","w":237,"k":{"-":-7}},"c":{"d":"13,-89v0,-71,76,-117,137,-83r0,53v-24,-29,-79,-15,-75,30v-6,44,54,59,75,29r0,55v-63,35,-137,-10,-137,-84","w":165},"d":{"d":"118,-44v27,0,41,-18,41,-45v0,-27,-15,-44,-41,-44v-26,0,-41,18,-41,44v0,27,14,45,41,45xm15,-89v0,-83,101,-131,141,-59v-3,-39,-2,-82,-2,-124r60,0r0,272r-57,0r0,-29v-14,20,-31,35,-60,36v-52,0,-82,-41,-82,-96","w":237},"e":{"d":"145,-112v1,-28,-38,-43,-59,-25v-6,6,-11,14,-13,25r72,0xm112,-183v60,0,97,43,95,107r-135,0v-6,48,64,56,79,21r47,19v-12,29,-42,43,-83,43v-59,1,-102,-37,-102,-94v0,-55,43,-96,99,-96","w":219,"k":{"x":6,"-":-7}},"f":{"d":"122,-225v-16,-6,-31,-3,-31,19r0,28r31,0r0,45r-31,0r0,133r-62,0r0,-133r-27,0r0,-45r27,0v-10,-72,23,-111,93,-95r0,48","w":126,"k":{".":6,",":6}},"g":{"d":"117,-45v26,0,41,-18,41,-44v0,-27,-14,-44,-41,-44v-27,0,-42,17,-42,44v0,27,15,44,42,44xm96,-183v30,0,48,13,60,34r0,-29r57,0r0,178v10,83,-108,93,-165,63v-17,-9,-24,-24,-25,-43r65,0v3,12,14,16,30,17v38,2,35,-28,35,-67v-13,21,-30,32,-61,33v-49,1,-78,-41,-78,-93v0,-53,30,-94,82,-93","w":237,"k":{".":6,",":6}},"h":{"d":"122,-136v-53,0,-33,83,-37,136r-62,0r0,-272r62,0r-3,127v14,-23,32,-36,66,-38v87,-5,63,102,66,183r-63,0v-6,-48,20,-136,-29,-136","w":235},"i":{"d":"56,-198v-18,0,-34,-17,-34,-35v0,-17,17,-34,34,-34v19,0,35,15,35,34v0,19,-16,35,-35,35xm25,0r0,-178r63,0r0,178r-63,0","w":112},"j":{"d":"56,-198v-18,0,-34,-17,-34,-35v0,-17,17,-34,34,-34v19,0,35,15,35,34v0,19,-16,35,-35,35xm25,78r0,-256r63,0r0,256r-63,0","w":112},"k":{"d":"23,0r0,-272r62,0r0,172r64,-78r78,0r-80,86r87,92r-82,0r-67,-79r0,79r-62,0","w":230,"k":{"o":13,"e":13,"a":6,"-":15}},"l":{"d":"25,0r0,-272r63,0r0,272r-63,0","w":112},"m":{"d":"85,-147v15,-44,102,-50,115,-3v12,-20,30,-33,60,-33v83,0,55,105,60,183r-62,0r0,-97v-1,-25,-3,-40,-25,-40v-51,0,-26,87,-32,137r-60,0r0,-97v0,-27,-3,-39,-26,-40v-50,0,-25,87,-31,137r-61,0r0,-178r62,0r0,31","w":341},"n":{"d":"122,-136v-53,0,-33,83,-37,136r-62,0r0,-178r57,0r0,36v15,-24,33,-39,68,-41v87,-5,63,102,66,183r-63,0v-6,-48,20,-136,-29,-136","w":235},"o":{"d":"112,-46v23,0,37,-18,37,-42v0,-24,-13,-43,-37,-43v-23,0,-37,19,-37,43v0,24,13,42,37,42xm112,-183v59,0,99,36,99,95v0,58,-41,95,-99,95v-59,0,-99,-37,-99,-95v0,-59,40,-95,99,-95","w":224,"k":{"x":6,"-":-7}},"p":{"d":"120,-133v-27,0,-41,18,-41,45v0,27,15,44,41,44v26,0,40,-17,40,-44v0,-27,-14,-45,-40,-45xm223,-88v0,84,-101,132,-142,59v5,30,1,72,2,107r-60,0r0,-256r58,0r0,30v14,-20,31,-34,60,-35v52,-1,82,40,82,95","w":237,"k":{"-":-7}},"q":{"d":"118,-44v26,0,41,-18,41,-44v0,-27,-14,-45,-41,-45v-27,0,-41,18,-41,45v0,27,15,44,41,44xm97,-183v29,1,46,15,60,35r0,-30r57,0r0,256r-60,0r2,-107v-14,23,-27,36,-62,36v-50,1,-79,-44,-79,-95v0,-55,29,-96,82,-95","w":237},"r":{"d":"155,-123v-37,-13,-69,8,-69,50r0,73r-63,0r0,-178r59,0r0,42v11,-31,37,-50,79,-44","w":160,"k":{".":36,",":36}},"s":{"d":"151,-88v44,57,-34,118,-107,89v-13,-5,-25,-9,-37,-16r13,-48v15,14,37,25,63,25v32,0,32,-26,-1,-32v-37,-7,-66,-19,-67,-56v-2,-65,94,-68,143,-41r-13,43v-13,-10,-30,-17,-51,-17v-12,0,-21,3,-21,13v4,19,71,23,78,40","w":174,"k":{"-":-7}},"t":{"d":"33,0r0,-133r-27,0r0,-45r27,0r0,-52r61,0r0,52r27,0r0,45r-27,0r0,133r-61,0","w":127,"k":{"-":8}},"u":{"d":"113,-41v53,0,23,-89,31,-137r61,0r0,91v2,68,-30,94,-92,94v-61,0,-91,-25,-91,-94r0,-91r59,0v6,49,-21,137,32,137","w":227},"v":{"d":"102,-71v10,-36,27,-72,39,-107r65,0r-80,178r-49,0r-80,-178r67,0v12,35,29,70,38,107","w":203,"k":{".":28,"-":-13,",":28}},"w":{"d":"91,-71v8,-35,24,-73,35,-107r37,0r35,107v7,-39,23,-71,34,-107r65,0r-75,178r-44,0r-33,-108v-8,35,-24,73,-34,108r-44,0r-74,-178r64,0v11,36,26,68,34,107","w":289,"k":{".":26,"-":-13,",":26}},"x":{"d":"69,-178v8,17,19,33,25,52v5,-19,18,-35,26,-52r70,0r-60,83r71,95r-71,0v-11,-22,-27,-40,-35,-66v-8,25,-23,44,-35,66r-70,0r70,-95r-60,-83r69,0","w":190,"k":{"o":6,"e":6,"c":6}},"y":{"d":"13,78r50,-105r-71,-151r69,0v11,31,25,60,33,93v8,-34,24,-62,34,-93r67,0r-112,256r-70,0","w":191,"k":{".":31,"-":6,",":31}},"z":{"d":"180,0r-180,0r91,-132r-80,0r0,-46r177,0r-94,130r86,0r0,48","w":195},"{":{"d":"71,-202v-2,-56,33,-58,86,-58r0,43v-75,-14,1,122,-74,124v45,2,38,46,38,92v0,29,11,33,36,31r0,43v-53,0,-86,0,-86,-58v0,-45,10,-95,-44,-87r0,-42v51,7,46,-42,44,-88","w":180},"|":{"d":"69,-275r42,0r0,360r-42,0r0,-360","w":180},"}":{"d":"97,-93v-77,-3,7,-136,-74,-124r0,-43v52,0,86,1,86,58v0,45,-8,95,45,88r0,42v-52,-8,-47,41,-45,87v3,58,-33,58,-86,58r0,-43v75,20,0,-124,74,-123","w":180},"~":{"d":"204,-117v28,-1,43,-13,65,-27r0,45v-26,19,-60,33,-97,19v-59,-22,-101,-24,-141,10r0,-45v21,-14,40,-23,68,-25v35,-2,76,24,105,23","w":299},"\u00c7":{"d":"193,49v1,45,-61,39,-96,28r0,-24v15,5,32,7,48,8v9,0,15,-4,15,-13v-1,-12,-17,-11,-31,-11r0,-37r20,0v1,5,-4,16,4,15v25,-1,40,11,40,34xm17,-128v0,-107,104,-163,197,-119r0,76v-17,-18,-32,-30,-59,-31v-41,-2,-68,33,-68,75v0,40,29,73,68,72v27,-1,43,-13,59,-31r0,76v-91,46,-197,-13,-197,-118","w":226},"\u00d6":{"d":"188,-292v-14,0,-26,-11,-25,-25v0,-13,11,-25,25,-25v14,0,26,12,26,25v0,13,-12,25,-26,25xm120,-292v-14,0,-26,-12,-26,-25v0,-13,12,-25,26,-25v14,0,25,11,25,25v0,14,-11,25,-25,25xm154,-263v82,0,138,54,138,135v0,81,-56,135,-138,135v-81,0,-137,-54,-137,-135v0,-82,55,-135,137,-135xm87,-128v0,41,27,75,67,75v39,0,67,-34,67,-75v0,-42,-29,-76,-67,-76v-38,0,-67,34,-67,76","w":308},"\u00dc":{"d":"175,-292v-14,0,-26,-12,-26,-25v0,-13,12,-25,26,-25v14,0,25,12,25,25v1,14,-11,25,-25,25xm106,-292v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,11,25,25v0,14,-11,25,-25,25xm140,7v-96,2,-114,-51,-114,-155r0,-109r70,0r0,125v-1,49,0,79,44,80v51,1,45,-45,45,-98r0,-107r70,0r0,136v4,93,-30,126,-115,128","w":280},"\u00e2":{"d":"62,-202r32,-61r49,0r32,61r-27,0r-29,-31r-30,31r-27,0xm117,-44v27,0,41,-18,41,-45v0,-27,-14,-45,-41,-45v-27,0,-41,18,-41,45v0,27,14,45,41,45xm96,-183v31,0,48,14,60,35r0,-30r57,0r0,178r-57,0r0,-29v-15,21,-32,35,-64,36v-51,0,-78,-42,-78,-96v0,-55,30,-95,82,-94","w":237},"\u00e7":{"d":"150,49v0,46,-61,39,-96,28r0,-24v15,5,32,7,48,8v9,0,15,-4,15,-13v-1,-12,-17,-11,-31,-11r0,-37r21,0r0,15v27,-2,43,9,43,34xm13,-89v0,-71,76,-117,137,-83r0,53v-24,-29,-79,-15,-75,30v-6,44,54,59,75,29r0,55v-63,35,-137,-10,-137,-84","w":165},"\u00ee":{"d":"-1,-202r33,-61r48,0r32,61r-27,0r-29,-31r-29,31r-28,0xm25,0r0,-178r63,0r0,178r-63,0","w":112},"\u00f6":{"d":"147,-209v-14,0,-26,-12,-26,-25v0,-13,12,-25,26,-25v14,0,25,12,25,25v1,14,-11,25,-25,25xm78,-209v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,11,25,25v0,14,-11,25,-25,25xm112,-46v23,0,37,-18,37,-42v0,-24,-13,-43,-37,-43v-23,0,-37,19,-37,43v0,24,13,42,37,42xm112,-183v59,0,99,36,99,95v0,58,-41,95,-99,95v-59,0,-99,-37,-99,-95v0,-59,40,-95,99,-95","w":224},"\u00fc":{"d":"148,-209v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,11,25,25v0,14,-11,25,-25,25xm79,-209v-14,0,-26,-11,-25,-25v0,-13,11,-25,25,-25v14,0,25,11,25,25v0,14,-11,25,-25,25xm113,-41v53,0,23,-89,31,-137r61,0r0,91v2,68,-30,94,-92,94v-61,0,-91,-25,-91,-94r0,-91r59,0v6,49,-21,137,32,137","w":227},"\u0131":{"d":"25,0r0,-178r63,0r0,178r-63,0","w":112},"\u011e":{"d":"207,-344v6,53,-63,68,-95,41v-10,-8,-14,-23,-15,-41r23,0v1,18,12,24,32,24v19,0,31,-7,32,-24r23,0xm86,-126v-6,64,63,100,113,66v12,-9,19,-20,21,-35r-70,0r0,-54r138,0v5,97,-42,155,-134,155v-86,-1,-131,-52,-137,-134v-11,-137,190,-179,253,-76r-61,29v-33,-54,-133,-25,-123,49","w":303},"\u011f":{"d":"174,-261v5,52,-63,69,-95,41v-10,-8,-15,-23,-16,-41r23,0v2,17,12,24,33,24v19,0,31,-7,32,-24r23,0xm117,-45v26,0,41,-18,41,-44v0,-27,-14,-44,-41,-44v-27,0,-42,17,-42,44v0,27,15,44,42,44xm96,-183v30,0,48,13,60,34r0,-29r57,0r0,178v10,83,-108,93,-165,63v-17,-9,-24,-24,-25,-43r65,0v3,12,14,16,30,17v38,2,35,-28,35,-67v-13,21,-30,32,-61,33v-49,1,-78,-41,-78,-93v0,-53,30,-94,82,-93","w":237},"\u0130":{"d":"65,-291v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v14,-1,26,12,26,26v1,15,-11,27,-26,26xm29,0r0,-257r71,0r0,257r-71,0","w":129},"\u015e":{"d":"158,49v0,46,-61,39,-95,28r0,-24v15,5,31,7,47,8v9,0,16,-3,15,-13v-1,-12,-16,-11,-30,-11r0,-37r20,0r0,15v27,-2,43,9,43,34xm197,-84v7,96,-137,118,-190,53r32,-52v17,18,34,32,61,35v26,3,44,-31,24,-46v-33,-24,-104,-23,-104,-86v0,-81,108,-106,165,-60r-22,50v-14,-12,-29,-19,-49,-21v-15,-1,-29,8,-29,22v0,19,16,21,37,27v53,14,70,25,75,78","w":209},"\u015f":{"d":"141,49v1,45,-61,39,-96,28r0,-24v15,5,32,7,48,8v9,0,15,-4,15,-13v-1,-12,-17,-11,-31,-11r0,-37r20,0v1,5,-4,16,4,15v25,-1,39,11,40,34xm151,-88v44,57,-34,118,-107,89v-13,-5,-25,-9,-37,-16r13,-48v15,14,37,25,63,25v32,0,32,-26,-1,-32v-37,-7,-66,-19,-67,-56v-2,-65,94,-68,143,-41r-13,43v-13,-10,-30,-17,-51,-17v-12,0,-21,3,-21,13v4,19,71,23,78,40","w":174},"\u00a0":{"w":112}}});
function ustMenuKapat(){$("ul.ustmenu li a").removeClass('secili');$(".ustmenu_ici, .katelement").hide()}$(document).ready(function(){var hide=false;$("ul.ustmenu li a").mouseover(function(){var id=$(this).attr("id");var size=$(".kat_"+id+" a").size();if(hide)clearTimeout(hide);$("ul.ustmenu li a").removeClass('secili');if(size>0){$(".ustmenu_ici, .katelement").hide();$(".ustmenu_ici, .kat_"+id).show();$(this).addClass('secili')}else{ustMenuKapat()}}).mouseout(function(){var id=$(this).attr("id");hide=setTimeout(function(){ustMenuKapat()},800)});$(".ustmenu_ici").mouseover(function(){if(hide)clearTimeout(hide)}).mouseout(function(){hide=setTimeout(function(){ustMenuKapat()},800)});$(document).click(function(){$("ul.ustmenu li a").removeClass('secili');$('.ustmenu_ici, #katelement').hide()})});


/*
 * Lazy Load
 */
(function($){$.fn.lazyload=function(options){var settings={threshold:0,failurelimit:0,event:"scroll",effect:"show",container:window};if(options){$.extend(settings,options);}
var elements=this;if("scroll"==settings.event){$(settings.container).bind("scroll",function(event){var counter=0;elements.each(function(){if($.abovethetop(this,settings)||$.leftofbegin(this,settings)){}else if(!$.belowthefold(this,settings)&&!$.rightoffold(this,settings)){$(this).trigger("appear");}else{if(counter++>settings.failurelimit){return false;}}});var temp=$.grep(elements,function(element){return!element.loaded;});elements=$(temp);});}
this.each(function(){var self=this;if(undefined==$(self).attr("original")){$(self).attr("original",$(self).attr("src"));}
if("scroll"!=settings.event||undefined==$(self).attr("src")||settings.placeholder==$(self).attr("src")||($.abovethetop(self,settings)||$.leftofbegin(self,settings)||$.belowthefold(self,settings)||$.rightoffold(self,settings))){if(settings.placeholder){$(self).attr("src",settings.placeholder);}else{$(self).removeAttr("src");}
self.loaded=false;}else{self.loaded=true;}
$(self).one("appear",function(){if(!this.loaded){$("<img />").bind("load",function(){$(self).hide().attr("src",$(self).attr("original"))
[settings.effect](settings.effectspeed);self.loaded=true;}).attr("src",$(self).attr("original"));};});if("scroll"!=settings.event){$(self).bind(settings.event,function(event){if(!self.loaded){$(self).trigger("appear");}});}});$(settings.container).trigger(settings.event);return this;};$.belowthefold=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).height()+$(window).scrollTop();}else{var fold=$(settings.container).offset().top+$(settings.container).height();}
return fold<=$(element).offset().top-settings.threshold;};$.rightoffold=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).width()+$(window).scrollLeft();}else{var fold=$(settings.container).offset().left+$(settings.container).width();}
return fold<=$(element).offset().left-settings.threshold;};$.abovethetop=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).scrollTop();}else{var fold=$(settings.container).offset().top;}
return fold>=$(element).offset().top+settings.threshold+$(element).height();};$.leftofbegin=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).scrollLeft();}else{var fold=$(settings.container).offset().left;}
return fold>=$(element).offset().left+settings.threshold+$(element).width();};$.extend($.expr[':'],{"below-the-fold":"$.belowthefold(a, {threshold : 0, container: window})","above-the-fold":"!$.belowthefold(a, {threshold : 0, container: window})","right-of-fold":"$.rightoffold(a, {threshold : 0, container: window})","left-of-fold":"!$.rightoffold(a, {threshold : 0, container: window})"});})(jQuery);

/*
 * Copyright (c) 2011 Abdullah Tekin.
 * Javascript Functions
 *
 * @version 2.05
 */
eval(function(p,a,c,k,e,r){e=function(c){return c.toString(36)};if('0'.replace(0,e)==0){while(c--)r[e(c)]=k[c];k=[function(e){return r[e]||e}];e=function(){return'[0-9b-d]'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('$(document).ready(4(){$("1:5, 6, 1:7").d(4(){8 a=$(0).9("b");2(a){2(0.3==\'\')0.3=a}});$("1:5, 6, 1:7").focus(4(){8 a=$(0).9("b");2(a){2(0.3==a)0.3=\'\'}});$("1:5, 6, 1:7").blur(4(){8 a=$(0).9("b");2(a){2(0.3==\'\')0.3=a}});$("1:image, 1:button, 1:submit").click(4(){8 a=$(0).9("b");$(0.form.elements).d(4(){2(0.c==\'5\'||0.c==\'6\'||0.c==\'7\'){2(0.3==a&&a!=\'\'){0.3=\'\'}}})})});',[],14,'this|input|if|value|function|text|textarea|password|var|attr||tooltip|type|each'.split('|'),0,{}))
document.write('<scr'+'ipt type="text/javascript" src="'+theme_path+'js/inc.js"></scr'+'ipt>');

/*
$(document).ajaxComplete(function(){
    try{
        FB.XFBML.parse(); 
    }catch(ex){}
});
*/
