// source --> https://restauranteaquarius.com.br/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.6.1 (function($) { 'use strict'; if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) { return; } _wpcf7 = $.extend({ cached: 0 }, _wpcf7); $.fn.wpcf7InitForm = function() { this.ajaxForm({ beforeSubmit: function(arr, $form, options) { $form.wpcf7ClearResponseOutput(); $form.find('[aria-invalid]').attr('aria-invalid', 'false'); $form.find('.ajax-loader').addClass('is-active'); return true; }, beforeSerialize: function($form, options) { $form.find('[placeholder].placeheld').each(function(i, n) { $(n).val(''); }); return true; }, data: { '_wpcf7_is_ajax_call': 1 }, dataType: 'json', success: $.wpcf7AjaxSuccess, error: function(xhr, status, error, $form) { var e = $('
').text(error.message); $form.after(e); } }); if (_wpcf7.cached) { this.wpcf7OnloadRefill(); } this.wpcf7ToggleSubmit(); this.find('.wpcf7-submit').wpcf7AjaxLoader(); this.find('.wpcf7-acceptance').click(function() { $(this).closest('form').wpcf7ToggleSubmit(); }); this.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox(); this.find('.wpcf7-list-item.has-free-text').wpcf7ToggleCheckboxFreetext(); this.find('[placeholder]').wpcf7Placeholder(); if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) { this.find('input.wpcf7-date[type="date"]').each(function() { $(this).datepicker({ dateFormat: 'yy-mm-dd', minDate: new Date($(this).attr('min')), maxDate: new Date($(this).attr('max')) }); }); } if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) { this.find('input.wpcf7-number[type="number"]').each(function() { $(this).spinner({ min: $(this).attr('min'), max: $(this).attr('max'), step: $(this).attr('step') }); }); } this.find('.wpcf7-character-count').wpcf7CharacterCount(); this.find('.wpcf7-validates-as-url').change(function() { $(this).wpcf7NormalizeUrl(); }); this.find('.wpcf7-recaptcha').wpcf7Recaptcha(); }; $.wpcf7AjaxSuccess = function(data, status, xhr, $form) { if (! $.isPlainObject(data) || $.isEmptyObject(data)) { return; } var $responseOutput = $form.find('div.wpcf7-response-output'); $form.wpcf7ClearResponseOutput(); $form.find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); $form.removeClass('invalid spam sent failed'); if (data.captcha) { $form.wpcf7RefillCaptcha(data.captcha); } if (data.quiz) { $form.wpcf7RefillQuiz(data.quiz); } if (data.invalids) { $.each(data.invalids, function(i, n) { $form.find(n.into).wpcf7NotValidTip(n.message); $form.find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); $form.find(n.into).find('[aria-invalid]').attr('aria-invalid', 'true'); }); $responseOutput.addClass('wpcf7-validation-errors'); $form.addClass('invalid'); $(data.into).trigger('wpcf7:invalid'); $(data.into).trigger('invalid.wpcf7'); // deprecated } else if (1 == data.spam) { $form.find('[name="g-recaptcha-response"]').each(function() { if ('' == $(this).val()) { var $recaptcha = $(this).closest('.wpcf7-form-control-wrap'); $recaptcha.wpcf7NotValidTip(_wpcf7.recaptcha.messages.empty); } }); $responseOutput.addClass('wpcf7-spam-blocked'); $form.addClass('spam'); $(data.into).trigger('wpcf7:spam'); $(data.into).trigger('spam.wpcf7'); // deprecated } else if (1 == data.mailSent) { $responseOutput.addClass('wpcf7-mail-sent-ok'); $form.addClass('sent'); if (data.onSentOk) { $.each(data.onSentOk, function(i, n) { eval(n) }); } $(data.into).trigger('wpcf7:mailsent'); $(data.into).trigger('mailsent.wpcf7'); // deprecated } else { $responseOutput.addClass('wpcf7-mail-sent-ng'); $form.addClass('failed'); $(data.into).trigger('wpcf7:mailfailed'); $(data.into).trigger('mailfailed.wpcf7'); // deprecated } if (data.onSubmit) { $.each(data.onSubmit, function(i, n) { eval(n) }); } $(data.into).trigger('wpcf7:submit'); $(data.into).trigger('submit.wpcf7'); // deprecated if (1 == data.mailSent) { $form.resetForm(); } $form.find('[placeholder].placeheld').each(function(i, n) { $(n).val($(n).attr('placeholder')); }); $responseOutput.append(data.message).slideDown('fast'); $responseOutput.attr('role', 'alert'); $.wpcf7UpdateScreenReaderResponse($form, data); }; $.fn.wpcf7ExclusiveCheckbox = function() { return this.find('input:checkbox').click(function() { var name = $(this).attr('name'); $(this).closest('form').find('input:checkbox[name="' + name + '"]').not(this).prop('checked', false); }); }; $.fn.wpcf7Placeholder = function() { if (_wpcf7.supportHtml5.placeholder) { return this; } return this.each(function() { $(this).val($(this).attr('placeholder')); $(this).addClass('placeheld'); $(this).focus(function() { if ($(this).hasClass('placeheld')) $(this).val('').removeClass('placeheld'); }); $(this).blur(function() { if ('' == $(this).val()) { $(this).val($(this).attr('placeholder')); $(this).addClass('placeheld'); } }); }); }; $.fn.wpcf7AjaxLoader = function() { return this.each(function() { $(this).after(''); }); }; $.fn.wpcf7ToggleSubmit = function() { return this.each(function() { var form = $(this); if (this.tagName.toLowerCase() != 'form') { form = $(this).find('form').first(); } if (form.hasClass('wpcf7-acceptance-as-validation')) { return; } var submit = form.find('input:submit'); if (! submit.length) return; var acceptances = form.find('input:checkbox.wpcf7-acceptance'); if (! acceptances.length) return; submit.removeAttr('disabled'); acceptances.each(function(i, n) { n = $(n); if (n.hasClass('wpcf7-invert') && n.is(':checked') || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) { submit.attr('disabled', 'disabled'); } }); }); }; $.fn.wpcf7ToggleCheckboxFreetext = function() { return this.each(function() { var $wrap = $(this).closest('.wpcf7-form-control'); if ($(this).find(':checkbox, :radio').is(':checked')) { $(this).find(':input.wpcf7-free-text').prop('disabled', false); } else { $(this).find(':input.wpcf7-free-text').prop('disabled', true); } $wrap.find(':checkbox, :radio').change(function() { var $cb = $('.has-free-text', $wrap).find(':checkbox, :radio'); var $freetext = $(':input.wpcf7-free-text', $wrap); if ($cb.is(':checked')) { $freetext.prop('disabled', false).focus(); } else { $freetext.prop('disabled', true); } }); }); }; $.fn.wpcf7CharacterCount = function() { return this.each(function() { var $count = $(this); var name = $count.attr('data-target-name'); var down = $count.hasClass('down'); var starting = parseInt($count.attr('data-starting-value'), 10); var maximum = parseInt($count.attr('data-maximum-value'), 10); var minimum = parseInt($count.attr('data-minimum-value'), 10); var updateCount = function($target) { var length = $target.val().length; var count = down ? starting - length : length; $count.attr('data-current-value', count); $count.text(count); if (maximum && maximum < length) { $count.addClass('too-long'); } else { $count.removeClass('too-long'); } if (minimum && length < minimum) { $count.addClass('too-short'); } else { $count.removeClass('too-short'); } }; $count.closest('form').find(':input[name="' + name + '"]').each(function() { updateCount($(this)); $(this).keyup(function() { updateCount($(this)); }); }); }); }; $.fn.wpcf7NormalizeUrl = function() { return this.each(function() { var val = $.trim($(this).val()); if (val && ! val.match(/^[a-z][a-z0-9.+-]*:/i)) { // check the scheme part val = val.replace(/^\/+/, ''); val = 'http://' + val; } $(this).val(val); }); }; $.fn.wpcf7NotValidTip = function(message) { return this.each(function() { var $into = $(this); $into.find('span.wpcf7-not-valid-tip').remove(); $into.append('' + message + ''); if ($into.is('.use-floating-validation-tip *')) { $('.wpcf7-not-valid-tip', $into).mouseover(function() { $(this).wpcf7FadeOut(); }); $(':input', $into).focus(function() { $('.wpcf7-not-valid-tip', $into).not(':hidden').wpcf7FadeOut(); }); } }); }; $.fn.wpcf7FadeOut = function() { return this.each(function() { $(this).animate({ opacity: 0 }, 'fast', function() { $(this).css({'z-index': -100}); }); }); }; $.fn.wpcf7OnloadRefill = function() { return this.each(function() { var url = $(this).attr('action'); if (0 < url.indexOf('#')) { url = url.substr(0, url.indexOf('#')); } var id = $(this).find('input[name="_wpcf7"]').val(); var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); $.getJSON(url, { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, function(data) { if (data && data.captcha) { $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); } if (data && data.quiz) { $('#' + unitTag).wpcf7RefillQuiz(data.quiz); } } ); }); }; $.fn.wpcf7RefillCaptcha = function(captcha) { return this.each(function() { var form = $(this); $.each(captcha, function(i, n) { form.find(':input[name="' + i + '"]').clearFields(); form.find('img.wpcf7-captcha-' + i).attr('src', n); var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); }); }); }; $.fn.wpcf7RefillQuiz = function(quiz) { return this.each(function() { var form = $(this); $.each(quiz, function(i, n) { form.find(':input[name="' + i + '"]').clearFields(); form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); }); }); }; $.fn.wpcf7ClearResponseOutput = function() { return this.each(function() { $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked').removeAttr('role'); $(this).find('span.wpcf7-not-valid-tip').remove(); $(this).find('.ajax-loader').removeClass('is-active'); }); }; $.fn.wpcf7Recaptcha = function() { return this.each(function() { var events = 'wpcf7:spam wpcf7:mailsent wpcf7:mailfailed'; $(this).closest('div.wpcf7').on(events, function(e) { if (recaptchaWidgets && grecaptcha) { $.each(recaptchaWidgets, function(index, value) { grecaptcha.reset(value); }); } }); }); }; $.wpcf7UpdateScreenReaderResponse = function($form, data) { $('.wpcf7 .screen-reader-response').html('').attr('role', ''); if (data.message) { var $response = $form.siblings('.screen-reader-response').first(); $response.append(data.message); if (data.invalids) { var $invalids = $(''); $.each(data.invalids, function(i, n) { if (n.idref) { var $li = $('
  • ').append($('').attr('href', '#' + n.idref).append(n.message)); } else { var $li = $('
  • ').append(n.message); } $invalids.append($li); }); $response.append($invalids); } $response.attr('role', 'alert').focus(); } }; $.wpcf7SupportHtml5 = function() { var features = {}; var input = document.createElement('input'); features.placeholder = 'placeholder' in input; var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date']; $.each(inputTypes, function(index, value) { input.setAttribute('type', value); features[value] = input.type !== 'text'; }); return features; }; $(function() { _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); $('div.wpcf7 > form').wpcf7InitForm(); }); })(jQuery); // source --> https://restauranteaquarius.com.br/wp-content/themes/tuscany/js/min/jquery.booklet.1.1.0-dist.js?ver=1.0 !function(e){function t(t,a,i){function d(){v.children().length%2!=0&&(f.closed&&f.covers?v.children().last().before(wt):v.children().last().after(wt)),f.closed&&(e(vt).attr({title:f.closedFrontTitle||"Beginning",rel:f.closedFrontChapter||"Beginning of Book"}).prependTo(v),v.children().last().attr({title:f.closedBackTitle||"End",rel:f.closedBackChapter||"End of Book"}),v.append(vt)),"LTR"==f.direction?T=0:(T=v.children().length,f.closed&&(T-=2),f.covers&&(T-=2),e(v.children().get().reverse()).each(function(){e(this).appendTo(v)})),v.children().each(function(t){bt[t]=e(this).attr("rel")?e(this).attr("rel"):"",ft[t]=e(this).attr("title"),e(this).wrap(e(this).hasClass("b-page-empty")?'
    ':f.closed&&f.covers&&(1==t||t==v.children().length-2)?'
    ':t%2!=0?'
    ':'
    '),e(this).parents(".b-page").addClass("b-page-"+t),f.pageNumbers&&!e(this).hasClass("b-page-empty")&&(!f.closed||f.closed&&!f.covers||f.closed&&f.covers&&1!=t&&t!=v.children().length-2)&&("LTR"==f.direction&&T++,e(this).parent().append('
    '+T+"
    "),"RTL"==f.direction&&T--)})}function n(){if(b.find(".b-page").removeClass("b-pN b-p0 b-p1 b-p2 b-p3 b-p4").hide(),H)for(T=f.pTotal-1,m=0;m=0&&(b.find(".b-page-"+(f.curr-2)).addClass("b-pN").show(),b.find(".b-page-"+(f.curr-1)).addClass("b-p0").show()),b.find(".b-page-"+f.curr).addClass("b-p1").show(),b.find(".b-page-"+(f.curr+1)).addClass("b-p2").show(),f.curr+3<=f.pTotal&&(b.find(".b-page-"+(f.curr+2)).addClass("b-p3").show(),b.find(".b-page-"+(f.curr+3)).addClass("b-p4").show()),N=b.find(".b-pN"),C=b.find(".b-p0"),L=b.find(".b-p1"),B=b.find(".b-p2"),I=b.find(".b-p3"),R=b.find(".b-p4"),M=b.find(".b-pN .b-wrap"),O=b.find(".b-p0 .b-wrap"),F=b.find(".b-p1 .b-wrap"),S=b.find(".b-p2 .b-wrap"),D=b.find(".b-p3 .b-wrap"),Q=b.find(".b-p4 .b-wrap"),A=b.find(".b-wrap"),A.attr("style",""),A.css({width:f.pWidth-2*f.pagePadding,height:f.pHeight-2*f.pagePadding,padding:f.pagePadding}),L.css({left:0,width:f.pWidth,height:f.pHeight}),B.css({left:f.pWidth,width:f.pWidth,opacity:1,height:f.pHeight}),N.css({left:0,width:f.pWidth,height:f.pHeight}),C.css({left:0,width:0,height:f.pHeight}),I.stop().css({left:2*f.pWidth,width:0,height:f.pHeight,paddingLeft:0}),D.stop().css({left:0}),R.css({left:f.pWidth,width:f.pWidth,height:f.pHeight}),f.curr+3<=f.pTotal?(I.after(C.detach()),L.after(R.detach())):C.detach().appendTo(v),H=!0,E=j=null,b.find(".b-shadow-b, .b-shadow-f").remove(),f.shadows&&(E=e('
    ').appendTo(I).css({right:0,width:f.pWidth,height:f.pHeight}),j=e('
    ').appendTo(C).css({left:0,width:f.pWidth,height:f.pHeight}))}function s(t,a,i){a&&t>2?(b.find(".b-p3, .b-p4").removeClass("b-p3 b-p4").hide(),b.find(".b-page-"+f.curr).addClass("b-p3").show().stop().css({left:2*f.pWidth,width:0,height:f.pHeight,paddingLeft:0}),b.find(".b-page-"+(f.curr+1)).addClass("b-p4").show().css({left:f.pWidth,width:f.pWidth,height:f.pHeight}),b.find(".b-page-"+f.curr+" .b-wrap").show().css({width:f.pWidth-2*f.pagePadding,height:f.pHeight-2*f.pagePadding,padding:f.pagePadding}),b.find(".b-page-"+(f.curr+1)+" .b-wrap").show().css({width:f.pWidth-2*f.pagePadding,height:f.pHeight-2*f.pagePadding,padding:f.pagePadding}),I=b.find(".b-p3"),R=b.find(".b-p4"),D=b.find(".b-p3 .b-wrap"),Q=b.find(".b-p4 .b-wrap"),k&&I.css({left:f.width-40,width:20,"padding-left":10}),i.appendTo(I),L.after(R.detach()),B.after(I.detach())):!a&&t>2&&(b.find(".b-pN, .b-p0").removeClass("b-pN b-p0").hide(),b.find(".b-page-"+f.curr).addClass("b-pN").show().css({left:0,width:f.pWidth,height:f.pHeight}),b.find(".b-page-"+(f.curr+1)).addClass("b-p0").show().css({left:0,width:0,height:f.pHeight}),b.find(".b-page-"+f.curr+" .b-wrap").show().css({width:f.pWidth-2*f.pagePadding,height:f.pHeight-2*f.pagePadding,padding:f.pagePadding}),b.find(".b-page-"+(f.curr+1)+" .b-wrap").show().css({width:f.pWidth-2*f.pagePadding,height:f.pHeight-2*f.pagePadding,padding:f.pagePadding}),N=b.find(".b-pN"),C=b.find(".b-p0"),M=b.find(".b-pN .b-wrap"),O=b.find(".b-p0 .b-wrap"),y&&(C.css({left:10,width:40}),O.css({right:10})),i.appendTo(C),C.detach().appendTo(v)),f.closed&&(a||0!=f.curr?a||N.show():N.hide(),a&&f.curr>=f.pTotal-2?R.hide():a&&R.show()),f.shadows&&(e.support.opacity?i.animate({opacity:1},f.speedH,f.easeIn).animate({opacity:0},f.speedH,f.easeOut):a?i.animate({right:f.shadowTopFwdWidth},f.speed,f.easeIn):i.animate({left:f.shadowTopBackWidth},f.speed,f.easeIn))}function r(){n(),o(),p(),f.after.call(g,f),W=!1}function p(){(f.overlays||f.tabs||f.arrows)&&(f.curr=2&&0!=f.curr?et.fadeIn("fast").css("cursor",f.cursor):et.fadeOut("fast").css("cursor","default"))}function o(){f.pageSelector&&("RTL"==f.direction?(nums=Math.abs(f.curr-f.pTotal)-1+" - "+Math.abs(f.curr-f.pTotal),f.closed&&(nums=f.curr==f.pTotal-2?"1":0==f.curr?f.pTotal-2:Math.abs(f.curr-f.pTotal)-2+" - "+(Math.abs(f.curr-f.pTotal)-1),f.covers&&(nums=f.curr==f.pTotal-2?"":0==f.curr?"":Math.abs(f.curr-f.pTotal)-3+" - "+(Math.abs(f.curr-f.pTotal)-2))),e(f.menu+" .b-selector-page .b-current").text(nums)):(nums=f.curr+1+" - "+(f.curr+2),f.closed&&(nums=0==f.curr?"1":f.curr==f.pTotal-2?f.pTotal-2:f.curr+"-"+(f.curr+1),f.covers&&(nums=0==f.curr?"":f.curr==f.pTotal-2?"":f.curr-1+"-"+f.curr)),e(f.menu+" .b-selector-page .b-current").text(nums))),f.chapterSelector&&(""!=bt[f.curr]?e(f.menu+" .b-selector-chapter .b-current").text(bt[f.curr]):""!=bt[f.curr+1]&&e(f.menu+" .b-selector-chapter .b-current").text(bt[f.curr+1]),"RTL"==f.direction&&""!=bt[f.curr+1]?e(f.menu+" .b-selector-chapter .b-current").text(bt[f.curr+1]):""!=bt[f.curr]&&e(f.menu+" .b-selector-chapter .b-current").text(bt[f.curr]))}function h(){w=l(),!isNaN(w)&&w<=f.pTotal-1&&w>=0&&""!=w?(w%2!=0&&w--,f.curr=w):u(f.curr+1,f),g.hash=w}function c(){w=l(),!isNaN(w)&&w<=f.pTotal-1&&w>=0&&w!=f.curr&&w.toString()!=g.hash&&(w%2!=0&&w--,document.title=f.name+" - Page "+(w+1),W||(g.gotoPage(w),g.hash=w))}function l(){var e=window.location.hash.split("/");return e.length>1?parseInt(e[2])-1:""}function u(e,t){t.hash&&(window.location.hash="/page/"+e)}var g,f,b,v,w,m,T,x,P,W,H,k,y,N,C,L,B,I,R,M,O,F,S,D,Q,A,E,j,X,q,z,G,J,K,U,V,Y,Z,$,_,et,tt,at,it,dt,nt,st,rt,pt,ot,ht,ct,lt,ut,gt,ft=new Array,bt=new Array,vt='
    ',wt='
    ';if(W=!1,H=!1,k=y=!1,g=this,g.options=a,g.id=i,g.hash="",f=g.options,b=t.addClass("booklet"),v=b.children(".b-load"),d(),b.data("booklet",!0),b.data("id",i),b.data("total",v.children().length),f.width||(f.width=b.width()),f.height||(f.height=b.height()),b.width(f.width),b.height(f.height),f.pWidth=f.width/2,f.pWidthN="-"+f.width/2+"px",f.pWidthH=f.width/4,f.pHeight=f.height,f.pTotal=v.children().length,f.speedH=f.speed/2,"LTR"==f.direction?f.curr=0:"RTL"==f.direction&&(f.curr=f.pTotal-2),!isNaN(f.startingPage)&&f.startingPage<=f.pTotal&&f.startingPage>0&&(f.startingPage%2!=0&&f.startingPage--,f.curr=f.startingPage),f.name?document.title=f.name:f.name=document.title,f.shadows&&(f.shadowTopFwdWidth="-"+f.shadowTopFwdWidth+"px",f.shadowTopBackWidth="-"+f.shadowTopBackWidth+"px"),f.menu){if(tt=e(f.menu).addClass("b-menu"),x=f.curr,f.pageSelector){for(it=e('
    '+(x+1)+" - "+(x+2)+"
    ").appendTo(tt),dt=e("").appendTo(it).empty().css("height","auto"),m=0;m'+ft[m+1]+''+nums+"").prependTo(dt)):(0==m&&it.find(".b-current").text(nums),st=e('
  • '+ft[m]+''+nums+"
  • ").appendTo(dt)),rt=st.find("a"),f.hash||rt.click(function(){return"RTL"==f.direction&&it.find(".b-current").text(e(this).find(".b-num").text()),pt=parseInt(e(this).attr("id").replace("selector-page-","")),g.gotoPage(pt),!1});nt=dt.height(),dt.css({height:0,"padding-bottom":0}),it.unbind("hover").hover(function(){dt.stop().animate({height:nt,paddingBottom:10},500)},function(){dt.stop().animate({height:0,paddingBottom:0},500)})}if(f.chapterSelector){for(at=bt[f.curr],""==at&&(at=bt[f.curr+1]),ot=e('
    '+at+"
    ").appendTo(tt),ht=e("
      ").appendTo(ot).empty().css("height","auto"),m=0;m'+bt[m]+"").prependTo(ht)):lt=e('
    • '+bt[m]+"
    • ").appendTo(ht),ut=lt.find("a"),f.hash||ut.click(function(){return"RTL"==f.direction&&ot.find(".b-current").text(e(this).find(".b-text").text()),gt=parseInt(e(this).attr("id").replace("selector-page-","")),g.gotoPage(gt),!1}));ct=ht.height(),ht.css({height:0,"padding-bottom":0}),ot.unbind("hover").hover(function(){ht.stop().animate({height:ct,paddingBottom:10},500)},function(){ht.stop().animate({height:0,paddingBottom:0},500)})}}e.extend(g,{next:function(){W||g.gotoPage(f.curr+2)},prev:function(){W||g.gotoPage(f.curr-2)},gotoPage:function(e){e>f.curr&&e=0&&!W?(W=!0,P=e-f.curr,f.curr=e,f.before.call(g,f),o(),p(),u(f.curr+1,f),s(P,!0,E),B.stop().animate({width:0},f.speedH,f.easeIn),I.stop().animate({left:f.pWidthH,width:f.pWidthH,paddingLeft:f.shadowBtmWidth},f.speedH,f.easeIn).animate({left:0,width:f.pWidth,paddingLeft:0},f.speedH),D.animate({left:f.shadowBtmWidth},f.speedH,f.easeIn).animate({left:0},f.speedH,f.easeOut,function(){r()})):e=0&&!W&&(W=!0,P=f.curr-e,f.curr=e,f.before.call(g,f),o(),p(),u(f.curr+1,f),s(P,!1,j),L.animate({left:f.pWidth,width:0},f.speed,f.easing),F.animate({left:f.pWidthN},f.speed,f.easing),C.animate({left:f.pWidthH,width:f.pWidthH},f.speedH,f.easeIn).animate({left:f.pWidth,width:f.pWidth},f.speedH,f.easeOut),O.animate({right:f.shadowBtmWidth},f.speedH,f.easeIn).animate({right:0},f.speedH,f.easeOut,function(){r()}))}}),f.next&&(Z=e(f.next),Z.click(function(e){e.preventDefault(),g.next()})),f.prev&&($=e(f.prev),$.click(function(e){e.preventDefault(),g.prev()})),f.overlays&&(z=e('
      ').appendTo(b),q=e('
      ').appendTo(b),X=b.find(".b-overlay"),e.browser.msie&&X.css({background:"#fff",filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0) !important"})),f.tabs?(K=e('
      Previous
      ').appendTo(b),J=e('
      Next
      ').appendTo(b),G=b.find(".b-tab"),f.tabWidth&&G.width(f.tabWidth),f.tabHeight&&G.height(f.tabHeight),G.css({top:"-"+J.outerHeight()+"px"}),b.css({marginTop:J.outerHeight()}),"RTL"==f.direction&&(J.html("Previous").attr("title","Previous Page"),K.html("Next").attr("title","Next Page"))):b.css({marginTop:0}),f.arrows&&(Y=e('
      Previous
      ').appendTo(b),V=e('
      Next
      ').appendTo(b),U=b.find(".b-arrow"),"RTL"==f.direction&&(V.html("
      Previous
      ").attr("title","Previous Page"),Y.html("
      Next
      ").attr("title","Next Page"))),_=b.find(".b-next"),et=b.find(".b-prev"),_.click(function(e){e.preventDefault(),g.next()}),et.click(function(e){e.preventDefault(),g.prev()}),f.hovers&&(_.hover(function(){!W&&f.curr+2<=f.pTotal-2&&(B.stop().animate({width:f.pWidth-40},500,f.easing),I.stop().animate({left:f.width-40,width:20,paddingLeft:10},500,f.easing),k=!0)},function(){!W&&f.curr+2<=f.pTotal-2&&(B.stop().animate({width:f.pWidth},500,f.easing),I.stop().animate({left:f.width,width:0,paddingLeft:0},500,f.easing),k=!1)}),et.hover(function(){!W&&f.curr-2>=0&&(L.stop().animate({left:10,width:f.pWidth-10},400,f.easing),F.stop().animate({left:"-10px"},400,f.easing),C.stop().animate({left:10,width:40},400,f.easing),O.stop().animate({right:10},400,f.easing),y=!0)},function(){!W&&f.curr-2>=0&&(L.stop().animate({left:0,width:f.pWidth},400,f.easing),F.stop().animate({left:0},400,f.easing),C.stop().animate({left:0,width:0},400,f.easing),O.stop().animate({right:0},400,f.easing),y=!1)})),f.arrows&&(e.support.opacity?(_.hover(function(){V.find("div").stop().fadeTo("fast",1)},function(){V.find("div").stop().fadeTo("fast",0)}),et.hover(function(){Y.find("div").stop().fadeTo("fast",1)},function(){Y.find("div").stop().fadeTo("fast",0)})):(_.hover(function(){V.find("div").show()},function(){V.find("div").hide()}),et.hover(function(){Y.find("div").show()},function(){Y.find("div").hide()}))),f.keyboard&&e(document).keyup(function(e){37==e.keyCode?g.prev():39==e.keyCode&&g.next()}),f.hash&&(h(),clearInterval(),setInterval(function(){c()},250)),n()}e.fn.booklet=function(a){var i=e.extend({},e.fn.booklet.defaults,a);return e(this).each(function(){var d,n,s,r,p,o;if("string"==typeof a)e(this).data("booklet")&&(d=a.toLowerCase(),s=e.fn.booklet.interfaces[e(this).data("id")],"next"==d?s.next():"prev"==d&&s.prev());else if("number"==typeof a)e(this).data("booklet")&&(o=a,s=e.fn.booklet.interfaces[e(this).data("id")],o%2!=0&&(o-=1),s.gotoPage(o));else{for(n=e.extend(!0,{},i),r=e.fn.booklet.interfaces.length,p=0;r>p;p++)if("undefined"==typeof e.fn.booklet.interfaces[p]){r=p;break}s=new t(e(this),n,r),e.fn.booklet.interfaces[r]=s}})},e.fn.booklet.interfaces=[],e.fn.booklet.defaults={name:null,width:600,height:400,speed:1e3,direction:"LTR",startingPage:0,easing:"easeInOutQuad",easeIn:"easeInQuad",easeOut:"easeOutQuad",closed:!1,closedFrontTitle:null,closedFrontChapter:null,closedBackTitle:null,closedBackChapter:null,covers:!1,pagePadding:10,pageNumbers:!0,hovers:!0,overlays:!0,tabs:!1,tabWidth:60,tabHeight:20,arrows:!1,cursor:"pointer",hash:!1,keyboard:!0,next:null,prev:null,menu:null,pageSelector:!1,chapterSelector:!1,shadows:!0,shadowTopFwdWidth:166,shadowTopBackWidth:166,shadowBtmWidth:50,before:function(){},after:function(){}}}(jQuery); // source --> https://restauranteaquarius.com.br/wp-content/themes/tuscany/js/min/book-script-dist.js?ver=1.0 !function(e){{var o=e("#mybook"),t=e("#next_page_button"),a=e("#prev_page_button"),n=e("#loading"),s=o.find("img");s.length}e(window).load(function(){n.hide(),t.show(),a.show(),o.show().booklet({name:null,width:740,height:500,speed:600,direction:"LTR",startingPage:0,easing:"easeInOutQuad",easeIn:"easeInQuad",easeOut:"easeOutQuad",closed:!0,closedFrontTitle:null,closedFrontChapter:null,closedBackTitle:null,closedBackChapter:null,covers:!1,pagePadding:10,pageNumbers:!1,hovers:!1,overlays:!1,tabs:!1,tabWidth:60,tabHeight:20,arrows:!1,cursor:"pointer",hash:!1,keyboard:!0,next:t,prev:a,menu:null,pageSelector:!1,chapterSelector:!1,shadows:!0,shadowTopFwdWidth:166,shadowTopBackWidth:166,shadowBtmWidth:50,before:function(){},after:function(){}})})}(jQuery); // source --> https://restauranteaquarius.com.br/wp-content/themes/tuscany/js/min/plugins-dist.js?ver=1.0 (function(c){var n=-1,f=-1,g=function(a){return parseFloat(a)||0},r=function(a){var b=null,d=[];c(a).each(function(){var a=c(this),k=a.offset().top-g(a.css("margin-top")),l=0=Math.floor(Math.abs(b-k))?d[d.length-1]=l.add(a):d.push(a);b=k});return d},p=function(a){var b={byRow:!0,property:"height",target:null,remove:!1};if("object"===typeof a)return c.extend(b,a);"boolean"===typeof a?b.byRow=a:"remove"===a&&(b.remove=!0);return b},b=c.fn.matchHeight= function(a){a=p(a);if(a.remove){var e=this;this.css(a.property,"");c.each(b._groups,function(a,b){b.elements=b.elements.not(e)});return this}if(1>=this.length&&!a.target)return this;b._groups.push({elements:this,options:a});b._apply(this,a);return this};b._groups=[];b._throttle=80;b._maintainScroll=!1;b._beforeUpdate=null;b._afterUpdate=null;b._apply=function(a,e){var d=p(e),h=c(a),k=[h],l=c(window).scrollTop(),f=c("html").outerHeight(!0),m=h.parents().filter(":hidden");m.each(function(){var a=c(this); a.data("style-cache",a.attr("style"))});m.css("display","block");d.byRow&&!d.target&&(h.each(function(){var a=c(this),b=a.css("display");"inline-block"!==b&&"inline-flex"!==b&&(b="block");a.data("style-cache",a.attr("style"));a.css({display:b,"padding-top":"0","padding-bottom":"0","margin-top":"0","margin-bottom":"0","border-top-width":"0","border-bottom-width":"0",height:"100px"})}),k=r(h),h.each(function(){var a=c(this);a.attr("style",a.data("style-cache")||"")}));c.each(k,function(a,b){var e=c(b), f=0;if(d.target)f=d.target.outerHeight(!1);else{if(d.byRow&&1>=e.length){e.css(d.property,"");return}e.each(function(){var a=c(this),b=a.css("display");"inline-block"!==b&&"inline-flex"!==b&&(b="block");b={display:b};b[d.property]="";a.css(b);a.outerHeight(!1)>f&&(f=a.outerHeight(!1));a.css("display","")})}e.each(function(){var a=c(this),b=0;d.target&&a.is(d.target)||("border-box"!==a.css("box-sizing")&&(b+=g(a.css("border-top-width"))+g(a.css("border-bottom-width")),b+=g(a.css("padding-top"))+g(a.css("padding-bottom"))), a.css(d.property,f-b+"px"))})});m.each(function(){var a=c(this);a.attr("style",a.data("style-cache")||null)});b._maintainScroll&&c(window).scrollTop(l/f*c("html").outerHeight(!0));return this};b._applyDataApi=function(){var a={};c("[data-match-height], [data-mh]").each(function(){var b=c(this),d=b.attr("data-mh")||b.attr("data-match-height");a[d]=d in a?a[d].add(b):b});c.each(a,function(){this.matchHeight(!0)})};var q=function(a){b._beforeUpdate&&b._beforeUpdate(a,b._groups);c.each(b._groups,function(){b._apply(this.elements, this.options)});b._afterUpdate&&b._afterUpdate(a,b._groups)};b._update=function(a,e){if(e&&"resize"===e.type){var d=c(window).width();if(d===n)return;n=d}a?-1===f&&(f=setTimeout(function(){q(e);f=-1},b._throttle)):q(e)};c(b._applyDataApi);c(window).bind("load",function(a){b._update(!1,a)});c(window).bind("resize orientationchange",function(a){b._update(!0,a)})})(jQuery); function ssc_init(){if(document.body){var t=document.body,e=document.documentElement,i=window.innerHeight,o=t.scrollHeight;if(ssc_root=document.compatMode.indexOf("CSS")>=0?e:t,ssc_activeElement=t,ssc_initdone=!0,top!=self)ssc_frame=!0;else if(o>i&&(t.offsetHeight<=i||e.offsetHeight<=i)&&(ssc_root.style.height="auto",ssc_root.offsetHeight<=i)){var s=document.createElement("div");s.style.clear="both",t.appendChild(s)}ssc_fixedback||(t.style.backgroundAttachment="scroll",e.style.backgroundAttachment="scroll"),ssc_keyboardsupport&&ssc_addEvent("keydown",ssc_keydown)}}function ssc_scrollArray(t,e,i,o){if(o||(o=1e3),ssc_directionCheck(e,i),ssc_que.push({x:e,y:i,lastX:0>e?.99:-.99,lastY:0>i?.99:-.99,start:+new Date}),!ssc_pending){var s=function(){for(var n=+new Date,r=0,a=0,l=0;l=ssc_animtime,h=u?1:d/ssc_animtime;ssc_pulseAlgorithm&&(h=ssc_pulse(h));var p=c.x*h-c.lastX>>0,f=c.y*h-c.lastY>>0;r+=p,a+=f,c.lastX+=p,c.lastY+=f,u&&(ssc_que.splice(l,1),l--)}if(e){var v=t.scrollLeft;t.scrollLeft+=r,r&&t.scrollLeft===v&&(e=0)}if(i){var m=t.scrollTop;t.scrollTop+=a,a&&t.scrollTop===m&&(i=0)}e||i||(ssc_que=[]),ssc_que.length?setTimeout(s,o/ssc_framerate+1):ssc_pending=!1};setTimeout(s,0),ssc_pending=!0}}function ssc_wheel(t){ssc_initdone||ssc_init();var e=t.target,i=ssc_overflowingAncestor(e);if(!i||t.defaultPrevented||ssc_isNodeName(ssc_activeElement,"embed")||ssc_isNodeName(e,"embed")&&/\.pdf/i.test(e.src))return!0;var o=t.wheelDeltaX||0,s=t.wheelDeltaY||0;o||s||(s=t.wheelDelta||0),Math.abs(o)>1.2&&(o*=ssc_stepsize/120),Math.abs(s)>1.2&&(s*=ssc_stepsize/120),ssc_scrollArray(i,-o,-s),t.preventDefault()}function ssc_keydown(t){var e=t.target,i=t.ctrlKey||t.altKey||t.metaKey;if(/input|textarea|embed/i.test(e.nodeName)||e.isContentEditable||t.defaultPrevented||i)return!0;if(ssc_isNodeName(e,"button")&&t.keyCode===ssc_key.spacebar)return!0;var o,s=0,n=0,r=ssc_overflowingAncestor(ssc_activeElement),a=r.clientHeight;switch(r==document.body&&(a=window.innerHeight),t.keyCode){case ssc_key.up:n=-ssc_arrowscroll;break;case ssc_key.down:n=ssc_arrowscroll;break;case ssc_key.spacebar:o=t.shiftKey?1:-1,n=-o*a*.9;break;case ssc_key.pageup:n=.9*-a;break;case ssc_key.pagedown:n=.9*a;break;case ssc_key.home:n=-r.scrollTop;break;case ssc_key.end:var l=r.scrollHeight-r.scrollTop-a;n=l>0?l+10:0;break;case ssc_key.left:s=-ssc_arrowscroll;break;case ssc_key.right:s=ssc_arrowscroll;break;default:return!0}ssc_scrollArray(r,s,n),t.preventDefault()}function ssc_mousedown(t){ssc_activeElement=t.target}function ssc_setCache(t,e){for(var i=t.length;i--;)ssc_cache[ssc_uniqueID(t[i])]=e;return e}function ssc_overflowingAncestor(t){var e=[],i=ssc_root.scrollHeight;do{var o=ssc_cache[ssc_uniqueID(t)];if(o)return ssc_setCache(e,o);if(e.push(t),i===t.scrollHeight){if(!ssc_frame||ssc_root.clientHeight+100?1:-1,e=e>0?1:-1,(ssc_direction.x!==t||ssc_direction.y!==e)&&(ssc_direction.x=t,ssc_direction.y=e,ssc_que=[])}function ssc_pulse_(t){var e,i,o;return t*=ssc_pulseScale,1>t?e=t-(1-Math.exp(-t)):(i=Math.exp(-1),t-=1,o=1-Math.exp(-t),e=i+o*(1-i)),e*ssc_pulseNormalize}function ssc_pulse(t){return t>=1?1:0>=t?0:(1==ssc_pulseNormalize&&(ssc_pulseNormalize/=ssc_pulse_(1)),ssc_pulse_(t))}!function(){for(var t,e=function(){},i=["assert","clear","count","debug","dir","dirxml","error","exception","group","groupCollapsed","groupEnd","info","log","markTimeline","profile","profileEnd","table","time","timeEnd","timeStamp","trace","warn"],o=i.length,s=window.console=window.console||{};o--;)t=i[o],s[t]||(s[t]=e)}();var ssc_framerate=150,ssc_animtime=500,ssc_stepsize=150,ssc_pulseAlgorithm=!0,ssc_pulseScale=6,ssc_pulseNormalize=1,ssc_keyboardsupport=!0,ssc_arrowscroll=50,ssc_frame=!1,ssc_direction={x:0,y:0},ssc_initdone=!1,ssc_fixedback=!0,ssc_root=document.documentElement,ssc_activeElement,ssc_key={left:37,up:38,right:39,down:40,spacebar:32,pageup:33,pagedown:34,end:35,home:36},ssc_que=[],ssc_pending=!1,ssc_cache={};setInterval(function(){ssc_cache={}},1e4);var ssc_uniqueID=function(){var t=0;return function(e){return e.ssc_uniqueID||(e.ssc_uniqueID=t++)}}(),ischrome=/chrome/.test(navigator.userAgent.toLowerCase());ischrome&&(ssc_addEvent("mousedown",ssc_mousedown),ssc_addEvent("mousewheel",ssc_wheel),ssc_addEvent("load",ssc_init)),jQuery.easing.jswing=jQuery.easing.swing,jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(t,e,i,o,s){return jQuery.easing[jQuery.easing.def](t,e,i,o,s)},easeInQuad:function(t,e,i,o,s){return o*(e/=s)*e+i},easeOutQuad:function(t,e,i,o,s){return-o*(e/=s)*(e-2)+i},easeInOutQuad:function(t,e,i,o,s){return(e/=s/2)<1?o/2*e*e+i:-o/2*(--e*(e-2)-1)+i},easeInCubic:function(t,e,i,o,s){return o*(e/=s)*e*e+i},easeOutCubic:function(t,e,i,o,s){return o*((e=e/s-1)*e*e+1)+i},easeInOutCubic:function(t,e,i,o,s){return(e/=s/2)<1?o/2*e*e*e+i:o/2*((e-=2)*e*e+2)+i},easeInQuart:function(t,e,i,o,s){return o*(e/=s)*e*e*e+i},easeOutQuart:function(t,e,i,o,s){return-o*((e=e/s-1)*e*e*e-1)+i},easeInOutQuart:function(t,e,i,o,s){return(e/=s/2)<1?o/2*e*e*e*e+i:-o/2*((e-=2)*e*e*e-2)+i},easeInQuint:function(t,e,i,o,s){return o*(e/=s)*e*e*e*e+i},easeOutQuint:function(t,e,i,o,s){return o*((e=e/s-1)*e*e*e*e+1)+i},easeInOutQuint:function(t,e,i,o,s){return(e/=s/2)<1?o/2*e*e*e*e*e+i:o/2*((e-=2)*e*e*e*e+2)+i},easeInSine:function(t,e,i,o,s){return-o*Math.cos(e/s*(Math.PI/2))+o+i},easeOutSine:function(t,e,i,o,s){return o*Math.sin(e/s*(Math.PI/2))+i},easeInOutSine:function(t,e,i,o,s){return-o/2*(Math.cos(Math.PI*e/s)-1)+i},easeInExpo:function(t,e,i,o,s){return 0==e?i:o*Math.pow(2,10*(e/s-1))+i},easeOutExpo:function(t,e,i,o,s){return e==s?i+o:o*(-Math.pow(2,-10*e/s)+1)+i},easeInOutExpo:function(t,e,i,o,s){return 0==e?i:e==s?i+o:(e/=s/2)<1?o/2*Math.pow(2,10*(e-1))+i:o/2*(-Math.pow(2,-10*--e)+2)+i},easeInCirc:function(t,e,i,o,s){return-o*(Math.sqrt(1-(e/=s)*e)-1)+i},easeOutCirc:function(t,e,i,o,s){return o*Math.sqrt(1-(e=e/s-1)*e)+i},easeInOutCirc:function(t,e,i,o,s){return(e/=s/2)<1?-o/2*(Math.sqrt(1-e*e)-1)+i:o/2*(Math.sqrt(1-(e-=2)*e)+1)+i},easeInElastic:function(t,e,i,o,s){var n=1.70158,r=0,a=o;if(0==e)return i;if(1==(e/=s))return i+o;if(r||(r=.3*s),ae?-.5*a*Math.pow(2,10*(e-=1))*Math.sin(2*(e*s-n)*Math.PI/r)+i:a*Math.pow(2,-10*(e-=1))*Math.sin(2*(e*s-n)*Math.PI/r)*.5+o+i},easeInBack:function(t,e,i,o,s,n){return void 0==n&&(n=1.70158),o*(e/=s)*e*((n+1)*e-n)+i},easeOutBack:function(t,e,i,o,s,n){return void 0==n&&(n=1.70158),o*((e=e/s-1)*e*((n+1)*e+n)+1)+i},easeInOutBack:function(t,e,i,o,s,n){return void 0==n&&(n=1.70158),(e/=s/2)<1?o/2*e*e*(((n*=1.525)+1)*e-n)+i:o/2*((e-=2)*e*(((n*=1.525)+1)*e+n)+2)+i},easeInBounce:function(t,e,i,o,s){return o-jQuery.easing.easeOutBounce(t,s-e,0,o,s)+i},easeOutBounce:function(t,e,i,o,s){return(e/=s)<1/2.75?7.5625*o*e*e+i:2/2.75>e?o*(7.5625*(e-=1.5/2.75)*e+.75)+i:2.5/2.75>e?o*(7.5625*(e-=2.25/2.75)*e+.9375)+i:o*(7.5625*(e-=2.625/2.75)*e+.984375)+i},easeInOutBounce:function(t,e,i,o,s){return s/2>e?.5*jQuery.easing.easeInBounce(t,2*e,0,o,s)+i:.5*jQuery.easing.easeOutBounce(t,2*e-s,0,o,s)+.5*o+i}}),!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):"undefined"!=typeof exports?module.exports=t(require("jquery")):t(jQuery)}(function(t){"use strict";var e=window.Slick||{};e=function(){function e(e,o){var s,n,r=this;if(r.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:t(e),appendDots:t(e),arrows:!0,asNavFor:null,prevArrow:'',nextArrow:'',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(t,e){return'"},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",fade:!1,focusOnSelect:!1,infinite:!0,initialSlide:0,lazyLoad:"ondemand",onBeforeChange:null,onAfterChange:null,onInit:null,onReInit:null,onSetPosition:null,pauseOnHover:!0,pauseOnDotsHover:!1,respondTo:"window",responsive:null,rtl:!1,slide:"div",slidesToShow:1,slidesToScroll:1,speed:500,swipe:!0,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,variableWidth:!1,vertical:!1,waitForAnimate:!0},r.initials={animating:!1,dragging:!1,autoPlayTimer:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,$dots:null,listWidth:null,listHeight:null,loadIndex:0,$nextArrow:null,$prevArrow:null,slideCount:null,slideWidth:null,$slideTrack:null,$slides:null,sliding:!1,slideOffset:0,swipeLeft:null,$list:null,touchObject:{},transformsEnabled:!1},t.extend(r,r.initials),r.activeBreakpoint=null,r.animType=null,r.animProp=null,r.breakpoints=[],r.breakpointSettings=[],r.cssTransitions=!1,r.paused=!1,r.positionProp=null,r.respondTo=null,r.shouldClick=!0,r.$slider=t(e),r.$slidesCache=null,r.transformType=null,r.transitionType=null,r.windowWidth=0,r.windowTimer=null,r.options=t.extend({},r.defaults,o),r.currentSlide=r.options.initialSlide,r.originalSettings=r.options,s=r.options.responsive||null,s&&s.length>-1){r.respondTo=r.options.respondTo||"window";for(n in s)s.hasOwnProperty(n)&&(r.breakpoints.push(s[n].breakpoint),r.breakpointSettings[s[n].breakpoint]=s[n].settings);r.breakpoints.sort(function(t,e){return e-t})}r.autoPlay=t.proxy(r.autoPlay,r),r.autoPlayClear=t.proxy(r.autoPlayClear,r),r.changeSlide=t.proxy(r.changeSlide,r),r.clickHandler=t.proxy(r.clickHandler,r),r.selectHandler=t.proxy(r.selectHandler,r),r.setPosition=t.proxy(r.setPosition,r),r.swipeHandler=t.proxy(r.swipeHandler,r),r.dragHandler=t.proxy(r.dragHandler,r),r.keyHandler=t.proxy(r.keyHandler,r),r.autoPlayIterator=t.proxy(r.autoPlayIterator,r),r.instanceUid=i++,r.htmlExpr=/^(?:\s*(<[\w\W]+>)[^>]*)$/,r.init(),r.checkResponsive()}var i=0;return e}(),e.prototype.addSlide=function(e,i,o){var s=this;if("boolean"==typeof i)o=i,i=null;else if(0>i||i>=s.slideCount)return!1;s.unload(),"number"==typeof i?0===i&&0===s.$slides.length?t(e).appendTo(s.$slideTrack):o?t(e).insertBefore(s.$slides.eq(i)):t(e).insertAfter(s.$slides.eq(i)):o===!0?t(e).prependTo(s.$slideTrack):t(e).appendTo(s.$slideTrack),s.$slides=s.$slideTrack.children(this.options.slide),s.$slideTrack.children(this.options.slide).detach(),s.$slideTrack.append(s.$slides),s.$slides.each(function(e,i){t(i).attr("index",e)}),s.$slidesCache=s.$slides,s.reinit()},e.prototype.animateSlide=function(e,i){var o={},s=this;if(1===s.options.slidesToShow&&s.options.adaptiveHeight===!0&&s.options.vertical===!1){var n=s.$slides.eq(s.currentSlide).outerHeight(!0);s.$list.animate({height:n},s.options.speed)}s.options.rtl===!0&&s.options.vertical===!1&&(e=-e),s.transformsEnabled===!1?s.options.vertical===!1?s.$slideTrack.animate({left:e},s.options.speed,s.options.easing,i):s.$slideTrack.animate({top:e},s.options.speed,s.options.easing,i):s.cssTransitions===!1?t({animStart:s.currentLeft}).animate({animStart:e},{duration:s.options.speed,easing:s.options.easing,step:function(t){s.options.vertical===!1?(o[s.animType]="translate("+t+"px, 0px)",s.$slideTrack.css(o)):(o[s.animType]="translate(0px,"+t+"px)",s.$slideTrack.css(o))},complete:function(){i&&i.call()}}):(s.applyTransition(),o[s.animType]=s.options.vertical===!1?"translate3d("+e+"px, 0px, 0px)":"translate3d(0px,"+e+"px, 0px)",s.$slideTrack.css(o),i&&setTimeout(function(){s.disableTransition(),i.call()},s.options.speed))},e.prototype.asNavFor=function(e){var i=this,o=null!=i.options.asNavFor?t(i.options.asNavFor).getSlick():null;null!=o&&o.slideHandler(e,!0)},e.prototype.applyTransition=function(t){var e=this,i={};i[e.transitionType]=e.options.fade===!1?e.transformType+" "+e.options.speed+"ms "+e.options.cssEase:"opacity "+e.options.speed+"ms "+e.options.cssEase,e.options.fade===!1?e.$slideTrack.css(i):e.$slides.eq(t).css(i)},e.prototype.autoPlay=function(){var t=this;t.autoPlayTimer&&clearInterval(t.autoPlayTimer),t.slideCount>t.options.slidesToShow&&t.paused!==!0&&(t.autoPlayTimer=setInterval(t.autoPlayIterator,t.options.autoplaySpeed))},e.prototype.autoPlayClear=function(){var t=this;t.autoPlayTimer&&clearInterval(t.autoPlayTimer)},e.prototype.autoPlayIterator=function(){var t=this;t.options.infinite===!1?1===t.direction?(t.currentSlide+1===t.slideCount-1&&(t.direction=0),t.slideHandler(t.currentSlide+t.options.slidesToScroll)):(t.currentSlide-1===0&&(t.direction=1),t.slideHandler(t.currentSlide-t.options.slidesToScroll)):t.slideHandler(t.currentSlide+t.options.slidesToScroll)},e.prototype.buildArrows=function(){var e=this;e.options.arrows===!0&&e.slideCount>e.options.slidesToShow&&(e.$prevArrow=t(e.options.prevArrow),e.$nextArrow=t(e.options.nextArrow),e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.appendTo(e.options.appendArrows),e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.appendTo(e.options.appendArrows),e.options.infinite!==!0&&e.$prevArrow.addClass("slick-disabled"))},e.prototype.buildDots=function(){var e,i,o=this;if(o.options.dots===!0&&o.slideCount>o.options.slidesToShow){for(i='
        ',e=0;e<=o.getDotCount();e+=1)i+="
      • "+o.options.customPaging.call(this,o,e)+"
      • ";i+="
      ",o.$dots=t(i).appendTo(o.options.appendDots),o.$dots.find("li").first().addClass("slick-active")}},e.prototype.buildOut=function(){var e=this;e.$slides=e.$slider.children(e.options.slide+":not(.slick-cloned)").addClass("slick-slide"),e.slideCount=e.$slides.length,e.$slides.each(function(e,i){t(i).attr("index",e)}),e.$slidesCache=e.$slides,e.$slider.addClass("slick-slider"),e.$slideTrack=0===e.slideCount?t('
      ').appendTo(e.$slider):e.$slides.wrapAll('
      ').parent(),e.$list=e.$slideTrack.wrap('
      ').parent(),e.$slideTrack.css("opacity",0),e.options.centerMode===!0&&(e.options.slidesToScroll=1),t("img[data-lazy]",e.$slider).not("[src]").addClass("slick-loading"),e.setupInfinite(),e.buildArrows(),e.buildDots(),e.updateDots(),e.options.accessibility===!0&&e.$list.prop("tabIndex",0),e.setSlideClasses("number"==typeof this.currentSlide?this.currentSlide:0),e.options.draggable===!0&&e.$list.addClass("draggable")},e.prototype.checkResponsive=function(){var e,i,o,s=this,n=s.$slider.width(),r=window.innerWidth||t(window).width();if("window"===s.respondTo?o=r:"slider"===s.respondTo?o=n:"min"===s.respondTo&&(o=Math.min(r,n)),s.originalSettings.responsive&&s.originalSettings.responsive.length>-1&&null!==s.originalSettings.responsive){i=null;for(e in s.breakpoints)s.breakpoints.hasOwnProperty(e)&&ol.options.slidesToShow&&l.slideHandler(l.currentSlide-s,!1,i);break;case"next":s=0===o?l.options.slidesToScroll:o,l.slideCount>l.options.slidesToShow&&l.slideHandler(l.currentSlide+s,!1,i);break;case"index":var d=0===e.data.index?0:e.data.index||t(e.target).parent().index()*l.options.slidesToScroll;if(r=l.getNavigableIndexes(),a=0,r[d]&&r[d]===d)if(d>r[r.length-1])d=r[r.length-1];else for(var u in r){if(ds.options.slidesToShow&&(s.slideOffset=s.slideWidth*s.options.slidesToShow*-1,n=i*s.options.slidesToShow*-1),s.slideCount%s.options.slidesToScroll!==0&&t+s.options.slidesToScroll>s.slideCount&&s.slideCount>s.options.slidesToShow&&(t>s.slideCount?(s.slideOffset=(s.options.slidesToShow-(t-s.slideCount))*s.slideWidth*-1,n=(s.options.slidesToShow-(t-s.slideCount))*i*-1):(s.slideOffset=s.slideCount%s.options.slidesToScroll*s.slideWidth*-1,n=s.slideCount%s.options.slidesToScroll*i*-1))):t+s.options.slidesToShow>s.slideCount&&(s.slideOffset=(t+s.options.slidesToShow-s.slideCount)*s.slideWidth,n=(t+s.options.slidesToShow-s.slideCount)*i),s.slideCount<=s.options.slidesToShow&&(s.slideOffset=0,n=0),s.options.centerMode===!0&&s.options.infinite===!0?s.slideOffset+=s.slideWidth*Math.floor(s.options.slidesToShow/2)-s.slideWidth:s.options.centerMode===!0&&(s.slideOffset=0,s.slideOffset+=s.slideWidth*Math.floor(s.options.slidesToShow/2)),e=s.options.vertical===!1?t*s.slideWidth*-1+s.slideOffset:t*i*-1+n,s.options.variableWidth===!0&&(o=s.$slideTrack.children(".slick-slide").eq(s.slideCount<=s.options.slidesToShow||s.options.infinite===!1?t:t+s.options.slidesToShow),e=o[0]?-1*o[0].offsetLeft:0,s.options.centerMode===!0&&(o=s.$slideTrack.children(".slick-slide").eq(s.options.infinite===!1?t:t+s.options.slidesToShow+1),e=o[0]?-1*o[0].offsetLeft:0,e+=(s.$list.width()-o.outerWidth())/2)),e},e.prototype.getNavigableIndexes=function(){for(var t=this,e=0,i=0,o=[];e-1*i.swipeLeft?(o=s,!1):void 0}),e=Math.abs(t(o).attr("index")-i.currentSlide)}return i.options.slidesToScroll},e.prototype.init=function(){var e=this;t(e.$slider).hasClass("slick-initialized")||(t(e.$slider).addClass("slick-initialized"),e.buildOut(),e.setProps(),e.startLoad(),e.loadSlider(),e.initializeEvents(),e.updateArrows(),e.updateDots()),null!==e.options.onInit&&e.options.onInit.call(this,e)},e.prototype.initArrowEvents=function(){var t=this;t.options.arrows===!0&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.on("click.slick",{message:"previous"},t.changeSlide),t.$nextArrow.on("click.slick",{message:"next"},t.changeSlide))},e.prototype.initDotEvents=function(){var e=this;e.options.dots===!0&&e.slideCount>e.options.slidesToShow&&t("li",e.$dots).on("click.slick",{message:"index"},e.changeSlide),e.options.dots===!0&&e.options.pauseOnDotsHover===!0&&e.options.autoplay===!0&&t("li",e.$dots).on("mouseenter.slick",function(){e.paused=!0,e.autoPlayClear()}).on("mouseleave.slick",function(){e.paused=!1,e.autoPlay()})},e.prototype.initializeEvents=function(){var e=this;e.initArrowEvents(),e.initDotEvents(),e.$list.on("touchstart.slick mousedown.slick",{action:"start"},e.swipeHandler),e.$list.on("touchmove.slick mousemove.slick",{action:"move"},e.swipeHandler),e.$list.on("touchend.slick mouseup.slick",{action:"end"},e.swipeHandler),e.$list.on("touchcancel.slick mouseleave.slick",{action:"end"},e.swipeHandler),e.$list.on("click.slick",e.clickHandler),e.options.pauseOnHover===!0&&e.options.autoplay===!0&&(e.$list.on("mouseenter.slick",function(){e.paused=!0,e.autoPlayClear()}),e.$list.on("mouseleave.slick",function(){e.paused=!1,e.autoPlay()})),e.options.accessibility===!0&&e.$list.on("keydown.slick",e.keyHandler),e.options.focusOnSelect===!0&&t(e.options.slide,e.$slideTrack).on("click.slick",e.selectHandler),t(window).on("orientationchange.slick.slick-"+e.instanceUid,function(){e.checkResponsive(),e.setPosition()}),t(window).on("resize.slick.slick-"+e.instanceUid,function(){t(window).width()!==e.windowWidth&&(clearTimeout(e.windowDelay),e.windowDelay=window.setTimeout(function(){e.windowWidth=t(window).width(),e.checkResponsive(),e.setPosition()},50))}),t("*[draggable!=true]",e.$slideTrack).on("dragstart",function(t){t.preventDefault()}),t(window).on("load.slick.slick-"+e.instanceUid,e.setPosition),t(document).on("ready.slick.slick-"+e.instanceUid,e.setPosition)},e.prototype.initUI=function(){var t=this;t.options.arrows===!0&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.show(),t.$nextArrow.show()),t.options.dots===!0&&t.slideCount>t.options.slidesToShow&&t.$dots.show(),t.options.autoplay===!0&&t.autoPlay()},e.prototype.keyHandler=function(t){var e=this;37===t.keyCode&&e.options.accessibility===!0?e.changeSlide({data:{message:"previous"}}):39===t.keyCode&&e.options.accessibility===!0&&e.changeSlide({data:{message:"next"}})},e.prototype.lazyLoad=function(){function e(e){t("img[data-lazy]",e).each(function(){var e=t(this),i=t(this).attr("data-lazy");e.load(function(){e.animate({opacity:1},200)}).css({opacity:0}).attr("src",i).removeAttr("data-lazy").removeClass("slick-loading")})}var i,o,s,n,r=this;r.options.centerMode===!0?r.options.infinite===!0?(s=r.currentSlide+(r.options.slidesToShow/2+1),n=s+r.options.slidesToShow+2):(s=Math.max(0,r.currentSlide-(r.options.slidesToShow/2+1)),n=2+(r.options.slidesToShow/2+1)+r.currentSlide):(s=r.options.infinite?r.options.slidesToShow+r.currentSlide:r.currentSlide,n=s+r.options.slidesToShow,r.options.fade===!0&&(s>0&&s--,n<=r.slideCount&&n++)),i=r.$slider.find(".slick-slide").slice(s,n),e(i),r.slideCount<=r.options.slidesToShow?(o=r.$slider.find(".slick-slide"),e(o)):r.currentSlide>=r.slideCount-r.options.slidesToShow?(o=r.$slider.find(".slick-cloned").slice(0,r.options.slidesToShow),e(o)):0===r.currentSlide&&(o=r.$slider.find(".slick-cloned").slice(-1*r.options.slidesToShow),e(o))},e.prototype.loadSlider=function(){var t=this;t.setPosition(),t.$slideTrack.css({opacity:1}),t.$slider.removeClass("slick-loading"),t.initUI(),"progressive"===t.options.lazyLoad&&t.progressiveLazyLoad()},e.prototype.postSlide=function(t){var e=this;null!==e.options.onAfterChange&&e.options.onAfterChange.call(this,e,t),e.animating=!1,e.setPosition(),e.swipeLeft=null,e.options.autoplay===!0&&e.paused===!1&&e.autoPlay()},e.prototype.progressiveLazyLoad=function(){var e,i,o=this;e=t("img[data-lazy]",o.$slider).length,e>0&&(i=t("img[data-lazy]",o.$slider).first(),i.attr("src",i.attr("data-lazy")).removeClass("slick-loading").load(function(){i.removeAttr("data-lazy"),o.progressiveLazyLoad()}).error(function(){i.removeAttr("data-lazy"),o.progressiveLazyLoad()}))},e.prototype.refresh=function(){var e=this,i=e.currentSlide;e.destroy(),t.extend(e,e.initials),e.init(),e.changeSlide({data:{message:"index",index:i}},!0)},e.prototype.reinit=function(){var e=this;e.$slides=e.$slideTrack.children(e.options.slide).addClass("slick-slide"),e.slideCount=e.$slides.length,e.currentSlide>=e.slideCount&&0!==e.currentSlide&&(e.currentSlide=e.currentSlide-e.options.slidesToScroll),e.slideCount<=e.options.slidesToShow&&(e.currentSlide=0),e.setProps(),e.setupInfinite(),e.buildArrows(),e.updateArrows(),e.initArrowEvents(),e.buildDots(),e.updateDots(),e.initDotEvents(),e.options.focusOnSelect===!0&&t(e.options.slide,e.$slideTrack).on("click.slick",e.selectHandler),e.setSlideClasses(0),e.setPosition(),null!==e.options.onReInit&&e.options.onReInit.call(this,e)},e.prototype.removeSlide=function(t,e,i){var o=this;return"boolean"==typeof t?(e=t,t=e===!0?0:o.slideCount-1):t=e===!0?--t:t,o.slideCount<1||0>t||t>o.slideCount-1?!1:(o.unload(),i===!0?o.$slideTrack.children().remove():o.$slideTrack.children(this.options.slide).eq(t).remove(),o.$slides=o.$slideTrack.children(this.options.slide),o.$slideTrack.children(this.options.slide).detach(),o.$slideTrack.append(o.$slides),o.$slidesCache=o.$slides,void o.reinit())},e.prototype.setCSS=function(t){var e,i,o=this,s={};o.options.rtl===!0&&(t=-t),e="left"==o.positionProp?t+"px":"0px",i="top"==o.positionProp?t+"px":"0px",s[o.positionProp]=t,o.transformsEnabled===!1?o.$slideTrack.css(s):(s={},o.cssTransitions===!1?(s[o.animType]="translate("+e+", "+i+")",o.$slideTrack.css(s)):(s[o.animType]="translate3d("+e+", "+i+", 0px)",o.$slideTrack.css(s)))},e.prototype.setDimensions=function(){var e=this;if(e.options.vertical===!1?e.options.centerMode===!0&&e.$list.css({padding:"0px "+e.options.centerPadding}):(e.$list.height(e.$slides.first().outerHeight(!0)*e.options.slidesToShow),e.options.centerMode===!0&&e.$list.css({padding:e.options.centerPadding+" 0px"})),e.listWidth=e.$list.width(),e.listHeight=e.$list.height(),e.options.vertical===!1&&e.options.variableWidth===!1)e.slideWidth=Math.ceil(e.listWidth/e.options.slidesToShow),e.$slideTrack.width(Math.ceil(e.slideWidth*e.$slideTrack.children(".slick-slide").length));else if(e.options.variableWidth===!0){var i=0;e.slideWidth=Math.ceil(e.listWidth/e.options.slidesToShow),e.$slideTrack.children(".slick-slide").each(function(){i+=Math.ceil(t(this).outerWidth(!0))}),e.$slideTrack.width(Math.ceil(i)+1)}else e.slideWidth=Math.ceil(e.listWidth),e.$slideTrack.height(Math.ceil(e.$slides.first().outerHeight(!0)*e.$slideTrack.children(".slick-slide").length));var o=e.$slides.first().outerWidth(!0)-e.$slides.first().width();e.options.variableWidth===!1&&e.$slideTrack.children(".slick-slide").width(e.slideWidth-o)},e.prototype.setFade=function(){var e,i=this;i.$slides.each(function(o,s){e=i.slideWidth*o*-1,t(s).css(i.options.rtl===!0?{position:"relative",right:e,top:0,zIndex:800,opacity:0}:{position:"relative",left:e,top:0,zIndex:800,opacity:0})}),i.$slides.eq(i.currentSlide).css({zIndex:900,opacity:1})},e.prototype.setHeight=function(){var t=this;if(1===t.options.slidesToShow&&t.options.adaptiveHeight===!0&&t.options.vertical===!1){var e=t.$slides.eq(t.currentSlide).outerHeight(!0);t.$list.css("height",e)}},e.prototype.setPosition=function(){var t=this;t.setDimensions(),t.setHeight(),t.options.fade===!1?t.setCSS(t.getLeft(t.currentSlide)):t.setFade(),null!==t.options.onSetPosition&&t.options.onSetPosition.call(this,t)},e.prototype.setProps=function(){var t=this,e=document.body.style;t.positionProp=t.options.vertical===!0?"top":"left","top"===t.positionProp?t.$slider.addClass("slick-vertical"):t.$slider.removeClass("slick-vertical"),(void 0!==e.WebkitTransition||void 0!==e.MozTransition||void 0!==e.msTransition)&&t.options.useCSS===!0&&(t.cssTransitions=!0),void 0!==e.OTransform&&(t.animType="OTransform",t.transformType="-o-transform",t.transitionType="OTransition",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(t.animType=!1)),void 0!==e.MozTransform&&(t.animType="MozTransform",t.transformType="-moz-transform",t.transitionType="MozTransition",void 0===e.perspectiveProperty&&void 0===e.MozPerspective&&(t.animType=!1)),void 0!==e.webkitTransform&&(t.animType="webkitTransform",t.transformType="-webkit-transform",t.transitionType="webkitTransition",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(t.animType=!1)),void 0!==e.msTransform&&(t.animType="msTransform",t.transformType="-ms-transform",t.transitionType="msTransition",void 0===e.msTransform&&(t.animType=!1)),void 0!==e.transform&&t.animType!==!1&&(t.animType="transform",t.transformType="transform",t.transitionType="transition"),t.transformsEnabled=null!==t.animType&&t.animType!==!1},e.prototype.setSlideClasses=function(t){var e,i,o,s,n=this;n.$slider.find(".slick-slide").removeClass("slick-active").removeClass("slick-center"),i=n.$slider.find(".slick-slide"),n.options.centerMode===!0?(e=Math.floor(n.options.slidesToShow/2),n.options.infinite===!0&&(t>=e&&t<=n.slideCount-1-e?n.$slides.slice(t-e,t+e+1).addClass("slick-active"):(o=n.options.slidesToShow+t,i.slice(o-e+1,o+e+2).addClass("slick-active")),0===t?i.eq(i.length-1-n.options.slidesToShow).addClass("slick-center"):t===n.slideCount-1&&i.eq(n.options.slidesToShow).addClass("slick-center")),n.$slides.eq(t).addClass("slick-center")):t>=0&&t<=n.slideCount-n.options.slidesToShow?n.$slides.slice(t,t+n.options.slidesToShow).addClass("slick-active"):i.length<=n.options.slidesToShow?i.addClass("slick-active"):(s=n.slideCount%n.options.slidesToShow,o=n.options.infinite===!0?n.options.slidesToShow+t:t,n.options.slidesToShow==n.options.slidesToScroll&&n.slideCount-ts.options.slidesToShow)){for(o=s.options.centerMode===!0?s.options.slidesToShow+1:s.options.slidesToShow,e=s.slideCount;e>s.slideCount-o;e-=1)i=e-1,t(s.$slides[i]).clone(!0).attr("id","").attr("index",i-s.slideCount).prependTo(s.$slideTrack).addClass("slick-cloned");for(e=0;o>e;e+=1)i=e,t(s.$slides[i]).clone(!0).attr("id","").attr("index",i+s.slideCount).appendTo(s.$slideTrack).addClass("slick-cloned");s.$slideTrack.find(".slick-cloned").find("[id]").each(function(){t(this).attr("id","")})}},e.prototype.selectHandler=function(e){var i=this,o=parseInt(t(e.target).parents(".slick-slide").attr("index")); return o||(o=0),i.slideCount<=i.options.slidesToShow?(i.$slider.find(".slick-slide").removeClass("slick-active"),i.$slides.eq(o).addClass("slick-active"),i.options.centerMode===!0&&(i.$slider.find(".slick-slide").removeClass("slick-center"),i.$slides.eq(o).addClass("slick-center")),void i.asNavFor(o)):void i.slideHandler(o)},e.prototype.slideHandler=function(t,e,i){var o,s,n,r,a=null,l=this;return e=e||!1,l.animating===!0&&l.options.waitForAnimate===!0||l.options.fade===!0&&l.currentSlide===t||l.slideCount<=l.options.slidesToShow?void 0:(e===!1&&l.asNavFor(t),o=t,a=l.getLeft(o),r=l.getLeft(l.currentSlide),l.currentLeft=null===l.swipeLeft?r:l.swipeLeft,l.options.infinite===!1&&l.options.centerMode===!1&&(0>t||t>l.getDotCount()*l.options.slidesToScroll)?void(l.options.fade===!1&&(o=l.currentSlide,i!==!0?l.animateSlide(r,function(){l.postSlide(o)}):l.postSlide(o))):l.options.infinite===!1&&l.options.centerMode===!0&&(0>t||t>l.slideCount-l.options.slidesToScroll)?void(l.options.fade===!1&&(o=l.currentSlide,i!==!0?l.animateSlide(r,function(){l.postSlide(o)}):l.postSlide(o))):(l.options.autoplay===!0&&clearInterval(l.autoPlayTimer),s=0>o?l.slideCount%l.options.slidesToScroll!==0?l.slideCount-l.slideCount%l.options.slidesToScroll:l.slideCount+o:o>=l.slideCount?l.slideCount%l.options.slidesToScroll!==0?0:o-l.slideCount:o,l.animating=!0,null!==l.options.onBeforeChange&&t!==l.currentSlide&&l.options.onBeforeChange.call(this,l,l.currentSlide,s),n=l.currentSlide,l.currentSlide=s,l.setSlideClasses(l.currentSlide),l.updateDots(),l.updateArrows(),l.options.fade===!0?void(i!==!0?l.fadeSlide(n,s,function(){l.postSlide(s)}):l.postSlide(s)):void(i!==!0?l.animateSlide(a,function(){l.postSlide(s)}):l.postSlide(s))))},e.prototype.startLoad=function(){var t=this;t.options.arrows===!0&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.hide(),t.$nextArrow.hide()),t.options.dots===!0&&t.slideCount>t.options.slidesToShow&&t.$dots.hide(),t.$slider.addClass("slick-loading")},e.prototype.swipeDirection=function(){var t,e,i,o,s=this;return t=s.touchObject.startX-s.touchObject.curX,e=s.touchObject.startY-s.touchObject.curY,i=Math.atan2(e,t),o=Math.round(180*i/Math.PI),0>o&&(o=360-Math.abs(o)),45>=o&&o>=0?s.options.rtl===!1?"left":"right":360>=o&&o>=315?s.options.rtl===!1?"left":"right":o>=135&&225>=o?s.options.rtl===!1?"right":"left":"vertical"},e.prototype.swipeEnd=function(){var t=this;if(t.dragging=!1,t.shouldClick=t.touchObject.swipeLength>10?!1:!0,void 0===t.touchObject.curX)return!1;if(t.touchObject.swipeLength>=t.touchObject.minSwipe)switch(t.swipeDirection()){case"left":t.slideHandler(t.currentSlide+t.getSlideCount()),t.currentDirection=0,t.touchObject={};break;case"right":t.slideHandler(t.currentSlide-t.getSlideCount()),t.currentDirection=1,t.touchObject={}}else t.touchObject.startX!==t.touchObject.curX&&(t.slideHandler(t.currentSlide),t.touchObject={})},e.prototype.swipeHandler=function(t){var e=this;if(!(e.options.swipe===!1||"ontouchend"in document&&e.options.swipe===!1||e.options.draggable===!1&&-1!==t.type.indexOf("mouse")))switch(e.touchObject.fingerCount=t.originalEvent&&void 0!==t.originalEvent.touches?t.originalEvent.touches.length:1,e.touchObject.minSwipe=e.listWidth/e.options.touchThreshold,t.data.action){case"start":e.swipeStart(t);break;case"move":e.swipeMove(t);break;case"end":e.swipeEnd(t)}},e.prototype.swipeMove=function(t){var e,i,o,s,n=this;return s=void 0!==t.originalEvent?t.originalEvent.touches:null,!n.dragging||s&&1!==s.length?!1:(e=n.getLeft(n.currentSlide),n.touchObject.curX=void 0!==s?s[0].pageX:t.clientX,n.touchObject.curY=void 0!==s?s[0].pageY:t.clientY,n.touchObject.swipeLength=Math.round(Math.sqrt(Math.pow(n.touchObject.curX-n.touchObject.startX,2))),i=n.swipeDirection(),"vertical"!==i?(void 0!==t.originalEvent&&n.touchObject.swipeLength>4&&t.preventDefault(),o=(n.options.rtl===!1?1:-1)*(n.touchObject.curX>n.touchObject.startX?1:-1),n.swipeLeft=n.options.vertical===!1?e+n.touchObject.swipeLength*o:e+n.touchObject.swipeLength*(n.$list.height()/n.listWidth)*o,n.options.fade===!0||n.options.touchMove===!1?!1:n.animating===!0?(n.swipeLeft=null,!1):void n.setCSS(n.swipeLeft)):void 0)},e.prototype.swipeStart=function(t){var e,i=this;return 1!==i.touchObject.fingerCount||i.slideCount<=i.options.slidesToShow?(i.touchObject={},!1):(void 0!==t.originalEvent&&void 0!==t.originalEvent.touches&&(e=t.originalEvent.touches[0]),i.touchObject.startX=i.touchObject.curX=void 0!==e?e.pageX:t.clientX,i.touchObject.startY=i.touchObject.curY=void 0!==e?e.pageY:t.clientY,void(i.dragging=!0))},e.prototype.unfilterSlides=function(){var t=this;null!==t.$slidesCache&&(t.unload(),t.$slideTrack.children(this.options.slide).detach(),t.$slidesCache.appendTo(t.$slideTrack),t.reinit())},e.prototype.unload=function(){var e=this;t(".slick-cloned",e.$slider).remove(),e.$dots&&e.$dots.remove(),e.$prevArrow&&"object"!=typeof e.options.prevArrow&&e.$prevArrow.remove(),e.$nextArrow&&"object"!=typeof e.options.nextArrow&&e.$nextArrow.remove(),e.$slides.removeClass("slick-slide slick-active slick-visible").css("width","")},e.prototype.updateArrows=function(){var t,e=this;t=Math.floor(e.options.slidesToShow/2),e.options.arrows===!0&&e.options.infinite!==!0&&e.slideCount>e.options.slidesToShow&&(e.$prevArrow.removeClass("slick-disabled"),e.$nextArrow.removeClass("slick-disabled"),0===e.currentSlide?(e.$prevArrow.addClass("slick-disabled"),e.$nextArrow.removeClass("slick-disabled")):e.currentSlide>=e.slideCount-e.options.slidesToShow&&e.options.centerMode===!1?(e.$nextArrow.addClass("slick-disabled"),e.$prevArrow.removeClass("slick-disabled")):e.currentSlide>e.slideCount-e.options.slidesToShow+t&&e.options.centerMode===!0&&(e.$nextArrow.addClass("slick-disabled"),e.$prevArrow.removeClass("slick-disabled")))},e.prototype.updateDots=function(){var t=this;null!==t.$dots&&(t.$dots.find("li").removeClass("slick-active"),t.$dots.find("li").eq(Math.floor(t.currentSlide/t.options.slidesToScroll)).addClass("slick-active"))},t.fn.slick=function(t){var i=this;return i.each(function(i,o){o.slick=new e(o,t)})},t.fn.slickAdd=function(t,e,i){var o=this;return o.each(function(o,s){s.slick.addSlide(t,e,i)})},t.fn.slickCurrentSlide=function(){var t=this;return t.get(0).slick.getCurrent()},t.fn.slickFilter=function(t){var e=this;return e.each(function(e,i){i.slick.filterSlides(t)})},t.fn.slickGoTo=function(t,e){var i=this;return i.each(function(i,o){o.slick.changeSlide({data:{message:"index",index:parseInt(t)}},e)})},t.fn.slickNext=function(){var t=this;return t.each(function(t,e){e.slick.changeSlide({data:{message:"next"}})})},t.fn.slickPause=function(){var t=this;return t.each(function(t,e){e.slick.autoPlayClear(),e.slick.paused=!0})},t.fn.slickPlay=function(){var t=this;return t.each(function(t,e){e.slick.paused=!1,e.slick.autoPlay()})},t.fn.slickPrev=function(){var t=this;return t.each(function(t,e){e.slick.changeSlide({data:{message:"previous"}})})},t.fn.slickRemove=function(t,e){var i=this;return i.each(function(i,o){o.slick.removeSlide(t,e)})},t.fn.slickRemoveAll=function(){var t=this;return t.each(function(t,e){e.slick.removeSlide(null,null,!0)})},t.fn.slickGetOption=function(t){var e=this;return e.get(0).slick.options[t]},t.fn.slickSetOption=function(t,e,i){var o=this;return o.each(function(o,s){s.slick.options[t]=e,i===!0&&(s.slick.unload(),s.slick.reinit())})},t.fn.slickUnfilter=function(){var t=this;return t.each(function(t,e){e.slick.unfilterSlides()})},t.fn.unslick=function(){var t=this;return t.each(function(t,e){e.slick&&e.slick.destroy()})},t.fn.getSlick=function(){var t=null,e=this;return e.each(function(e,i){t=i.slick}),t}}),!function(t,e,i,o){function s(e,i){this.element=e,this.options=t.extend({},r,i),this._defaults=r,this._name=n,this.init()}var n="stellar",r={scrollProperty:"scroll",positionProperty:"position",horizontalScrolling:!0,verticalScrolling:!0,horizontalOffset:0,verticalOffset:0,responsive:!1,parallaxBackgrounds:!0,parallaxElements:!0,hideDistantElements:!0,hideElement:function(t){t.hide()},showElement:function(t){t.show()}},a={scroll:{getLeft:function(t){return t.scrollLeft()},setLeft:function(t,e){t.scrollLeft(e)},getTop:function(t){return t.scrollTop()},setTop:function(t,e){t.scrollTop(e)}},position:{getLeft:function(t){return-1*parseInt(t.css("left"),10)},getTop:function(t){return-1*parseInt(t.css("top"),10)}},margin:{getLeft:function(t){return-1*parseInt(t.css("margin-left"),10)},getTop:function(t){return-1*parseInt(t.css("margin-top"),10)}},transform:{getLeft:function(t){var e=getComputedStyle(t[0])[d];return"none"!==e?-1*parseInt(e.match(/(-?[0-9]+)/g)[4],10):0},getTop:function(t){var e=getComputedStyle(t[0])[d];return"none"!==e?-1*parseInt(e.match(/(-?[0-9]+)/g)[5],10):0}}},l={position:{setLeft:function(t,e){t.css("left",e)},setTop:function(t,e){t.css("top",e)}},transform:{setPosition:function(t,e,i,o,s){t[0].style[d]="translate3d("+(e-i)+"px, "+(o-s)+"px, 0)"}}},c=function(){var e,i=/^(Moz|Webkit|Khtml|O|ms|Icab)(?=[A-Z])/,o=t("script")[0].style,s="";for(e in o)if(i.test(e)){s=e.match(i)[0];break}return"WebkitOpacity"in o&&(s="Webkit"),"KhtmlOpacity"in o&&(s="Khtml"),function(t){return s+(s.length>0?t.charAt(0).toUpperCase()+t.slice(1):t)}}(),d=c("transform"),u=t("
      ",{style:"background:#fff"}).css("background-position-x")!==o,h=u?function(t,e,i){t.css({"background-position-x":e,"background-position-y":i})}:function(t,e,i){t.css("background-position",e+" "+i)},p=u?function(t){return[t.css("background-position-x"),t.css("background-position-y")]}:function(t){return t.css("background-position").split(" ")},f=e.requestAnimationFrame||e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.oRequestAnimationFrame||e.msRequestAnimationFrame||function(t){setTimeout(t,1e3/60)};s.prototype={init:function(){this.options.name=n+"_"+Math.floor(1e9*Math.random()),this._defineElements(),this._defineGetters(),this._defineSetters(),this._handleWindowLoadAndResize(),this._detectViewport(),this.refresh({firstLoad:!0}),"scroll"===this.options.scrollProperty?this._handleScrollEvent():this._startAnimationLoop()},_defineElements:function(){this.element===i.body&&(this.element=e),this.$scrollElement=t(this.element),this.$element=this.element===e?t("body"):this.$scrollElement,this.$viewportElement=this.options.viewportElement!==o?t(this.options.viewportElement):this.$scrollElement[0]===e||"scroll"===this.options.scrollProperty?this.$scrollElement:this.$scrollElement.parent()},_defineGetters:function(){var t=this,e=a[t.options.scrollProperty];this._getScrollLeft=function(){return e.getLeft(t.$scrollElement)},this._getScrollTop=function(){return e.getTop(t.$scrollElement)}},_defineSetters:function(){var e=this,i=a[e.options.scrollProperty],o=l[e.options.positionProperty],s=i.setLeft,n=i.setTop;this._setScrollLeft="function"==typeof s?function(t){s(e.$scrollElement,t)}:t.noop,this._setScrollTop="function"==typeof n?function(t){n(e.$scrollElement,t)}:t.noop,this._setPosition=o.setPosition||function(t,i,s,n,r){e.options.horizontalScrolling&&o.setLeft(t,i,s),e.options.verticalScrolling&&o.setTop(t,n,r)}},_handleWindowLoadAndResize:function(){var i=this,o=t(e);i.options.responsive&&o.bind("load."+this.name,function(){i.refresh()}),o.bind("resize."+this.name,function(){i._detectViewport(),i.options.responsive&&i.refresh()})},refresh:function(i){var o=this,s=o._getScrollLeft(),n=o._getScrollTop();i&&i.firstLoad||this._reset(),this._setScrollLeft(0),this._setScrollTop(0),this._setOffsets(),this._findParticles(),this._findBackgrounds(),i&&i.firstLoad&&/WebKit/.test(navigator.userAgent)&&t(e).load(function(){var t=o._getScrollLeft(),e=o._getScrollTop();o._setScrollLeft(t+1),o._setScrollTop(e+1),o._setScrollLeft(t),o._setScrollTop(e)}),this._setScrollLeft(s),this._setScrollTop(n)},_detectViewport:function(){var t=this.$viewportElement.offset(),e=null!==t&&t!==o;this.viewportWidth=this.$viewportElement.width(),this.viewportHeight=this.$viewportElement.height(),this.viewportOffsetTop=e?t.top:0,this.viewportOffsetLeft=e?t.left:0},_findParticles:function(){var e=this;if(this._getScrollLeft(),this._getScrollTop(),this.particles!==o)for(var i=this.particles.length-1;i>=0;i--)this.particles[i].$element.data("stellar-elementIsActive",o);this.particles=[],this.options.parallaxElements&&this.$element.find("[data-stellar-ratio]").each(function(){var i,s,n,r,a,l,c,d,u,h=t(this),p=0,f=0,v=0,m=0;if(h.data("stellar-elementIsActive")){if(h.data("stellar-elementIsActive")!==this)return}else h.data("stellar-elementIsActive",this);e.options.showElement(h),h.data("stellar-startingLeft")?(h.css("left",h.data("stellar-startingLeft")),h.css("top",h.data("stellar-startingTop"))):(h.data("stellar-startingLeft",h.css("left")),h.data("stellar-startingTop",h.css("top"))),n=h.position().left,r=h.position().top,a="auto"===h.css("margin-left")?0:parseInt(h.css("margin-left"),10),l="auto"===h.css("margin-top")?0:parseInt(h.css("margin-top"),10),d=h.offset().left-a,u=h.offset().top-l,h.parents().each(function(){var e=t(this);return e.data("stellar-offset-parent")===!0?(p=v,f=m,c=e,!1):(v+=e.position().left,void(m+=e.position().top))}),i=h.data("stellar-horizontal-offset")!==o?h.data("stellar-horizontal-offset"):c!==o&&c.data("stellar-horizontal-offset")!==o?c.data("stellar-horizontal-offset"):e.horizontalOffset,s=h.data("stellar-vertical-offset")!==o?h.data("stellar-vertical-offset"):c!==o&&c.data("stellar-vertical-offset")!==o?c.data("stellar-vertical-offset"):e.verticalOffset,e.particles.push({$element:h,$offsetParent:c,isFixed:"fixed"===h.css("position"),horizontalOffset:i,verticalOffset:s,startingPositionLeft:n,startingPositionTop:r,startingOffsetLeft:d,startingOffsetTop:u,parentOffsetLeft:p,parentOffsetTop:f,stellarRatio:h.data("stellar-ratio")!==o?h.data("stellar-ratio"):1,width:h.outerWidth(!0),height:h.outerHeight(!0),isHidden:!1})})},_findBackgrounds:function(){var e,i=this,s=this._getScrollLeft(),n=this._getScrollTop();this.backgrounds=[],this.options.parallaxBackgrounds&&(e=this.$element.find("[data-stellar-background-ratio]"),this.$element.data("stellar-background-ratio")&&(e=e.add(this.$element)),e.each(function(){var e,r,a,l,c,d,u,f=t(this),v=p(f),m=0,g=0,y=0,b=0;if(f.data("stellar-backgroundIsActive")){if(f.data("stellar-backgroundIsActive")!==this)return}else f.data("stellar-backgroundIsActive",this);f.data("stellar-backgroundStartingLeft")?h(f,f.data("stellar-backgroundStartingLeft"),f.data("stellar-backgroundStartingTop")):(f.data("stellar-backgroundStartingLeft",v[0]),f.data("stellar-backgroundStartingTop",v[1])),a="auto"===f.css("margin-left")?0:parseInt(f.css("margin-left"),10),l="auto"===f.css("margin-top")?0:parseInt(f.css("margin-top"),10),c=f.offset().left-a-s,d=f.offset().top-l-n,f.parents().each(function(){var e=t(this);return e.data("stellar-offset-parent")===!0?(m=y,g=b,u=e,!1):(y+=e.position().left,void(b+=e.position().top))}),e=f.data("stellar-horizontal-offset")!==o?f.data("stellar-horizontal-offset"):u!==o&&u.data("stellar-horizontal-offset")!==o?u.data("stellar-horizontal-offset"):i.horizontalOffset,r=f.data("stellar-vertical-offset")!==o?f.data("stellar-vertical-offset"):u!==o&&u.data("stellar-vertical-offset")!==o?u.data("stellar-vertical-offset"):i.verticalOffset,i.backgrounds.push({$element:f,$offsetParent:u,isFixed:"fixed"===f.css("background-attachment"),horizontalOffset:e,verticalOffset:r,startingValueLeft:v[0],startingValueTop:v[1],startingBackgroundPositionLeft:isNaN(parseInt(v[0],10))?0:parseInt(v[0],10),startingBackgroundPositionTop:isNaN(parseInt(v[1],10))?0:parseInt(v[1],10),startingPositionLeft:f.position().left,startingPositionTop:f.position().top,startingOffsetLeft:c,startingOffsetTop:d,parentOffsetLeft:m,parentOffsetTop:g,stellarRatio:f.data("stellar-background-ratio")===o?1:f.data("stellar-background-ratio")})}))},_reset:function(){var t,e,i,o,s;for(s=this.particles.length-1;s>=0;s--)t=this.particles[s],e=t.$element.data("stellar-startingLeft"),i=t.$element.data("stellar-startingTop"),this._setPosition(t.$element,e,e,i,i),this.options.showElement(t.$element),t.$element.data("stellar-startingLeft",null).data("stellar-elementIsActive",null).data("stellar-backgroundIsActive",null);for(s=this.backgrounds.length-1;s>=0;s--)o=this.backgrounds[s],o.$element.data("stellar-backgroundStartingLeft",null).data("stellar-backgroundStartingTop",null),h(o.$element,o.startingValueLeft,o.startingValueTop)},destroy:function(){this._reset(),this.$scrollElement.unbind("resize."+this.name).unbind("scroll."+this.name),this._animationLoop=t.noop,t(e).unbind("load."+this.name).unbind("resize."+this.name)},_setOffsets:function(){var i=this,o=t(e);o.unbind("resize.horizontal-"+this.name).unbind("resize.vertical-"+this.name),"function"==typeof this.options.horizontalOffset?(this.horizontalOffset=this.options.horizontalOffset(),o.bind("resize.horizontal-"+this.name,function(){i.horizontalOffset=i.options.horizontalOffset()})):this.horizontalOffset=this.options.horizontalOffset,"function"==typeof this.options.verticalOffset?(this.verticalOffset=this.options.verticalOffset(),o.bind("resize.vertical-"+this.name,function(){i.verticalOffset=i.options.verticalOffset()})):this.verticalOffset=this.options.verticalOffset},_repositionElements:function(){var t,e,i,o,s,n,r,a,l,c,d=this._getScrollLeft(),u=this._getScrollTop(),p=!0,f=!0;if(this.currentScrollLeft!==d||this.currentScrollTop!==u||this.currentWidth!==this.viewportWidth||this.currentHeight!==this.viewportHeight){for(this.currentScrollLeft=d,this.currentScrollTop=u,this.currentWidth=this.viewportWidth,this.currentHeight=this.viewportHeight,c=this.particles.length-1;c>=0;c--)t=this.particles[c],e=t.isFixed?1:0,this.options.horizontalScrolling?(n=(d+t.horizontalOffset+this.viewportOffsetLeft+t.startingPositionLeft-t.startingOffsetLeft+t.parentOffsetLeft)*-(t.stellarRatio+e-1)+t.startingPositionLeft,a=n-t.startingPositionLeft+t.startingOffsetLeft):(n=t.startingPositionLeft,a=t.startingOffsetLeft),this.options.verticalScrolling?(r=(u+t.verticalOffset+this.viewportOffsetTop+t.startingPositionTop-t.startingOffsetTop+t.parentOffsetTop)*-(t.stellarRatio+e-1)+t.startingPositionTop,l=r-t.startingPositionTop+t.startingOffsetTop):(r=t.startingPositionTop,l=t.startingOffsetTop),this.options.hideDistantElements&&(f=!this.options.horizontalScrolling||a+t.width>(t.isFixed?0:d)&&a<(t.isFixed?0:d)+this.viewportWidth+this.viewportOffsetLeft,p=!this.options.verticalScrolling||l+t.height>(t.isFixed?0:u)&&l<(t.isFixed?0:u)+this.viewportHeight+this.viewportOffsetTop),f&&p?(t.isHidden&&(this.options.showElement(t.$element),t.isHidden=!1),this._setPosition(t.$element,n,t.startingPositionLeft,r,t.startingPositionTop)):t.isHidden||(this.options.hideElement(t.$element),t.isHidden=!0);for(c=this.backgrounds.length-1;c>=0;c--)i=this.backgrounds[c],e=i.isFixed?0:1,o=this.options.horizontalScrolling?(d+i.horizontalOffset-this.viewportOffsetLeft-i.startingOffsetLeft+i.parentOffsetLeft-i.startingBackgroundPositionLeft)*(e-i.stellarRatio)+"px":i.startingValueLeft,s=this.options.verticalScrolling?(u+i.verticalOffset-this.viewportOffsetTop-i.startingOffsetTop+i.parentOffsetTop-i.startingBackgroundPositionTop)*(e-i.stellarRatio)+"px":i.startingValueTop,h(i.$element,o,s)}},_handleScrollEvent:function(){var t=this,e=!1,i=function(){t._repositionElements(),e=!1},o=function(){e||(f(i),e=!0)};this.$scrollElement.bind("scroll."+this.name,o),o()},_startAnimationLoop:function(){var t=this;this._animationLoop=function(){f(t._animationLoop),t._repositionElements()},this._animationLoop()}},t.fn[n]=function(e){var i=arguments;return e===o||"object"==typeof e?this.each(function(){t.data(this,"plugin_"+n)||t.data(this,"plugin_"+n,new s(this,e))}):"string"==typeof e&&"_"!==e[0]&&"init"!==e?this.each(function(){var o=t.data(this,"plugin_"+n);o instanceof s&&"function"==typeof o[e]&&o[e].apply(o,Array.prototype.slice.call(i,1)),"destroy"===e&&t.data(this,"plugin_"+n,null)}):void 0},t[n]=function(){var i=t(e);return i.stellar.apply(i,Array.prototype.slice.call(arguments,0))},t[n].scrollProperty=a,t[n].positionProperty=l,e.Stellar=s}(jQuery,this,document),function(){function m(){return function(){}}function n(t){return function(){return this[t]}}function r(t){return function(){return t}}function t(e,i,o){if("string"==typeof e){if(0===e.indexOf("#")&&(e=e.slice(1)),t.Fa[e])return t.Fa[e];e=t.w(e)}if(!e||!e.nodeName)throw new TypeError("The element or ID supplied is not valid. (videojs)");return e.player||new t.Player(e,i,o)}function u(e,i,o,s){t.mc.forEach(o,function(t){e(i,t,s)})}function D(e,i){var o,s;o=Array.prototype.slice.call(i),s=m(),s=window.console||{log:s,warn:s,error:s},e?o.unshift(e.toUpperCase()+":"):e="log",t.log.history.push(o),o.unshift("VIDEOJS:"),s[e].apply?s[e].apply(s,o):s[e](o.join(" "))}function E(t){t.r("vjs-lock-showing")}function F(e,i,o,s){return o!==b?((o===k||t.Pd(o))&&(o=0),e.b.style[i]=-1!==(""+o).indexOf("%")||-1!==(""+o).indexOf("px")?o:"auto"===o?"":o+"px",s||e.l("resize"),e):e.b?(o=e.b.style[i],s=o.indexOf("px"),-1!==s?parseInt(o.slice(0,s),10):parseInt(e.b["offset"+t.ba(i)],10)):0}function G(t){var e,i,o,s,n,r,a,c;e=0,i=k,t.c("touchstart",function(t){1===t.touches.length&&(i=t.touches[0],e=(new Date).getTime(),s=f)}),t.c("touchmove",function(t){122&&(s=l))}),n=function(){s=l},t.c("touchleave",n),t.c("touchcancel",n),t.c("touchend",function(t){i=k,s===f&&(o=(new Date).getTime()-e,250>o&&(t.preventDefault(),this.l("tap")))})}function H(e,i){var o,s,n,r;return o=e.b,s=t.Hd(o),r=n=o.offsetWidth,o=e.handle,e.options().vertical?(r=s.top,s=i.changedTouches?i.changedTouches[0].pageY:i.pageY,o&&(o=o.w().offsetHeight,r+=o/2,n-=o),Math.max(0,Math.min(1,(r-s+n)/n))):(n=s.left,s=i.changedTouches?i.changedTouches[0].pageX:i.pageX,o&&(o=o.w().offsetWidth,n+=o/2,r-=o),Math.max(0,Math.min(1,(s-n)/r)))}function ca(e,i){e.U(i),i.c("click",t.bind(e,function(){E(this)}))}function J(t){t.va=f,t.Da.n("vjs-lock-showing"),t.b.setAttribute("aria-pressed",f),t.P&&0n;n++)i=e[n],o=i.nodeName.toLowerCase(),"source"===o?s.sources.push(t.Ca(i)):"track"===o&&s.tracks.push(t.Ca(i))}return s}function Q(e,i,o){e.o&&(e.na=l,e.o.dispose(),e.o=l),"Html5"!==i&&e.I&&(t.g.Bb(e.I),e.I=k),e.gb=i,e.na=l;var s=t.h.z({source:o,parentEl:e.b},e.m[i.toLowerCase()]);o&&(e.uc=o.type,o.src==e.F.src&&0r;r++)o=n[r],o.id()===e?(o.show(),s=o):i&&o.L()==i&&0n&&!i.Gc();n++)o[n].call(e,i)}}),1==s.C[i].length&&(e.addEventListener?e.addEventListener(i,s.W,l):e.attachEvent&&e.attachEvent("on"+i,s.W))},t.k=function(e,i,o){if(t.Bc(e)){var s=t.getData(e);if(s.C){if(t.h.isArray(i))return u(t.k,e,i,o);if(i){var n=s.C[i];if(n){if(o){if(o.p)for(s=0;s=0;s--)o[s]===i&&o.splice(s,1);e.className=o.join(" ")}},t.A=t.e("video"),t.N=navigator.userAgent,t.md=/iPhone/i.test(t.N),t.ld=/iPad/i.test(t.N),t.nd=/iPod/i.test(t.N),t.kd=t.md||t.ld||t.nd;var aa=t,x,y=t.N.match(/OS (\d+)_/i);x=y&&y[1]?y[1]:b,aa.Ae=x,t.hd=/Android/i.test(t.N);var ba=t,z,A=t.N.match(/Android (\d+)(?:\.(\d+))?(?:\.(\d+))*/i),B,C;A?(B=A[1]&&parseFloat(A[1]),C=A[2]&&parseFloat(A[2]),z=B&&C?parseFloat(A[1]+"."+A[2]):B?B:k):z=k,ba.Xb=z,t.od=t.hd&&/webkit/i.test(t.N)&&2.3>t.Xb,t.jd=/Firefox/i.test(t.N),t.Be=/Chrome/i.test(t.N),t.ic=!!("ontouchstart"in window||window.gd&&document instanceof window.gd),t.fd="backgroundSize"in t.A.style,t.Sc=function(e,i){t.h.X(i,function(t,i){i===k||"undefined"==typeof i||i===l?e.removeAttribute(t):e.setAttribute(t,i===f?"":i)})},t.Ca=function(t){var e,i,o,s;if(e={},t&&t.attributes&&0=0;n--)o=i[n].name,s=i[n].value,("boolean"==typeof t[o]||-1!==",autoplay,controls,loop,muted,default,".indexOf(","+o+","))&&(s=s!==k?f:l),e[o]=s}return e},t.He=function(t,e){var i="";return document.defaultView&&document.defaultView.getComputedStyle?i=document.defaultView.getComputedStyle(t,"").getPropertyValue(e):t.currentStyle&&(i=t["client"+e.substr(0,1).toUpperCase()+e.substr(1)]+"px"),i},t.Jb=function(t,e){e.firstChild?e.insertBefore(t,e.firstChild):e.appendChild(t) },t.Ra={},t.w=function(t){return 0===t.indexOf("#")&&(t=t.slice(1)),document.getElementById(t)},t.Ba=function(t,e){e=e||t;var i=Math.floor(t%60),o=Math.floor(t/60%60),s=Math.floor(t/3600),n=Math.floor(e/60%60),r=Math.floor(e/3600);return(isNaN(t)||1/0===t)&&(s=o=i="-"),s=s>0||r>0?s+":":"",s+(((s||n>=10)&&10>o?"0"+o:o)+":")+(10>i?"0"+i:i)},t.ud=function(){document.body.focus(),document.onselectstart=r(l)},t.ve=function(){document.onselectstart=r(f)},t.trim=function(t){return(t+"").replace(/^\s+|\s+$/g,"")},t.round=function(t,e){return e||(e=0),Math.round(t*Math.pow(10,e))/Math.pow(10,e)},t.zb=function(t,e){return{length:1,start:function(){return t},end:function(){return e}}},t.je=function(e){try{var i=window.localStorage||l;i&&(i.volume=e)}catch(o){22==o.code||1014==o.code?t.log("LocalStorage Full (VideoJS)",o):18==o.code?t.log("LocalStorage not allowed (VideoJS)",o):t.log("LocalStorage Error (VideoJS)",o)}},t.Jd=function(e){return e.match(/^https?:\/\//)||(e=t.e("div",{innerHTML:'x'}).firstChild.href),e},t.fe=function(e){var i,o,s,n;n="protocol hostname port pathname search hash host".split(" "),o=t.e("a",{href:e}),(s=""===o.host&&"file:"!==o.protocol)&&(i=t.e("div"),i.innerHTML='',o=i.firstChild,i.setAttribute("style","display:none; position:absolute;"),document.body.appendChild(i)),e={};for(var r=0;rs;++s)i.call(o||t,e[s],s,e);return e},t.ye=function(e,i){var o,s,n,r,a,l,c;"string"==typeof e&&(e={uri:e}),videojs.Z.Ea({method:"GET",timeout:45e3},e),i=i||m(),l=function(){window.clearTimeout(a),i(k,s,s.response||s.responseText)},c=function(t){window.clearTimeout(a),t&&"string"!=typeof t||(t=Error(t)),i(t,s)},o=window.XMLHttpRequest,"undefined"==typeof o&&(o=function(){try{return new window.ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(t){}try{return new window.ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(e){}try{return new window.ActiveXObject("Msxml2.XMLHTTP")}catch(i){}throw Error("This browser does not support XMLHttpRequest.")}),s=new o,s.uri=e.uri,o=t.fe(e.uri),n=window.location,o.protocol+o.host===n.protocol+n.host||!window.XDomainRequest||"withCredentials"in s?(r="file:"==o.protocol||"file:"==n.protocol,s.onreadystatechange=function(){if(4===s.readyState){if(s.te)return c("timeout");200===s.status||r&&0===s.status?l():c()}},e.timeout&&(a=window.setTimeout(function(){4!==s.readyState&&(s.te=f,s.abort())},e.timeout))):(s=new window.XDomainRequest,s.onload=l,s.onerror=c,s.onprogress=m(),s.ontimeout=m());try{s.open(e.method||"GET",e.uri,f)}catch(d){return void c(d)}e.withCredentials&&(s.withCredentials=f),e.responseType&&(s.responseType=e.responseType);try{s.send()}catch(u){c(u)}},t.Z={},t.Z.Ea=function(e,i){var o,s,n;e=t.h.copy(e);for(o in i)i.hasOwnProperty(o)&&(s=e[o],n=i[o],e[o]=t.h.Xa(s)&&t.h.Xa(n)?t.Z.Ea(s,n):i[o]);return e},t.a=t.ta.extend({i:function(e,i,o){if(this.d=e,this.m=t.h.copy(this.m),i=this.options(i),this.K=i.id||i.el&&i.el.id,this.K||(this.K=(e.id&&e.id()||"no_player")+"_component_"+t.p++),this.Vd=i.name||k,this.b=i.el||this.e(),this.O=[],this.Ta={},this.Ua={},this.Dc(),this.H(o),i.Qc!==l){var s,n;this.j().reportUserActivity&&(s=t.bind(this.j(),this.j().reportUserActivity),this.c("touchstart",function(){s(),this.clearInterval(n),n=this.setInterval(s,250)}),e=function(){s(),this.clearInterval(n)},this.c("touchmove",s),this.c("touchend",e),this.c("touchcancel",e))}}}),s=t.a.prototype,s.dispose=function(){if(this.l({type:"dispose",bubbles:l}),this.O)for(var e=this.O.length-1;e>=0;e--)this.O[e].dispose&&this.O[e].dispose();this.Ua=this.Ta=this.O=k,this.k(),this.b.parentNode&&this.b.parentNode.removeChild(this.b),t.Pc(this.b),this.b=k},s.d=f,s.j=n("d"),s.options=function(e){return e===b?this.m:this.m=t.Z.Ea(this.m,e)},s.e=function(e,i){return t.e(e,i)},s.t=function(t){var e=this.d.language(),i=this.d.languages();return i&&i[e]&&i[e][t]?i[e][t]:t},s.w=n("b"),s.la=function(){return this.v||this.b},s.id=n("K"),s.name=n("Vd"),s.children=n("O"),s.Kd=function(t){return this.Ta[t]},s.ma=function(t){return this.Ua[t]},s.U=function(e,i){var o,s;return"string"==typeof e?(s=e,i=i||{},o=i.componentClass||t.ba(s),i.name=s,o=new window.videojs[o](this.d||this,i)):o=e,this.O.push(o),"function"==typeof o.id&&(this.Ta[o.id()]=o),(s=s||o.name&&o.name())&&(this.Ua[s]=o),"function"==typeof o.el&&o.el()&&this.la().appendChild(o.el()),o},s.removeChild=function(t){if("string"==typeof t&&(t=this.ma(t)),t&&this.O){for(var e=l,i=this.O.length-1;i>=0;i--)if(this.O[i]===t){e=f,this.O.splice(i,1);break}e&&(this.Ta[t.id]=k,this.Ua[t.name]=k,(e=t.w())&&e.parentNode===this.la()&&this.la().removeChild(t.w()))}},s.Dc=function(){var e,i,o,s,n,r;if(e=this,i=e.options(),o=i.children)if(r=function(t,o){i[t]!==b&&(o=i[t]),o!==l&&(e[t]=e.U(t,o))},t.h.isArray(o))for(var a=0;ae;e++)t[e].call(this);this.cb=[],this.l("ready")}},s.Wa=function(e){return t.Wa(this.b,e)},s.n=function(e){return t.n(this.b,e),this},s.r=function(e){return t.r(this.b,e),this},s.show=function(){return this.b.style.display="block",this},s.Y=function(){return this.b.style.display="none",this},s.disable=function(){this.Y(),this.show=m()},s.width=function(t,e){return F(this,"width",t,e)},s.height=function(t,e){return F(this,"height",t,e)},s.Dd=function(t,e){return this.width(t,f).height(e)},s.setTimeout=function(e,i){function o(){this.clearTimeout(s)}e=t.bind(this,e);var s=setTimeout(e,i);return o.p="vjs-timeout-"+s,this.c("dispose",o),s},s.clearTimeout=function(t){function e(){}return clearTimeout(t),e.p="vjs-timeout-"+t,this.k("dispose",e),t},s.setInterval=function(e,i){function o(){this.clearInterval(s)}e=t.bind(this,e);var s=setInterval(e,i);return o.p="vjs-interval-"+s,this.c("dispose",o),s},s.clearInterval=function(t){function e(){}return clearInterval(t),e.p="vjs-interval-"+t,this.k("dispose",e),t},t.u=t.a.extend({i:function(e,i){t.a.call(this,e,i),G(this),this.c("tap",this.s),this.c("click",this.s),this.c("focus",this.ab),this.c("blur",this.$a)}}),s=t.u.prototype,s.e=function(e,i){var o;return i=t.h.z({className:this.S(),role:"button","aria-live":"polite",tabIndex:0},i),o=t.a.prototype.e.call(this,e,i),i.innerHTML||(this.v=t.e("div",{className:"vjs-control-content"}),this.xb=t.e("span",{className:"vjs-control-text",innerHTML:this.t(this.wa)||"Need Text"}),this.v.appendChild(this.xb),o.appendChild(this.v)),o},s.S=function(){return"vjs-control "+t.a.prototype.S.call(this)},s.s=m(),s.ab=function(){t.c(document,"keydown",t.bind(this,this.ea))},s.ea=function(t){(32==t.which||13==t.which)&&(t.preventDefault(),this.s())},s.$a=function(){t.k(document,"keydown",t.bind(this,this.ea))},t.R=t.a.extend({i:function(e,i){t.a.call(this,e,i),this.td=this.ma(this.m.barName),this.handle=this.ma(this.m.handleName),this.c("mousedown",this.bb),this.c("touchstart",this.bb),this.c("focus",this.ab),this.c("blur",this.$a),this.c("click",this.s),this.c(e,"controlsvisible",this.update),this.c(e,this.Lc,this.update)}}),s=t.R.prototype,s.e=function(e,i){return i=i||{},i.className+=" vjs-slider",i=t.h.z({role:"slider","aria-valuenow":0,"aria-valuemin":0,"aria-valuemax":100,tabIndex:0},i),t.a.prototype.e.call(this,e,i)},s.bb=function(e){e.preventDefault(),t.ud(),this.n("vjs-sliding"),this.c(document,"mousemove",this.fa),this.c(document,"mouseup",this.pa),this.c(document,"touchmove",this.fa),this.c(document,"touchend",this.pa),this.fa(e)},s.fa=m(),s.pa=function(){t.ve(),this.r("vjs-sliding"),this.k(document,"mousemove",this.fa),this.k(document,"mouseup",this.pa),this.k(document,"touchmove",this.fa),this.k(document,"touchend",this.pa),this.update()},s.update=function(){if(this.b){var e,i=this.Hb(),o=this.handle,s=this.td;if(isNaN(i)&&(i=0),e=i,o){e=this.b.offsetWidth;var n=o.w().offsetWidth;e=n?n/e:0,i*=1-e,e=i+e/2,o.w().style.left=t.round(100*i,2)+"%"}s&&(s.w().style.width=t.round(100*e,2)+"%")}},s.ab=function(){this.c(document,"keydown",this.ea)},s.ea=function(t){37==t.which||40==t.which?(t.preventDefault(),this.Xc()):(38==t.which||39==t.which)&&(t.preventDefault(),this.Yc())},s.$a=function(){this.k(document,"keydown",this.ea)},s.s=function(t){t.stopImmediatePropagation(),t.preventDefault()},t.$=t.a.extend(),t.$.prototype.defaultValue=0,t.$.prototype.e=function(e,i){return i=i||{},i.className+=" vjs-slider-handle",i=t.h.z({innerHTML:''+this.defaultValue+""},i),t.a.prototype.e.call(this,"div",i)},t.ja=t.a.extend(),t.ja.prototype.e=function(){var e=this.options().rc||"ul";return this.v=t.e(e,{className:"vjs-menu-content"}),e=t.a.prototype.e.call(this,"div",{append:this.v,className:"vjs-menu"}),e.appendChild(this.v),t.c(e,"click",function(t){t.preventDefault(),t.stopImmediatePropagation()}),e},t.J=t.u.extend({i:function(e,i){t.u.call(this,e,i),this.selected(i.selected)}}),t.J.prototype.e=function(e,i){return t.u.prototype.e.call(this,"li",t.h.z({className:"vjs-menu-item",innerHTML:this.t(this.m.label)},i))},t.J.prototype.s=function(){this.selected(f)},t.J.prototype.selected=function(t){t?(this.n("vjs-selected"),this.b.setAttribute("aria-selected",f)):(this.r("vjs-selected"),this.b.setAttribute("aria-selected",l))},t.M=t.u.extend({i:function(e,i){t.u.call(this,e,i),this.Da=this.za(),this.U(this.Da),this.P&&0===this.P.length&&this.Y(),this.c("keydown",this.ea),this.b.setAttribute("aria-haspopup",f),this.b.setAttribute("role","button")}}),s=t.M.prototype,s.va=l,s.za=function(){var e=new t.ja(this.d);if(this.options().title&&e.la().appendChild(t.e("li",{className:"vjs-menu-title",innerHTML:t.ba(this.options().title),re:-1})),this.P=this.createItems())for(var i=0;i0&&(r=this.setTimeout(function(){this.sa||this.userActive(l)},t))}},250)}}),s=t.Player.prototype,s.language=function(t){return t===b?this.Ya:(this.Ya=t,this)},s.languages=n("Td"),s.m=t.options,s.dispose=function(){this.l("dispose"),this.k("dispose"),t.Fa[this.K]=k,this.I&&this.I.player&&(this.I.player=k),this.b&&this.b.player&&(this.b.player=k),this.o&&this.o.dispose(),t.a.prototype.dispose.call(this)},s.e=function(){var e,i=this.b=t.a.prototype.e.call(this,"div"),o=this.I;if(o.removeAttribute("width"),o.removeAttribute("height"),o.hasChildNodes()){var s,n,r,a,l;for(s=o.childNodes,n=s.length,l=[];n--;)r=s[n],a=r.nodeName.toLowerCase(),"track"===a&&l.push(r);for(s=0;st&&(t=1/0),this.duration(t),1/0===t?this.n("vjs-live"):this.r("vjs-live"))},s.Yd=function(){this.isFullscreen()?this.n("vjs-fullscreen"):this.r("vjs-fullscreen")},s.play=function(){return T(this,"play"),this},s.pause=function(){return T(this,"pause"),this},s.paused=function(){return S(this,"paused")===l?l:f},s.currentTime=function(t){return t!==b?(T(this,"setCurrentTime",t),this):this.F.currentTime=S(this,"currentTime")||0},s.duration=function(t){return t!==b?(this.F.duration=parseFloat(t),this):(this.F.duration===b&&this.Jc(),this.F.duration||0)},s.remainingTime=function(){return this.duration()-this.currentTime()},s.buffered=function(){var e=S(this,"buffered");return e&&e.length||(e=t.zb(0,0)),e},s.bufferedPercent=function(){var t,e,i=this.duration(),o=this.buffered(),s=0;if(!i)return 0;for(var n=0;ni&&(e=i),s+=e-t;return s/i},s.volume=function(e){return e!==b?(e=Math.max(0,Math.min(1,parseFloat(e))),this.F.volume=e,T(this,"setVolume",e),t.je(e),this):(e=parseFloat(S(this,"volume")),isNaN(e)?1:e)},s.muted=function(t){return t!==b?(T(this,"setMuted",t),this):S(this,"muted")||l},s.Ha=function(){return S(this,"supportsFullScreen")||l},s.Fc=l,s.isFullscreen=function(t){return t!==b?(this.Fc=!!t,this):this.Fc},s.isFullScreen=function(e){return t.log.warn('player.isFullScreen() has been deprecated, use player.isFullscreen() with a lowercase "s")'),this.isFullscreen(e)},s.requestFullscreen=function(){var e=t.Ra.Gb;return this.isFullscreen(f),e?(t.c(document,e.fullscreenchange,t.bind(this,function(){this.isFullscreen(document[e.fullscreenElement]),this.isFullscreen()===l&&t.k(document,e.fullscreenchange,arguments.callee),this.l("fullscreenchange")})),this.b[e.requestFullscreen]()):this.o.Ha()?T(this,"enterFullScreen"):(this.yc(),this.l("fullscreenchange")),this},s.requestFullScreen=function(){return t.log.warn('player.requestFullScreen() has been deprecated, use player.requestFullscreen() with a lowercase "s")'),this.requestFullscreen()},s.exitFullscreen=function(){var e=t.Ra.Gb;return this.isFullscreen(l),e?document[e.exitFullscreen]():this.o.Ha()?T(this,"exitFullScreen"):(this.Db(),this.l("fullscreenchange")),this},s.cancelFullScreen=function(){return t.log.warn("player.cancelFullScreen() has been deprecated, use player.exitFullscreen()"),this.exitFullscreen()},s.yc=function(){this.Od=f,this.Ed=document.documentElement.style.overflow,t.c(document,"keydown",t.bind(this,this.Ac)),document.documentElement.style.overflow="hidden",t.n(document.body,"vjs-full-window"),this.l("enterFullWindow")},s.Ac=function(t){27===t.keyCode&&(this.isFullscreen()===f?this.exitFullscreen():this.Db())},s.Db=function(){this.Od=l,t.k(document,"keydown",this.Ac),document.documentElement.style.overflow=this.Ed,t.r(document.body,"vjs-full-window"),this.l("exitFullWindow")},s.selectSource=function(e){for(var i=0,o=this.m.techOrder;i'+this.t("Stream Type")+""+this.t("LIVE"),"aria-live":"off"}),e.appendChild(this.v),e},t.dc=t.u.extend({i:function(e,i){t.u.call(this,e,i),this.c(e,"play",this.Pb),this.c(e,"pause",this.Ob)}}),s=t.dc.prototype,s.wa="Play",s.S=function(){return"vjs-play-control "+t.u.prototype.S.call(this)},s.s=function(){this.d.paused()?this.d.play():this.d.pause()},s.Pb=function(){this.r("vjs-paused"),this.n("vjs-playing"),this.b.children[0].children[0].innerHTML=this.t("Pause")},s.Ob=function(){this.r("vjs-playing"),this.n("vjs-paused"),this.b.children[0].children[0].innerHTML=this.t("Play")},t.jb=t.a.extend({i:function(e,i){t.a.call(this,e,i),this.c(e,"timeupdate",this.ia)}}),t.jb.prototype.e=function(){var e=t.a.prototype.e.call(this,"div",{className:"vjs-current-time vjs-time-controls vjs-control"});return this.v=t.e("div",{className:"vjs-current-time-display",innerHTML:'Current Time 0:00',"aria-live":"off"}),e.appendChild(this.v),e},t.jb.prototype.ia=function(){var e=this.d.eb?this.d.F.currentTime:this.d.currentTime();this.v.innerHTML=''+this.t("Current Time")+" "+t.Ba(e,this.d.duration())},t.kb=t.a.extend({i:function(e,i){t.a.call(this,e,i),this.c(e,"timeupdate",this.ia)}}),t.kb.prototype.e=function(){var e=t.a.prototype.e.call(this,"div",{className:"vjs-duration vjs-time-controls vjs-control"});return this.v=t.e("div",{className:"vjs-duration-display",innerHTML:''+this.t("Duration Time")+" 0:00","aria-live":"off"}),e.appendChild(this.v),e},t.kb.prototype.ia=function(){var e=this.d.duration();e&&(this.v.innerHTML=''+this.t("Duration Time")+" "+t.Ba(e))},t.kc=t.a.extend({i:function(e,i){t.a.call(this,e,i)}}),t.kc.prototype.e=function(){return t.a.prototype.e.call(this,"div",{className:"vjs-time-divider",innerHTML:"
      /
      "})},t.rb=t.a.extend({i:function(e,i){t.a.call(this,e,i),this.c(e,"timeupdate",this.ia)}}),t.rb.prototype.e=function(){var e=t.a.prototype.e.call(this,"div",{className:"vjs-remaining-time vjs-time-controls vjs-control"});return this.v=t.e("div",{className:"vjs-remaining-time-display",innerHTML:''+this.t("Remaining Time")+" -0:00","aria-live":"off"}),e.appendChild(this.v),e},t.rb.prototype.ia=function(){this.d.duration()&&(this.v.innerHTML=''+this.t("Remaining Time")+" -"+t.Ba(this.d.remainingTime()))},t.Na=t.u.extend({i:function(e,i){t.u.call(this,e,i)}}),t.Na.prototype.wa="Fullscreen",t.Na.prototype.S=function(){return"vjs-fullscreen-control "+t.u.prototype.S.call(this)},t.Na.prototype.s=function(){this.d.isFullscreen()?(this.d.exitFullscreen(),this.xb.innerHTML=this.t("Fullscreen")):(this.d.requestFullscreen(),this.xb.innerHTML=this.t("Non-Fullscreen"))},t.qb=t.a.extend({i:function(e,i){t.a.call(this,e,i)}}),t.qb.prototype.m={children:{seekBar:{}}},t.qb.prototype.e=function(){return t.a.prototype.e.call(this,"div",{className:"vjs-progress-control vjs-control"})},t.gc=t.R.extend({i:function(e,i){t.R.call(this,e,i),this.c(e,"timeupdate",this.ra),e.H(t.bind(this,this.ra))}}),s=t.gc.prototype,s.m={children:{loadProgressBar:{},playProgressBar:{},seekHandle:{}},barName:"playProgressBar",handleName:"seekHandle"},s.Lc="timeupdate",s.e=function(){return t.R.prototype.e.call(this,"div",{className:"vjs-progress-holder","aria-label":"video progress bar"})},s.ra=function(){var e=this.d.eb?this.d.F.currentTime:this.d.currentTime();this.b.setAttribute("aria-valuenow",t.round(100*this.Hb(),2)),this.b.setAttribute("aria-valuetext",t.Ba(e,this.d.duration()))},s.Hb=function(){return this.d.currentTime()/this.d.duration()},s.bb=function(e){t.R.prototype.bb.call(this,e),this.d.eb=f,this.xe=!this.d.paused(),this.d.pause()},s.fa=function(t){t=H(this,t)*this.d.duration(),t==this.d.duration()&&(t-=.1),this.d.currentTime(t)},s.pa=function(e){t.R.prototype.pa.call(this,e),this.d.eb=l,this.xe&&this.d.play()},s.Yc=function(){this.d.currentTime(this.d.currentTime()+5)},s.Xc=function(){this.d.currentTime(this.d.currentTime()-5)},t.nb=t.a.extend({i:function(e,i){t.a.call(this,e,i),this.c(e,"progress",this.update)}}),t.nb.prototype.e=function(){return t.a.prototype.e.call(this,"div",{className:"vjs-load-progress",innerHTML:''+this.t("Loaded")+": 0%"})},t.nb.prototype.update=function(){var e,i,o,s,n=this.d.buffered();e=this.d.duration();var r,a=this.d;for(r=a.buffered(),a=a.duration(),r=r.end(r.length-1),r>a&&(r=a),a=this.b.children,this.b.style.width=100*(r/e||0)+"%",e=0;en.length;e--)this.b.removeChild(a[e-1])},t.cc=t.a.extend({i:function(e,i){t.a.call(this,e,i)}}),t.cc.prototype.e=function(){return t.a.prototype.e.call(this,"div",{className:"vjs-play-progress",innerHTML:''+this.t("Progress")+": 0%"})},t.Oa=t.$.extend({i:function(e,i){t.$.call(this,e,i),this.c(e,"timeupdate",this.ia)}}),t.Oa.prototype.defaultValue="00:00",t.Oa.prototype.e=function(){return t.$.prototype.e.call(this,"div",{className:"vjs-seek-handle","aria-live":"off"})},t.Oa.prototype.ia=function(){var e=this.d.eb?this.d.F.currentTime:this.d.currentTime();this.b.innerHTML=''+t.Ba(e,this.d.duration())+""},t.tb=t.a.extend({i:function(e,i){t.a.call(this,e,i),e.o&&e.o.featuresVolumeControl===l&&this.n("vjs-hidden"),this.c(e,"loadstart",function(){e.o.featuresVolumeControl===l?this.n("vjs-hidden"):this.r("vjs-hidden")})}}),t.tb.prototype.m={children:{volumeBar:{}}},t.tb.prototype.e=function(){return t.a.prototype.e.call(this,"div",{className:"vjs-volume-control vjs-control"})},t.sb=t.R.extend({i:function(e,i){t.R.call(this,e,i),this.c(e,"volumechange",this.ra),e.H(t.bind(this,this.ra))}}),s=t.sb.prototype,s.ra=function(){this.b.setAttribute("aria-valuenow",t.round(100*this.d.volume(),2)),this.b.setAttribute("aria-valuetext",t.round(100*this.d.volume(),2)+"%")},s.m={children:{volumeLevel:{},volumeHandle:{}},barName:"volumeLevel",handleName:"volumeHandle"},s.Lc="volumechange",s.e=function(){return t.R.prototype.e.call(this,"div",{className:"vjs-volume-bar","aria-label":"volume level"})},s.fa=function(t){this.d.muted()&&this.d.muted(l),this.d.volume(H(this,t))},s.Hb=function(){return this.d.muted()?0:this.d.volume()},s.Yc=function(){this.d.volume(this.d.volume()+.1)},s.Xc=function(){this.d.volume(this.d.volume()-.1)},t.lc=t.a.extend({i:function(e,i){t.a.call(this,e,i)}}),t.lc.prototype.e=function(){return t.a.prototype.e.call(this,"div",{className:"vjs-volume-level",innerHTML:''})},t.ub=t.$.extend(),t.ub.prototype.defaultValue="00:00",t.ub.prototype.e=function(){return t.$.prototype.e.call(this,"div",{className:"vjs-volume-handle"})},t.ka=t.u.extend({i:function(e,i){t.u.call(this,e,i),this.c(e,"volumechange",this.update),e.o&&e.o.featuresVolumeControl===l&&this.n("vjs-hidden"),this.c(e,"loadstart",function(){e.o.featuresVolumeControl===l?this.n("vjs-hidden"):this.r("vjs-hidden")})}}),t.ka.prototype.e=function(){return t.u.prototype.e.call(this,"div",{className:"vjs-mute-control vjs-control",innerHTML:'
      '+this.t("Mute")+"
      "})},t.ka.prototype.s=function(){this.d.muted(this.d.muted()?l:f)},t.ka.prototype.update=function(){var e=this.d.volume(),i=3;for(0===e||this.d.muted()?i=0:.33>e?i=1:.67>e&&(i=2),this.d.muted()?this.b.children[0].children[0].innerHTML!=this.t("Unmute")&&(this.b.children[0].children[0].innerHTML=this.t("Unmute")):this.b.children[0].children[0].innerHTML!=this.t("Mute")&&(this.b.children[0].children[0].innerHTML=this.t("Mute")),e=0;4>e;e++)t.r(this.b,"vjs-vol-"+e);t.n(this.b,"vjs-vol-"+i)},t.ua=t.M.extend({i:function(e,i){t.M.call(this,e,i),this.c(e,"volumechange",this.update),e.o&&e.o.featuresVolumeControl===l&&this.n("vjs-hidden"),this.c(e,"loadstart",function(){e.o.featuresVolumeControl===l?this.n("vjs-hidden"):this.r("vjs-hidden")}),this.n("vjs-menu-button")}}),t.ua.prototype.za=function(){var e=new t.ja(this.d,{rc:"div"}),i=new t.sb(this.d,this.m.volumeBar);return i.c("focus",function(){e.n("vjs-lock-showing")}),i.c("blur",function(){E(e)}),e.U(i),e},t.ua.prototype.s=function(){t.ka.prototype.s.call(this),t.M.prototype.s.call(this)},t.ua.prototype.e=function(){return t.u.prototype.e.call(this,"div",{className:"vjs-volume-menu-button vjs-menu-button vjs-control",innerHTML:'
      '+this.t("Mute")+"
      "})},t.ua.prototype.update=t.ka.prototype.update,t.ec=t.M.extend({i:function(e,i){t.M.call(this,e,i),this.bd(),this.ad(),this.c(e,"loadstart",this.bd),this.c(e,"ratechange",this.ad)}}),s=t.ec.prototype,s.e=function(){var e=t.a.prototype.e.call(this,"div",{className:"vjs-playback-rate vjs-menu-button vjs-control",innerHTML:'
      '+this.t("Playback Rate")+"
      "});return this.Hc=t.e("div",{className:"vjs-playback-rate-value",innerHTML:1}),e.appendChild(this.Hc),e},s.za=function(){var e=new t.ja(this.j()),i=this.j().options().playbackRates;if(i)for(var o=i.length-1;o>=0;o--)e.U(new t.pb(this.j(),{rate:i[o]+"x"}));return e},s.ra=function(){this.w().setAttribute("aria-valuenow",this.j().playbackRate())},s.s=function(){for(var t=this.j().playbackRate(),e=this.j().options().playbackRates,i=e[0],o=0;ot){i=e[o]; break}this.j().playbackRate(i)},s.bd=function(){ea(this)?this.r("vjs-hidden"):this.n("vjs-hidden")},s.ad=function(){ea(this)&&(this.Hc.innerHTML=this.j().playbackRate()+"x")},t.pb=t.J.extend({rc:"button",i:function(e,i){var o=this.label=i.rate,s=this.Oc=parseFloat(o,10);i.label=o,i.selected=1===s,t.J.call(this,e,i),this.c(e,"ratechange",this.update)}}),t.pb.prototype.s=function(){t.J.prototype.s.call(this),this.j().playbackRate(this.Oc)},t.pb.prototype.update=function(){this.selected(this.j().playbackRate()==this.Oc)},t.fc=t.u.extend({i:function(e,i){t.u.call(this,e,i),this.update(),e.c("posterchange",t.bind(this,this.update))}}),s=t.fc.prototype,s.dispose=function(){this.j().k("posterchange",this.update),t.u.prototype.dispose.call(this)},s.e=function(){var e=t.e("div",{className:"vjs-poster",tabIndex:-1});return t.fd||(this.Eb=t.e("img"),e.appendChild(this.Eb)),e},s.update=function(){var t=this.j().poster();this.ga(t),t?this.b.style.display="":this.Y()},s.ga=function(t){var e;this.Eb?this.Eb.src=t:(e="",t&&(e='url("'+t+'")'),this.b.style.backgroundImage=e)},s.s=function(){this.d.play()},t.bc=t.a.extend({i:function(e,i){t.a.call(this,e,i)}}),t.bc.prototype.e=function(){return t.a.prototype.e.call(this,"div",{className:"vjs-loading-spinner"})},t.hb=t.u.extend(),t.hb.prototype.e=function(){return t.u.prototype.e.call(this,"div",{className:"vjs-big-play-button",innerHTML:'',"aria-label":"play video"})},t.hb.prototype.s=function(){this.d.play()},t.lb=t.a.extend({i:function(e,i){t.a.call(this,e,i),this.update(),this.c(e,"error",this.update)}}),t.lb.prototype.e=function(){var e=t.a.prototype.e.call(this,"div",{className:"vjs-error-display"});return this.v=t.e("div"),e.appendChild(this.v),e},t.lb.prototype.update=function(){this.j().error()&&(this.v.innerHTML=this.t(this.j().error().message))},t.q=t.a.extend({i:function(e,i,o){i=i||{},i.Qc=l,t.a.call(this,e,i,o),this.featuresProgressEvents||(this.Ic=f,this.Nc=this.setInterval(function(){var t=this.j().bufferedPercent();this.vd!=t&&this.j().l("progress"),this.vd=t,1===t&&this.clearInterval(this.Nc)},500)),this.featuresTimeupdateEvents||(e=this.d,this.Nb=f,this.c(e,"play",this.$c),this.c(e,"pause",this.fb),this.Q("timeupdate",function(){this.featuresTimeupdateEvents=f,fa(this)}));var s;s=this.j(),e=function(){if(s.controls()&&!s.usingNativeControls()){var t;this.c("mousedown",this.s),this.c("touchstart",function(){t=this.d.userActive()}),this.c("touchmove",function(){t&&this.j().reportUserActivity()}),this.c("touchend",function(t){t.preventDefault()}),G(this),this.c("tap",this.ce)}},this.H(e),this.c(s,"controlsenabled",e),this.c(s,"controlsdisabled",this.he),this.H(function(){this.networkState&&0=0;o--)this.c(t.g.mb[o],this.Fd);if((i=i.source)&&(this.b.currentSrc!==i.src||e.I&&3===e.I.Md)&&this.Uc(i),t.ic&&e.options().nativeControlsForTouch===f){var s,n,r,a;s=this,n=this.j(),i=n.controls(),s.b.controls=!!i,r=function(){s.b.controls=f},a=function(){s.b.controls=l},n.c("controlsenabled",r),n.c("controlsdisabled",a),i=function(){n.k("controlsenabled",r),n.k("controlsdisabled",a)},s.c("dispose",i),n.c("usingcustomcontrols",i),n.usingNativeControls(f)}e.H(function(){this.I&&this.m.autoplay&&this.paused()&&(delete this.I.poster,this.play())}),this.Ja()}}),s=t.g.prototype,s.dispose=function(){t.g.Bb(this.b),t.q.prototype.dispose.call(this)},s.e=function(){var e,i=this.d,o=i.I;o&&this.movingMediaElementInDOM!==l||(o?(e=o.cloneNode(l),t.g.Bb(o),o=e,i.I=k):(o=t.e("video"),t.Sc(o,t.h.z(i.se||{},{id:i.id()+"_html5_api","class":"vjs-tech"}))),o.player=i,t.Jb(o,i.w())),e=["autoplay","preload","loop","muted"];for(var s=e.length-1;s>=0;s--){var n=e[s],r={};"undefined"!=typeof i.m[n]&&(r[n]=i.m[n]),t.Sc(o,r)}return o},s.Fd=function(t){"error"==t.type&&this.error()?this.j().error(this.error().code):(t.bubbles=l,this.j().l(t))},s.play=function(){this.b.play()},s.pause=function(){this.b.pause()},s.paused=function(){return this.b.paused},s.currentTime=function(){return this.b.currentTime},s.Tb=function(e){try{this.b.currentTime=e}catch(i){t.log(i,"Video is not ready. (Video.js)")}},s.duration=function(){return this.b.duration||0},s.buffered=function(){return this.b.buffered},s.volume=function(){return this.b.volume},s.oe=function(t){this.b.volume=t},s.muted=function(){return this.b.muted},s.le=function(t){this.b.muted=t},s.width=function(){return this.b.offsetWidth},s.height=function(){return this.b.offsetHeight},s.Ha=function(){return"function"!=typeof this.b.webkitEnterFullScreen||!/Android/.test(t.N)&&/Chrome|Mac OS X 10.5/.test(t.N)?l:f},s.xc=function(){var t=this.b;"webkitDisplayingFullscreen"in t&&this.Q("webkitbeginfullscreen",function(){this.d.isFullscreen(f),this.Q("webkitendfullscreen",function(){this.d.isFullscreen(l),this.d.l("fullscreenchange")}),this.d.l("fullscreenchange")}),t.paused&&t.networkState<=t.ze?(this.b.play(),this.setTimeout(function(){t.pause(),t.webkitEnterFullScreen()},0)):t.webkitEnterFullScreen()},s.Gd=function(){this.b.webkitExitFullScreen()},s.src=function(t){return t===b?this.b.src:void this.ga(t)},s.ga=function(t){this.b.src=t},s.load=function(){this.b.load()},s.currentSrc=function(){return this.b.currentSrc},s.poster=function(){return this.b.poster},s.Tc=function(t){this.b.poster=t},s.Ga=function(){return this.b.Ga},s.ne=function(t){this.b.Ga=t},s.autoplay=function(){return this.b.autoplay},s.ie=function(t){this.b.autoplay=t},s.controls=function(){return this.b.controls},s.loop=function(){return this.b.loop},s.ke=function(t){this.b.loop=t},s.error=function(){return this.b.error},s.seeking=function(){return this.b.seeking},s.ended=function(){return this.b.ended},s.playbackRate=function(){return this.b.playbackRate},s.me=function(t){this.b.playbackRate=t},s.networkState=function(){return this.b.networkState},t.g.isSupported=function(){try{t.A.volume=.5}catch(e){return l}return!!t.A.canPlayType},t.q.dd(t.g),t.g.V={},t.g.V.Sa=function(e){function i(e){try{return!!t.A.canPlayType(e)}catch(i){return""}}return e.type?i(e.type):(e=e.src.match(/\.([^\/\?]+)(\?[^\/]+)?$/i)[1],i("video/"+e))},t.g.V.Ib=function(t,e){e.ga(t.src)},t.g.V.dispose=m(),t.g.Rb(t.g.V),t.g.xd=function(){var e=t.A.volume;return t.A.volume=e/2+.1,e!==t.A.volume},t.g.wd=function(){var e=t.A.playbackRate;return t.A.playbackRate=e/2+.1,e!==t.A.playbackRate},t.g.prototype.featuresVolumeControl=t.g.xd(),t.g.prototype.featuresPlaybackRate=t.g.wd(),t.g.prototype.movingMediaElementInDOM=!t.kd,t.g.prototype.featuresFullscreenResize=f,t.g.prototype.featuresProgressEvents=f;var V,ga=/^application\/(?:x-|vnd\.apple\.)mpegurl/i,ha=/^video\/mp4/i;t.g.Kc=function(){4<=t.Xb&&(V||(V=t.A.constructor.prototype.canPlayType),t.A.constructor.prototype.canPlayType=function(t){return t&&ga.test(t)?"maybe":V.call(this,t)}),t.od&&(V||(V=t.A.constructor.prototype.canPlayType),t.A.constructor.prototype.canPlayType=function(t){return t&&ha.test(t)?"maybe":V.call(this,t)})},t.g.we=function(){var e=t.A.constructor.prototype.canPlayType;return t.A.constructor.prototype.canPlayType=V,V=k,e},t.g.Kc(),t.g.mb="loadstart suspend abort error emptied stalled loadedmetadata loadeddata canplay canplaythrough playing waiting seeking seeked ended durationchange timeupdate progress play pause ratechange volumechange".split(" "),t.g.Bb=function(t){if(t){for(t.player=k,t.parentNode&&t.parentNode.removeChild(t);t.hasChildNodes();)t.removeChild(t.firstChild);if(t.removeAttribute("src"),"function"==typeof t.load)try{t.load()}catch(e){}}},t.f=t.q.extend({i:function(e,i,o){t.q.call(this,e,i,o);var s=i.source;o=i.parentEl;var n=this.b=t.e("div",{id:e.id()+"_temp_flash"}),r=e.id()+"_flash_api",a=e.m,a=t.h.z({readyFunction:"videojs.Flash.onReady",eventProxyFunction:"videojs.Flash.onEvent",errorEventProxyFunction:"videojs.Flash.onError",autoplay:a.autoplay,preload:a.Ga,loop:a.loop,muted:a.muted},i.flashVars),c=t.h.z({wmode:"opaque",bgcolor:"#000000"},i.params),r=t.h.z({id:r,name:r,"class":"vjs-tech"},i.attributes);s&&this.H(function(){this.Uc(s)}),t.Jb(n,o),i.startTime&&this.H(function(){this.load(),this.play(),this.currentTime(i.startTime)}),t.jd&&this.H(function(){this.c("mousemove",function(){this.j().l({type:"mousemove",bubbles:l})})}),e.c("stageclick",e.reportUserActivity),this.b=t.f.wc(i.swf,n,a,c,r)}}),s=t.f.prototype,s.dispose=function(){t.q.prototype.dispose.call(this)},s.play=function(){this.b.vjs_play()},s.pause=function(){this.b.vjs_pause()},s.src=function(t){return t===b?this.currentSrc():this.ga(t)},s.ga=function(e){if(e=t.Jd(e),this.b.vjs_src(e),this.d.autoplay()){var i=this;this.setTimeout(function(){i.play()},0)}},t.f.prototype.setCurrentTime=function(e){this.Ud=e,this.b.vjs_setProperty("currentTime",e),t.q.prototype.Tb.call(this)},t.f.prototype.currentTime=function(){return this.seeking()?this.Ud||0:this.b.vjs_getProperty("currentTime")},t.f.prototype.currentSrc=function(){return this.sc?this.sc.src:this.b.vjs_getProperty("currentSrc")},t.f.prototype.load=function(){this.b.vjs_load()},t.f.prototype.poster=function(){this.b.vjs_getProperty("poster")},t.f.prototype.setPoster=m(),t.f.prototype.buffered=function(){return t.zb(0,this.b.vjs_getProperty("buffered"))},t.f.prototype.Ha=r(l),t.f.prototype.xc=r(l);var ka=t.f.prototype,W="rtmpConnection rtmpStream preload defaultPlaybackRate playbackRate autoplay loop mediaGroup controller controls volume muted defaultMuted".split(" "),ma="error networkState readyState seeking initialTime duration startOffsetTime paused played seekable ended videoTracks audioTracks videoWidth videoHeight textTracks".split(" "),X;for(X=0;X'}),s=t.h.z({data:e,width:"100%",height:"100%"},s),t.h.X(s,function(t,e){a+=t+'="'+e+'" '}),'"+r+""},t.f.qe={"rtmp/mp4":"MP4","rtmp/flv":"FLV"},t.f.Le=function(t,e){return t+"&"+e},t.f.pe=function(t){var e={qc:"",Zc:""};if(!t)return e;var i,o=t.indexOf("&");return-1!==o?i=o+1:(o=i=t.lastIndexOf("/")+1,0===o&&(o=i=t.length)),e.qc=t.substring(0,o),e.Zc=t.substring(i,t.length),e},t.f.Rd=function(e){return e in t.f.qe},t.f.qd=/^rtmp[set]?:\/\//i,t.f.Qd=function(e){return t.f.qd.test(e)},t.f.Sb={},t.f.Sb.Sa=function(e){return t.f.Rd(e.type)||t.f.Qd(e.src)?"maybe":""},t.f.Sb.Ib=function(e,i){var o=t.f.pe(e.src);i.Je(o.qc),i.Ke(o.Zc)},t.f.Rb(t.f.Sb),t.pd=t.a.extend({i:function(e,i,o){if(t.a.call(this,e,i,o),e.m.sources&&0!==e.m.sources.length)e.src(e.m.sources);else for(i=0,o=e.m.techOrder;io;o++)if(i=t.trim(e[o])){for(-1==i.indexOf("-->")?(s=i,i=t.trim(e[++o])):s=this.ca.length,s={id:s,index:this.ca.length},n=i.split(/[\t ]+/),s.startTime=pa(n[0]),s.Aa=pa(n[2]),n=[];e[++o]&&(i=t.trim(e[o]));)n.push(i);s.text=n.join("
      "),this.ca.push(s)}this.qa=2,this.l("loaded")}})))},s.update=function(){if(0=this.Za||this.Za===b?s=this.Fb!==b?this.Fb:0:(c=f,s=this.Mb!==b?this.Mb:n.length-1);;){if(o=n[s],o.Aa<=t)a=Math.max(a,o.Aa),o.Qa&&(o.Qa=l);else if(tt;t++)i+=''+e[t].text+"";this.b.innerHTML=i,this.l("cuechange")}}},s.reset=function(){this.Za=0,this.Qb=this.d.duration(),this.Mb=this.Fb=0},t.Zb=t.B.extend(),t.Zb.prototype.G="captions",t.hc=t.B.extend(),t.hc.prototype.G="subtitles",t.$b=t.B.extend(),t.$b.prototype.G="chapters",t.jc=t.a.extend({i:function(e,i,o){if(t.a.call(this,e,i,o),e.m.tracks&&0i;i++)t=e[i],t.L()==this.ha.L()&&2==t.mode()&&(s=l);this.selected(s)},t.T=t.M.extend({i:function(e,i){t.M.call(this,e,i),1>=this.P.length&&this.Y()}}),t.T.prototype.ya=function(){var e,i=[];i.push(new t.ob(this.d,{kind:this.G}));for(var o=0;os;s++)if(e=o[s],e.L()==this.G){if(0!==e.readyState()){i=e;break}e.load(),e.c("loaded",t.bind(this,this.za))}if(o=this.Da,o===b&&(o=new t.ja(this.d),o.la().appendChild(t.e("li",{className:"vjs-menu-title",innerHTML:t.ba(this.G),re:-1}))),i){e=i.ca;for(var a,s=0,n=e.length;n>s;s++)a=e[s],a=new t.ib(this.d,{track:i,cue:a}),r.push(a),o.U(a);this.U(o)}return 0o;o++)n.push(e[o]);if(i&&0o;o++)n.push(i[o]);if(n&&0o;o++){if(!(i=n[o])||!i.getAttribute){t.wb();break}i.player===b&&(e=i.getAttribute("data-setup"),e!==k&&videojs(i))}else t.cd||t.wb()},t.wb=function(){setTimeout(t.nc,1)},"complete"===document.readyState?t.cd=f:t.Q(window,"load",function(){t.cd=f}),t.wb(),t.ge=function(e,i){t.Player.prototype[e]=i};var qa=this;$("videojs",t),$("_V_",t),$("videojs.options",t.options),$("videojs.players",t.Fa),$("videojs.TOUCH_ENABLED",t.ic),$("videojs.cache",t.xa),$("videojs.Component",t.a),t.a.prototype.player=t.a.prototype.j,t.a.prototype.options=t.a.prototype.options,t.a.prototype.init=t.a.prototype.i,t.a.prototype.dispose=t.a.prototype.dispose,t.a.prototype.createEl=t.a.prototype.e,t.a.prototype.contentEl=t.a.prototype.la,t.a.prototype.el=t.a.prototype.w,t.a.prototype.addChild=t.a.prototype.U,t.a.prototype.getChild=t.a.prototype.ma,t.a.prototype.getChildById=t.a.prototype.Kd,t.a.prototype.children=t.a.prototype.children,t.a.prototype.initChildren=t.a.prototype.Dc,t.a.prototype.removeChild=t.a.prototype.removeChild,t.a.prototype.on=t.a.prototype.c,t.a.prototype.off=t.a.prototype.k,t.a.prototype.one=t.a.prototype.Q,t.a.prototype.trigger=t.a.prototype.l,t.a.prototype.triggerReady=t.a.prototype.Ja,t.a.prototype.show=t.a.prototype.show,t.a.prototype.hide=t.a.prototype.Y,t.a.prototype.width=t.a.prototype.width,t.a.prototype.height=t.a.prototype.height,t.a.prototype.dimensions=t.a.prototype.Dd,t.a.prototype.ready=t.a.prototype.H,t.a.prototype.addClass=t.a.prototype.n,t.a.prototype.removeClass=t.a.prototype.r,t.a.prototype.buildCSSClass=t.a.prototype.S,t.a.prototype.localize=t.a.prototype.t,t.a.prototype.setInterval=t.a.prototype.setInterval,t.a.prototype.setTimeout=t.a.prototype.setTimeout,t.Player.prototype.ended=t.Player.prototype.ended,t.Player.prototype.enterFullWindow=t.Player.prototype.yc,t.Player.prototype.exitFullWindow=t.Player.prototype.Db,t.Player.prototype.preload=t.Player.prototype.Ga,t.Player.prototype.remainingTime=t.Player.prototype.remainingTime,t.Player.prototype.supportsFullScreen=t.Player.prototype.Ha,t.Player.prototype.currentType=t.Player.prototype.zd,t.Player.prototype.requestFullScreen=t.Player.prototype.requestFullScreen,t.Player.prototype.requestFullscreen=t.Player.prototype.requestFullscreen,t.Player.prototype.cancelFullScreen=t.Player.prototype.cancelFullScreen,t.Player.prototype.exitFullscreen=t.Player.prototype.exitFullscreen,t.Player.prototype.isFullScreen=t.Player.prototype.isFullScreen,t.Player.prototype.isFullscreen=t.Player.prototype.isFullscreen,$("videojs.MediaLoader",t.pd),$("videojs.TextTrackDisplay",t.jc),$("videojs.ControlBar",t.Ma),$("videojs.Button",t.u),$("videojs.PlayToggle",t.dc),$("videojs.FullscreenToggle",t.Na),$("videojs.BigPlayButton",t.hb),$("videojs.LoadingSpinner",t.bc),$("videojs.CurrentTimeDisplay",t.jb),$("videojs.DurationDisplay",t.kb),$("videojs.TimeDivider",t.kc),$("videojs.RemainingTimeDisplay",t.rb),$("videojs.LiveDisplay",t.ac),$("videojs.ErrorDisplay",t.lb),$("videojs.Slider",t.R),$("videojs.ProgressControl",t.qb),$("videojs.SeekBar",t.gc),$("videojs.LoadProgressBar",t.nb),$("videojs.PlayProgressBar",t.cc),$("videojs.SeekHandle",t.Oa),$("videojs.VolumeControl",t.tb),$("videojs.VolumeBar",t.sb),$("videojs.VolumeLevel",t.lc),$("videojs.VolumeMenuButton",t.ua),$("videojs.VolumeHandle",t.ub),$("videojs.MuteToggle",t.ka),$("videojs.PosterImage",t.fc),$("videojs.Menu",t.ja),$("videojs.MenuItem",t.J),$("videojs.MenuButton",t.M),$("videojs.PlaybackRateMenuButton",t.ec),t.M.prototype.createItems=t.M.prototype.ya,t.T.prototype.createItems=t.T.prototype.ya,t.La.prototype.createItems=t.La.prototype.ya,$("videojs.SubtitlesButton",t.Pa),$("videojs.CaptionsButton",t.Ka),$("videojs.ChaptersButton",t.La),$("videojs.MediaTechController",t.q),t.q.prototype.featuresVolumeControl=t.q.prototype.Ge,t.q.prototype.featuresFullscreenResize=t.q.prototype.Ce,t.q.prototype.featuresPlaybackRate=t.q.prototype.De,t.q.prototype.featuresProgressEvents=t.q.prototype.Ee,t.q.prototype.featuresTimeupdateEvents=t.q.prototype.Fe,t.q.prototype.setPoster=t.q.prototype.Tc,$("videojs.Html5",t.g),t.g.Events=t.g.mb,t.g.isSupported=t.g.isSupported,t.g.canPlaySource=t.g.oc,t.g.patchCanPlayType=t.g.Kc,t.g.unpatchCanPlayType=t.g.we,t.g.prototype.setCurrentTime=t.g.prototype.Tb,t.g.prototype.setVolume=t.g.prototype.oe,t.g.prototype.setMuted=t.g.prototype.le,t.g.prototype.setPreload=t.g.prototype.ne,t.g.prototype.setAutoplay=t.g.prototype.ie,t.g.prototype.setLoop=t.g.prototype.ke,t.g.prototype.enterFullScreen=t.g.prototype.xc,t.g.prototype.exitFullScreen=t.g.prototype.Gd,t.g.prototype.playbackRate=t.g.prototype.playbackRate,t.g.prototype.setPlaybackRate=t.g.prototype.me,$("videojs.Flash",t.f),t.f.isSupported=t.f.isSupported,t.f.canPlaySource=t.f.oc,t.f.onReady=t.f.onReady,t.f.embed=t.f.wc,t.f.version=t.f.version,$("videojs.TextTrack",t.B),t.B.prototype.label=t.B.prototype.label,t.B.prototype.kind=t.B.prototype.L,t.B.prototype.mode=t.B.prototype.mode,t.B.prototype.cues=t.B.prototype.yd,t.B.prototype.activeCues=t.B.prototype.rd,$("videojs.CaptionsTrack",t.Zb),$("videojs.SubtitlesTrack",t.hc),$("videojs.ChaptersTrack",t.$b),$("videojs.autoSetup",t.nc),$("videojs.plugin",t.ge),$("videojs.createTimeRange",t.zb),$("videojs.util",t.Z),t.Z.mergeOptions=t.Z.Ea,t.addLanguage=t.sd}(),!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery","videojs","imagesloaded","jquery-ui"],t):t(jQuery,videojs)}(function(t,e){t.BigVideo=function(i){function o(){var e=C.container.outerWidth()t("body").css("height","auto").height()?"100%":"auto"),g>o?"video"==h?(d.width(i*g).height(i),C.shrinkable?t(v).css("top",-(e/g-i)/2).css("left",0).css("height",e/g):t(v).css("top",0).css("left",-(i*g-e)/2).css("height",i),t(v+"_html5_api").css("width",i*g).css("height",i),t(v+"_flash_api").css("width",i*g).css("height",i)):t("#big-video-image").css({width:"auto",height:i,top:0,left:-(i*g-e)/2}):"video"==h?(d.width(e).height(e/g),t(v).css("top",-(e/g-i)/2).css("left",0).css("height",e/g),t(v+"_html5_api").css("width",t(v+"_html5_api").parent().width()+"px").css("height","auto"),t(v+"_flash_api").css("width",e).css("height",e/g)):t("#big-video-image").css({width:e,height:"auto",top:-(e/g-i)/2,left:0})}function s(){var e='
      ';C.container.append(e),t("#big-video-control-container").css("display","none"),t("#big-video-control-timer").css("display","none"),t("#big-video-control-track").slider({animate:!0,step:.01,slide:function(e,i){S=!0,t("#big-video-control-progress").css("width",i.value-.16+"%"),d.currentTime(i.value/100*d.duration())},stop:function(t,e){S=!1,d.currentTime(e.value/100*d.duration())}}),t("#big-video-control-bar").click(function(e){d.currentTime(e.offsetX/t(this).width()*d.duration())}),t("#big-video-control-play").click(function(t){t.preventDefault(),n("toggle")}),d.on("timeupdate",function(){if(!S&&d.currentTime()/d.duration()){var e=d.currentTime(),i=Math.floor(e/60),o=Math.floor(e)-60*i;10>o&&(o="0"+o);var s=d.currentTime()/d.duration()*100;t("#big-video-control-track").slider("value",s),t("#big-video-control-progress").css("width",s-.16+"%"),t("#big-video-control-timer").text(i+":"+o+"/"+y)}})}function n(e){var i=e||"toggle";"toggle"==i&&(i=k?"pause":"play"),"pause"==i?(d.pause(),t("#big-video-control-play").css("background-position","-16px"),k=!1):"play"==i?(d.play(),t("#big-video-control-play").css("background-position","0"),k=!0):"skip"==i&&a()}function r(){d.play(),C.container.off("click",r)}function a(){u++,u===_.length&&(u=0),l(_[u])}function l(e){t(v).css("display","block"),h="video",d.src(e),k=!0,x?(t("#big-video-control-container").css("display","none"),d.ready(function(){d.volume(0)}),doLoop=!0):(t("#big-video-control-container").css("display","block"),d.ready(function(){d.volume(b)}),doLoop=!1),t("#big-video-image").css("display","none"),t(v).css("display","block")}function c(e){t("#big-video-image").remove(),d.pause(),t(v).css("display","none"),t("#big-video-control-container").css("display","none"),h="image";var i=t('
      '),g=(t(""),16/9),y=0,b=.8,w=!1,S=!1,k=!1,T=!1,x=!1,_=[],C=t.extend({},p,i);f.init=function(){if(!w){C.container.prepend(m);var i=C.forceAutoplay?"autoplay":"";d=t('"),d.css("position","absolute"),m.append(d);var n=["html5","flash"],l=navigator.userAgent.toLowerCase(),c=-1!=l.indexOf("firefox");C.useFlashForFirefox&&c&&(n=["flash","html5"]),d=e(v.substr(1),{controls:!1,autoplay:!0,preload:"auto",techOrder:n}),C.controls&&s(),o(),w=!0,k=!1,C.forceAutoplay&&t("body").on("click",r),t("#big-video-vid_flash_api").attr("scale","noborder").attr("width","100%").attr("height","100%"),t(window).on("resize.bigvideo",function(){o()}),d.on("loadedmetadata",function(){g=document.getElementById("big-video-vid_flash_api")?document.getElementById("big-video-vid_flash_api").vjs_getProperty("videoWidth")/document.getElementById("big-video-vid_flash_api").vjs_getProperty("videoHeight"):t("#big-video-vid_html5_api").prop("videoWidth")/t("#big-video-vid_html5_api").prop("videoHeight"),o();var e=Math.round(d.duration()),i=Math.floor(e/60),s=e-60*i;10>s&&(s="0"+s),y=i+":"+s}),d.on("ended",function(){C.doLoop&&(d.currentTime(0),d.play()),T&&a()})}},f.show=function(e,i){if(void 0===i&&(i={}),x=i.ambient===!0,(x||i.doLoop)&&(C.doLoop=!0),"string"==typeof e){var o=e.lastIndexOf("?")>0?e.substring(e.lastIndexOf(".")+1,e.lastIndexOf("?")):e.substring(e.lastIndexOf(".")+1);"jpg"==o||"gif"==o||"png"==o?c(e):("mp4"==o||"ogg"==o||"ogv"==o||"webm"==o)&&(l(e),i.onShown&&i.onShown(),T=!1)}else if(t.isArray(e))l(e);else{if("object"!=typeof e||!e.src||!e.type)throw"BigVideo.show received invalid input for parameter source";l([e])}},f.showPlaylist=function(e,i){if(!t.isArray(e))throw"BigVideo.showPlaylist parameter files accepts only arrays";void 0===i&&(i={}),x=i.ambient===!0,(x||i.doLoop)&&(C.doLoop=!0),_=e,u=0,this.show(_[u]),i.onShown&&i.onShown(),T=!0},f.getPlayer=function(){return d},f.remove=f.dispose=function(){w=!1,m.remove(),t(window).off("resize.bigvideo"),d&&(d.off("loadedmetadata"),d.off("ended"),d.dispose())},f.triggerPlayer=function(t){n(t)}}}),!function(t,e,i){!function(e){var o="function"==typeof define&&define.amd,s="https:"==i.location.protocol?"https:":"http:",n="cdnjs.cloudflare.com/ajax/libs/jquery-mousewheel/3.1.12/jquery.mousewheel.min.js";o||t.event.special.mousewheel||t("head").append(decodeURI("%3Cscript src="+s+"//"+n+"%3E%3C/script%3E")),e()}(function(){var o="mCustomScrollbar",s="mCS",n=".mCustomScrollbar",r={setTop:0,setLeft:0,axis:"y",scrollbarPosition:"inside",scrollInertia:950,autoDraggerLength:!0,alwaysShowScrollbar:0,snapOffset:0,mouseWheel:{enable:!0,scrollAmount:"auto",axis:"y",deltaFactor:"auto",disableOver:["select","option","keygen","datalist","textarea"]},scrollButtons:{scrollType:"stepless",scrollAmount:"auto"},keyboard:{enable:!0,scrollType:"stepless",scrollAmount:"auto"},contentTouchScroll:25,advanced:{autoScrollOnFocus:"input,textarea,select,button,datalist,keygen,a[tabindex],area,object,[contenteditable='true']",updateOnContentResize:!0,updateOnImageLoad:!0},theme:"light",callbacks:{onTotalScrollOffset:0,onTotalScrollBackOffset:0,alwaysTriggerOffsets:!0}},a=0,l={},c=e.attachEvent&&!e.addEventListener?1:0,d=!1,u=["mCSB_dragger_onDrag","mCSB_scrollTools_onDrag","mCS_img_loaded","mCS_disabled","mCS_destroyed","mCS_no_scrollbar","mCS-autoHide","mCS-dir-rtl","mCS_no_scrollbar_y","mCS_no_scrollbar_x","mCS_y_hidden","mCS_x_hidden","mCSB_draggerContainer","mCSB_buttonUp","mCSB_buttonDown","mCSB_buttonLeft","mCSB_buttonRight"],h={init:function(e){var e=t.extend(!0,{},r,e),i=p.call(this); if(e.live){var o=e.liveSelector||this.selector||n,c=t(o);if("off"===e.live)return void v(o);l[o]=setTimeout(function(){c.mCustomScrollbar(e),"once"===e.live&&c.length&&v(o)},500)}else v(o);return e.setWidth=e.set_width?e.set_width:e.setWidth,e.setHeight=e.set_height?e.set_height:e.setHeight,e.axis=e.horizontalScroll?"x":m(e.axis),e.scrollInertia=e.scrollInertia>0&&e.scrollInertia<17?17:e.scrollInertia,"object"!=typeof e.mouseWheel&&1==e.mouseWheel&&(e.mouseWheel={enable:!0,scrollAmount:"auto",axis:"y",preventDefault:!1,deltaFactor:"auto",normalizeDelta:!1,invert:!1}),e.mouseWheel.scrollAmount=e.mouseWheelPixels?e.mouseWheelPixels:e.mouseWheel.scrollAmount,e.mouseWheel.normalizeDelta=e.advanced.normalizeMouseWheelDelta?e.advanced.normalizeMouseWheelDelta:e.mouseWheel.normalizeDelta,e.scrollButtons.scrollType=g(e.scrollButtons.scrollType),f(e),t(i).each(function(){var i=t(this);if(!i.data(s)){i.data(s,{idx:++a,opt:e,scrollRatio:{y:null,x:null},overflowed:null,contentReset:{y:null,x:null},bindEvents:!1,tweenRunning:!1,sequential:{},langDir:i.css("direction"),cbOffsets:null,trigger:null});var o=i.data(s),n=o.opt,r=i.data("mcs-axis"),l=i.data("mcs-scrollbar-position"),c=i.data("mcs-theme");r&&(n.axis=r),l&&(n.scrollbarPosition=l),c&&(n.theme=c,f(n)),y.call(this),t("#mCSB_"+o.idx+"_container img:not(."+u[2]+")").addClass(u[2]),h.update.call(null,i)}})},update:function(e,i){var o=e||p.call(this);return t(o).each(function(){var e=t(this);if(e.data(s)){var o=e.data(s),n=o.opt,r=t("#mCSB_"+o.idx+"_container"),a=[t("#mCSB_"+o.idx+"_dragger_vertical"),t("#mCSB_"+o.idx+"_dragger_horizontal")];if(!r.length)return;o.tweenRunning&&U(e),e.hasClass(u[3])&&e.removeClass(u[3]),e.hasClass(u[4])&&e.removeClass(u[4]),k.call(this),w.call(this),"y"===n.axis||n.advanced.autoExpandHorizontalScroll||r.css("width",b(r.children())),o.overflowed=C.call(this),$.call(this),n.autoDraggerLength&&T.call(this),x.call(this),O.call(this);var l=[Math.abs(r[0].offsetTop),Math.abs(r[0].offsetLeft)];"x"!==n.axis&&(o.overflowed[0]?a[0].height()>a[0].parent().height()?j.call(this):(Y(e,l[0].toString(),{dir:"y",dur:0,overwrite:"none"}),o.contentReset.y=null):(j.call(this),"y"===n.axis?P.call(this):"yx"===n.axis&&o.overflowed[1]&&Y(e,l[1].toString(),{dir:"x",dur:0,overwrite:"none"}))),"y"!==n.axis&&(o.overflowed[1]?a[1].width()>a[1].parent().width()?j.call(this):(Y(e,l[1].toString(),{dir:"x",dur:0,overwrite:"none"}),o.contentReset.x=null):(j.call(this),"x"===n.axis?P.call(this):"yx"===n.axis&&o.overflowed[0]&&Y(e,l[0].toString(),{dir:"y",dur:0,overwrite:"none"}))),i&&o&&(2===i&&n.callbacks.onImageLoad&&"function"==typeof n.callbacks.onImageLoad?n.callbacks.onImageLoad.call(this):3===i&&n.callbacks.onSelectorChange&&"function"==typeof n.callbacks.onSelectorChange?n.callbacks.onSelectorChange.call(this):n.callbacks.onUpdate&&"function"==typeof n.callbacks.onUpdate&&n.callbacks.onUpdate.call(this)),V.call(this)}})},scrollTo:function(e,i){if("undefined"!=typeof e&&null!=e){var o=p.call(this);return t(o).each(function(){var o=t(this);if(o.data(s)){var n=o.data(s),r=n.opt,a={trigger:"external",scrollInertia:r.scrollInertia,scrollEasing:"mcsEaseInOut",moveDragger:!1,timeout:60,callbacks:!0,onStart:!0,onUpdate:!0,onComplete:!0},l=t.extend(!0,{},a,i),c=W.call(this,e),d=l.scrollInertia>0&&l.scrollInertia<17?17:l.scrollInertia;c[0]=q.call(this,c[0],"y"),c[1]=q.call(this,c[1],"x"),l.moveDragger&&(c[0]*=n.scrollRatio.y,c[1]*=n.scrollRatio.x),l.dur=d,setTimeout(function(){null!==c[0]&&"undefined"!=typeof c[0]&&"x"!==r.axis&&n.overflowed[0]&&(l.dir="y",l.overwrite="all",Y(o,c[0].toString(),l)),null!==c[1]&&"undefined"!=typeof c[1]&&"y"!==r.axis&&n.overflowed[1]&&(l.dir="x",l.overwrite="none",Y(o,c[1].toString(),l))},l.timeout)}})}},stop:function(){var e=p.call(this);return t(e).each(function(){var e=t(this);e.data(s)&&U(e)})},disable:function(e){var i=p.call(this);return t(i).each(function(){var i=t(this);i.data(s)&&(i.data(s),V.call(this,"remove"),P.call(this),e&&j.call(this),$.call(this,!0),i.addClass(u[3]))})},destroy:function(){var e=p.call(this);return t(e).each(function(){var i=t(this);if(i.data(s)){var n=i.data(s),r=n.opt,a=t("#mCSB_"+n.idx),l=t("#mCSB_"+n.idx+"_container"),c=t(".mCSB_"+n.idx+"_scrollbar");r.live&&v(r.liveSelector||t(e).selector),V.call(this,"remove"),P.call(this),j.call(this),i.removeData(s),G(this,"mcs"),c.remove(),l.find("img."+u[2]).removeClass(u[2]),a.replaceWith(l.contents()),i.removeClass(o+" _"+s+"_"+n.idx+" "+u[6]+" "+u[7]+" "+u[5]+" "+u[3]).addClass(u[4])}})}},p=function(){return"object"!=typeof t(this)||t(this).length<1?n:this},f=function(e){var i=["rounded","rounded-dark","rounded-dots","rounded-dots-dark"],o=["rounded-dots","rounded-dots-dark","3d","3d-dark","3d-thick","3d-thick-dark","inset","inset-dark","inset-2","inset-2-dark","inset-3","inset-3-dark"],s=["minimal","minimal-dark"],n=["minimal","minimal-dark"],r=["minimal","minimal-dark"];e.autoDraggerLength=t.inArray(e.theme,i)>-1?!1:e.autoDraggerLength,e.autoExpandScrollbar=t.inArray(e.theme,o)>-1?!1:e.autoExpandScrollbar,e.scrollButtons.enable=t.inArray(e.theme,s)>-1?!1:e.scrollButtons.enable,e.autoHideScrollbar=t.inArray(e.theme,n)>-1?!0:e.autoHideScrollbar,e.scrollbarPosition=t.inArray(e.theme,r)>-1?"outside":e.scrollbarPosition},v=function(t){l[t]&&(clearTimeout(l[t]),G(l,t))},m=function(t){return"yx"===t||"xy"===t||"auto"===t?"yx":"x"===t||"horizontal"===t?"x":"y"},g=function(t){return"stepped"===t||"pixels"===t||"step"===t||"click"===t?"stepped":"stepless"},y=function(){var e=t(this),i=e.data(s),n=i.opt,r=n.autoExpandScrollbar?" "+u[1]+"_expand":"",a=["
      ","
      "],l="yx"===n.axis?"mCSB_vertical_horizontal":"x"===n.axis?"mCSB_horizontal":"mCSB_vertical",c="yx"===n.axis?a[0]+a[1]:"x"===n.axis?a[1]:a[0],d="yx"===n.axis?"
      ":"",h=n.autoHideScrollbar?" "+u[6]:"",p="x"!==n.axis&&"rtl"===i.langDir?" "+u[7]:"";n.setWidth&&e.css("width",n.setWidth),n.setHeight&&e.css("height",n.setHeight),n.setLeft="y"!==n.axis&&"rtl"===i.langDir?"989999px":n.setLeft,e.addClass(o+" _"+s+"_"+i.idx+h+p).wrapInner("
      ");var f=t("#mCSB_"+i.idx),v=t("#mCSB_"+i.idx+"_container");"y"===n.axis||n.advanced.autoExpandHorizontalScroll||v.css("width",b(v.children())),"outside"===n.scrollbarPosition?("static"===e.css("position")&&e.css("position","relative"),e.css("overflow","visible"),f.addClass("mCSB_outside").after(c)):(f.addClass("mCSB_inside").append(c),v.wrap(d)),S.call(this);var m=[t("#mCSB_"+i.idx+"_dragger_vertical"),t("#mCSB_"+i.idx+"_dragger_horizontal")];m[0].css("min-height",m[0].height()),m[1].css("min-width",m[1].width())},b=function(e){return Math.max.apply(Math,e.map(function(){return t(this).outerWidth(!0)}).get())},w=function(){var e=t(this),i=e.data(s),o=i.opt,n=t("#mCSB_"+i.idx+"_container");o.advanced.autoExpandHorizontalScroll&&"y"!==o.axis&&n.css({position:"absolute",width:"auto"}).wrap("
      ").css({width:Math.ceil(n[0].getBoundingClientRect().right+.4)-Math.floor(n[0].getBoundingClientRect().left),position:"relative"}).unwrap()},S=function(){var e=t(this),i=e.data(s),o=i.opt,n=t(".mCSB_"+i.idx+"_scrollbar:first"),r=ee(o.scrollButtons.tabindex)?"tabindex='"+o.scrollButtons.tabindex+"'":"",a=["","","",""],l=["x"===o.axis?a[2]:a[0],"x"===o.axis?a[3]:a[1],a[2],a[3]];o.scrollButtons.enable&&n.prepend(l[0]).append(l[1]).next(".mCSB_scrollTools").prepend(l[2]).append(l[3])},k=function(){var e=t(this),i=e.data(s),o=t("#mCSB_"+i.idx),n=e.css("max-height")||"none",r=-1!==n.indexOf("%"),a=e.css("box-sizing");if("none"!==n){var l=r?e.parent().height()*parseInt(n)/100:parseInt(n);"border-box"===a&&(l-=e.innerHeight()-e.height()+(e.outerHeight()-e.innerHeight())),o.css("max-height",Math.round(l))}},T=function(){var e=t(this),i=e.data(s),o=t("#mCSB_"+i.idx),n=t("#mCSB_"+i.idx+"_container"),r=[t("#mCSB_"+i.idx+"_dragger_vertical"),t("#mCSB_"+i.idx+"_dragger_horizontal")],a=[o.height()/n.outerHeight(!1),o.width()/n.outerWidth(!1)],l=[parseInt(r[0].css("min-height")),Math.round(a[0]*r[0].parent().height()),parseInt(r[1].css("min-width")),Math.round(a[1]*r[1].parent().width())],d=c&&l[1]o.height(),a>o.width()]},j=function(){var e=t(this),i=e.data(s),o=i.opt,n=t("#mCSB_"+i.idx),r=t("#mCSB_"+i.idx+"_container"),a=[t("#mCSB_"+i.idx+"_dragger_vertical"),t("#mCSB_"+i.idx+"_dragger_horizontal")];if(U(e),("x"!==o.axis&&!i.overflowed[0]||"y"===o.axis&&i.overflowed[0])&&(a[0].add(r).css("top",0),Y(e,"_resetY")),"y"!==o.axis&&!i.overflowed[1]||"x"===o.axis&&i.overflowed[1]){var l=dx=0;"rtl"===i.langDir&&(l=n.width()-r.outerWidth(!1),dx=Math.abs(l/i.scrollRatio.x)),r.css("left",l),a[1].css("left",dx),Y(e,"_resetX")}},O=function(){function e(){r=setTimeout(function(){t.event.special.mousewheel?(clearTimeout(r),B.call(i[0])):e()},100)}var i=t(this),o=i.data(s),n=o.opt;if(!o.bindEvents){if(L.call(this),n.contentTouchScroll&&E.call(this),A.call(this),n.mouseWheel.enable){var r;e()}H.call(this),D.call(this),n.advanced.autoScrollOnFocus&&F.call(this),n.scrollButtons.enable&&z.call(this),n.keyboard.enable&&N.call(this),o.bindEvents=!0}},P=function(){var e=t(this),o=e.data(s),n=o.opt,r=s+"_"+o.idx,a=".mCSB_"+o.idx+"_scrollbar",l=t("#mCSB_"+o.idx+",#mCSB_"+o.idx+"_container,#mCSB_"+o.idx+"_container_wrapper,"+a+" ."+u[12]+",#mCSB_"+o.idx+"_dragger_vertical,#mCSB_"+o.idx+"_dragger_horizontal,"+a+">a"),c=t("#mCSB_"+o.idx+"_container");n.advanced.releaseDraggableSelectors&&l.add(t(n.advanced.releaseDraggableSelectors)),o.bindEvents&&(t(i).unbind("."+r),l.each(function(){t(this).unbind("."+r)}),clearTimeout(e[0]._focusTimeout),G(e[0],"_focusTimeout"),clearTimeout(o.sequential.step),G(o.sequential,"step"),clearTimeout(c[0].onCompleteTimeout),G(c[0],"onCompleteTimeout"),o.bindEvents=!1)},$=function(e){var i=t(this),o=i.data(s),n=o.opt,r=t("#mCSB_"+o.idx+"_container_wrapper"),a=r.length?r:t("#mCSB_"+o.idx+"_container"),l=[t("#mCSB_"+o.idx+"_scrollbar_vertical"),t("#mCSB_"+o.idx+"_scrollbar_horizontal")],c=[l[0].find(".mCSB_dragger"),l[1].find(".mCSB_dragger")];"x"!==n.axis&&(o.overflowed[0]&&!e?(l[0].add(c[0]).add(l[0].children("a")).css("display","block"),a.removeClass(u[8]+" "+u[10])):(n.alwaysShowScrollbar?(2!==n.alwaysShowScrollbar&&c[0].add(l[0].children("a")).css("display","none"),a.removeClass(u[10])):(l[0].css("display","none"),a.addClass(u[10])),a.addClass(u[8]))),"y"!==n.axis&&(o.overflowed[1]&&!e?(l[1].add(c[1]).add(l[1].children("a")).css("display","block"),a.removeClass(u[9]+" "+u[11])):(n.alwaysShowScrollbar?(2!==n.alwaysShowScrollbar&&c[1].add(l[1].children("a")).css("display","none"),a.removeClass(u[11])):(l[1].css("display","none"),a.addClass(u[11])),a.addClass(u[9]))),o.overflowed[0]||o.overflowed[1]?i.removeClass(u[5]):i.addClass(u[5])},M=function(t){var e=t.type;switch(e){case"pointerdown":case"MSPointerDown":case"pointermove":case"MSPointerMove":case"pointerup":case"MSPointerUp":return[t.originalEvent.pageY,t.originalEvent.pageX,!1];case"touchstart":case"touchmove":case"touchend":var i=t.originalEvent.touches[0]||t.originalEvent.changedTouches[0],o=t.originalEvent.touches.length||t.originalEvent.changedTouches.length;return[i.pageY,i.pageX,o>1];default:return[t.pageY,t.pageX,!1]}},L=function(){function e(t){var e=v.find("iframe");if(e.length){var i=t?"auto":"none";e.css("pointer-events",i)}}function o(t,e,i,o){if(v[0].idleTimer=h.scrollInertia<233?250:0,n.attr("id")===f[1])var s="x",r=(n[0].offsetLeft-e+o)*u.scrollRatio.x;else var s="y",r=(n[0].offsetTop-t+i)*u.scrollRatio.y;Y(l,r.toString(),{dir:s,drag:!0})}var n,r,a,l=t(this),u=l.data(s),h=u.opt,p=s+"_"+u.idx,f=["mCSB_"+u.idx+"_dragger_vertical","mCSB_"+u.idx+"_dragger_horizontal"],v=t("#mCSB_"+u.idx+"_container"),m=t("#"+f[0]+",#"+f[1]),g=h.advanced.releaseDraggableSelectors?m.add(t(h.advanced.releaseDraggableSelectors)):m;m.bind("mousedown."+p+" touchstart."+p+" pointerdown."+p+" MSPointerDown."+p,function(o){if(o.stopImmediatePropagation(),o.preventDefault(),Z(o)){d=!0,c&&(i.onselectstart=function(){return!1}),e(!1),U(l),n=t(this);var s=n.offset(),u=M(o)[0]-s.top,p=M(o)[1]-s.left,f=n.height()+s.top,v=n.width()+s.left;f>u&&u>0&&v>p&&p>0&&(r=u,a=p),_(n,"active",h.autoExpandScrollbar)}}).bind("touchmove."+p,function(t){t.stopImmediatePropagation(),t.preventDefault();var e=n.offset(),i=M(t)[0]-e.top,s=M(t)[1]-e.left;o(r,a,i,s)}),t(i).bind("mousemove."+p+" pointermove."+p+" MSPointerMove."+p,function(t){if(n){var e=n.offset(),i=M(t)[0]-e.top,s=M(t)[1]-e.left;if(r===i)return;o(r,a,i,s)}}).add(g).bind("mouseup."+p+" touchend."+p+" pointerup."+p+" MSPointerUp."+p,function(){n&&(_(n,"active",h.autoExpandScrollbar),n=null),d=!1,c&&(i.onselectstart=null),e(!0)})},E=function(){function e(t,e){var i=[1.5*e,2*e,e/1.5,e/2];return t>90?e>4?i[0]:i[3]:t>60?e>3?i[3]:i[2]:t>30?e>8?i[1]:e>6?i[0]:e>4?e:i[2]:e>8?e:i[3]}function i(t,e,i,o,s,n){t&&Y(m,t.toString(),{dur:e,scrollEasing:i,dir:o,overwrite:s,drag:n})}var o,n,r,a,l,c,u,h,p,f,v,m=t(this),g=m.data(s),y=g.opt,b=s+"_"+g.idx,w=t("#mCSB_"+g.idx),S=t("#mCSB_"+g.idx+"_container"),k=[t("#mCSB_"+g.idx+"_dragger_vertical"),t("#mCSB_"+g.idx+"_dragger_horizontal")],T=[],x=[],_=0,C="yx"===y.axis?"none":"all",j=[];S.bind("touchstart."+b+" pointerdown."+b+" MSPointerDown."+b,function(t){if(te(t)&&!d&&!M(t)[2]){var e=S.offset();o=M(t)[0]-e.top,n=M(t)[1]-e.left,j=[M(t)[0],M(t)[1]]}}).bind("touchmove."+b+" pointermove."+b+" MSPointerMove."+b,function(t){if(te(t)&&!d&&!M(t)[2]){t.stopImmediatePropagation(),c=J();var e=w.offset(),s=M(t)[0]-e.top,r=M(t)[1]-e.left,a="mcsLinearOut";if(T.push(s),x.push(r),j[2]=Math.abs(M(t)[0]-j[0]),j[3]=Math.abs(M(t)[1]-j[1]),g.overflowed[0])var l=k[0].parent().height()-k[0].height(),u=o-s>0&&s-o>-(l*g.scrollRatio.y)&&(2*j[3]0&&r-n>-(h*g.scrollRatio.x)&&(2*j[2]30)){p=1e3/(u-l);var m="mcsEaseOut",b=2.5>p,k=b?[T[T.length-2],x[x.length-2]]:[0,0];h=b?[s-k[0],n-k[1]]:[s-r,n-a];var _=[Math.abs(h[0]),Math.abs(h[1])];p=b?[Math.abs(h[0]/4),Math.abs(h[1]/4)]:[p,p];var j=[Math.abs(S[0].offsetTop)-h[0]*e(_[0]/p[0],p[0]),Math.abs(S[0].offsetLeft)-h[1]*e(_[1]/p[1],p[1])];f="yx"===y.axis?[j[0],j[1]]:"x"===y.axis?[null,j[1]]:[j[0],null],v=[4*_[0]+y.scrollInertia,4*_[1]+y.scrollInertia];var O=parseInt(y.contentTouchScroll)||0;f[0]=_[0]>O?f[0]:0,f[1]=_[1]>O?f[1]:0,g.overflowed[0]&&i(f[0],v[0],m,"y",C,!1),g.overflowed[1]&&i(f[1],v[1],m,"x",C,!1)}}})},A=function(){function o(){return e.getSelection?e.getSelection().toString():i.selection&&"Control"!=i.selection.type?i.selection.createRange().text:0}function n(t,e,i){u.type=i&&r?"stepped":"stepless",u.scrollAmount=10,R(a,t,e,"mcsLinearOut",i?60:null)}var r,a=t(this),l=a.data(s),c=l.opt,u=l.sequential,h=s+"_"+l.idx,p=t("#mCSB_"+l.idx+"_container"),f=p.parent();p.bind("mousedown."+h,function(){r||(r=1,d=!0)}).add(i).bind("mousemove."+h,function(t){if(r&&o()){var e=p.offset(),i=M(t)[0]-e.top+p[0].offsetTop,s=M(t)[1]-e.left+p[0].offsetLeft;i>0&&i0&&si?n("on",38):i>f.height()&&n("on",40)),"y"!==c.axis&&l.overflowed[1]&&(0>s?n("on",37):s>f.width()&&n("on",39)))}}).bind("mouseup."+h,function(){r&&(r=0,n("off",null)),d=!1})},B=function(){function e(t){var e=null;try{var i=t.contentDocument||t.contentWindow.document;e=i.body.innerHTML}catch(o){}return null!==e}var i=t(this),o=i.data(s);if(o){var n=o.opt,r=s+"_"+o.idx,a=t("#mCSB_"+o.idx),l=[t("#mCSB_"+o.idx+"_dragger_vertical"),t("#mCSB_"+o.idx+"_dragger_horizontal")],d=t("#mCSB_"+o.idx+"_container").find("iframe"),u=a;d.length&&d.each(function(){var i=this;e(i)&&(u=u.add(t(i).contents().find("body")))}),u.bind("mousewheel."+r,function(e,s){if(U(i),!I(i,e.target)){var r="auto"!==n.mouseWheel.deltaFactor?parseInt(n.mouseWheel.deltaFactor):c&&e.deltaFactor<100?100:e.deltaFactor||100;if("x"===n.axis||"x"===n.mouseWheel.axis)var d="x",u=[Math.round(r*o.scrollRatio.x),parseInt(n.mouseWheel.scrollAmount)],h="auto"!==n.mouseWheel.scrollAmount?u[1]:u[0]>=a.width()?.9*a.width():u[0],p=Math.abs(t("#mCSB_"+o.idx+"_container")[0].offsetLeft),f=l[1][0].offsetLeft,v=l[1].parent().width()-l[1].width(),m=e.deltaX||e.deltaY||s;else var d="y",u=[Math.round(r*o.scrollRatio.y),parseInt(n.mouseWheel.scrollAmount)],h="auto"!==n.mouseWheel.scrollAmount?u[1]:u[0]>=a.height()?.9*a.height():u[0],p=Math.abs(t("#mCSB_"+o.idx+"_container")[0].offsetTop),f=l[0][0].offsetTop,v=l[0].parent().height()-l[0].height(),m=e.deltaY||s;"y"===d&&!o.overflowed[0]||"x"===d&&!o.overflowed[1]||(n.mouseWheel.invert&&(m=-m),n.mouseWheel.normalizeDelta&&(m=0>m?-1:1),(m>0&&0!==f||0>m&&f!==v||n.mouseWheel.preventDefault)&&(e.stopImmediatePropagation(),e.preventDefault()),Y(i,(p-m*h).toString(),{dir:d}))}})}},I=function(e,i){var o=i.nodeName.toLowerCase(),n=e.data(s).opt.mouseWheel.disableOver,r=["select","textarea"];return t.inArray(o,n)>-1&&!(t.inArray(o,r)>-1&&!t(i).is(":focus"))},H=function(){var e=t(this),i=e.data(s),o=s+"_"+i.idx,n=t("#mCSB_"+i.idx+"_container"),r=n.parent(),a=t(".mCSB_"+i.idx+"_scrollbar ."+u[12]);a.bind("touchstart."+o+" pointerdown."+o+" MSPointerDown."+o,function(){d=!0}).bind("touchend."+o+" pointerup."+o+" MSPointerUp."+o,function(){d=!1}).bind("click."+o,function(o){if(t(o.target).hasClass(u[12])||t(o.target).hasClass("mCSB_draggerRail")){U(e);var s=t(this),a=s.find(".mCSB_dragger");if(s.parent(".mCSB_scrollTools_horizontal").length>0){if(!i.overflowed[1])return;var l="x",c=o.pageX>a.offset().left?-1:1,d=Math.abs(n[0].offsetLeft)-.9*c*r.width()}else{if(!i.overflowed[0])return;var l="y",c=o.pageY>a.offset().top?-1:1,d=Math.abs(n[0].offsetTop)-.9*c*r.height()}Y(e,d.toString(),{dir:l,scrollEasing:"mcsEaseInOut"})}})},F=function(){var e=t(this),o=e.data(s),n=o.opt,r=s+"_"+o.idx,a=t("#mCSB_"+o.idx+"_container"),l=a.parent();a.bind("focusin."+r,function(){var o=t(i.activeElement),s=a.find(".mCustomScrollBox").length,r=0;o.is(n.advanced.autoScrollOnFocus)&&(U(e),clearTimeout(e[0]._focusTimeout),e[0]._focusTimer=s?(r+17)*s:0,e[0]._focusTimeout=setTimeout(function(){var t=[ie(o)[0],ie(o)[1]],i=[a[0].offsetTop,a[0].offsetLeft],s=[i[0]+t[0]>=0&&i[0]+t[0]=0&&i[0]+t[1]a");l.bind("mousedown."+r+" touchstart."+r+" pointerdown."+r+" MSPointerDown."+r+" mouseup."+r+" touchend."+r+" pointerup."+r+" MSPointerUp."+r+" mouseout."+r+" pointerout."+r+" MSPointerOut."+r+" click."+r,function(s){function r(t,i){n.scrollAmount=o.snapAmount||o.scrollButtons.scrollAmount,R(e,t,i)}if(s.preventDefault(),Z(s)){var a=t(this).attr("class");switch(n.type=o.scrollButtons.scrollType,s.type){case"mousedown":case"touchstart":case"pointerdown":case"MSPointerDown":if("stepped"===n.type)return;d=!0,i.tweenRunning=!1,r("on",a);break;case"mouseup":case"touchend":case"pointerup":case"MSPointerUp":case"mouseout":case"pointerout":case"MSPointerOut":if("stepped"===n.type)return;d=!1,n.dir&&r("off",a);break;case"click":if("stepped"!==n.type||i.tweenRunning)return;r("on",a)}}})},N=function(){var e=t(this),o=e.data(s),n=o.opt,r=o.sequential,a=s+"_"+o.idx,l=t("#mCSB_"+o.idx),c=t("#mCSB_"+o.idx+"_container"),d=c.parent(),u="input,textarea,select,datalist,keygen,[contenteditable='true']";l.attr("tabindex","0").bind("blur."+a+" keydown."+a+" keyup."+a,function(s){function a(t,i){r.type=n.keyboard.scrollType,r.scrollAmount=n.snapAmount||n.keyboard.scrollAmount,"stepped"===r.type&&o.tweenRunning||R(e,t,i)}switch(s.type){case"blur":o.tweenRunning&&r.dir&&a("off",null);break;case"keydown":case"keyup":var l=s.keyCode?s.keyCode:s.which,h="on";if("x"!==n.axis&&(38===l||40===l)||"y"!==n.axis&&(37===l||39===l)){if((38===l||40===l)&&!o.overflowed[0]||(37===l||39===l)&&!o.overflowed[1])return;"keyup"===s.type&&(h="off"),t(i.activeElement).is(u)||(s.preventDefault(),s.stopImmediatePropagation(),a(h,l))}else if(33===l||34===l){if((o.overflowed[0]||o.overflowed[1])&&(s.preventDefault(),s.stopImmediatePropagation()),"keyup"===s.type){U(e);var p=34===l?-1:1;if("x"===n.axis||"yx"===n.axis&&o.overflowed[1]&&!o.overflowed[0])var f="x",v=Math.abs(c[0].offsetLeft)-.9*p*d.width();else var f="y",v=Math.abs(c[0].offsetTop)-.9*p*d.height();Y(e,v.toString(),{dir:f,scrollEasing:"mcsEaseInOut"})}}else if((35===l||36===l)&&!t(i.activeElement).is(u)&&((o.overflowed[0]||o.overflowed[1])&&(s.preventDefault(),s.stopImmediatePropagation()),"keyup"===s.type)){if("x"===n.axis||"yx"===n.axis&&o.overflowed[1]&&!o.overflowed[0])var f="x",v=35===l?Math.abs(d.width()-c.outerWidth(!1)):0;else var f="y",v=35===l?Math.abs(d.height()-c.outerHeight(!1)):0;Y(e,v.toString(),{dir:f,scrollEasing:"mcsEaseInOut"})}}})},R=function(e,i,o,n,r){function a(t){var i="stepped"!==h.type,o=r?r:t?i?d.scrollInertia/1.5:d.scrollInertia:1e3/60,s=t?i?7.5:40:2.5,l=[Math.abs(p[0].offsetTop),Math.abs(p[0].offsetLeft)],u=[c.scrollRatio.y>10?10:c.scrollRatio.y,c.scrollRatio.x>10?10:c.scrollRatio.x],f="x"===h.dir[0]?l[1]+h.dir[1]*u[1]*s:l[0]+h.dir[1]*u[0]*s,v="x"===h.dir[0]?l[1]+h.dir[1]*parseInt(h.scrollAmount):l[0]+h.dir[1]*parseInt(h.scrollAmount),m="auto"!==h.scrollAmount?v:f,g=n?n:t?i?"mcsLinearOut":"mcsEaseInOut":"mcsLinear",y=t?!0:!1;return t&&17>o&&(m="x"===h.dir[0]?l[1]:l[0]),Y(e,m.toString(),{dir:h.dir[0],scrollEasing:g,dur:o,onComplete:y}),t?void(h.dir=!1):(clearTimeout(h.step),void(h.step=setTimeout(function(){a()},o)))}function l(){clearTimeout(h.step),G(h,"step"),U(e)}var c=e.data(s),d=c.opt,h=c.sequential,p=t("#mCSB_"+c.idx+"_container"),f="stepped"===h.type?!0:!1;switch(i){case"on":if(h.dir=[o===u[16]||o===u[15]||39===o||37===o?"x":"y",o===u[13]||o===u[15]||38===o||37===o?-1:1],U(e),ee(o)&&"stepped"===h.type)return;a(f);break;case"off":l(),(f||c.tweenRunning&&h.dir)&&a(!0)}},W=function(e){var i=t(this).data(s).opt,o=[];return"function"==typeof e&&(e=e()),e instanceof Array?o=e.length>1?[e[0],e[1]]:"x"===i.axis?[null,e[0]]:[e[0],null]:(o[0]=e.y?e.y:e.x||"x"===i.axis?null:e,o[1]=e.x?e.x:e.y||"y"===i.axis?null:e),"function"==typeof o[0]&&(o[0]=o[0]()),"function"==typeof o[1]&&(o[1]=o[1]()),o},q=function(e,i){if(null!=e&&"undefined"!=typeof e){var o=t(this),n=o.data(s),r=n.opt,a=t("#mCSB_"+n.idx+"_container"),l=a.parent(),c=typeof e;i||(i="x"===r.axis?"x":"y");var d="x"===i?a.outerWidth(!1):a.outerHeight(!1),u="x"===i?a[0].offsetLeft:a[0].offsetTop,p="x"===i?"left":"top";switch(c){case"function":return e();case"object":var f=e.jquery?e:t(e);if(!f.length)return;return"x"===i?ie(f)[1]:ie(f)[0];case"string":case"number":if(ee(e))return Math.abs(e);if(-1!==e.indexOf("%"))return Math.abs(d*parseInt(e)/100);if(-1!==e.indexOf("-="))return Math.abs(u-parseInt(e.split("-=")[1]));if(-1!==e.indexOf("+=")){var v=u+parseInt(e.split("+=")[1]);return v>=0?0:Math.abs(v)}if(-1!==e.indexOf("px")&&ee(e.split("px")[0]))return Math.abs(e.split("px")[0]);if("top"===e||"left"===e)return 0;if("bottom"===e)return Math.abs(l.height()-a.outerHeight(!1));if("right"===e)return Math.abs(l.width()-a.outerWidth(!1));if("first"===e||"last"===e){var f=a.find(":"+e);return"x"===i?ie(f)[1]:ie(f)[0]}return t(e).length?"x"===i?ie(t(e))[1]:ie(t(e))[0]:(a.css(p,e),void h.update.call(null,o[0]))}}},V=function(e){function i(){clearTimeout(p[0].autoUpdate),p[0].autoUpdate=setTimeout(function(){return d.advanced.updateOnSelectorChange&&(f=r(),f!==w)?(a(3),void(w=f)):(d.advanced.updateOnContentResize&&(v=[p.outerHeight(!1),p.outerWidth(!1),g.height(),g.width(),b()[0],b()[1]],(v[0]!==S[0]||v[1]!==S[1]||v[2]!==S[2]||v[3]!==S[3]||v[4]!==S[4]||v[5]!==S[5])&&(a(v[0]!==S[0]||v[1]!==S[1]),S=v)),d.advanced.updateOnImageLoad&&(m=o(),m!==k&&(p.find("img").each(function(){n(this)}),k=m)),void((d.advanced.updateOnSelectorChange||d.advanced.updateOnContentResize||d.advanced.updateOnImageLoad)&&i()))},60)}function o(){var t=0;return d.advanced.updateOnImageLoad&&(t=p.find("img").length),t}function n(e){function i(t,e){return function(){return e.apply(t,arguments)}}function o(){this.onload=null,t(e).addClass(u[2]),a(2)}if(t(e).hasClass(u[2]))return void a();var s=new Image;s.onload=i(s,o),s.src=e.src}function r(){d.advanced.updateOnSelectorChange===!0&&(d.advanced.updateOnSelectorChange="*");var e=0,i=p.find(d.advanced.updateOnSelectorChange);return d.advanced.updateOnSelectorChange&&i.length>0&&i.each(function(){e+=t(this).height()+t(this).width()}),e}function a(t){clearTimeout(p[0].autoUpdate),h.update.call(null,l[0],t)}var l=t(this),c=l.data(s),d=c.opt,p=t("#mCSB_"+c.idx+"_container");if(e)return clearTimeout(p[0].autoUpdate),void G(p[0],"autoUpdate");var f,v,m,g=p.parent(),y=[t("#mCSB_"+c.idx+"_scrollbar_vertical"),t("#mCSB_"+c.idx+"_scrollbar_horizontal")],b=function(){return[y[0].is(":visible")?y[0].outerHeight(!0):0,y[1].is(":visible")?y[1].outerWidth(!0):0]},w=r(),S=[p.outerHeight(!1),p.outerWidth(!1),g.height(),g.width(),b()[0],b()[1]],k=o();i()},X=function(t,e,i){return Math.round(t/e)*e-i},U=function(e){var i=e.data(s),o=t("#mCSB_"+i.idx+"_container,#mCSB_"+i.idx+"_container_wrapper,#mCSB_"+i.idx+"_dragger_vertical,#mCSB_"+i.idx+"_dragger_horizontal");o.each(function(){K.call(this)})},Y=function(e,i,o){function n(t){return l&&c.callbacks[t]&&"function"==typeof c.callbacks[t]}function r(){return[c.callbacks.alwaysTriggerOffsets||b>=w[0]+k,c.callbacks.alwaysTriggerOffsets||-T>=b]}function a(){var t=[p[0].offsetTop,p[0].offsetLeft],i=[g[0].offsetTop,g[0].offsetLeft],s=[p.outerHeight(!1),p.outerWidth(!1)],n=[h.height(),h.width()];e[0].mcs={content:p,top:t[0],left:t[1],draggerTop:i[0],draggerLeft:i[1],topPct:Math.round(100*Math.abs(t[0])/(Math.abs(s[0])-n[0])),leftPct:Math.round(100*Math.abs(t[1])/(Math.abs(s[1])-n[1])),direction:o.dir}}var l=e.data(s),c=l.opt,d={trigger:"internal",dir:"y",scrollEasing:"mcsEaseOut",drag:!1,dur:c.scrollInertia,overwrite:"all",callbacks:!0,onStart:!0,onUpdate:!0,onComplete:!0},o=t.extend(d,o),u=[o.dur,o.drag?0:o.dur],h=t("#mCSB_"+l.idx),p=t("#mCSB_"+l.idx+"_container"),f=p.parent(),v=c.callbacks.onTotalScrollOffset?W.call(e,c.callbacks.onTotalScrollOffset):[0,0],m=c.callbacks.onTotalScrollBackOffset?W.call(e,c.callbacks.onTotalScrollBackOffset):[0,0];if(l.trigger=o.trigger,(0!==f.scrollTop()||0!==f.scrollLeft())&&(t(".mCSB_"+l.idx+"_scrollbar").css("visibility","visible"),f.scrollTop(0).scrollLeft(0)),"_resetY"!==i||l.contentReset.y||(n("onOverflowYNone")&&c.callbacks.onOverflowYNone.call(e[0]),l.contentReset.y=1),"_resetX"!==i||l.contentReset.x||(n("onOverflowXNone")&&c.callbacks.onOverflowXNone.call(e[0]),l.contentReset.x=1),"_resetY"!==i&&"_resetX"!==i){switch(!l.contentReset.y&&e[0].mcs||!l.overflowed[0]||(n("onOverflowY")&&c.callbacks.onOverflowY.call(e[0]),l.contentReset.x=null),!l.contentReset.x&&e[0].mcs||!l.overflowed[1]||(n("onOverflowX")&&c.callbacks.onOverflowX.call(e[0]),l.contentReset.x=null),c.snapAmount&&(i=X(i,c.snapAmount,c.snapOffset)),o.dir){case"x":var g=t("#mCSB_"+l.idx+"_dragger_horizontal"),y="left",b=p[0].offsetLeft,w=[h.width()-p.outerWidth(!1),g.parent().width()-g.width()],S=[i,0===i?0:i/l.scrollRatio.x],k=v[1],T=m[1],x=k>0?k/l.scrollRatio.x:0,C=T>0?T/l.scrollRatio.x:0;break;case"y":var g=t("#mCSB_"+l.idx+"_dragger_vertical"),y="top",b=p[0].offsetTop,w=[h.height()-p.outerHeight(!1),g.parent().height()-g.height()],S=[i,0===i?0:i/l.scrollRatio.y],k=v[0],T=m[0],x=k>0?k/l.scrollRatio.y:0,C=T>0?T/l.scrollRatio.y:0}S[1]<0||0===S[0]&&0===S[1]?S=[0,0]:S[1]>=w[1]?S=[w[0],w[1]]:S[0]=-S[0],e[0].mcs||(a(),n("onInit")&&c.callbacks.onInit.call(e[0])),clearTimeout(p[0].onCompleteTimeout),(l.tweenRunning||!(0===b&&S[0]>=0||b===w[0]&&S[0]<=w[0]))&&(Q(g[0],y,Math.round(S[1]),u[1],o.scrollEasing),Q(p[0],y,Math.round(S[0]),u[0],o.scrollEasing,o.overwrite,{onStart:function(){o.callbacks&&o.onStart&&!l.tweenRunning&&(n("onScrollStart")&&(a(),c.callbacks.onScrollStart.call(e[0])),l.tweenRunning=!0,_(g),l.cbOffsets=r())},onUpdate:function(){o.callbacks&&o.onUpdate&&n("whileScrolling")&&(a(),c.callbacks.whileScrolling.call(e[0]))},onComplete:function(){if(o.callbacks&&o.onComplete){"yx"===c.axis&&clearTimeout(p[0].onCompleteTimeout);var t=p[0].idleTimer||0;p[0].onCompleteTimeout=setTimeout(function(){n("onScroll")&&(a(),c.callbacks.onScroll.call(e[0])),n("onTotalScroll")&&S[1]>=w[1]-x&&l.cbOffsets[0]&&(a(),c.callbacks.onTotalScroll.call(e[0])),n("onTotalScrollBack")&&S[1]<=C&&l.cbOffsets[1]&&(a(),c.callbacks.onTotalScrollBack.call(e[0])),l.tweenRunning=!1,p[0].idleTimer=0,_(g,"hide")},t)}}}))}},Q=function(t,i,o,s,n,r,a){function l(){k.stop||(b||v.call(),b=J()-y,c(),b>=k.time&&(k.time=b>k.time?b+p-(b-k.time):b+p-1,k.time0?(k.currVal=h(k.time,w,T,s,n),S[i]=Math.round(k.currVal)+"px"):S[i]=o+"px",m.call()}function d(){p=1e3/60,k.time=b+p,f=e.requestAnimationFrame?e.requestAnimationFrame:function(t){return c(),setTimeout(t,.01)},k.id=f(l)}function u(){null!=k.id&&(e.requestAnimationFrame?e.cancelAnimationFrame(k.id):clearTimeout(k.id),k.id=null)}function h(t,e,i,o,s){switch(s){case"linear":case"mcsLinear":return i*t/o+e;case"mcsLinearOut":return t/=o,t--,i*Math.sqrt(1-t*t)+e;case"easeInOutSmooth":return t/=o/2,1>t?i/2*t*t+e:(t--,-i/2*(t*(t-2)-1)+e);case"easeInOutStrong":return t/=o/2,1>t?i/2*Math.pow(2,10*(t-1))+e:(t--,i/2*(-Math.pow(2,-10*t)+2)+e);case"easeInOut":case"mcsEaseInOut":return t/=o/2,1>t?i/2*t*t*t+e:(t-=2,i/2*(t*t*t+2)+e);case"easeOutSmooth":return t/=o,t--,-i*(t*t*t*t-1)+e;case"easeOutStrong":return i*(-Math.pow(2,-10*t/o)+1)+e;case"easeOut":case"mcsEaseOut":default:var n=(t/=o)*t,r=n*t;return e+i*(.499999999999997*r*n+-2.5*n*n+5.5*r+-6.5*n+4*t)}}t._mTween||(t._mTween={top:{},left:{}});var p,f,a=a||{},v=a.onStart||function(){},m=a.onUpdate||function(){},g=a.onComplete||function(){},y=J(),b=0,w=t.offsetTop,S=t.style,k=t._mTween[i];"left"===i&&(w=t.offsetLeft);var T=o-w;k.stop=0,"none"!==r&&u(),d()},J=function(){return e.performance&&e.performance.now?e.performance.now():e.performance&&e.performance.webkitNow?e.performance.webkitNow():Date.now?Date.now():(new Date).getTime()},K=function(){var t=this;t._mTween||(t._mTween={top:{},left:{}});for(var i=["top","left"],o=0;o=0&&o[0]+ie(s)[0]=0&&o[1]+ie(s)[1]e;e++)if(e in this&&this[e]===t)return e;return-1},e=[].slice;!function(t,e){return"function"==typeof define&&define.amd?define("waypoints",["jquery"],function(i){return e(i,t)}):e(t.jQuery,t)}(window,function(i,o){var s,n,r,a,l,c,d,u,h,p,f,v,m,g,y,b;return s=i(o),u=t.call(o,"ontouchstart")>=0,a={horizontal:{},vertical:{}},l=1,d={},c="waypoints-context-id",f="resize.waypoints",v="scroll.waypoints",m=1,g="waypoints-waypoint-ids",y="waypoint",b="waypoints",n=function(){function t(t){var e=this;this.$element=t,this.element=t[0],this.didResize=!1,this.didScroll=!1,this.id="context"+l++,this.oldScroll={x:t.scrollLeft(),y:t.scrollTop()},this.waypoints={horizontal:{},vertical:{}},this.element[c]=this.id,d[this.id]=this,t.bind(v,function(){var t;return e.didScroll||u?void 0:(e.didScroll=!0,t=function(){return e.doScroll(),e.didScroll=!1},o.setTimeout(t,i[b].settings.scrollThrottle))}),t.bind(f,function(){var t;return e.didResize?void 0:(e.didResize=!0,t=function(){return i[b]("refresh"),e.didResize=!1},o.setTimeout(t,i[b].settings.resizeThrottle))})}return t.prototype.doScroll=function(){var t,e=this;return t={horizontal:{newScroll:this.$element.scrollLeft(),oldScroll:this.oldScroll.x,forward:"right",backward:"left"},vertical:{newScroll:this.$element.scrollTop(),oldScroll:this.oldScroll.y,forward:"down",backward:"up"}},!u||t.vertical.oldScroll&&t.vertical.newScroll||i[b]("refresh"),i.each(t,function(t,o){var s,n,r;return r=[],n=o.newScroll>o.oldScroll,s=n?o.forward:o.backward,i.each(e.waypoints[t],function(t,e){var i,s;return o.oldScroll<(i=e.offset)&&i<=o.newScroll?r.push(e):o.newScroll<(s=e.offset)&&s<=o.oldScroll?r.push(e):void 0}),r.sort(function(t,e){return t.offset-e.offset}),n||r.reverse(),i.each(r,function(t,e){return e.options.continuous||t===r.length-1?e.trigger([s]):void 0})}),this.oldScroll={x:t.horizontal.newScroll,y:t.vertical.newScroll}},t.prototype.refresh=function(){var t,e,o,s=this;return o=i.isWindow(this.element),e=this.$element.offset(),this.doScroll(),t={horizontal:{contextOffset:o?0:e.left,contextScroll:o?0:this.oldScroll.x,contextDimension:this.$element.width(),oldScroll:this.oldScroll.x,forward:"right",backward:"left",offsetProp:"left"},vertical:{contextOffset:o?0:e.top,contextScroll:o?0:this.oldScroll.y,contextDimension:o?i[b]("viewportHeight"):this.$element.height(),oldScroll:this.oldScroll.y,forward:"down",backward:"up",offsetProp:"top"}},i.each(t,function(t,e){return i.each(s.waypoints[t],function(t,o){var s,n,r,a,l;return s=o.options.offset,r=o.offset,n=i.isWindow(o.element)?0:o.$element.offset()[e.offsetProp],i.isFunction(s)?s=s.apply(o.element):"string"==typeof s&&(s=parseFloat(s),o.options.offset.indexOf("%")>-1&&(s=Math.ceil(e.contextDimension*s/100))),o.offset=n-e.contextOffset+e.contextScroll-s,o.options.onlyOnScroll&&null!=r||!o.enabled?void 0:null!==r&&r<(a=e.oldScroll)&&a<=o.offset?o.trigger([e.backward]):null!==r&&r>(l=e.oldScroll)&&l>=o.offset?o.trigger([e.forward]):null===r&&e.oldScroll>=o.offset?o.trigger([e.forward]):void 0})})},t.prototype.checkEmpty=function(){return i.isEmptyObject(this.waypoints.horizontal)&&i.isEmptyObject(this.waypoints.vertical)?(this.$element.unbind([f,v].join(" ")),delete d[this.id]):void 0},t}(),r=function(){function t(t,e,o){var s,n;"bottom-in-view"===o.offset&&(o.offset=function(){var t;return t=i[b]("viewportHeight"),i.isWindow(e.element)||(t=e.$element.height()),t-i(this).outerHeight()}),this.$element=t,this.element=t[0],this.axis=o.horizontal?"horizontal":"vertical",this.callback=o.handler,this.context=e,this.enabled=o.enabled,this.id="waypoints"+m++,this.offset=null,this.options=o,e.waypoints[this.axis][this.id]=this,a[this.axis][this.id]=this,s=null!=(n=this.element[g])?n:[],s.push(this.id),this.element[g]=s}return t.prototype.trigger=function(t){return this.enabled?(null!=this.callback&&this.callback.apply(this.element,t),this.options.triggerOnce?this.destroy():void 0):void 0},t.prototype.disable=function(){return this.enabled=!1},t.prototype.enable=function(){return this.context.refresh(),this.enabled=!0},t.prototype.destroy=function(){return delete a[this.axis][this.id],delete this.context.waypoints[this.axis][this.id],this.context.checkEmpty()},t.getWaypointsByElement=function(t){var e,o;return(o=t[g])?(e=i.extend({},a.horizontal,a.vertical),i.map(o,function(t){return e[t]})):[]},t}(),p={init:function(t,e){var o;return e=i.extend({},i.fn[y].defaults,e),null==(o=e.handler)&&(e.handler=t),this.each(function(){var t,o,s,a;return t=i(this),s=null!=(a=e.context)?a:i.fn[y].defaults.context,i.isWindow(s)||(s=t.closest(s)),s=i(s),o=d[s[0][c]],o||(o=new n(s)),new r(t,o,e)}),i[b]("refresh"),this},disable:function(){return p._invoke.call(this,"disable")},enable:function(){return p._invoke.call(this,"enable")},destroy:function(){return p._invoke.call(this,"destroy")},prev:function(t,e){return p._traverse.call(this,t,e,function(t,e,i){return e>0?t.push(i[e-1]):void 0})},next:function(t,e){return p._traverse.call(this,t,e,function(t,e,i){return et.oldScroll.y})},left:function(t){return null==t&&(t=o),h._filter(t,"horizontal",function(t,e){return e.offset<=t.oldScroll.x})},right:function(t){return null==t&&(t=o),h._filter(t,"horizontal",function(t,e){return e.offset>t.oldScroll.x})},enable:function(){return h._invoke("enable")},disable:function(){return h._invoke("disable")},destroy:function(){return h._invoke("destroy")},extendFn:function(t,e){return p[t]=e},_invoke:function(t){var e;return e=i.extend({},a.vertical,a.horizontal),i.each(e,function(e,i){return i[t](),!0})},_filter:function(t,e,o){var s,n;return(s=d[i(t)[0][c]])?(n=[],i.each(s.waypoints[e],function(t,e){return o(s,e)?n.push(e):void 0}),n.sort(function(t,e){return t.offset-e.offset}),i.map(n,function(t){return t.element})):[]}},i[b]=function(){var t,i;return i=arguments[0],t=2<=arguments.length?e.call(arguments,1):[],h[i]?h[i].apply(null,t):h.aggregate.call(null,i)},i[b].settings={resizeThrottle:100,scrollThrottle:30},s.on("load.waypoints",function(){return i[b]("refresh")})})}.call(this); /* ------------------------------------------------------------------------ Class: prettyPhoto Use: Lightbox clone for jQuery Author: Stephane Caron (http://www.no-margin-for-errors.com) Version: 3.1.5 ------------------------------------------------------------------------- */ (function(e){function t(){var e=location.href;hashtag=e.indexOf("#prettyPhoto")!==-1?decodeURI(e.substring(e.indexOf("#prettyPhoto")+1,e.length)):false;return hashtag}function n(){if(typeof theRel=="undefined")return;location.hash=theRel+"/"+rel_index+"/"}function r(){if(location.href.indexOf("#prettyPhoto")!==-1)location.hash="prettyPhoto"}function i(e,t){e=e.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var n="[\\?&]"+e+"=([^&#]*)";var r=new RegExp(n);var i=r.exec(t);return i==null?"":i[1]}e.prettyPhoto={version:"3.1.5"};e.fn.prettyPhoto=function(s){function g(){e(".pp_loaderIcon").hide();projectedTop=scroll_pos["scrollTop"]+(d/2-a["containerHeight"]/2);if(projectedTop<0)projectedTop=0;$ppt.fadeTo(settings.animation_speed,1);$pp_pic_holder.find(".pp_content").animate({height:a["contentHeight"],width:a["contentWidth"]},settings.animation_speed);$pp_pic_holder.animate({top:projectedTop,left:v/2-a["containerWidth"]/2<0?0:v/2-a["containerWidth"]/2,width:a["containerWidth"]},settings.animation_speed,function(){$pp_pic_holder.find(".pp_hoverContainer,#fullResImage").height(a["height"]).width(a["width"]);$pp_pic_holder.find(".pp_fade").fadeIn(settings.animation_speed);if(isSet&&S(pp_images[set_position])=="image"){$pp_pic_holder.find(".pp_hoverContainer").show()}else{$pp_pic_holder.find(".pp_hoverContainer").hide()}if(settings.allow_expand){if(a["resized"]){e("a.pp_expand,a.pp_contract").show()}else{e("a.pp_expand").hide()}}if(settings.autoplay_slideshow&&!m&&!f)e.prettyPhoto.startSlideshow();settings.changepicturecallback();f=true});C();s.ajaxcallback()}function y(t){$pp_pic_holder.find("#pp_full_res object,#pp_full_res embed").css("visibility","hidden");$pp_pic_holder.find(".pp_fade").fadeOut(settings.animation_speed,function(){e(".pp_loaderIcon").show();t()})}function b(t){t>1?e(".pp_nav").show():e(".pp_nav").hide()}function w(e,t){resized=false;E(e,t);imageWidth=e,imageHeight=t;if((p>v||h>d)&&doresize&&settings.allow_resize&&!u){resized=true,fitting=false;while(!fitting){if(p>v){imageWidth=v-200;imageHeight=t/e*imageWidth}else if(h>d){imageHeight=d-200;imageWidth=e/t*imageHeight}else{fitting=true}h=imageHeight,p=imageWidth}if(p>v||h>d){w(p,h)}E(imageWidth,imageHeight)}return{width:Math.floor(imageWidth),height:Math.floor(imageHeight),containerHeight:Math.floor(h),containerWidth:Math.floor(p)+settings.horizontal_padding*2,contentHeight:Math.floor(l),contentWidth:Math.floor(c),resized:resized}}function E(t,n){t=parseFloat(t);n=parseFloat(n);$pp_details=$pp_pic_holder.find(".pp_details");$pp_details.width(t);detailsHeight=parseFloat($pp_details.css("marginTop"))+parseFloat($pp_details.css("marginBottom"));$pp_details=$pp_details.clone().addClass(settings.theme).width(t).appendTo(e("body")).css({position:"absolute",top:-1e4});detailsHeight+=$pp_details.height();detailsHeight=detailsHeight<=34?36:detailsHeight;$pp_details.remove();$pp_title=$pp_pic_holder.find(".ppt");$pp_title.width(t);titleHeight=parseFloat($pp_title.css("marginTop"))+parseFloat($pp_title.css("marginBottom"));$pp_title=$pp_title.clone().appendTo(e("body")).css({position:"absolute",top:-1e4});titleHeight+=$pp_title.height();$pp_title.remove();l=n+detailsHeight;c=t;h=l+titleHeight+$pp_pic_holder.find(".pp_top").height()+$pp_pic_holder.find(".pp_bottom").height();p=t}function S(e){if(e.match(/youtube\.com\/watch/i)||e.match(/youtu\.be/i)){return"youtube"}else if(e.match(/vimeo\.com/i)){return"vimeo"}else if(e.match(/\b.mov\b/i)){return"quicktime"}else if(e.match(/\b.swf\b/i)){return"flash"}else if(e.match(/\biframe=true\b/i)){return"iframe"}else if(e.match(/\bajax=true\b/i)){return"ajax"}else if(e.match(/\bcustom=true\b/i)){return"custom"}else if(e.substr(0,1)=="#"){return"inline"}else{return"image"}}function x(){if(doresize&&typeof $pp_pic_holder!="undefined"){scroll_pos=T();contentHeight=$pp_pic_holder.height(),contentwidth=$pp_pic_holder.width();projectedTop=d/2+scroll_pos["scrollTop"]-contentHeight/2;if(projectedTop<0)projectedTop=0;if(contentHeight>d)return;$pp_pic_holder.css({top:projectedTop,left:v/2+scroll_pos["scrollLeft"]-contentwidth/2})}}function T(){if(self.pageYOffset){return{scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset}}else if(document.documentElement&&document.documentElement.scrollTop){return{scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft}}else if(document.body){return{scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft}}}function N(){d=e(window).height(),v=e(window).width();if(typeof $pp_overlay!="undefined")$pp_overlay.height(e(document).height()).width(v)}function C(){if(isSet&&settings.overlay_gallery&&S(pp_images[set_position])=="image"){itemWidth=52+5;navWidth=settings.theme=="facebook"||settings.theme=="pp_default"?50:30;itemsPerPage=Math.floor((a["containerWidth"]-100-navWidth)/itemWidth);itemsPerPage=itemsPerPage"}toInject=settings.gallery_markup.replace(/{gallery}/g,toInject);$pp_pic_holder.find("#pp_full_res").after(toInject);$pp_gallery=e(".pp_pic_holder .pp_gallery"),$pp_gallery_li=$pp_gallery.find("li");$pp_gallery.find(".pp_arrow_next").click(function(){e.prettyPhoto.changeGalleryPage("next");e.prettyPhoto.stopSlideshow();return false});$pp_gallery.find(".pp_arrow_previous").click(function(){e.prettyPhoto.changeGalleryPage("previous");e.prettyPhoto.stopSlideshow();return false});$pp_pic_holder.find(".pp_content").hover(function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeIn()},function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeOut()});itemWidth=52+5;$pp_gallery_li.each(function(t){e(this).find("a").click(function(){e.prettyPhoto.changePage(t);e.prettyPhoto.stopSlideshow();return false})})}if(settings.slideshow){$pp_pic_holder.find(".pp_nav").prepend('Play');$pp_pic_holder.find(".pp_nav .pp_play").click(function(){e.prettyPhoto.startSlideshow();return false})}$pp_pic_holder.attr("class","pp_pic_holder "+settings.theme);$pp_overlay.css({opacity:0,height:e(document).height(),width:e(window).width()}).bind("click",function(){if(!settings.modal)e.prettyPhoto.close()});e("a.pp_close").bind("click",function(){e.prettyPhoto.close();return false});if(settings.allow_expand){e("a.pp_expand").bind("click",function(t){if(e(this).hasClass("pp_expand")){e(this).removeClass("pp_expand").addClass("pp_contract");doresize=false}else{e(this).removeClass("pp_contract").addClass("pp_expand");doresize=true}y(function(){e.prettyPhoto.open()});return false})}$pp_pic_holder.find(".pp_previous, .pp_nav .pp_arrow_previous").bind("click",function(){e.prettyPhoto.changePage("previous");e.prettyPhoto.stopSlideshow();return false});$pp_pic_holder.find(".pp_next, .pp_nav .pp_arrow_next").bind("click",function(){e.prettyPhoto.changePage("next");e.prettyPhoto.stopSlideshow();return false});x()}s=jQuery.extend({hook:"rel",animation_speed:"fast",ajaxcallback:function(){},slideshow:5e3,autoplay_slideshow:false,opacity:.8,show_title:true,allow_resize:true,allow_expand:true,default_width:500,default_height:344,counter_separator_label:"/",theme:"pp_default",horizontal_padding:20,hideflash:false,wmode:"opaque",autoplay:true,modal:false,deeplinking:true,overlay_gallery:true,overlay_gallery_max:30,keyboard_shortcuts:true,changepicturecallback:function(){},callback:function(){},ie6_fallback:true,markup:'
       
      ',gallery_markup:'',image_markup:'',flash_markup:'',quicktime_markup:'',iframe_markup:'',inline_markup:'
      {content}
      ',custom_markup:"",social_tools:''},s);var o=this,u=false,a,f,l,c,h,p,d=e(window).height(),v=e(window).width(),m;doresize=true,scroll_pos=T();e(window).unbind("resize.prettyphoto").bind("resize.prettyphoto",function(){x();N()});if(s.keyboard_shortcuts){e(document).unbind("keydown.prettyphoto").bind("keydown.prettyphoto",function(t){if(typeof $pp_pic_holder!="undefined"){if($pp_pic_holder.is(":visible")){switch(t.keyCode){case 37:e.prettyPhoto.changePage("previous");t.preventDefault();break;case 39:e.prettyPhoto.changePage("next");t.preventDefault();break;case 27:if(!settings.modal)e.prettyPhoto.close();t.preventDefault();break}}}})}e.prettyPhoto.initialize=function(){settings=s;if(settings.theme=="pp_default")settings.horizontal_padding=16;theRel=e(this).attr(settings.hook);galleryRegExp=/\[(?:.*)\]/;isSet=galleryRegExp.exec(theRel)?true:false;pp_images=isSet?jQuery.map(o,function(t,n){if(e(t).attr(settings.hook).indexOf(theRel)!=-1)return e(t).attr("href")}):e.makeArray(e(this).attr("href"));pp_titles=isSet?jQuery.map(o,function(t,n){if(e(t).attr(settings.hook).indexOf(theRel)!=-1)return e(t).find("img").attr("alt")?e(t).find("img").attr("alt"):""}):e.makeArray(e(this).find("img").attr("alt"));pp_descriptions=isSet?jQuery.map(o,function(t,n){if(e(t).attr(settings.hook).indexOf(theRel)!=-1)return e(t).attr("title")?e(t).attr("title"):""}):e.makeArray(e(this).attr("title"));if(pp_images.length>settings.overlay_gallery_max)settings.overlay_gallery=false;set_position=jQuery.inArray(e(this).attr("href"),pp_images);rel_index=isSet?set_position:e("a["+settings.hook+"^='"+theRel+"']").index(e(this));k(this);if(settings.allow_resize)e(window).bind("scroll.prettyphoto",function(){x()});e.prettyPhoto.open();return false};e.prettyPhoto.open=function(t){if(typeof settings=="undefined"){settings=s;pp_images=e.makeArray(arguments[0]);pp_titles=arguments[1]?e.makeArray(arguments[1]):e.makeArray("");pp_descriptions=arguments[2]?e.makeArray(arguments[2]):e.makeArray("");isSet=pp_images.length>1?true:false;set_position=arguments[3]?arguments[3]:0;k(t.target)}if(settings.hideflash)e("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","hidden");b(e(pp_images).size());e(".pp_loaderIcon").show();if(settings.deeplinking)n();if(settings.social_tools){facebook_like_link=settings.social_tools.replace("{location_href}",encodeURIComponent(location.href));$pp_pic_holder.find(".pp_social").html(facebook_like_link)}if($ppt.is(":hidden"))$ppt.css("opacity",0).show();$pp_overlay.show().fadeTo(settings.animation_speed,settings.opacity);$pp_pic_holder.find(".currentTextHolder").text(set_position+1+settings.counter_separator_label+e(pp_images).size());if(typeof pp_descriptions[set_position]!="undefined"&&pp_descriptions[set_position]!=""){$pp_pic_holder.find(".pp_description").show().html(unescape(pp_descriptions[set_position]))}else{$pp_pic_holder.find(".pp_description").hide()}movie_width=parseFloat(i("width",pp_images[set_position]))?i("width",pp_images[set_position]):settings.default_width.toString();movie_height=parseFloat(i("height",pp_images[set_position]))?i("height",pp_images[set_position]):settings.default_height.toString();u=false;if(movie_height.indexOf("%")!=-1){movie_height=parseFloat(e(window).height()*parseFloat(movie_height)/100-150);u=true}if(movie_width.indexOf("%")!=-1){movie_width=parseFloat(e(window).width()*parseFloat(movie_width)/100-150);u=true}$pp_pic_holder.fadeIn(function(){settings.show_title&&pp_titles[set_position]!=""&&typeof pp_titles[set_position]!="undefined"?$ppt.html(unescape(pp_titles[set_position])):$ppt.html(" ");imgPreloader="";skipInjection=false;switch(S(pp_images[set_position])){case"image":imgPreloader=new Image;nextImage=new Image;if(isSet&&set_position0)movie_id=movie_id.substr(0,movie_id.indexOf("?"));if(movie_id.indexOf("&")>0)movie_id=movie_id.substr(0,movie_id.indexOf("&"))}movie="http://www.youtube.com/embed/"+movie_id;i("rel",pp_images[set_position])?movie+="?rel="+i("rel",pp_images[set_position]):movie+="?rel=1";if(settings.autoplay)movie+="&autoplay=1";toInject=settings.iframe_markup.replace(/{width}/g,a["width"]).replace(/{height}/g,a["height"]).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case"vimeo":a=w(movie_width,movie_height);movie_id=pp_images[set_position];var t=/http(s?):\/\/(www\.)?vimeo.com\/(\d+)/;var n=movie_id.match(t);movie="http://player.vimeo.com/video/"+n[3]+"?title=0&byline=0&portrait=0";if(settings.autoplay)movie+="&autoplay=1;";vimeo_width=a["width"]+"/embed/?moog_width="+a["width"];toInject=settings.iframe_markup.replace(/{width}/g,vimeo_width).replace(/{height}/g,a["height"]).replace(/{path}/g,movie);break;case"quicktime":a=w(movie_width,movie_height);a["height"]+=15;a["contentHeight"]+=15;a["containerHeight"]+=15;toInject=settings.quicktime_markup.replace(/{width}/g,a["width"]).replace(/{height}/g,a["height"]).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,pp_images[set_position]).replace(/{autoplay}/g,settings.autoplay);break;case"flash":a=w(movie_width,movie_height);flash_vars=pp_images[set_position];flash_vars=flash_vars.substring(pp_images[set_position].indexOf("flashvars")+10,pp_images[set_position].length);filename=pp_images[set_position];filename=filename.substring(0,filename.indexOf("?"));toInject=settings.flash_markup.replace(/{width}/g,a["width"]).replace(/{height}/g,a["height"]).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+"?"+flash_vars);break;case"iframe":a=w(movie_width,movie_height);frame_url=pp_images[set_position];frame_url=frame_url.substr(0,frame_url.indexOf("iframe")-1);toInject=settings.iframe_markup.replace(/{width}/g,a["width"]).replace(/{height}/g,a["height"]).replace(/{path}/g,frame_url);break;case"ajax":doresize=false;a=w(movie_width,movie_height);doresize=true;skipInjection=true;e.get(pp_images[set_position],function(e){toInject=settings.inline_markup.replace(/{content}/g,e);$pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject;g()});break;case"custom":a=w(movie_width,movie_height);toInject=settings.custom_markup;break;case"inline":myClone=e(pp_images[set_position]).clone().append('
      ').css({width:settings.default_width}).wrapInner('
      ').appendTo(e("body")).show();doresize=false;a=w(e(myClone).width(),e(myClone).height());doresize=true;e(myClone).remove();toInject=settings.inline_markup.replace(/{content}/g,e(pp_images[set_position]).html());break}if(!imgPreloader&&!skipInjection){$pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject;g()}});return false};e.prettyPhoto.changePage=function(t){currentGalleryPage=0;if(t=="previous"){set_position--;if(set_position<0)set_position=e(pp_images).size()-1}else if(t=="next"){set_position++;if(set_position>e(pp_images).size()-1)set_position=0}else{set_position=t}rel_index=set_position;if(!doresize)doresize=true;if(settings.allow_expand){e(".pp_contract").removeClass("pp_contract").addClass("pp_expand")}y(function(){e.prettyPhoto.open()})};e.prettyPhoto.changeGalleryPage=function(e){if(e=="next"){currentGalleryPage++;if(currentGalleryPage>totalPage)currentGalleryPage=0}else if(e=="previous"){currentGalleryPage--;if(currentGalleryPage<0)currentGalleryPage=totalPage}else{currentGalleryPage=e}slide_speed=e=="next"||e=="previous"?settings.animation_speed:0;slide_to=currentGalleryPage*itemsPerPage*itemWidth;$pp_gallery.find("ul").animate({left:-slide_to},slide_speed)};e.prettyPhoto.startSlideshow=function(){if(typeof m=="undefined"){$pp_pic_holder.find(".pp_play").unbind("click").removeClass("pp_play").addClass("pp_pause").click(function(){e.prettyPhoto.stopSlideshow();return false});m=setInterval(e.prettyPhoto.startSlideshow,settings.slideshow)}else{e.prettyPhoto.changePage("next")}};e.prettyPhoto.stopSlideshow=function(){$pp_pic_holder.find(".pp_pause").unbind("click").removeClass("pp_pause").addClass("pp_play").click(function(){e.prettyPhoto.startSlideshow();return false});clearInterval(m);m=undefined};e.prettyPhoto.close=function(){if($pp_overlay.is(":animated"))return;e.prettyPhoto.stopSlideshow();$pp_pic_holder.stop().find("object,embed").css("visibility","hidden");e("div.pp_pic_holder,div.ppt,.pp_fade").fadeOut(settings.animation_speed,function(){e(this).remove()});$pp_overlay.fadeOut(settings.animation_speed,function(){if(settings.hideflash)e("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","visible");e(this).remove();e(window).unbind("scroll.prettyphoto");r();settings.callback();doresize=true;f=false;delete settings})};if(!pp_alreadyInitialized&&t()){pp_alreadyInitialized=true;hashIndex=t();hashRel=hashIndex;hashIndex=hashIndex.substring(hashIndex.indexOf("/")+1,hashIndex.length-1);hashRel=hashRel.substring(0,hashRel.indexOf("/"));setTimeout(function(){e("a["+s.hook+"^='"+hashRel+"']:eq("+hashIndex+")").trigger("click")},50)}return this.unbind("click.prettyphoto").bind("click.prettyphoto",e.prettyPhoto.initialize)};})(jQuery);var pp_alreadyInitialized=false;