(e=>{const t=e.RLG||(e.RLG={}),i=e=>e&&"function"==typeof e.sanitize;t.getPurifier=()=>i(t.DOMPurify)?t.DOMPurify:i(e.DOMPurify)?e.DOMPurify:null,t.sanitizeConfig=t.sanitizeConfig||{ALLOWED_TAGS:["a","abbr","b","br","code","em","i","li","ol","p","pre","small","strong","sub","sup","u","ul","img","div","span"],ALLOWED_ATTR:["href","src","alt","title","width","height","class","id","rel","target","data-*"],ALLOWED_URI_REGEXP:/^(?:(?:https?|mailto|tel):|[^a-z]|data:image\/(?:png|jpeg|gif|webp);base64,)/i},t.isAllowedEmbedUrl=e=>{try{const i=new URL(e,location.href);if(i.hostname===location.hostname)return!0;if(Array.isArray(t.sanitizeAllowedHosts)){const e=i.hostname.toLowerCase();return t.sanitizeAllowedHosts.some(t=>(t=(t||"").toLowerCase(),e===t||e.endsWith("."+t)))}return!1}catch(i){return!1}};const o=t.getPurifier();o&&"function"==typeof o.addHook&&o.addHook("uponSanitizeElement",function(e){if("iframe"===(e&&e.nodeName&&e.nodeName.toLowerCase&&e.nodeName.toLowerCase())){const i=e.getAttribute&&e.getAttribute("src");i&&t.isAllowedEmbedUrl(i)||e.parentNode&&e.parentNode.removeChild(e)}}),t.sanitizeHtml=(e,i=null)=>{const o=t.getPurifier();return o?o.sanitize(e,i||t.sanitizeConfig||{}):e}})(window);
(function($,window,document,undefined){var pluginName="nivoLightbox",defaults={effect:"fade",theme:"default",keyboardNav:true,clickImgToClose:false,clickOverlayToClose:true,onInit:function(){},beforeShowLightbox:function(){},afterShowLightbox:function(lightbox){},beforeHideLightbox:function(){},afterHideLightbox:function(){},beforePrev:function(element){},onPrev:function(element){},beforeNext:function(element){},onNext:function(element){},errorMessage:"The requested content cannot be loaded. Please try again later."};function NivoLightbox(element,options){this.el=element;this.$el=$(this.el);this.options=$.extend({},defaults,options);this._defaults=defaults;this._name=pluginName;this.init()}NivoLightbox.prototype={init:function(){var $this=this;if(!$("html").hasClass("nivo-lightbox-notouch"))$("html").addClass("nivo-lightbox-notouch");if("ontouchstart"in document)$("html").removeClass("nivo-lightbox-notouch");this.$el.on("click",function(e){$this.showLightbox(e)});if(this.options.keyboardNav){$("body").off("keyup").on("keyup",function(e){var code=e.keyCode?e.keyCode:e.which;if(code==27)$this.destructLightbox();if(code==37)$(".nivo-lightbox-prev").trigger("click");if(code==39)$(".nivo-lightbox-next").trigger("click")})}this.options.onInit.call(this)},showLightbox:function(e){var $this=this,currentLink=this.$el;var check=this.checkContent(currentLink);if(!check)return;e.preventDefault();this.options.beforeShowLightbox.call(this);var lightbox=this.constructLightbox();if(!lightbox)return;var content=lightbox.find(".nivo-lightbox-content");if(!content)return;$("body").addClass("nivo-lightbox-body-effect-"+this.options.effect);this.processContent(content,currentLink);if(this.$el.attr("data-lightbox-gallery")){var galleryItems=$('[data-lightbox-gallery="'+this.$el.attr("data-lightbox-gallery")+'"]');$(".nivo-lightbox-nav").show();$(".nivo-lightbox-prev").off("click").on("click",function(e){e.preventDefault();var index=galleryItems.index(currentLink);currentLink=galleryItems.eq(index-1);if(!$(currentLink).length)currentLink=galleryItems.last();$.when($this.options.beforePrev.call(this,[currentLink])).done(function(){$this.processContent(content,currentLink);$this.options.onPrev.call(this,[currentLink])})});$(".nivo-lightbox-next").off("click").on("click",function(e){e.preventDefault();var index=galleryItems.index(currentLink);currentLink=galleryItems.eq(index+1);if(!$(currentLink).length)currentLink=galleryItems.first();$.when($this.options.beforeNext.call(this,[currentLink])).done(function(){$this.processContent(content,currentLink);$this.options.onNext.call(this,[currentLink])})})}setTimeout(function(){lightbox.addClass("nivo-lightbox-open");$this.options.afterShowLightbox.call(this,[lightbox])},1)},checkContent:function(link){var $this=this,href=link.attr("href"),video=href.match(/(youtube|youtube-nocookie|youtu|vimeo)\.(com|be)\/(watch\?v=([\w-]+)|([\w-]+))/);if(href.match(/\.(jpeg|jpg|gif|png|webp)$/i)!==null){return true}else if(video){return true}else if(link.attr("data-lightbox-type")=="ajax"){return true}else if(href.substring(0,1)=="#"&&link.attr("data-lightbox-type")=="inline"){return true}else if(link.attr("data-lightbox-type")=="iframe"){return true}return false},processContent:function(content,link){var $this=this,href=link.attr("href"),video=href.match(/(youtube|youtube-nocookie|youtu|vimeo)\.(com|be)\/(watch\?v=([\w-]+)|([\w-]+))/);content.html("").addClass("nivo-lightbox-loading");if(this.isHidpi()&&link.attr("data-lightbox-hidpi")){href=link.attr("data-lightbox-hidpi")}if(href.match(/\.(jpeg|jpg|gif|png|webp)$/i)!==null){if(!RLG.sanitizeConfig.ALLOWED_URI_REGEXP.test(href)){var wrapError=$('<div class="nivo-lightbox-error"><p>'+$this.options.errorMessage+"</p></div>");content.html(wrapError).removeClass("nivo-lightbox-loading");return}var img=$("<img>",{src:href,class:"nivo-lightbox-image-display"});img.one("load",function(){var wrap=$('<div class="nivo-lightbox-image" />');wrap.append(img);content.html(wrap).removeClass("nivo-lightbox-loading");wrap.css({"line-height":$(".nivo-lightbox-content").height()+"px",height:$(".nivo-lightbox-content").height()+"px"});$(window).on("resize",function(){wrap.css({"line-height":$(".nivo-lightbox-content").height()+"px",height:$(".nivo-lightbox-content").height()+"px"})})}).each(function(){if(this.complete)$(this).load()});img.on("error",function(){var wrap=$('<div class="nivo-lightbox-error"><p>'+$this.options.errorMessage+"</p></div>");content.html(wrap).removeClass("nivo-lightbox-loading")})}else if(video){var src="",classTerm="nivo-lightbox-video";if(video[1]=="youtube"){src="https://www.youtube.com/embed/"+video[4];classTerm="nivo-lightbox-youtube"}if(video[1]=="youtube-nocookie"){src=href;classTerm="nivo-lightbox-youtube"}if(video[1]=="youtu"){src="https://www.youtube.com/embed/"+video[3];classTerm="nivo-lightbox-youtube"}if(video[1]=="vimeo"){src="https://player.vimeo.com/video/"+video[3];classTerm="nivo-lightbox-vimeo"}if(src){var iframeVideo=$("<iframe>",{src:src,class:classTerm,frameborder:0,vspace:0,hspace:0,scrolling:"auto"});content.html(iframeVideo);iframeVideo.load(function(){content.removeClass("nivo-lightbox-loading")})}}else if(link.attr("data-lightbox-type")=="ajax"){$.ajax({url:href,cache:false,success:function(data){var wrap=$('<div class="nivo-lightbox-ajax" />');wrap.append(RLG.sanitizeHtml(data));content.html(wrap).removeClass("nivo-lightbox-loading");if(wrap.outerHeight()<content.height()){wrap.css({position:"relative",top:"50%","margin-top":-(wrap.outerHeight()/2)+"px"})}$(window).on("resize",function(){if(wrap.outerHeight()<content.height()){wrap.css({position:"relative",top:"50%","margin-top":-(wrap.outerHeight()/2)+"px"})}})},error:function(){var wrap=$('<div class="nivo-lightbox-error"><p>'+$this.options.errorMessage+"</p></div>");content.html(wrap).removeClass("nivo-lightbox-loading")}})}else if(href.substring(0,1)=="#"&&link.attr("data-lightbox-type")=="inline"){if($(href).length){var wrap=$('<div class="nivo-lightbox-inline" />');wrap.append(RLG.sanitizeHtml($(href).html()));content.html(wrap).removeClass("nivo-lightbox-loading");if(wrap.outerHeight()<content.height()){wrap.css({position:"relative",top:"50%","margin-top":-(wrap.outerHeight()/2)+"px"})}$(window).on("resize",function(){if(wrap.outerHeight()<content.height()){wrap.css({position:"relative",top:"50%","margin-top":-(wrap.outerHeight()/2)+"px"})}})}else{var wrapError=$('<div class="nivo-lightbox-error"><p>'+$this.options.errorMessage+"</p></div>");content.html(wrapError).removeClass("nivo-lightbox-loading")}}else if(link.attr("data-lightbox-type")=="iframe"){if(!RLG.isAllowedEmbedUrl(href)){var wrapError=$('<div class="nivo-lightbox-error"><p>'+$this.options.errorMessage+"</p></div>");content.html(wrapError).removeClass("nivo-lightbox-loading");return}var iframe=$("<iframe>",{src:href,class:"nivo-lightbox-item",frameborder:0,vspace:0,hspace:0,scrolling:"auto"});content.html(iframe);iframe.load(function(){content.removeClass("nivo-lightbox-loading")})}else{return false}if(link.attr("title")){var titleWrap=$("<span>",{class:"nivo-lightbox-title"});titleWrap.text(link.attr("title"));$(".nivo-lightbox-title-wrap").html(titleWrap)}else{$(".nivo-lightbox-title-wrap").html("")}},constructLightbox:function(){if($(".nivo-lightbox-overlay").length)return $(".nivo-lightbox-overlay");var overlay=$("<div>",{class:"nivo-lightbox-overlay nivo-lightbox-theme-"+this.options.theme+" nivo-lightbox-effect-"+this.options.effect});var wrap=$("<div>",{class:"nivo-lightbox-wrap"});var content=$("<div>",{class:"nivo-lightbox-content"});var nav=$('<a href="#" class="nivo-lightbox-nav nivo-lightbox-prev">Previous</a><a href="#" class="nivo-lightbox-nav nivo-lightbox-next">Next</a>');var close=$('<a href="#" class="nivo-lightbox-close" title="Close">Close</a>');var title=$("<div>",{class:"nivo-lightbox-title-wrap"});var isMSIE=/*@cc_on!@*/0;if(isMSIE)overlay.addClass("nivo-lightbox-ie");wrap.append(content);wrap.append(title);overlay.append(wrap);overlay.append(nav);overlay.append(close);$("body").append(overlay);var $this=this;if($this.options.clickOverlayToClose){overlay.on("click",function(e){if(e.target===this||$(e.target).hasClass("nivo-lightbox-content")||$(e.target).hasClass("nivo-lightbox-image")){$this.destructLightbox()}})}if($this.options.clickImgToClose){overlay.on("click",function(e){if(e.target===this||$(e.target).hasClass("nivo-lightbox-image-display")){$this.destructLightbox()}})}close.on("click",function(e){e.preventDefault();$this.destructLightbox()});return overlay},destructLightbox:function(){var $this=this;this.options.beforeHideLightbox.call(this);$(".nivo-lightbox-overlay").removeClass("nivo-lightbox-open");$(".nivo-lightbox-nav").hide();$("body").removeClass("nivo-lightbox-body-effect-"+$this.options.effect);var isMSIE=/*@cc_on!@*/0;if(isMSIE){$(".nivo-lightbox-overlay iframe").attr("src"," ");$(".nivo-lightbox-overlay iframe").remove()}$(".nivo-lightbox-prev").off("click");$(".nivo-lightbox-next").off("click");$(".nivo-lightbox-content").empty();this.options.afterHideLightbox.call(this)},isHidpi:function(){var mediaQuery="(-webkit-min-device-pixel-ratio: 1.5),                              (min--moz-device-pixel-ratio: 1.5),                              (-o-min-device-pixel-ratio: 3/2),                              (min-resolution: 1.5dppx)";if(window.devicePixelRatio>1)return true;if(window.matchMedia&&window.matchMedia(mediaQuery).matches)return true;return false}};$.fn[pluginName]=function(options){return this.each(function(){if(!$.data(this,pluginName)){$.data(this,pluginName,new NivoLightbox(this,options))}})}})(jQuery,window,document);
window.seraph_pds||(window.seraph_pds={});
(function(){function c(){return".omml-b{font-weight:700}.omml-u{text-decoration:underline}.omml-scap{text-transform:uppercase;font-size:smaller}.omml-acap{text-transform:uppercase}.omml-s,.omml-s .mjx-bevel,.omml-s .mjx-charbox,.omml-s .mjx-mi,.omml-s .mjx-mn,.omml-s .mjx-mo,.omml-s .mjx-surd{text-decoration:line-through}.omml-sub,.omml-sub .mjx-bevel,.omml-sub .mjx-charbox,.omml-sub .mjx-mi,.omml-sub .mjx-mn,.omml-sub .mjx-mo,.omml-sub .mjx-surd{vertical-align:sub;font-size:smaller}.omml-sup,.omml-sup .mjx-bevel,.omml-sup .mjx-charbox,.omml-sup .mjx-mi,.omml-sup .mjx-mn,.omml-sup .mjx-mo,.omml-sup .mjx-surd{vertical-align:super;font-size:smaller}.mjx-lf{display:inline!important}.mjx-lf:before{display:inline!important;content:\"\\a\"}.mjx-chtml{display:inline-block;line-height:0;text-indent:0;text-align:left;text-transform:none;font-style:normal;font-weight:400;font-size:100%;font-size-adjust:none;letter-spacing:normal;word-wrap:normal;word-spacing:normal;white-space:nowrap;float:none;direction:ltr;max-width:none;max-height:none;min-width:0;min-height:0;border:0;margin:0;padding:1px 0}.MJXc-display{display:block;text-align:center;margin:1em 0;padding:0}.mjx-chtml[tabindex]:focus,body :focus .mjx-chtml[tabindex]{display:inline-table}.mjx-full-width{text-align:center;display:table-cell!important;width:10000em}.mjx-math{display:inline-block;border-collapse:separate;border-spacing:0}.mjx-math *{display:inline-block;-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important;box-sizing:content-box!important;text-align:left}.mjx-numerator{display:block;text-align:center}.mjx-denominator{display:block;text-align:center}.MJXc-stacked{height:0;position:relative}.MJXc-stacked>*{position:absolute}.MJXc-bevelled>*{display:inline-block}.mjx-stack{display:inline-block}.mjx-op{display:block}.mjx-under{display:table-cell}.mjx-over{display:block}.mjx-over>*{padding-left:0!important;padding-right:0!important}.mjx-under>*{padding-left:0!important;padding-right:0!important}.mjx-stack>.mjx-sup{display:block}.mjx-stack>.mjx-sub{display:block}.mjx-prestack>.mjx-presup{display:block}.mjx-prestack>.mjx-presub{display:block}.mjx-delim-h>.mjx-char{display:inline-block}.mjx-surd{vertical-align:top}.mjx-mphantom *{visibility:hidden}.mjx-merror{background-color:#FF8;color:#C00;border:1px solid #C00;padding:2px 3px;font-style:normal;font-size:90%}.mjx-annotation-xml{line-height:normal}.mjx-menclose>svg{fill:none;stroke:currentColor}.mjx-mtr{display:table-row}.mjx-mlabeledtr{display:table-row}.mjx-mtd{display:table-cell;text-align:center}.mjx-label{display:table-row}.mjx-box{display:inline-block}.mjx-block{display:block}.mjx-span{display:inline}.mjx-char{display:block;white-space:pre}.mjx-itable{display:inline-table;width:auto}.mjx-row{display:table-row}.mjx-cell{display:table-cell}.mjx-table{display:table;width:100%}.mjx-line{display:block;height:0}.mjx-strut{width:0;padding-top:1em}.mjx-vsize{width:0}.MJXc-space1{margin-left:.167em}.MJXc-space2{margin-left:.222em}.MJXc-space3{margin-left:.278em}.mjx-chartest{display:block;visibility:hidden;position:absolute;top:0;line-height:normal;font-size:500%}.mjx-chartest .mjx-char{display:inline}.mjx-chartest .mjx-box{padding-top:1000px}.MJXc-processing{visibility:hidden;position:fixed;width:0;height:0;overflow:hidden}.MJXc-processed{display:none}.mjx-test{font-style:normal;font-weight:400;font-size:100%;font-size-adjust:none;text-indent:0;text-transform:none;letter-spacing:normal;word-spacing:normal;overflow:hidden;height:1px}.mjx-test.mjx-test-display{display:table!important}.mjx-test.mjx-test-inline{display:inline!important;margin-right:-1px}.mjx-test.mjx-test-default{display:block!important;clear:both}.mjx-ex-box{display:inline-block!important;position:absolute;overflow:hidden;min-height:0;max-height:none;padding:0;border:0;margin:0;width:1px;height:60ex}.mjx-test-inline .mjx-left-box{display:inline-block;width:0;float:left}.mjx-test-inline .mjx-right-box{display:inline-block;width:0;float:right}.mjx-test-display .mjx-right-box{display:table-cell!important;width:10000em!important;min-width:0;max-width:none;padding:0;border:0;margin:0}#MathJax_CHTML_Tooltip{background-color:InfoBackground;color:InfoText;border:1px solid #000;box-shadow:2px 2px 5px #AAA;-webkit-box-shadow:2px 2px 5px #AAA;-moz-box-shadow:2px 2px 5px #AAA;-khtml-box-shadow:2px 2px 5px #AAA;padding:3px 4px;z-index:401;position:absolute;left:0;top:0;width:auto;height:auto;display:none}.mjx-chtml .mjx-noError{line-height:1.2;font-size:90%;text-align:left;color:#000;padding:1px 3px;border:1px solid}.MJXc-TeX-unknown-R{font-family:STIXGeneral,'Cambria Math','Arial Unicode MS',serif;font-style:normal;font-weight:400}.MJXc-TeX-unknown-I{font-family:STIXGeneral,'Cambria Math','Arial Unicode MS',serif;font-style:italic;font-weight:400}.MJXc-TeX-unknown-B{font-family:STIXGeneral,'Cambria Math','Arial Unicode MS',serif;font-style:normal;font-weight:700}.MJXc-TeX-unknown-BI{font-family:STIXGeneral,'Cambria Math','Arial Unicode MS',serif;font-style:italic;font-weight:700}.MJXc-TeX-ams-R{font-family:MJXc-TeX-ams-R,MJXc-TeX-ams-Rw}.MJXc-TeX-cal-B{font-family:MJXc-TeX-cal-B,MJXc-TeX-cal-Bx,MJXc-TeX-cal-Bw}.MJXc-TeX-frak-R{font-family:MJXc-TeX-frak-R,MJXc-TeX-frak-Rw}.MJXc-TeX-frak-B{font-family:MJXc-TeX-frak-B,MJXc-TeX-frak-Bx,MJXc-TeX-frak-Bw}.MJXc-TeX-math-BI{font-family:MJXc-TeX-math-BI,MJXc-TeX-math-BIx,MJXc-TeX-math-BIw}.MJXc-TeX-sans-R{font-family:MJXc-TeX-sans-R,MJXc-TeX-sans-Rw}.MJXc-TeX-sans-B{font-family:MJXc-TeX-sans-B,MJXc-TeX-sans-Bx,MJXc-TeX-sans-Bw}.MJXc-TeX-sans-I{font-family:MJXc-TeX-sans-I,MJXc-TeX-sans-Ix,MJXc-TeX-sans-Iw}.MJXc-TeX-script-R{font-family:MJXc-TeX-script-R,MJXc-TeX-script-Rw}.MJXc-TeX-type-R{font-family:MJXc-TeX-type-R,MJXc-TeX-type-Rw}.MJXc-TeX-cal-R{font-family:MJXc-TeX-cal-R,MJXc-TeX-cal-Rw}.MJXc-TeX-main-B{font-family:MJXc-TeX-main-B,MJXc-TeX-main-Bx,MJXc-TeX-main-Bw}.MJXc-TeX-main-I{font-family:MJXc-TeX-main-I,MJXc-TeX-main-Ix,MJXc-TeX-main-Iw}.MJXc-TeX-main-R{font-family:MJXc-TeX-main-R,MJXc-TeX-main-Rw}.MJXc-TeX-math-I{font-family:MJXc-TeX-math-I,MJXc-TeX-math-Ix,MJXc-TeX-math-Iw}.MJXc-TeX-size1-R{font-family:MJXc-TeX-size1-R,MJXc-TeX-size1-Rw}.MJXc-TeX-size2-R{font-family:MJXc-TeX-size2-R,MJXc-TeX-size2-Rw}.MJXc-TeX-size3-R{font-family:MJXc-TeX-size3-R,MJXc-TeX-size3-Rw}.MJXc-TeX-size4-R{font-family:MJXc-TeX-size4-R,MJXc-TeX-size4-Rw}.MJXc-TeX-vec-R{font-family:MJXc-TeX-vec-R,MJXc-TeX-vec-Rw}.MJXc-TeX-vec-B{font-family:MJXc-TeX-vec-B,MJXc-TeX-vec-Bx,MJXc-TeX-vec-Bw}@font-face{font-family:MJXc-TeX-ams-R;src:local('MathJax_AMS'),local('MathJax_AMS-Regular')}@font-face{font-family:MJXc-TeX-ams-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-cal-B;src:local('MathJax_Caligraphic Bold'),local('MathJax_Caligraphic-Bold')}@font-face{font-family:MJXc-TeX-cal-Bx;src:local('MathJax_Caligraphic');font-weight:700}@font-face{font-family:MJXc-TeX-cal-Bw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf) format('opentype')}@font-face{font-family:MJXc-TeX-frak-R;src:local('MathJax_Fraktur'),local('MathJax_Fraktur-Regular')}@font-face{font-family:MJXc-TeX-frak-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-frak-B;src:local('MathJax_Fraktur Bold'),local('MathJax_Fraktur-Bold')}@font-face{font-family:MJXc-TeX-frak-Bx;src:local('MathJax_Fraktur');font-weight:700}@font-face{font-family:MJXc-TeX-frak-Bw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf) format('opentype')}@font-face{font-family:MJXc-TeX-math-BI;src:local('MathJax_Math BoldItalic'),local('MathJax_Math-BoldItalic')}@font-face{font-family:MJXc-TeX-math-BIx;src:local('MathJax_Math');font-weight:700;font-style:italic}@font-face{font-family:MJXc-TeX-math-BIw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf) format('opentype')}@font-face{font-family:MJXc-TeX-sans-R;src:local('MathJax_SansSerif'),local('MathJax_SansSerif-Regular')}@font-face{font-family:MJXc-TeX-sans-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-sans-B;src:local('MathJax_SansSerif Bold'),local('MathJax_SansSerif-Bold')}@font-face{font-family:MJXc-TeX-sans-Bx;src:local('MathJax_SansSerif');font-weight:700}@font-face{font-family:MJXc-TeX-sans-Bw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf) format('opentype')}@font-face{font-family:MJXc-TeX-sans-I;src:local('MathJax_SansSerif Italic'),local('MathJax_SansSerif-Italic')}@font-face{font-family:MJXc-TeX-sans-Ix;src:local('MathJax_SansSerif');font-style:italic}@font-face{font-family:MJXc-TeX-sans-Iw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf) format('opentype')}@font-face{font-family:MJXc-TeX-script-R;src:local('MathJax_Script'),local('MathJax_Script-Regular')}@font-face{font-family:MJXc-TeX-script-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-type-R;src:local('MathJax_Typewriter'),local('MathJax_Typewriter-Regular')}@font-face{font-family:MJXc-TeX-type-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-cal-R;src:local('MathJax_Caligraphic'),local('MathJax_Caligraphic-Regular')}@font-face{font-family:MJXc-TeX-cal-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-main-B;src:local('MathJax_Main Bold'),local('MathJax_Main-Bold')}@font-face{font-family:MJXc-TeX-main-Bx;src:local('MathJax_Main');font-weight:700}@font-face{font-family:MJXc-TeX-main-Bw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf) format('opentype')}@font-face{font-family:MJXc-TeX-main-I;src:local('MathJax_Main Italic'),local('MathJax_Main-Italic')}@font-face{font-family:MJXc-TeX-main-Ix;src:local('MathJax_Main');font-style:italic}@font-face{font-family:MJXc-TeX-main-Iw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf) format('opentype')}@font-face{font-family:MJXc-TeX-main-R;src:local('MathJax_Main'),local('MathJax_Main-Regular')}@font-face{font-family:MJXc-TeX-main-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-math-I;src:local('MathJax_Math Italic'),local('MathJax_Math-Italic')}@font-face{font-family:MJXc-TeX-math-Ix;src:local('MathJax_Math');font-style:italic}@font-face{font-family:MJXc-TeX-math-Iw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf) format('opentype')}@font-face{font-family:MJXc-TeX-size1-R;src:local('MathJax_Size1'),local('MathJax_Size1-Regular')}@font-face{font-family:MJXc-TeX-size1-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-size2-R;src:local('MathJax_Size2'),local('MathJax_Size2-Regular')}@font-face{font-family:MJXc-TeX-size2-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-size3-R;src:local('MathJax_Size3'),local('MathJax_Size3-Regular')}@font-face{font-family:MJXc-TeX-size3-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-size4-R;src:local('MathJax_Size4'),local('MathJax_Size4-Regular')}@font-face{font-family:MJXc-TeX-size4-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-vec-R;src:local('MathJax_Vector'),local('MathJax_Vector-Regular')}@font-face{font-family:MJXc-TeX-vec-Rw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Vector-Regular.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Vector-Regular.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Vector-Regular.otf) format('opentype')}@font-face{font-family:MJXc-TeX-vec-B;src:local('MathJax_Vector Bold'),local('MathJax_Vector-Bold')}@font-face{font-family:MJXc-TeX-vec-Bx;src:local('MathJax_Vector');font-weight:700}@font-face{font-family:MJXc-TeX-vec-Bw;src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/eot/MathJax_Vector-Bold.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/woff/MathJax_Vector-Bold.woff) format('woff'),url(https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/fonts/HTML-CSS/TeX/otf/MathJax_Vector-Bold.otf) format('opentype')}"}function d(b){var e=
1<arguments.length&&void 0!==arguments[1]?arguments[1]:!0;if(b){var a=b.getElementById("seraph-pds-MathJax-CHtml-css");if(a){if(!0===e)return!1;b.head.removeChild(a)}else{if(!0!==e)return!1;a=b.createElement("style");a.id="seraph-pds-MathJax-CHtml-css";a.type="text/css";a.innerHTML=c();b.head.appendChild(a)}return!0}}seraph_pds.View={GetFormulasStyles:c,EnableDocFormulasStyles:d,InitFormulas:function(){d(document)}}})();