
    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_25fad50cb57832bf0b64b225.woff')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_22e942ce55d742b877b42512.woff')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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_22d2a76ee8c5feef8293fe94.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_9413f179e36be72d76e8532e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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_10d960edf2d705b77fab31f3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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;}
.m3{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);}
.md{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);}
.m4{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m8{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);}
.m2{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);}
.mc{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m16{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m19{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.mf{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);}
.m9{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);}
.m5{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);}
.m15{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m11{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;}
.v1{vertical-align:22.854000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:21.518100px;}
.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;}
}
.ws2c{word-spacing:-17.932800px;}
.ws24{word-spacing:-14.943900px;}
.ws1a{word-spacing:-13.449600px;}
.ws19{word-spacing:-8.966400px;}
.ws1f{word-spacing:-3.347434px;}
.ws5{word-spacing:-1.972595px;}
.ws23{word-spacing:-1.434614px;}
.wse{word-spacing:-1.135736px;}
.ws14{word-spacing:-0.956410px;}
.ws7{word-spacing:-0.717307px;}
.ws1d{word-spacing:-0.597756px;}
.ws16{word-spacing:-0.418429px;}
.ws1e{word-spacing:-0.358654px;}
.ws9{word-spacing:-0.298878px;}
.ws20{word-spacing:-0.239102px;}
.ws3{word-spacing:-0.179327px;}
.ws17{word-spacing:-0.119551px;}
.ws2{word-spacing:-0.059776px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:0.059776px;}
.wsb{word-spacing:0.119551px;}
.ws6{word-spacing:0.179327px;}
.wsf{word-spacing:0.239102px;}
.ws15{word-spacing:0.298878px;}
.ws11{word-spacing:0.358654px;}
.ws25{word-spacing:0.478205px;}
.ws1b{word-spacing:0.657532px;}
.ws22{word-spacing:0.896634px;}
.ws31{word-spacing:0.956410px;}
.ws30{word-spacing:1.016185px;}
.ws27{word-spacing:1.075961px;}
.ws1c{word-spacing:1.434614px;}
.ws28{word-spacing:1.613941px;}
.ws13{word-spacing:1.673717px;}
.ws21{word-spacing:2.032370px;}
.ws12{word-spacing:2.092146px;}
.ws26{word-spacing:2.391024px;}
.wsd{word-spacing:2.570351px;}
.ws2a{word-spacing:2.988780px;}
.wsc{word-spacing:3.108331px;}
.wsa{word-spacing:3.466985px;}
.ws8{word-spacing:3.526760px;}
.ws2e{word-spacing:3.825638px;}
.ws2b{word-spacing:4.662497px;}
.ws10{word-spacing:5.618906px;}
.ws29{word-spacing:6.037336px;}
.ws2f{word-spacing:6.156887px;}
.ws2d{word-spacing:6.575316px;}
.ws18{word-spacing:7.470163px;}
.ws0{word-spacing:25.719808px;}
._15{margin-left:-7.972117px;}
._7{margin-left:-6.599270px;}
._3{margin-left:-5.499355px;}
._4{margin-left:-3.945190px;}
._2{margin-left:-2.685602px;}
._0{margin-left:-1.549386px;}
._d{width:2.978141px;}
._10{width:8.787013px;}
._f{width:13.569061px;}
._9{width:16.498066px;}
._12{width:17.509951px;}
._5{width:18.769538px;}
._e{width:20.558027px;}
._11{width:21.758318px;}
._c{width:23.238850px;}
._13{width:24.268894px;}
._b{width:25.285079px;}
._14{width:27.496776px;}
._8{width:29.216410px;}
._1{width:32.004331px;}
._a{width:35.023722px;}
._16{width:41.818741px;}
._6{width:71.731200px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y61{bottom:63.168000px;}
.y2e{bottom:78.184500px;}
.y2d{bottom:93.129000px;}
.y60{bottom:108.000000px;}
.y5f{bottom:124.363500px;}
.y2c{bottom:138.930000px;}
.y5e{bottom:153.975000px;}
.y2b{bottom:155.293500px;}
.y2a{bottom:171.657000px;}
.y29{bottom:188.020500px;}
.y5d{bottom:201.832500px;}
.y28{bottom:212.604000px;}
.y5c{bottom:218.197500px;}
.y27{bottom:228.967500px;}
.y5b{bottom:234.561000px;}
.y82{bottom:238.132500px;}
.y26{bottom:245.331000px;}
.y5a{bottom:250.924500px;}
.y81{bottom:254.496000px;}
.y25{bottom:261.694500px;}
.y59{bottom:267.288000px;}
.y24{bottom:278.058000px;}
.y80{bottom:282.814500px;}
.y58{bottom:283.651500px;}
.y23{bottom:302.641500px;}
.y57{bottom:308.233500px;}
.y7f{bottom:311.133000px;}
.y22{bottom:319.005000px;}
.y56{bottom:324.598500px;}
.y7e{bottom:327.496500px;}
.y21{bottom:335.368500px;}
.y55{bottom:340.962000px;}
.y20{bottom:351.732000px;}
.y7d{bottom:355.816500px;}
.y54{bottom:365.544000px;}
.y1f{bottom:368.095500px;}
.y53{bottom:381.907500px;}
.y7c{bottom:384.135000px;}
.y1e{bottom:384.459000px;}
.y52{bottom:398.271000px;}
.y1d{bottom:400.822500px;}
.y7b{bottom:412.453500px;}
.y51{bottom:414.634500px;}
.y1c{bottom:417.186000px;}
.y50{bottom:430.999500px;}
.y1b{bottom:433.549500px;}
.y7a{bottom:440.772000px;}
.y4f{bottom:455.581500px;}
.y1a{bottom:458.133000px;}
.y79{bottom:469.090500px;}
.y4e{bottom:471.945000px;}
.y19{bottom:474.496500px;}
.y78{bottom:485.454000px;}
.y4d{bottom:488.308500px;}
.y18{bottom:490.860000px;}
.y4c{bottom:504.672000px;}
.y17{bottom:507.223500px;}
.y77{bottom:513.774000px;}
.y4b{bottom:521.035500px;}
.y16{bottom:523.587000px;}
.y4a{bottom:537.400500px;}
.y15{bottom:539.950500px;}
.y76{bottom:542.092500px;}
.y49{bottom:553.764000px;}
.y14{bottom:556.314000px;}
.y48{bottom:570.127500px;}
.y75{bottom:570.411000px;}
.y47{bottom:586.491000px;}
.y74{bottom:586.774500px;}
.y13{bottom:591.582000px;}
.y46{bottom:602.854500px;}
.y73{bottom:615.093000px;}
.y45{bottom:627.436500px;}
.y72{bottom:631.456500px;}
.y12{bottom:643.305000px;}
.y44{bottom:643.800000px;}
.y11{bottom:659.670000px;}
.y71{bottom:659.776500px;}
.y43{bottom:660.165000px;}
.y10{bottom:676.033500px;}
.y42{bottom:676.528500px;}
.y70{bottom:688.095000px;}
.yf{bottom:692.397000px;}
.y41{bottom:692.892000px;}
.ye{bottom:708.760500px;}
.y40{bottom:709.255500px;}
.y6f{bottom:716.413500px;}
.yd{bottom:725.124000px;}
.y3f{bottom:725.619000px;}
.yc{bottom:741.487500px;}
.y3e{bottom:741.982500px;}
.y6e{bottom:744.732000px;}
.yb{bottom:757.851000px;}
.y3d{bottom:758.346000px;}
.y6d{bottom:761.095500px;}
.ya{bottom:774.214500px;}
.y3c{bottom:782.929500px;}
.y6c{bottom:789.414000px;}
.y3b{bottom:799.293000px;}
.y9{bottom:810.297000px;}
.y3a{bottom:815.656500px;}
.y6b{bottom:817.734000px;}
.y39{bottom:840.238500px;}
.y6a{bottom:846.052500px;}
.y38{bottom:856.602000px;}
.y8{bottom:872.068500px;}
.y37{bottom:872.967000px;}
.y69{bottom:874.371000px;}
.y7{bottom:888.432000px;}
.y36{bottom:889.330500px;}
.y68{bottom:902.689500px;}
.y6{bottom:904.797000px;}
.y5{bottom:921.160500px;}
.y35{bottom:927.160500px;}
.y67{bottom:931.008000px;}
.y4{bottom:937.524000px;}
.y66{bottom:947.373000px;}
.y34{bottom:975.018000px;}
.y65{bottom:975.691500px;}
.y3{bottom:983.412000px;}
.y33{bottom:991.383000px;}
.y64{bottom:1004.010000px;}
.y2{bottom:1013.299500px;}
.y32{bottom:1015.965000px;}
.y63{bottom:1020.373500px;}
.y31{bottom:1032.328500px;}
.y62{bottom:1036.737000px;}
.y1{bottom:1043.188500px;}
.y30{bottom:1048.692000px;}
.y2f{bottom:1065.055500px;}
.h5{height:36.941321px;}
.h4{height:41.125613px;}
.h3{height:41.304940px;}
.h7{height:47.529533px;}
.h6{height:49.566259px;}
.h2{height:71.375048px;}
.h1{height:72.201388px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:161.869500px;}
.x2{left:170.326500px;}
.xb{left:176.944500px;}
.xa{left:215.335500px;}
.x8{left:290.361000px;}
.x7{left:349.215000px;}
.x6{left:382.936500px;}
.x5{left:395.085000px;}
.x4{left:407.734500px;}
.x9{left:425.637000px;}
.x3{left:434.610000px;}
.xc{left:455.263500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.314667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:19.127200pt;}
.ws2c{word-spacing:-15.940267pt;}
.ws24{word-spacing:-13.283467pt;}
.ws1a{word-spacing:-11.955200pt;}
.ws19{word-spacing:-7.970133pt;}
.ws1f{word-spacing:-2.975497pt;}
.ws5{word-spacing:-1.753418pt;}
.ws23{word-spacing:-1.275213pt;}
.wse{word-spacing:-1.009543pt;}
.ws14{word-spacing:-0.850142pt;}
.ws7{word-spacing:-0.637606pt;}
.ws1d{word-spacing:-0.531339pt;}
.ws16{word-spacing:-0.371937pt;}
.ws1e{word-spacing:-0.318803pt;}
.ws9{word-spacing:-0.265669pt;}
.ws20{word-spacing:-0.212535pt;}
.ws3{word-spacing:-0.159402pt;}
.ws17{word-spacing:-0.106268pt;}
.ws2{word-spacing:-0.053134pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:0.053134pt;}
.wsb{word-spacing:0.106268pt;}
.ws6{word-spacing:0.159402pt;}
.wsf{word-spacing:0.212535pt;}
.ws15{word-spacing:0.265669pt;}
.ws11{word-spacing:0.318803pt;}
.ws25{word-spacing:0.425071pt;}
.ws1b{word-spacing:0.584473pt;}
.ws22{word-spacing:0.797008pt;}
.ws31{word-spacing:0.850142pt;}
.ws30{word-spacing:0.903276pt;}
.ws27{word-spacing:0.956410pt;}
.ws1c{word-spacing:1.275213pt;}
.ws28{word-spacing:1.434614pt;}
.ws13{word-spacing:1.487748pt;}
.ws21{word-spacing:1.806551pt;}
.ws12{word-spacing:1.859685pt;}
.ws26{word-spacing:2.125355pt;}
.wsd{word-spacing:2.284756pt;}
.ws2a{word-spacing:2.656693pt;}
.wsc{word-spacing:2.762961pt;}
.wsa{word-spacing:3.081764pt;}
.ws8{word-spacing:3.134898pt;}
.ws2e{word-spacing:3.400567pt;}
.ws2b{word-spacing:4.144442pt;}
.ws10{word-spacing:4.994583pt;}
.ws29{word-spacing:5.366521pt;}
.ws2f{word-spacing:5.472788pt;}
.ws2d{word-spacing:5.844725pt;}
.ws18{word-spacing:6.640145pt;}
.ws0{word-spacing:22.862051pt;}
._15{margin-left:-7.086326pt;}
._7{margin-left:-5.866018pt;}
._3{margin-left:-4.888316pt;}
._4{margin-left:-3.506835pt;}
._2{margin-left:-2.387202pt;}
._0{margin-left:-1.377232pt;}
._d{width:2.647236pt;}
._10{width:7.810678pt;}
._f{width:12.061388pt;}
._9{width:14.664947pt;}
._12{width:15.564401pt;}
._5{width:16.684034pt;}
._e{width:18.273802pt;}
._11{width:19.340727pt;}
._c{width:20.656755pt;}
._13{width:21.572350pt;}
._b{width:22.475626pt;}
._14{width:24.441579pt;}
._8{width:25.970142pt;}
._1{width:28.448294pt;}
._a{width:31.132197pt;}
._16{width:37.172214pt;}
._6{width:63.761067pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:56.149333pt;}
.y2e{bottom:69.497333pt;}
.y2d{bottom:82.781333pt;}
.y60{bottom:96.000000pt;}
.y5f{bottom:110.545333pt;}
.y2c{bottom:123.493333pt;}
.y5e{bottom:136.866667pt;}
.y2b{bottom:138.038667pt;}
.y2a{bottom:152.584000pt;}
.y29{bottom:167.129333pt;}
.y5d{bottom:179.406667pt;}
.y28{bottom:188.981333pt;}
.y5c{bottom:193.953333pt;}
.y27{bottom:203.526667pt;}
.y5b{bottom:208.498667pt;}
.y82{bottom:211.673333pt;}
.y26{bottom:218.072000pt;}
.y5a{bottom:223.044000pt;}
.y81{bottom:226.218667pt;}
.y25{bottom:232.617333pt;}
.y59{bottom:237.589333pt;}
.y24{bottom:247.162667pt;}
.y80{bottom:251.390667pt;}
.y58{bottom:252.134667pt;}
.y23{bottom:269.014667pt;}
.y57{bottom:273.985333pt;}
.y7f{bottom:276.562667pt;}
.y22{bottom:283.560000pt;}
.y56{bottom:288.532000pt;}
.y7e{bottom:291.108000pt;}
.y21{bottom:298.105333pt;}
.y55{bottom:303.077333pt;}
.y20{bottom:312.650667pt;}
.y7d{bottom:316.281333pt;}
.y54{bottom:324.928000pt;}
.y1f{bottom:327.196000pt;}
.y53{bottom:339.473333pt;}
.y7c{bottom:341.453333pt;}
.y1e{bottom:341.741333pt;}
.y52{bottom:354.018667pt;}
.y1d{bottom:356.286667pt;}
.y7b{bottom:366.625333pt;}
.y51{bottom:368.564000pt;}
.y1c{bottom:370.832000pt;}
.y50{bottom:383.110667pt;}
.y1b{bottom:385.377333pt;}
.y7a{bottom:391.797333pt;}
.y4f{bottom:404.961333pt;}
.y1a{bottom:407.229333pt;}
.y79{bottom:416.969333pt;}
.y4e{bottom:419.506667pt;}
.y19{bottom:421.774667pt;}
.y78{bottom:431.514667pt;}
.y4d{bottom:434.052000pt;}
.y18{bottom:436.320000pt;}
.y4c{bottom:448.597333pt;}
.y17{bottom:450.865333pt;}
.y77{bottom:456.688000pt;}
.y4b{bottom:463.142667pt;}
.y16{bottom:465.410667pt;}
.y4a{bottom:477.689333pt;}
.y15{bottom:479.956000pt;}
.y76{bottom:481.860000pt;}
.y49{bottom:492.234667pt;}
.y14{bottom:494.501333pt;}
.y48{bottom:506.780000pt;}
.y75{bottom:507.032000pt;}
.y47{bottom:521.325333pt;}
.y74{bottom:521.577333pt;}
.y13{bottom:525.850667pt;}
.y46{bottom:535.870667pt;}
.y73{bottom:546.749333pt;}
.y45{bottom:557.721333pt;}
.y72{bottom:561.294667pt;}
.y12{bottom:571.826667pt;}
.y44{bottom:572.266667pt;}
.y11{bottom:586.373333pt;}
.y71{bottom:586.468000pt;}
.y43{bottom:586.813333pt;}
.y10{bottom:600.918667pt;}
.y42{bottom:601.358667pt;}
.y70{bottom:611.640000pt;}
.yf{bottom:615.464000pt;}
.y41{bottom:615.904000pt;}
.ye{bottom:630.009333pt;}
.y40{bottom:630.449333pt;}
.y6f{bottom:636.812000pt;}
.yd{bottom:644.554667pt;}
.y3f{bottom:644.994667pt;}
.yc{bottom:659.100000pt;}
.y3e{bottom:659.540000pt;}
.y6e{bottom:661.984000pt;}
.yb{bottom:673.645333pt;}
.y3d{bottom:674.085333pt;}
.y6d{bottom:676.529333pt;}
.ya{bottom:688.190667pt;}
.y3c{bottom:695.937333pt;}
.y6c{bottom:701.701333pt;}
.y3b{bottom:710.482667pt;}
.y9{bottom:720.264000pt;}
.y3a{bottom:725.028000pt;}
.y6b{bottom:726.874667pt;}
.y39{bottom:746.878667pt;}
.y6a{bottom:752.046667pt;}
.y38{bottom:761.424000pt;}
.y8{bottom:775.172000pt;}
.y37{bottom:775.970667pt;}
.y69{bottom:777.218667pt;}
.y7{bottom:789.717333pt;}
.y36{bottom:790.516000pt;}
.y68{bottom:802.390667pt;}
.y6{bottom:804.264000pt;}
.y5{bottom:818.809333pt;}
.y35{bottom:824.142667pt;}
.y67{bottom:827.562667pt;}
.y4{bottom:833.354667pt;}
.y66{bottom:842.109333pt;}
.y34{bottom:866.682667pt;}
.y65{bottom:867.281333pt;}
.y3{bottom:874.144000pt;}
.y33{bottom:881.229333pt;}
.y64{bottom:892.453333pt;}
.y2{bottom:900.710667pt;}
.y32{bottom:903.080000pt;}
.y63{bottom:906.998667pt;}
.y31{bottom:917.625333pt;}
.y62{bottom:921.544000pt;}
.y1{bottom:927.278667pt;}
.y30{bottom:932.170667pt;}
.y2f{bottom:946.716000pt;}
.h5{height:32.836730pt;}
.h4{height:36.556100pt;}
.h3{height:36.715502pt;}
.h7{height:42.248474pt;}
.h6{height:44.058897pt;}
.h2{height:63.444487pt;}
.h1{height:64.179011pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:143.884000pt;}
.x2{left:151.401333pt;}
.xb{left:157.284000pt;}
.xa{left:191.409333pt;}
.x8{left:258.098667pt;}
.x7{left:310.413333pt;}
.x6{left:340.388000pt;}
.x5{left:351.186667pt;}
.x4{left:362.430667pt;}
.x9{left:378.344000pt;}
.x3{left:386.320000pt;}
.xc{left:404.678667pt;}
}




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