
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_591a0370c61935364c4360ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963667;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ecb5c31e21e1e876aefdedc8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fd6c952397db68e173a59d78.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.145000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.246330,-0.042682,0.042682,0.246330,0,0);-ms-transform:matrix(0.246330,-0.042682,0.042682,0.246330,0,0);-webkit-transform:matrix(0.246330,-0.042682,0.042682,0.246330,0,0);}
.m15{transform:matrix(0.246824,0.039725,-0.039725,0.246824,0,0);-ms-transform:matrix(0.246824,0.039725,-0.039725,0.246824,0,0);-webkit-transform:matrix(0.246824,0.039725,-0.039725,0.246824,0,0);}
.m16{transform:matrix(0.247033,-0.038404,0.038404,0.247033,0,0);-ms-transform:matrix(0.247033,-0.038404,0.038404,0.247033,0,0);-webkit-transform:matrix(0.247033,-0.038404,0.038404,0.247033,0,0);}
.m2{transform:matrix(0.247177,-0.037465,0.037465,0.247177,0,0);-ms-transform:matrix(0.247177,-0.037465,0.037465,0.247177,0,0);-webkit-transform:matrix(0.247177,-0.037465,0.037465,0.247177,0,0);}
.m27{transform:matrix(0.247408,0.035908,-0.035908,0.247408,0,0);-ms-transform:matrix(0.247408,0.035908,-0.035908,0.247408,0,0);-webkit-transform:matrix(0.247408,0.035908,-0.035908,0.247408,0,0);}
.m14{transform:matrix(0.247509,0.035206,-0.035206,0.247509,0,0);-ms-transform:matrix(0.247509,0.035206,-0.035206,0.247509,0,0);-webkit-transform:matrix(0.247509,0.035206,-0.035206,0.247509,0,0);}
.m3{transform:matrix(0.247701,-0.033823,0.033823,0.247701,0,0);-ms-transform:matrix(0.247701,-0.033823,0.033823,0.247701,0,0);-webkit-transform:matrix(0.247701,-0.033823,0.033823,0.247701,0,0);}
.m17{transform:matrix(0.247806,-0.033051,0.033051,0.247806,0,0);-ms-transform:matrix(0.247806,-0.033051,0.033051,0.247806,0,0);-webkit-transform:matrix(0.247806,-0.033051,0.033051,0.247806,0,0);}
.m26{transform:matrix(0.247944,0.031995,-0.031995,0.247944,0,0);-ms-transform:matrix(0.247944,0.031995,-0.031995,0.247944,0,0);-webkit-transform:matrix(0.247944,0.031995,-0.031995,0.247944,0,0);}
.m28{transform:matrix(0.247974,-0.031759,0.031759,0.247974,0,0);-ms-transform:matrix(0.247974,-0.031759,0.031759,0.247974,0,0);-webkit-transform:matrix(0.247974,-0.031759,0.031759,0.247974,0,0);}
.m4{transform:matrix(0.248139,-0.030449,0.030449,0.248139,0,0);-ms-transform:matrix(0.248139,-0.030449,0.030449,0.248139,0,0);-webkit-transform:matrix(0.248139,-0.030449,0.030449,0.248139,0,0);}
.m13{transform:matrix(0.248173,0.030173,-0.030173,0.248173,0,0);-ms-transform:matrix(0.248173,0.030173,-0.030173,0.248173,0,0);-webkit-transform:matrix(0.248173,0.030173,-0.030173,0.248173,0,0);}
.m37{transform:matrix(0.248282,0.029254,-0.029254,0.248282,0,0);-ms-transform:matrix(0.248282,0.029254,-0.029254,0.248282,0,0);-webkit-transform:matrix(0.248282,0.029254,-0.029254,0.248282,0,0);}
.m18{transform:matrix(0.248401,-0.028232,0.028232,0.248401,0,0);-ms-transform:matrix(0.248401,-0.028232,0.028232,0.248401,0,0);-webkit-transform:matrix(0.248401,-0.028232,0.028232,0.248401,0,0);}
.m25{transform:matrix(0.248465,0.027663,-0.027663,0.248465,0,0);-ms-transform:matrix(0.248465,0.027663,-0.027663,0.248465,0,0);-webkit-transform:matrix(0.248465,0.027663,-0.027663,0.248465,0,0);}
.m5{transform:matrix(0.248521,-0.027158,0.027158,0.248521,0,0);-ms-transform:matrix(0.248521,-0.027158,0.027158,0.248521,0,0);-webkit-transform:matrix(0.248521,-0.027158,0.027158,0.248521,0,0);}
.m29{transform:matrix(0.248603,-0.026389,0.026389,0.248603,0,0);-ms-transform:matrix(0.248603,-0.026389,0.026389,0.248603,0,0);-webkit-transform:matrix(0.248603,-0.026389,0.026389,0.248603,0,0);}
.m12{transform:matrix(0.248716,0.025306,-0.025306,0.248716,0,0);-ms-transform:matrix(0.248716,0.025306,-0.025306,0.248716,0,0);-webkit-transform:matrix(0.248716,0.025306,-0.025306,0.248716,0,0);}
.m19{transform:matrix(0.248724,-0.025227,0.025227,0.248724,0,0);-ms-transform:matrix(0.248724,-0.025227,0.025227,0.248724,0,0);-webkit-transform:matrix(0.248724,-0.025227,0.025227,0.248724,0,0);}
.m36{transform:matrix(0.248763,0.024839,-0.024839,0.248763,0,0);-ms-transform:matrix(0.248763,0.024839,-0.024839,0.248763,0,0);-webkit-transform:matrix(0.248763,0.024839,-0.024839,0.248763,0,0);}
.m6{transform:matrix(0.248841,-0.024048,0.024048,0.248841,0,0);-ms-transform:matrix(0.248841,-0.024048,0.024048,0.248841,0,0);-webkit-transform:matrix(0.248841,-0.024048,0.024048,0.248841,0,0);}
.m24{transform:matrix(0.248927,0.023137,-0.023137,0.248927,0,0);-ms-transform:matrix(0.248927,0.023137,-0.023137,0.248927,0,0);-webkit-transform:matrix(0.248927,0.023137,-0.023137,0.248927,0,0);}
.m1a{transform:matrix(0.249002,-0.022315,0.022315,0.249002,0,0);-ms-transform:matrix(0.249002,-0.022315,0.022315,0.249002,0,0);-webkit-transform:matrix(0.249002,-0.022315,0.022315,0.249002,0,0);}
.m2a{transform:matrix(0.249069,-0.021557,0.021557,0.249069,0,0);-ms-transform:matrix(0.249069,-0.021557,0.021557,0.249069,0,0);-webkit-transform:matrix(0.249069,-0.021557,0.021557,0.249069,0,0);}
.m11{transform:matrix(0.249122,0.020934,-0.020934,0.249122,0,0);-ms-transform:matrix(0.249122,0.020934,-0.020934,0.249122,0,0);-webkit-transform:matrix(0.249122,0.020934,-0.020934,0.249122,0,0);}
.m35{transform:matrix(0.249204,0.019940,-0.019940,0.249204,0,0);-ms-transform:matrix(0.249204,0.019940,-0.019940,0.249204,0,0);-webkit-transform:matrix(0.249204,0.019940,-0.019940,0.249204,0,0);}
.m7{transform:matrix(0.249226,-0.019660,0.019660,0.249226,0,0);-ms-transform:matrix(0.249226,-0.019660,0.019660,0.249226,0,0);-webkit-transform:matrix(0.249226,-0.019660,0.019660,0.249226,0,0);}
.m2b{transform:matrix(0.249311,-0.018544,0.018544,0.249311,0,0);-ms-transform:matrix(0.249311,-0.018544,0.018544,0.249311,0,0);-webkit-transform:matrix(0.249311,-0.018544,0.018544,0.249311,0,0);}
.m23{transform:matrix(0.249312,0.018539,-0.018539,0.249312,0,0);-ms-transform:matrix(0.249312,0.018539,-0.018539,0.249312,0,0);-webkit-transform:matrix(0.249312,0.018539,-0.018539,0.249312,0,0);}
.m1b{transform:matrix(0.249343,-0.018106,0.018106,0.249343,0,0);-ms-transform:matrix(0.249343,-0.018106,0.018106,0.249343,0,0);-webkit-transform:matrix(0.249343,-0.018106,0.018106,0.249343,0,0);}
.m34{transform:matrix(0.249431,0.016862,-0.016862,0.249431,0,0);-ms-transform:matrix(0.249431,0.016862,-0.016862,0.249431,0,0);-webkit-transform:matrix(0.249431,0.016862,-0.016862,0.249431,0,0);}
.m10{transform:matrix(0.249449,0.016584,-0.016584,0.249449,0,0);-ms-transform:matrix(0.249449,0.016584,-0.016584,0.249449,0,0);-webkit-transform:matrix(0.249449,0.016584,-0.016584,0.249449,0,0);}
.m2c{transform:matrix(0.249522,-0.015451,0.015451,0.249522,0,0);-ms-transform:matrix(0.249522,-0.015451,0.015451,0.249522,0,0);-webkit-transform:matrix(0.249522,-0.015451,0.015451,0.249522,0,0);}
.m8{transform:matrix(0.249542,-0.015129,0.015129,0.249542,0,0);-ms-transform:matrix(0.249542,-0.015129,0.015129,0.249542,0,0);-webkit-transform:matrix(0.249542,-0.015129,0.015129,0.249542,0,0);}
.m22{transform:matrix(0.249595,0.014225,-0.014225,0.249595,0,0);-ms-transform:matrix(0.249595,0.014225,-0.014225,0.249595,0,0);-webkit-transform:matrix(0.249595,0.014225,-0.014225,0.249595,0,0);}
.m33{transform:matrix(0.249629,0.013616,-0.013616,0.249629,0,0);-ms-transform:matrix(0.249629,0.013616,-0.013616,0.249629,0,0);-webkit-transform:matrix(0.249629,0.013616,-0.013616,0.249629,0,0);}
.m1c{transform:matrix(0.249670,-0.012848,0.012848,0.249670,0,0);-ms-transform:matrix(0.249670,-0.012848,0.012848,0.249670,0,0);-webkit-transform:matrix(0.249670,-0.012848,0.012848,0.249670,0,0);}
.mf{transform:matrix(0.249695,0.012344,-0.012344,0.249695,0,0);-ms-transform:matrix(0.249695,0.012344,-0.012344,0.249695,0,0);-webkit-transform:matrix(0.249695,0.012344,-0.012344,0.249695,0,0);}
.m9{transform:matrix(0.249718,-0.011872,0.011872,0.249718,0,0);-ms-transform:matrix(0.249718,-0.011872,0.011872,0.249718,0,0);-webkit-transform:matrix(0.249718,-0.011872,0.011872,0.249718,0,0);}
.m2d{transform:matrix(0.249779,-0.010502,0.010502,0.249779,0,0);-ms-transform:matrix(0.249779,-0.010502,0.010502,0.249779,0,0);-webkit-transform:matrix(0.249779,-0.010502,0.010502,0.249779,0,0);}
.m21{transform:matrix(0.249811,0.009716,-0.009716,0.249811,0,0);-ms-transform:matrix(0.249811,0.009716,-0.009716,0.249811,0,0);-webkit-transform:matrix(0.249811,0.009716,-0.009716,0.249811,0,0);}
.m32{transform:matrix(0.249835,0.009072,-0.009072,0.249835,0,0);-ms-transform:matrix(0.249835,0.009072,-0.009072,0.249835,0,0);-webkit-transform:matrix(0.249835,0.009072,-0.009072,0.249835,0,0);}
.m1d{transform:matrix(0.249842,-0.008881,0.008881,0.249842,0,0);-ms-transform:matrix(0.249842,-0.008881,0.008881,0.249842,0,0);-webkit-transform:matrix(0.249842,-0.008881,0.008881,0.249842,0,0);}
.ma{transform:matrix(0.249853,-0.008562,0.008562,0.249853,0,0);-ms-transform:matrix(0.249853,-0.008562,0.008562,0.249853,0,0);-webkit-transform:matrix(0.249853,-0.008562,0.008562,0.249853,0,0);}
.me{transform:matrix(0.249886,0.007565,-0.007565,0.249886,0,0);-ms-transform:matrix(0.249886,0.007565,-0.007565,0.249886,0,0);-webkit-transform:matrix(0.249886,0.007565,-0.007565,0.249886,0,0);}
.m2e{transform:matrix(0.249938,-0.005564,0.005564,0.249938,0,0);-ms-transform:matrix(0.249938,-0.005564,0.005564,0.249938,0,0);-webkit-transform:matrix(0.249938,-0.005564,0.005564,0.249938,0,0);}
.m1e{transform:matrix(0.249944,-0.005278,0.005278,0.249944,0,0);-ms-transform:matrix(0.249944,-0.005278,0.005278,0.249944,0,0);-webkit-transform:matrix(0.249944,-0.005278,0.005278,0.249944,0,0);}
.mb{transform:matrix(0.249945,-0.005250,0.005250,0.249945,0,0);-ms-transform:matrix(0.249945,-0.005250,0.005250,0.249945,0,0);-webkit-transform:matrix(0.249945,-0.005250,0.005250,0.249945,0,0);}
.m20{transform:matrix(0.249948,0.005100,-0.005100,0.249948,0,0);-ms-transform:matrix(0.249948,0.005100,-0.005100,0.249948,0,0);-webkit-transform:matrix(0.249948,0.005100,-0.005100,0.249948,0,0);}
.m31{transform:matrix(0.249953,0.004851,-0.004851,0.249953,0,0);-ms-transform:matrix(0.249953,0.004851,-0.004851,0.249953,0,0);-webkit-transform:matrix(0.249953,0.004851,-0.004851,0.249953,0,0);}
.md{transform:matrix(0.249988,0.002489,-0.002489,0.249988,0,0);-ms-transform:matrix(0.249988,0.002489,-0.002489,0.249988,0,0);-webkit-transform:matrix(0.249988,0.002489,-0.002489,0.249988,0,0);}
.mc{transform:matrix(0.249991,-0.002124,0.002124,0.249991,0,0);-ms-transform:matrix(0.249991,-0.002124,0.002124,0.249991,0,0);-webkit-transform:matrix(0.249991,-0.002124,0.002124,0.249991,0,0);}
.m30{transform:matrix(0.249993,0.001927,-0.001927,0.249993,0,0);-ms-transform:matrix(0.249993,0.001927,-0.001927,0.249993,0,0);-webkit-transform:matrix(0.249993,0.001927,-0.001927,0.249993,0,0);}
.m2f{transform:matrix(0.249997,-0.001138,0.001138,0.249997,0,0);-ms-transform:matrix(0.249997,-0.001138,0.001138,0.249997,0,0);-webkit-transform:matrix(0.249997,-0.001138,0.001138,0.249997,0,0);}
.m1f{transform:matrix(0.250000,0.000181,-0.000181,0.250000,0,0);-ms-transform:matrix(0.250000,0.000181,-0.000181,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000181,-0.000181,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-24.162399px;}
.ws0{word-spacing:-19.886174px;}
.ws2{word-spacing:-18.337535px;}
.ws3{word-spacing:0.000000px;}
.fc3{color:rgb(255,145,48);}
.fc1{color:rgb(0,123,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs15{font-size:71.911901px;}
.fs0{font-size:73.426078px;}
.fs13{font-size:77.984997px;}
.fs14{font-size:100.676661px;}
.fsf{font-size:125.999986px;}
.fs10{font-size:125.999990px;}
.fsc{font-size:125.999991px;}
.fsd{font-size:125.999993px;}
.fs11{font-size:125.999995px;}
.fsb{font-size:125.999997px;}
.fse{font-size:125.999999px;}
.fs12{font-size:126.000000px;}
.fs7{font-size:131.984987px;}
.fs9{font-size:131.984989px;}
.fs5{font-size:131.984990px;}
.fs4{font-size:131.984994px;}
.fs2{font-size:131.984996px;}
.fs6{font-size:131.984997px;}
.fs8{font-size:131.984998px;}
.fs1{font-size:131.985000px;}
.fs3{font-size:131.985001px;}
.fsa{font-size:131.985004px;}
.fs18{font-size:149.984998px;}
.fs1e{font-size:149.984999px;}
.fs1a{font-size:149.985001px;}
.fs1c{font-size:149.985002px;}
.fs1b{font-size:149.985003px;}
.fs17{font-size:149.985006px;}
.fs1d{font-size:149.985009px;}
.fs19{font-size:149.985012px;}
.fs16{font-size:179.999993px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000024px;}
.y47{bottom:233.441537px;}
.y46{bottom:256.812905px;}
.y45{bottom:280.184272px;}
.y44{bottom:311.879023px;}
.y3d{bottom:386.102651px;}
.y3c{bottom:409.474019px;}
.y3f{bottom:440.616117px;}
.y3e{bottom:463.987485px;}
.y3b{bottom:491.880059px;}
.y37{bottom:577.576264px;}
.y3a{bottom:612.457214px;}
.y39{bottom:635.828582px;}
.y38{bottom:676.529632px;}
.y36{bottom:779.220234px;}
.y35{bottom:802.591602px;}
.y34{bottom:825.962970px;}
.y33{bottom:857.657612px;}
.y32{bottom:955.233083px;}
.y31{bottom:978.604451px;}
.y30{bottom:1001.975818px;}
.y2f{bottom:1034.690953px;}
.y4a{bottom:1128.604276px;}
.y49{bottom:1151.975644px;}
.y48{bottom:1184.630766px;}
.y43{bottom:1272.271066px;}
.y42{bottom:1295.642433px;}
.y41{bottom:1319.013801px;}
.y40{bottom:1355.438087px;}
.y4d{bottom:1407.903418px;}
.y4e{bottom:1411.467993px;}
.y5c{bottom:1412.360452px;}
.y4f{bottom:1414.386480px;}
.y5b{bottom:1415.174215px;}
.y50{bottom:1416.276693px;}
.y51{bottom:1416.978189px;}
.y5a{bottom:1416.979825px;}
.y59{bottom:1417.531297px;}
.y52{bottom:1418.433716px;}
.y58{bottom:1418.931405px;}
.y53{bottom:1419.591396px;}
.y57{bottom:1419.727836px;}
.y54{bottom:1420.104146px;}
.y56{bottom:1420.135479px;}
.y55{bottom:1420.166091px;}
.y2e{bottom:1497.360754px;}
.y2d{bottom:1522.110753px;}
.y2c{bottom:1546.860752px;}
.y2b{bottom:1571.610751px;}
.y2a{bottom:1596.360749px;}
.y18{bottom:1776.524211px;}
.y19{bottom:1780.143770px;}
.y29{bottom:1781.078933px;}
.y1a{bottom:1783.220979px;}
.y28{bottom:1783.544134px;}
.y1b{bottom:1785.310561px;}
.y27{bottom:1785.615191px;}
.y1c{bottom:1786.093074px;}
.y26{bottom:1787.544137px;}
.y1d{bottom:1787.696728px;}
.y25{bottom:1788.967788px;}
.y1e{bottom:1789.097777px;}
.y24{bottom:1789.997764px;}
.y1f{bottom:1790.412953px;}
.y20{bottom:1790.736796px;}
.y23{bottom:1790.824097px;}
.y22{bottom:1791.203635px;}
.y21{bottom:1791.240754px;}
.y3{bottom:1863.339090px;}
.y4{bottom:1867.355393px;}
.y17{bottom:1869.212322px;}
.y5{bottom:1870.991574px;}
.y6{bottom:1872.230652px;}
.y16{bottom:1872.259211px;}
.y7{bottom:1874.878537px;}
.y15{bottom:1875.238041px;}
.y8{bottom:1875.787288px;}
.y14{bottom:1877.230185px;}
.y9{bottom:1877.744097px;}
.y13{bottom:1878.899238px;}
.ya{bottom:1879.302546px;}
.y12{bottom:1880.202549px;}
.yb{bottom:1880.569683px;}
.yc{bottom:1880.997216px;}
.y11{bottom:1881.130978px;}
.yd{bottom:1881.708830px;}
.y10{bottom:1881.900263px;}
.ye{bottom:1881.916636px;}
.yf{bottom:1882.097259px;}
.y2{bottom:1990.763012px;}
.y4c{bottom:2106.729295px;}
.y4b{bottom:2158.479292px;}
.h17{height:53.214807px;}
.h3{height:54.335298px;}
.h15{height:57.708898px;}
.h18{height:65.871301px;}
.h16{height:92.219821px;}
.h11{height:115.415987px;}
.h12{height:115.415991px;}
.he{height:115.415992px;}
.hf{height:115.415993px;}
.h13{height:115.415995px;}
.hd{height:115.415997px;}
.h10{height:115.415999px;}
.h14{height:115.416000px;}
.h8{height:120.898248px;}
.hb{height:120.898250px;}
.h7{height:120.898251px;}
.h6{height:120.898254px;}
.h5{height:120.898256px;}
.h9{height:120.898258px;}
.h4{height:120.898260px;}
.ha{height:120.898262px;}
.hc{height:120.898263px;}
.h1b{height:137.386258px;}
.h21{height:137.386259px;}
.h1d{height:137.386261px;}
.h1f{height:137.386262px;}
.h1e{height:137.386263px;}
.h1a{height:137.386265px;}
.h20{height:137.386268px;}
.h1c{height:137.386271px;}
.h19{height:164.879993px;}
.h2{height:2249.999876px;}
.h0{height:2249.999900px;}
.h1{height:2250.000000px;}
.w1{width:899.999963px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x32{left:49.498366px;}
.x33{left:61.662428px;}
.x34{left:69.625319px;}
.x41{left:87.759806px;}
.x2{left:94.157276px;}
.x3{left:117.287423px;}
.x17{left:121.068045px;}
.x42{left:122.428199px;}
.x3d{left:131.626543px;}
.x35{left:135.121410px;}
.x39{left:136.159216px;}
.x4{left:141.656870px;}
.x18{left:144.347787px;}
.x5{left:150.385123px;}
.x1{left:155.594535px;}
.x3a{left:159.453944px;}
.x3c{left:162.879700px;}
.x38{left:166.096123px;}
.x19{left:167.569346px;}
.x6{left:172.341885px;}
.x43{left:177.969471px;}
.x7{left:180.293818px;}
.x1a{left:186.259244px;}
.x1b{left:193.657292px;}
.x8{left:200.549088px;}
.x44{left:209.091467px;}
.x1c{left:211.492034px;}
.x40{left:216.800817px;}
.x9{left:220.170719px;}
.x1d{left:230.154269px;}
.x45{left:232.160065px;}
.xa{left:241.789931px;}
.xb{left:249.773577px;}
.x1e{left:257.205328px;}
.x46{left:260.237613px;}
.x1f{left:264.609968px;}
.xc{left:271.878000px;}
.xd{left:279.878993px;}
.x47{left:283.222044px;}
.x20{left:288.414121px;}
.xe{left:300.218139px;}
.x48{left:306.053986px;}
.x21{left:312.024941px;}
.x49{left:314.908095px;}
.xf{left:321.789574px;}
.x22{left:331.140169px;}
.x4a{left:336.217202px;}
.x2e{left:338.695298px;}
.x10{left:346.365603px;}
.x2f{left:348.257798px;}
.x23{left:352.105510px;}
.x30{left:353.337876px;}
.x4b{left:358.512361px;}
.x11{left:365.248013px;}
.x24{left:370.293926px;}
.x4c{left:383.245203px;}
.x12{left:384.896553px;}
.x31{left:386.173812px;}
.x25{left:389.549514px;}
.x4d{left:392.074287px;}
.x3e{left:397.746106px;}
.x37{left:401.067887px;}
.x13{left:404.780959px;}
.x26{left:410.219357px;}
.x4e{left:414.969439px;}
.x14{left:424.612198px;}
.x27{left:428.855973px;}
.x3b{left:430.527769px;}
.x36{left:431.869158px;}
.x3f{left:435.717579px;}
.x4f{left:442.728056px;}
.x28{left:447.842907px;}
.x15{left:449.005453px;}
.x16{left:470.385051px;}
.x2c{left:601.314144px;}
.x2a{left:606.183284px;}
.x2b{left:618.523128px;}
.x29{left:625.519221px;}
.x2d{left:633.165705px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-21.477688pt;}
.ws0{word-spacing:-17.676599pt;}
.ws2{word-spacing:-16.300031pt;}
.ws3{word-spacing:0.000000pt;}
.fs15{font-size:63.921689pt;}
.fs0{font-size:65.267625pt;}
.fs13{font-size:69.319997pt;}
.fs14{font-size:89.490365pt;}
.fsf{font-size:111.999987pt;}
.fs10{font-size:111.999991pt;}
.fsc{font-size:111.999992pt;}
.fsd{font-size:111.999994pt;}
.fs11{font-size:111.999995pt;}
.fsb{font-size:111.999997pt;}
.fse{font-size:111.999999pt;}
.fs12{font-size:112.000000pt;}
.fs7{font-size:117.319989pt;}
.fs9{font-size:117.319991pt;}
.fs5{font-size:117.319991pt;}
.fs4{font-size:117.319994pt;}
.fs2{font-size:117.319996pt;}
.fs6{font-size:117.319997pt;}
.fs8{font-size:117.319998pt;}
.fs1{font-size:117.320000pt;}
.fs3{font-size:117.320001pt;}
.fsa{font-size:117.320003pt;}
.fs18{font-size:133.319998pt;}
.fs1e{font-size:133.319999pt;}
.fs1a{font-size:133.320001pt;}
.fs1c{font-size:133.320002pt;}
.fs1b{font-size:133.320003pt;}
.fs17{font-size:133.320005pt;}
.fs1d{font-size:133.320008pt;}
.fs19{font-size:133.320011pt;}
.fs16{font-size:159.999993pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000021pt;}
.y47{bottom:207.503588pt;}
.y46{bottom:228.278137pt;}
.y45{bottom:249.052687pt;}
.y44{bottom:277.225798pt;}
.y3d{bottom:343.202357pt;}
.y3c{bottom:363.976906pt;}
.y3f{bottom:391.658771pt;}
.y3e{bottom:412.433320pt;}
.y3b{bottom:437.226719pt;}
.y37{bottom:513.401124pt;}
.y3a{bottom:544.406412pt;}
.y39{bottom:565.180961pt;}
.y38{bottom:601.359672pt;}
.y36{bottom:692.640208pt;}
.y35{bottom:713.414757pt;}
.y34{bottom:734.189306pt;}
.y33{bottom:762.362322pt;}
.y32{bottom:849.096074pt;}
.y31{bottom:869.870623pt;}
.y30{bottom:890.645172pt;}
.y2f{bottom:919.725291pt;}
.y4a{bottom:1003.203801pt;}
.y49{bottom:1023.978350pt;}
.y48{bottom:1053.005126pt;}
.y43{bottom:1130.907614pt;}
.y42{bottom:1151.682163pt;}
.y41{bottom:1172.456712pt;}
.y40{bottom:1204.833855pt;}
.y4d{bottom:1251.469705pt;}
.y4e{bottom:1254.638216pt;}
.y5c{bottom:1255.431513pt;}
.y4f{bottom:1257.232427pt;}
.y5b{bottom:1257.932636pt;}
.y50{bottom:1258.912616pt;}
.y51{bottom:1259.536168pt;}
.y5a{bottom:1259.537622pt;}
.y59{bottom:1260.027819pt;}
.y52{bottom:1260.829970pt;}
.y58{bottom:1261.272360pt;}
.y53{bottom:1261.859018pt;}
.y57{bottom:1261.980299pt;}
.y54{bottom:1262.314797pt;}
.y56{bottom:1262.342648pt;}
.y55{bottom:1262.369859pt;}
.y2e{bottom:1330.987337pt;}
.y2d{bottom:1352.987336pt;}
.y2c{bottom:1374.987335pt;}
.y2b{bottom:1396.987334pt;}
.y2a{bottom:1418.987333pt;}
.y18{bottom:1579.132632pt;}
.y19{bottom:1582.350018pt;}
.y29{bottom:1583.181274pt;}
.y1a{bottom:1585.085315pt;}
.y28{bottom:1585.372563pt;}
.y1b{bottom:1586.942721pt;}
.y27{bottom:1587.213503pt;}
.y1c{bottom:1587.638288pt;}
.y26{bottom:1588.928122pt;}
.y1d{bottom:1589.063758pt;}
.y25{bottom:1590.193589pt;}
.y1e{bottom:1590.309135pt;}
.y24{bottom:1591.109123pt;}
.y1f{bottom:1591.478181pt;}
.y20{bottom:1591.766041pt;}
.y23{bottom:1591.843642pt;}
.y22{bottom:1592.181009pt;}
.y21{bottom:1592.214003pt;}
.y3{bottom:1656.301413pt;}
.y4{bottom:1659.871460pt;}
.y17{bottom:1661.522064pt;}
.y5{bottom:1663.103622pt;}
.y6{bottom:1664.205024pt;}
.y16{bottom:1664.230409pt;}
.y7{bottom:1666.558700pt;}
.y15{bottom:1666.878259pt;}
.y8{bottom:1667.366478pt;}
.y14{bottom:1668.649053pt;}
.y9{bottom:1669.105864pt;}
.y13{bottom:1670.132656pt;}
.ya{bottom:1670.491152pt;}
.y12{bottom:1671.291155pt;}
.yb{bottom:1671.617496pt;}
.yc{bottom:1671.997525pt;}
.y11{bottom:1672.116425pt;}
.yd{bottom:1672.630071pt;}
.y10{bottom:1672.800234pt;}
.ye{bottom:1672.814787pt;}
.yf{bottom:1672.975341pt;}
.y2{bottom:1769.567122pt;}
.y4c{bottom:1872.648262pt;}
.y4b{bottom:1918.648260pt;}
.h17{height:47.302050pt;}
.h3{height:48.298042pt;}
.h15{height:51.296798pt;}
.h18{height:58.552268pt;}
.h16{height:81.973175pt;}
.h11{height:102.591988pt;}
.h12{height:102.591992pt;}
.he{height:102.591993pt;}
.hf{height:102.591994pt;}
.h13{height:102.591996pt;}
.hd{height:102.591997pt;}
.h10{height:102.591999pt;}
.h14{height:102.592000pt;}
.h8{height:107.465110pt;}
.hb{height:107.465111pt;}
.h7{height:107.465112pt;}
.h6{height:107.465115pt;}
.h5{height:107.465116pt;}
.h9{height:107.465118pt;}
.h4{height:107.465120pt;}
.ha{height:107.465122pt;}
.hc{height:107.465123pt;}
.h1b{height:122.121118pt;}
.h21{height:122.121120pt;}
.h1d{height:122.121121pt;}
.h1f{height:122.121121pt;}
.h1e{height:122.121123pt;}
.h1a{height:122.121125pt;}
.h20{height:122.121127pt;}
.h1c{height:122.121130pt;}
.h19{height:146.559994pt;}
.h2{height:1999.999890pt;}
.h0{height:1999.999911pt;}
.h1{height:2000.000000pt;}
.w1{width:799.999967pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x32{left:43.998548pt;}
.x33{left:54.811047pt;}
.x34{left:61.889172pt;}
.x41{left:78.008717pt;}
.x2{left:83.695356pt;}
.x3{left:104.255487pt;}
.x17{left:107.616040pt;}
.x42{left:108.825065pt;}
.x3d{left:117.001371pt;}
.x35{left:120.107920pt;}
.x39{left:121.030414pt;}
.x4{left:125.917218pt;}
.x18{left:128.309144pt;}
.x5{left:133.675665pt;}
.x1{left:138.306253pt;}
.x3a{left:141.736839pt;}
.x3c{left:144.781956pt;}
.x38{left:147.640999pt;}
.x19{left:148.950530pt;}
.x6{left:153.192787pt;}
.x43{left:158.195086pt;}
.x7{left:160.261172pt;}
.x1a{left:165.563772pt;}
.x1b{left:172.139815pt;}
.x8{left:178.265856pt;}
.x44{left:185.859082pt;}
.x1c{left:187.992919pt;}
.x40{left:192.711837pt;}
.x9{left:195.707306pt;}
.x1d{left:204.581572pt;}
.x45{left:206.364503pt;}
.xa{left:214.924383pt;}
.xb{left:222.020957pt;}
.x1e{left:228.626958pt;}
.x46{left:231.322323pt;}
.x1f{left:235.208861pt;}
.xc{left:241.669334pt;}
.xd{left:248.781327pt;}
.x47{left:251.752928pt;}
.x20{left:256.368108pt;}
.xe{left:266.860568pt;}
.x48{left:272.047988pt;}
.x21{left:277.355503pt;}
.x49{left:279.918307pt;}
.xf{left:286.035177pt;}
.x22{left:294.346817pt;}
.x4a{left:298.859735pt;}
.x2e{left:301.062487pt;}
.x10{left:307.880536pt;}
.x2f{left:309.562487pt;}
.x23{left:312.982676pt;}
.x30{left:314.078112pt;}
.x4b{left:318.677654pt;}
.x11{left:324.664900pt;}
.x24{left:329.150156pt;}
.x4c{left:340.662403pt;}
.x12{left:342.130270pt;}
.x31{left:343.265611pt;}
.x25{left:346.266234pt;}
.x4d{left:348.510477pt;}
.x3e{left:353.552094pt;}
.x37{left:356.504788pt;}
.x13{left:359.805297pt;}
.x26{left:364.639428pt;}
.x4e{left:368.861723pt;}
.x14{left:377.433065pt;}
.x27{left:381.205309pt;}
.x3b{left:382.691350pt;}
.x36{left:383.883696pt;}
.x3f{left:387.304515pt;}
.x4f{left:393.536050pt;}
.x28{left:398.082584pt;}
.x15{left:399.115958pt;}
.x16{left:418.120045pt;}
.x2c{left:534.501461pt;}
.x2a{left:538.829586pt;}
.x2b{left:549.798336pt;}
.x29{left:556.017085pt;}
.x2d{left:562.813960pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  