
    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_42c665f0ad281170f1f4c579.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_39572418d74ed927a6fc9309.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_e1248f5ecf2a20563c02d580.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973000;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:ff4;src:url('chunks/assets/font_d9b81c9dbd9f4d77001814dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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:ff5;src:url('chunks/assets/font_d79eadfbd7592b81ef63702f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973000;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:ff6;src:url('chunks/assets/font_6b0d69143f200a900746ad57.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.372000;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:ff7;src:url('chunks/assets/font_6c92575df3ebda0482bac7b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935000;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;}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,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);}
.m1{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:11.956683px;}
.ls4{letter-spacing:21.819527px;}
.ls3{letter-spacing:21.939527px;}
.ls2{letter-spacing:23.913527px;}
.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;}
}
.ws0{word-spacing:-21.519300px;}
.ws15{word-spacing:-14.943900px;}
.ws9{word-spacing:-3.873485px;}
.ws1{word-spacing:-2.916347px;}
.ws12{word-spacing:-1.613941px;}
.ws17{word-spacing:-0.239102px;}
.ws10{word-spacing:-0.179327px;}
.ws7{word-spacing:-0.161395px;}
.ws1b{word-spacing:-0.119551px;}
.ws4{word-spacing:-0.107597px;}
.wsa{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws2{word-spacing:0.000000px;}
.ws14{word-spacing:0.059776px;}
.ws5{word-spacing:0.107597px;}
.ws16{word-spacing:0.119551px;}
.ws8{word-spacing:0.161395px;}
.wsb{word-spacing:0.179327px;}
.ws11{word-spacing:0.239102px;}
.ws13{word-spacing:0.298878px;}
.ws18{word-spacing:0.358654px;}
.ws6{word-spacing:0.484186px;}
.wsc{word-spacing:1.135736px;}
.wsd{word-spacing:2.450800px;}
.wsf{word-spacing:3.168107px;}
.ws1c{word-spacing:3.347434px;}
.wse{word-spacing:11.907329px;}
.ws1a{word-spacing:14.884124px;}
.ws19{word-spacing:44.831700px;}
._9{margin-left:-6.079219px;}
._4{margin-left:-4.284150px;}
._1{margin-left:-2.225456px;}
._2{margin-left:-1.183565px;}
._3{width:1.129766px;}
._c{width:2.358767px;}
._b{width:3.793998px;}
._0{width:16.363650px;}
._8{width:19.128192px;}
._6{width:26.899200px;}
._5{width:59.775600px;}
._a{width:1789.282078px;}
._7{width:1975.008489px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y51{bottom:152.920500px;}
.y28{bottom:157.648500px;}
.y19{bottom:168.186000px;}
.y50{bottom:174.876000px;}
.y18{bottom:184.624500px;}
.y4f{bottom:192.808500px;}
.y17{bottom:201.063000px;}
.y4e{bottom:214.765500px;}
.y5c{bottom:228.259500px;}
.y4d{bottom:237.181500px;}
.y5b{bottom:250.675500px;}
.y16{bottom:264.778500px;}
.y4c{bottom:269.406000px;}
.y5a{bottom:282.058500px;}
.y4b{bottom:291.822000px;}
.y15{bottom:298.396500px;}
.y59{bottom:299.991000px;}
.y58{bottom:317.923500px;}
.y4a{bottom:324.048000px;}
.y57{bottom:340.339500px;}
.y49{bottom:341.980500px;}
.y48{bottom:359.913000px;}
.y56{bottom:371.721000px;}
.y47{bottom:382.329000px;}
.y55{bottom:389.655000px;}
.y54{bottom:412.071000px;}
.y46{bottom:414.553500px;}
.y45{bottom:436.969500px;}
.y53{bottom:454.362000px;}
.y44{bottom:469.195500px;}
.y43{bottom:487.128000px;}
.y42{bottom:505.060500px;}
.y41{bottom:522.993000px;}
.y40{bottom:540.927000px;}
.y3f{bottom:558.859500px;}
.y27{bottom:558.984000px;}
.y3e{bottom:576.792000px;}
.y3d{bottom:598.747500px;}
.y3c{bottom:626.490000px;}
.y3b{bottom:644.422500px;}
.y3a{bottom:662.355000px;}
.y39{bottom:680.289000px;}
.y38{bottom:698.221500px;}
.y37{bottom:720.177000px;}
.y14{bottom:736.432500px;}
.y36{bottom:742.593000px;}
.y13{bottom:754.365000px;}
.y35{bottom:765.009000px;}
.y12{bottom:772.297500px;}
.y11{bottom:790.231500px;}
.y34{bottom:797.235000px;}
.y52{bottom:800.025000px;}
.y10{bottom:808.164000px;}
.y33{bottom:815.167500px;}
.yf{bottom:826.096500px;}
.y32{bottom:837.583500px;}
.ye{bottom:844.029000px;}
.yd{bottom:866.445000px;}
.y31{bottom:869.808000px;}
.y30{bottom:887.740500px;}
.yc{bottom:903.180000px;}
.y26{bottom:905.236500px;}
.y2f{bottom:905.674500px;}
.yb{bottom:919.618500px;}
.y25{bottom:923.169000px;}
.y2e{bottom:923.607000px;}
.y24{bottom:941.101500px;}
.y2d{bottom:941.539500px;}
.ya{bottom:945.457500px;}
.y23{bottom:959.034000px;}
.y2c{bottom:959.472000px;}
.y9{bottom:961.896000px;}
.y22{bottom:976.966500px;}
.y2b{bottom:977.404500px;}
.y8{bottom:978.333000px;}
.y7{bottom:994.771500px;}
.y2a{bottom:995.338500px;}
.y21{bottom:999.382500px;}
.y6{bottom:1011.210000px;}
.y29{bottom:1013.271000px;}
.y5{bottom:1027.648500px;}
.y20{bottom:1031.203500px;}
.y4{bottom:1044.087000px;}
.y1f{bottom:1049.136000px;}
.y3{bottom:1060.525500px;}
.y1e{bottom:1067.068500px;}
.y1d{bottom:1085.001000px;}
.y2{bottom:1086.864000px;}
.y1c{bottom:1102.935000px;}
.y1b{bottom:1120.867500px;}
.y1{bottom:1121.565000px;}
.y1a{bottom:1161.216000px;}
.h9{height:33.474420px;}
.ha{height:33.713523px;}
.h8{height:35.148141px;}
.h7{height:37.927872px;}
.h4{height:39.541824px;}
.h5{height:41.723369px;}
.h6{height:43.935066px;}
.h3{height:46.145493px;}
.h2{height:60.081886px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:79.621500px;}
.x1{left:80.697000px;}
.x3{left:95.641500px;}
.x7{left:103.905000px;}
.x8{left:132.253500px;}
.x6{left:255.688500px;}
.xa{left:297.085500px;}
.x9{left:310.152000px;}
.x4{left:313.125000px;}
.x5{left:315.270000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:10.628163pt;}
.ls4{letter-spacing:19.395135pt;}
.ls3{letter-spacing:19.501802pt;}
.ls2{letter-spacing:21.256468pt;}
.ws0{word-spacing:-19.128267pt;}
.ws15{word-spacing:-13.283467pt;}
.ws9{word-spacing:-3.443098pt;}
.ws1{word-spacing:-2.592309pt;}
.ws12{word-spacing:-1.434614pt;}
.ws17{word-spacing:-0.212535pt;}
.ws10{word-spacing:-0.159402pt;}
.ws7{word-spacing:-0.143462pt;}
.ws1b{word-spacing:-0.106268pt;}
.ws4{word-spacing:-0.095642pt;}
.wsa{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws2{word-spacing:0.000000pt;}
.ws14{word-spacing:0.053134pt;}
.ws5{word-spacing:0.095642pt;}
.ws16{word-spacing:0.106268pt;}
.ws8{word-spacing:0.143462pt;}
.wsb{word-spacing:0.159402pt;}
.ws11{word-spacing:0.212535pt;}
.ws13{word-spacing:0.265669pt;}
.ws18{word-spacing:0.318803pt;}
.ws6{word-spacing:0.430387pt;}
.wsc{word-spacing:1.009543pt;}
.wsd{word-spacing:2.178489pt;}
.wsf{word-spacing:2.816095pt;}
.ws1c{word-spacing:2.975497pt;}
.wse{word-spacing:10.584293pt;}
.ws1a{word-spacing:13.230333pt;}
.ws19{word-spacing:39.850400pt;}
._9{margin-left:-5.403750pt;}
._4{margin-left:-3.808133pt;}
._1{margin-left:-1.978183pt;}
._2{margin-left:-1.052058pt;}
._3{width:1.004237pt;}
._c{width:2.096682pt;}
._b{width:3.372443pt;}
._0{width:14.545467pt;}
._8{width:17.002837pt;}
._6{width:23.910400pt;}
._5{width:53.133867pt;}
._a{width:1590.472958pt;}
._7{width:1755.563101pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:135.929333pt;}
.y28{bottom:140.132000pt;}
.y19{bottom:149.498667pt;}
.y50{bottom:155.445333pt;}
.y18{bottom:164.110667pt;}
.y4f{bottom:171.385333pt;}
.y17{bottom:178.722667pt;}
.y4e{bottom:190.902667pt;}
.y5c{bottom:202.897333pt;}
.y4d{bottom:210.828000pt;}
.y5b{bottom:222.822667pt;}
.y16{bottom:235.358667pt;}
.y4c{bottom:239.472000pt;}
.y5a{bottom:250.718667pt;}
.y4b{bottom:259.397333pt;}
.y15{bottom:265.241333pt;}
.y59{bottom:266.658667pt;}
.y58{bottom:282.598667pt;}
.y4a{bottom:288.042667pt;}
.y57{bottom:302.524000pt;}
.y49{bottom:303.982667pt;}
.y48{bottom:319.922667pt;}
.y56{bottom:330.418667pt;}
.y47{bottom:339.848000pt;}
.y55{bottom:346.360000pt;}
.y54{bottom:366.285333pt;}
.y46{bottom:368.492000pt;}
.y45{bottom:388.417333pt;}
.y53{bottom:403.877333pt;}
.y44{bottom:417.062667pt;}
.y43{bottom:433.002667pt;}
.y42{bottom:448.942667pt;}
.y41{bottom:464.882667pt;}
.y40{bottom:480.824000pt;}
.y3f{bottom:496.764000pt;}
.y27{bottom:496.874667pt;}
.y3e{bottom:512.704000pt;}
.y3d{bottom:532.220000pt;}
.y3c{bottom:556.880000pt;}
.y3b{bottom:572.820000pt;}
.y3a{bottom:588.760000pt;}
.y39{bottom:604.701333pt;}
.y38{bottom:620.641333pt;}
.y37{bottom:640.157333pt;}
.y14{bottom:654.606667pt;}
.y36{bottom:660.082667pt;}
.y13{bottom:670.546667pt;}
.y35{bottom:680.008000pt;}
.y12{bottom:686.486667pt;}
.y11{bottom:702.428000pt;}
.y34{bottom:708.653333pt;}
.y52{bottom:711.133333pt;}
.y10{bottom:718.368000pt;}
.y33{bottom:724.593333pt;}
.yf{bottom:734.308000pt;}
.y32{bottom:744.518667pt;}
.ye{bottom:750.248000pt;}
.yd{bottom:770.173333pt;}
.y31{bottom:773.162667pt;}
.y30{bottom:789.102667pt;}
.yc{bottom:802.826667pt;}
.y26{bottom:804.654667pt;}
.y2f{bottom:805.044000pt;}
.yb{bottom:817.438667pt;}
.y25{bottom:820.594667pt;}
.y2e{bottom:820.984000pt;}
.y24{bottom:836.534667pt;}
.y2d{bottom:836.924000pt;}
.ya{bottom:840.406667pt;}
.y23{bottom:852.474667pt;}
.y2c{bottom:852.864000pt;}
.y9{bottom:855.018667pt;}
.y22{bottom:868.414667pt;}
.y2b{bottom:868.804000pt;}
.y8{bottom:869.629333pt;}
.y7{bottom:884.241333pt;}
.y2a{bottom:884.745333pt;}
.y21{bottom:888.340000pt;}
.y6{bottom:898.853333pt;}
.y29{bottom:900.685333pt;}
.y5{bottom:913.465333pt;}
.y20{bottom:916.625333pt;}
.y4{bottom:928.077333pt;}
.y1f{bottom:932.565333pt;}
.y3{bottom:942.689333pt;}
.y1e{bottom:948.505333pt;}
.y1d{bottom:964.445333pt;}
.y2{bottom:966.101333pt;}
.y1c{bottom:980.386667pt;}
.y1b{bottom:996.326667pt;}
.y1{bottom:996.946667pt;}
.y1a{bottom:1032.192000pt;}
.h9{height:29.755040pt;}
.ha{height:29.967576pt;}
.h8{height:31.242792pt;}
.h7{height:33.713664pt;}
.h4{height:35.148288pt;}
.h5{height:37.087439pt;}
.h6{height:39.053392pt;}
.h3{height:41.018216pt;}
.h2{height:53.406121pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:70.774667pt;}
.x1{left:71.730667pt;}
.x3{left:85.014667pt;}
.x7{left:92.360000pt;}
.x8{left:117.558667pt;}
.x6{left:227.278667pt;}
.xa{left:264.076000pt;}
.x9{left:275.690667pt;}
.x4{left:278.333333pt;}
.x5{left:280.240000pt;}
}




    .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; }
  