
    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_2e526b47a66051aa9202e2e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_fa92a2bfc349c61adc81ac77.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_07595fbdec3e63796c0456b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863281;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;}
.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(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);}
.v2{vertical-align:-22.320000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:13.730400px;}
.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;}
}
.ws2{word-spacing:-65.501100px;}
.ws1a{word-spacing:-55.944000px;}
.ws9f{word-spacing:-45.531600px;}
.ws1{word-spacing:-45.401100px;}
.wsa0{word-spacing:-45.011100px;}
.ws0{word-spacing:-44.603100px;}
.ws70{word-spacing:-38.868300px;}
.ws1c{word-spacing:-38.652300px;}
.ws7c{word-spacing:-38.598000px;}
.ws82{word-spacing:-38.583000px;}
.ws47{word-spacing:-38.166000px;}
.ws25{word-spacing:-38.160000px;}
.ws87{word-spacing:-38.157000px;}
.ws60{word-spacing:-38.156400px;}
.ws37{word-spacing:-38.154000px;}
.ws32{word-spacing:-38.136000px;}
.ws5{word-spacing:-37.944000px;}
.ws3{word-spacing:-37.940100px;}
.ws39{word-spacing:-37.938600px;}
.ws29{word-spacing:-37.923600px;}
.ws38{word-spacing:-37.872600px;}
.ws6c{word-spacing:-37.866000px;}
.ws24{word-spacing:-37.732200px;}
.ws5e{word-spacing:-37.444200px;}
.ws1d{word-spacing:-37.442400px;}
.ws11{word-spacing:-37.440000px;}
.ws4f{word-spacing:-37.431000px;}
.ws8b{word-spacing:-37.428600px;}
.ws4{word-spacing:-37.423200px;}
.ws2b{word-spacing:-37.419600px;}
.ws1b{word-spacing:-37.414200px;}
.ws8e{word-spacing:-37.224000px;}
.ws77{word-spacing:-37.206300px;}
.ws3b{word-spacing:-37.146600px;}
.ws5c{word-spacing:-37.137000px;}
.ws7e{word-spacing:-37.134000px;}
.ws6b{word-spacing:-36.726000px;}
.ws7{word-spacing:-36.720000px;}
.ws12{word-spacing:-36.705000px;}
.ws2d{word-spacing:-36.510000px;}
.ws1e{word-spacing:-36.000000px;}
.ws41{word-spacing:-35.994000px;}
.ws9b{word-spacing:-35.988600px;}
.ws64{word-spacing:-35.784000px;}
.ws4a{word-spacing:-35.778600px;}
.ws67{word-spacing:-35.776800px;}
.ws73{word-spacing:-35.764200px;}
.ws51{word-spacing:-35.286000px;}
.ws5d{word-spacing:-35.280000px;}
.ws5f{word-spacing:-35.274000px;}
.ws3c{word-spacing:-35.269200px;}
.ws21{word-spacing:-35.064000px;}
.wsa{word-spacing:-35.049600px;}
.ws3f{word-spacing:-34.560600px;}
.ws72{word-spacing:-34.560000px;}
.ws8a{word-spacing:-34.556400px;}
.ws40{word-spacing:-34.554600px;}
.ws3a{word-spacing:-34.344000px;}
.ws26{word-spacing:-33.840000px;}
.ws45{word-spacing:-33.828600px;}
.ws18{word-spacing:-33.621000px;}
.ws6a{word-spacing:-33.126000px;}
.ws15{word-spacing:-33.106800px;}
.ws3e{word-spacing:-32.898000px;}
.ws8d{word-spacing:-32.887200px;}
.ws3d{word-spacing:-32.406000px;}
.ws75{word-spacing:-32.400000px;}
.ws78{word-spacing:-32.180400px;}
.ws36{word-spacing:-32.106600px;}
.ws84{word-spacing:-31.680000px;}
.ws91{word-spacing:-31.674000px;}
.ws56{word-spacing:-31.665600px;}
.ws50{word-spacing:-31.662300px;}
.ws2c{word-spacing:-31.455000px;}
.ws14{word-spacing:-30.960000px;}
.ws22{word-spacing:-30.954000px;}
.ws1f{word-spacing:-30.876900px;}
.ws42{word-spacing:-30.744000px;}
.ws9{word-spacing:-30.670200px;}
.ws10{word-spacing:-30.240000px;}
.ws59{word-spacing:-30.210600px;}
.ws6d{word-spacing:-30.162000px;}
.ws35{word-spacing:-30.024000px;}
.ws85{word-spacing:-30.013200px;}
.ws69{word-spacing:-29.526000px;}
.ws44{word-spacing:-29.520000px;}
.ws57{word-spacing:-29.514600px;}
.ws30{word-spacing:-29.304000px;}
.ws8{word-spacing:-29.296800px;}
.ws34{word-spacing:-29.228400px;}
.ws55{word-spacing:-28.800000px;}
.ws97{word-spacing:-28.366200px;}
.ws62{word-spacing:-28.074600px;}
.ws5b{word-spacing:-27.859200px;}
.ws79{word-spacing:-27.786600px;}
.ws58{word-spacing:-27.360000px;}
.ws28{word-spacing:-27.144000px;}
.ws8c{word-spacing:-27.131400px;}
.wse{word-spacing:-26.640000px;}
.ws43{word-spacing:-25.920000px;}
.ws71{word-spacing:-25.913700px;}
.ws96{word-spacing:-25.704000px;}
.ws9e{word-spacing:-25.187400px;}
.ws83{word-spacing:-24.990000px;}
.ws81{word-spacing:-24.973200px;}
.ws65{word-spacing:-24.908400px;}
.ws53{word-spacing:-24.476400px;}
.ws5a{word-spacing:-24.177600px;}
.ws17{word-spacing:-23.760000px;}
.wsb{word-spacing:-23.754000px;}
.wsd{word-spacing:-23.749200px;}
.ws76{word-spacing:-23.544000px;}
.ws4c{word-spacing:-23.526000px;}
.ws6{word-spacing:-23.040000px;}
.ws27{word-spacing:-22.326000px;}
.ws16{word-spacing:-22.320000px;}
.ws2a{word-spacing:-21.600000px;}
.wsf{word-spacing:-20.886000px;}
.ws8f{word-spacing:-20.160000px;}
.ws63{word-spacing:-19.944000px;}
.ws92{word-spacing:-18.726000px;}
.ws9d{word-spacing:-18.510000px;}
.ws48{word-spacing:-18.495000px;}
.ws88{word-spacing:-17.996400px;}
.ws2e{word-spacing:-17.994000px;}
.ws7b{word-spacing:-17.566200px;}
.ws52{word-spacing:-17.286000px;}
.ws19{word-spacing:-17.280000px;}
.ws4e{word-spacing:-16.560000px;}
.ws49{word-spacing:-16.344000px;}
.ws7d{word-spacing:-15.840000px;}
.ws33{word-spacing:-15.833400px;}
.wsc{word-spacing:-15.123300px;}
.ws90{word-spacing:-15.120000px;}
.ws9c{word-spacing:-15.114000px;}
.ws4d{word-spacing:-14.400000px;}
.ws6e{word-spacing:-14.394000px;}
.ws86{word-spacing:-14.190000px;}
.ws94{word-spacing:-14.178600px;}
.ws54{word-spacing:-14.112000px;}
.ws31{word-spacing:-13.966200px;}
.ws95{word-spacing:-13.674000px;}
.ws68{word-spacing:-13.464000px;}
.ws46{word-spacing:-13.392000px;}
.ws66{word-spacing:-13.375200px;}
.ws99{word-spacing:-12.960000px;}
.ws61{word-spacing:-12.240000px;}
.ws7f{word-spacing:-11.516400px;}
.ws93{word-spacing:-9.855000px;}
.ws23{word-spacing:-8.343000px;}
.ws74{word-spacing:-7.920000px;}
.ws2f{word-spacing:-2.886000px;}
.ws7a{word-spacing:-2.880000px;}
.ws89{word-spacing:-1.152000px;}
.ws20{word-spacing:0.000000px;}
.ws80{word-spacing:2.160000px;}
.ws98{word-spacing:2.461500px;}
.ws4b{word-spacing:3.898800px;}
.ws6f{word-spacing:4.546800px;}
.ws9a{word-spacing:9.577800px;}
.ws13{word-spacing:15.337800px;}
._0{margin-left:-1.106100px;}
._2{width:1.270800px;}
._10{width:17.064000px;}
._b{width:18.230100px;}
._3{width:20.238000px;}
._1{width:21.474900px;}
._d{width:23.397000px;}
._13{width:24.570000px;}
._f{width:25.688100px;}
._9{width:26.862000px;}
._4{width:27.936000px;}
._17{width:29.288400px;}
._a{width:30.462000px;}
._1a{width:32.194800px;}
._5{width:33.198000px;}
._7{width:34.256400px;}
._8{width:36.078000px;}
._19{width:37.800000px;}
._11{width:39.432000px;}
._15{width:40.668600px;}
._6{width:42.207900px;}
._12{width:43.585800px;}
._14{width:44.644800px;}
._e{width:46.490100px;}
._1e{width:47.724000px;}
._1c{width:49.038000px;}
._1d{width:55.806000px;}
._16{width:58.736400px;}
._1f{width:59.752500px;}
._1b{width:61.843200px;}
._20{width:67.108200px;}
._c{width:72.294000px;}
._18{width:95.766000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.600000px;}
.fs2{font-size:46.800000px;}
.fs4{font-size:59.700000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y22{bottom:116.355000px;}
.y49{bottom:120.315000px;}
.y81{bottom:124.636500px;}
.y48{bottom:142.636500px;}
.y80{bottom:146.955000px;}
.y21{bottom:158.655000px;}
.y47{bottom:164.955000px;}
.y7f{bottom:169.275000px;}
.y20{bottom:180.975000px;}
.y46{bottom:187.275000px;}
.y7e{bottom:191.775000px;}
.y1f{bottom:203.475000px;}
.y69{bottom:205.275000px;}
.y45{bottom:209.775000px;}
.y7d{bottom:214.096500px;}
.y68{bottom:227.775000px;}
.y86{bottom:232.096500px;}
.y7c{bottom:236.415000px;}
.y1e{bottom:243.615000px;}
.y67{bottom:250.096500px;}
.y44{bottom:254.415000px;}
.y66{bottom:272.415000px;}
.y7b{bottom:276.736500px;}
.y65{bottom:294.736500px;}
.y43{bottom:299.055000px;}
.y1d{bottom:312.375000px;}
.y85{bottom:317.055000px;}
.y7a{bottom:321.375000px;}
.y64{bottom:335.055000px;}
.y42{bottom:339.375000px;}
.y79{bottom:343.696500px;}
.y1c{bottom:357.015000px;}
.y63{bottom:357.375000px;}
.y41{bottom:361.696500px;}
.y78{bottom:366.015000px;}
.y1b{bottom:379.336500px;}
.y62{bottom:379.696500px;}
.y40{bottom:384.015000px;}
.y77{bottom:388.336500px;}
.y1a{bottom:401.655000px;}
.y61{bottom:402.015000px;}
.y3f{bottom:406.336500px;}
.y76{bottom:410.655000px;}
.y19{bottom:423.975000px;}
.y60{bottom:424.336500px;}
.y3e{bottom:428.655000px;}
.y18{bottom:446.475000px;}
.y3d{bottom:450.975000px;}
.y5f{bottom:464.655000px;}
.y17{bottom:468.795000px;}
.y75{bottom:473.475000px;}
.y5e{bottom:486.975000px;}
.y16{bottom:491.115000px;}
.y3c{bottom:491.475000px;}
.y74{bottom:495.796500px;}
.y5d{bottom:509.475000px;}
.y15{bottom:513.436500px;}
.y3b{bottom:513.796500px;}
.y73{bottom:518.115000px;}
.y5c{bottom:531.796500px;}
.y14{bottom:535.755000px;}
.y3a{bottom:536.115000px;}
.y5b{bottom:554.115000px;}
.y13{bottom:558.075000px;}
.y39{bottom:558.436500px;}
.y12{bottom:580.396500px;}
.y38{bottom:580.755000px;}
.y5a{bottom:594.436500px;}
.y72{bottom:598.755000px;}
.y11{bottom:602.715000px;}
.y37{bottom:603.075000px;}
.y59{bottom:616.755000px;}
.y71{bottom:621.075000px;}
.y10{bottom:625.215000px;}
.y88{bottom:625.396500px;}
.y58{bottom:639.075000px;}
.y36{bottom:643.396500px;}
.yf{bottom:647.355000px;}
.y87{bottom:647.715000px;}
.y57{bottom:661.396500px;}
.y35{bottom:665.715000px;}
.ye{bottom:669.675000px;}
.y84{bottom:683.715000px;}
.y34{bottom:688.036500px;}
.yd{bottom:692.175000px;}
.y56{bottom:701.715000px;}
.y83{bottom:706.036500px;}
.y33{bottom:710.355000px;}
.yc{bottom:714.496500px;}
.y55{bottom:724.036500px;}
.y70{bottom:728.355000px;}
.y32{bottom:732.675000px;}
.yb{bottom:736.815000px;}
.y54{bottom:746.355000px;}
.y6f{bottom:750.675000px;}
.ya{bottom:759.136500px;}
.y53{bottom:768.675000px;}
.y31{bottom:773.175000px;}
.y9{bottom:781.455000px;}
.y52{bottom:791.175000px;}
.y30{bottom:795.496500px;}
.y8{bottom:803.775000px;}
.y51{bottom:813.496500px;}
.y2f{bottom:817.815000px;}
.y7{bottom:826.096500px;}
.y50{bottom:835.815000px;}
.y2e{bottom:840.136500px;}
.y6{bottom:848.415000px;}
.y6e{bottom:858.136500px;}
.y2d{bottom:862.455000px;}
.y5{bottom:870.915000px;}
.y4f{bottom:876.136500px;}
.y6d{bottom:880.455000px;}
.y4e{bottom:898.455000px;}
.y2c{bottom:902.775000px;}
.y4{bottom:915.375000px;}
.y4d{bottom:920.775000px;}
.y2b{bottom:925.095000px;}
.y4c{bottom:943.095000px;}
.y2a{bottom:947.415000px;}
.y4b{bottom:965.415000px;}
.y29{bottom:969.915000px;}
.y3{bottom:973.155000px;}
.y4a{bottom:987.915000px;}
.y2{bottom:999.075000px;}
.y28{bottom:1010.055000px;}
.y1{bottom:1025.175000px;}
.y82{bottom:1028.055000px;}
.y6c{bottom:1032.375000px;}
.y27{bottom:1050.375000px;}
.y6b{bottom:1054.875000px;}
.y26{bottom:1072.875000px;}
.y6a{bottom:1077.195000px;}
.y8b{bottom:1084.936500px;}
.y25{bottom:1095.195000px;}
.y8a{bottom:1111.036500px;}
.y24{bottom:1117.515000px;}
.y89{bottom:1136.955000px;}
.y23{bottom:1139.836500px;}
.h6{height:31.679590px;}
.h5{height:63.175781px;}
.h4{height:63.949219px;}
.h3{height:66.046992px;}
.h7{height:73.968311px;}
.h2{height:74.873877px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.438500px;}
.x2{left:140.760000px;}
.x1{left:157.860000px;}
.x6{left:191.338500px;}
.x4{left:366.480000px;}
.x3{left:420.120000px;}
@media print{
.v2{vertical-align:-19.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:12.204800pt;}
.ws2{word-spacing:-58.223200pt;}
.ws1a{word-spacing:-49.728000pt;}
.ws9f{word-spacing:-40.472533pt;}
.ws1{word-spacing:-40.356533pt;}
.wsa0{word-spacing:-40.009867pt;}
.ws0{word-spacing:-39.647200pt;}
.ws70{word-spacing:-34.549600pt;}
.ws1c{word-spacing:-34.357600pt;}
.ws7c{word-spacing:-34.309333pt;}
.ws82{word-spacing:-34.296000pt;}
.ws47{word-spacing:-33.925333pt;}
.ws25{word-spacing:-33.920000pt;}
.ws87{word-spacing:-33.917333pt;}
.ws60{word-spacing:-33.916800pt;}
.ws37{word-spacing:-33.914667pt;}
.ws32{word-spacing:-33.898667pt;}
.ws5{word-spacing:-33.728000pt;}
.ws3{word-spacing:-33.724533pt;}
.ws39{word-spacing:-33.723200pt;}
.ws29{word-spacing:-33.709867pt;}
.ws38{word-spacing:-33.664533pt;}
.ws6c{word-spacing:-33.658667pt;}
.ws24{word-spacing:-33.539733pt;}
.ws5e{word-spacing:-33.283733pt;}
.ws1d{word-spacing:-33.282133pt;}
.ws11{word-spacing:-33.280000pt;}
.ws4f{word-spacing:-33.272000pt;}
.ws8b{word-spacing:-33.269867pt;}
.ws4{word-spacing:-33.265067pt;}
.ws2b{word-spacing:-33.261867pt;}
.ws1b{word-spacing:-33.257067pt;}
.ws8e{word-spacing:-33.088000pt;}
.ws77{word-spacing:-33.072267pt;}
.ws3b{word-spacing:-33.019200pt;}
.ws5c{word-spacing:-33.010667pt;}
.ws7e{word-spacing:-33.008000pt;}
.ws6b{word-spacing:-32.645333pt;}
.ws7{word-spacing:-32.640000pt;}
.ws12{word-spacing:-32.626667pt;}
.ws2d{word-spacing:-32.453333pt;}
.ws1e{word-spacing:-32.000000pt;}
.ws41{word-spacing:-31.994667pt;}
.ws9b{word-spacing:-31.989867pt;}
.ws64{word-spacing:-31.808000pt;}
.ws4a{word-spacing:-31.803200pt;}
.ws67{word-spacing:-31.801600pt;}
.ws73{word-spacing:-31.790400pt;}
.ws51{word-spacing:-31.365333pt;}
.ws5d{word-spacing:-31.360000pt;}
.ws5f{word-spacing:-31.354667pt;}
.ws3c{word-spacing:-31.350400pt;}
.ws21{word-spacing:-31.168000pt;}
.wsa{word-spacing:-31.155200pt;}
.ws3f{word-spacing:-30.720533pt;}
.ws72{word-spacing:-30.720000pt;}
.ws8a{word-spacing:-30.716800pt;}
.ws40{word-spacing:-30.715200pt;}
.ws3a{word-spacing:-30.528000pt;}
.ws26{word-spacing:-30.080000pt;}
.ws45{word-spacing:-30.069867pt;}
.ws18{word-spacing:-29.885333pt;}
.ws6a{word-spacing:-29.445333pt;}
.ws15{word-spacing:-29.428267pt;}
.ws3e{word-spacing:-29.242667pt;}
.ws8d{word-spacing:-29.233067pt;}
.ws3d{word-spacing:-28.805333pt;}
.ws75{word-spacing:-28.800000pt;}
.ws78{word-spacing:-28.604800pt;}
.ws36{word-spacing:-28.539200pt;}
.ws84{word-spacing:-28.160000pt;}
.ws91{word-spacing:-28.154667pt;}
.ws56{word-spacing:-28.147200pt;}
.ws50{word-spacing:-28.144267pt;}
.ws2c{word-spacing:-27.960000pt;}
.ws14{word-spacing:-27.520000pt;}
.ws22{word-spacing:-27.514667pt;}
.ws1f{word-spacing:-27.446133pt;}
.ws42{word-spacing:-27.328000pt;}
.ws9{word-spacing:-27.262400pt;}
.ws10{word-spacing:-26.880000pt;}
.ws59{word-spacing:-26.853867pt;}
.ws6d{word-spacing:-26.810667pt;}
.ws35{word-spacing:-26.688000pt;}
.ws85{word-spacing:-26.678400pt;}
.ws69{word-spacing:-26.245333pt;}
.ws44{word-spacing:-26.240000pt;}
.ws57{word-spacing:-26.235200pt;}
.ws30{word-spacing:-26.048000pt;}
.ws8{word-spacing:-26.041600pt;}
.ws34{word-spacing:-25.980800pt;}
.ws55{word-spacing:-25.600000pt;}
.ws97{word-spacing:-25.214400pt;}
.ws62{word-spacing:-24.955200pt;}
.ws5b{word-spacing:-24.763733pt;}
.ws79{word-spacing:-24.699200pt;}
.ws58{word-spacing:-24.320000pt;}
.ws28{word-spacing:-24.128000pt;}
.ws8c{word-spacing:-24.116800pt;}
.wse{word-spacing:-23.680000pt;}
.ws43{word-spacing:-23.040000pt;}
.ws71{word-spacing:-23.034400pt;}
.ws96{word-spacing:-22.848000pt;}
.ws9e{word-spacing:-22.388800pt;}
.ws83{word-spacing:-22.213333pt;}
.ws81{word-spacing:-22.198400pt;}
.ws65{word-spacing:-22.140800pt;}
.ws53{word-spacing:-21.756800pt;}
.ws5a{word-spacing:-21.491200pt;}
.ws17{word-spacing:-21.120000pt;}
.wsb{word-spacing:-21.114667pt;}
.wsd{word-spacing:-21.110400pt;}
.ws76{word-spacing:-20.928000pt;}
.ws4c{word-spacing:-20.912000pt;}
.ws6{word-spacing:-20.480000pt;}
.ws27{word-spacing:-19.845333pt;}
.ws16{word-spacing:-19.840000pt;}
.ws2a{word-spacing:-19.200000pt;}
.wsf{word-spacing:-18.565333pt;}
.ws8f{word-spacing:-17.920000pt;}
.ws63{word-spacing:-17.728000pt;}
.ws92{word-spacing:-16.645333pt;}
.ws9d{word-spacing:-16.453333pt;}
.ws48{word-spacing:-16.440000pt;}
.ws88{word-spacing:-15.996800pt;}
.ws2e{word-spacing:-15.994667pt;}
.ws7b{word-spacing:-15.614400pt;}
.ws52{word-spacing:-15.365333pt;}
.ws19{word-spacing:-15.360000pt;}
.ws4e{word-spacing:-14.720000pt;}
.ws49{word-spacing:-14.528000pt;}
.ws7d{word-spacing:-14.080000pt;}
.ws33{word-spacing:-14.074133pt;}
.wsc{word-spacing:-13.442933pt;}
.ws90{word-spacing:-13.440000pt;}
.ws9c{word-spacing:-13.434667pt;}
.ws4d{word-spacing:-12.800000pt;}
.ws6e{word-spacing:-12.794667pt;}
.ws86{word-spacing:-12.613333pt;}
.ws94{word-spacing:-12.603200pt;}
.ws54{word-spacing:-12.544000pt;}
.ws31{word-spacing:-12.414400pt;}
.ws95{word-spacing:-12.154667pt;}
.ws68{word-spacing:-11.968000pt;}
.ws46{word-spacing:-11.904000pt;}
.ws66{word-spacing:-11.889067pt;}
.ws99{word-spacing:-11.520000pt;}
.ws61{word-spacing:-10.880000pt;}
.ws7f{word-spacing:-10.236800pt;}
.ws93{word-spacing:-8.760000pt;}
.ws23{word-spacing:-7.416000pt;}
.ws74{word-spacing:-7.040000pt;}
.ws2f{word-spacing:-2.565333pt;}
.ws7a{word-spacing:-2.560000pt;}
.ws89{word-spacing:-1.024000pt;}
.ws20{word-spacing:0.000000pt;}
.ws80{word-spacing:1.920000pt;}
.ws98{word-spacing:2.188000pt;}
.ws4b{word-spacing:3.465600pt;}
.ws6f{word-spacing:4.041600pt;}
.ws9a{word-spacing:8.513600pt;}
.ws13{word-spacing:13.633600pt;}
._0{margin-left:-0.983200pt;}
._2{width:1.129600pt;}
._10{width:15.168000pt;}
._b{width:16.204533pt;}
._3{width:17.989333pt;}
._1{width:19.088800pt;}
._d{width:20.797333pt;}
._13{width:21.840000pt;}
._f{width:22.833867pt;}
._9{width:23.877333pt;}
._4{width:24.832000pt;}
._17{width:26.034133pt;}
._a{width:27.077333pt;}
._1a{width:28.617600pt;}
._5{width:29.509333pt;}
._7{width:30.450133pt;}
._8{width:32.069333pt;}
._19{width:33.600000pt;}
._11{width:35.050667pt;}
._15{width:36.149867pt;}
._6{width:37.518133pt;}
._12{width:38.742933pt;}
._14{width:39.684267pt;}
._e{width:41.324533pt;}
._1e{width:42.421333pt;}
._1c{width:43.589333pt;}
._1d{width:49.605333pt;}
._16{width:52.210133pt;}
._1f{width:53.113333pt;}
._1b{width:54.971733pt;}
._20{width:59.651733pt;}
._c{width:64.261333pt;}
._18{width:85.125333pt;}
.fs3{font-size:37.866667pt;}
.fs2{font-size:41.600000pt;}
.fs4{font-size:53.066667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:103.426667pt;}
.y49{bottom:106.946667pt;}
.y81{bottom:110.788000pt;}
.y48{bottom:126.788000pt;}
.y80{bottom:130.626667pt;}
.y21{bottom:141.026667pt;}
.y47{bottom:146.626667pt;}
.y7f{bottom:150.466667pt;}
.y20{bottom:160.866667pt;}
.y46{bottom:166.466667pt;}
.y7e{bottom:170.466667pt;}
.y1f{bottom:180.866667pt;}
.y69{bottom:182.466667pt;}
.y45{bottom:186.466667pt;}
.y7d{bottom:190.308000pt;}
.y68{bottom:202.466667pt;}
.y86{bottom:206.308000pt;}
.y7c{bottom:210.146667pt;}
.y1e{bottom:216.546667pt;}
.y67{bottom:222.308000pt;}
.y44{bottom:226.146667pt;}
.y66{bottom:242.146667pt;}
.y7b{bottom:245.988000pt;}
.y65{bottom:261.988000pt;}
.y43{bottom:265.826667pt;}
.y1d{bottom:277.666667pt;}
.y85{bottom:281.826667pt;}
.y7a{bottom:285.666667pt;}
.y64{bottom:297.826667pt;}
.y42{bottom:301.666667pt;}
.y79{bottom:305.508000pt;}
.y1c{bottom:317.346667pt;}
.y63{bottom:317.666667pt;}
.y41{bottom:321.508000pt;}
.y78{bottom:325.346667pt;}
.y1b{bottom:337.188000pt;}
.y62{bottom:337.508000pt;}
.y40{bottom:341.346667pt;}
.y77{bottom:345.188000pt;}
.y1a{bottom:357.026667pt;}
.y61{bottom:357.346667pt;}
.y3f{bottom:361.188000pt;}
.y76{bottom:365.026667pt;}
.y19{bottom:376.866667pt;}
.y60{bottom:377.188000pt;}
.y3e{bottom:381.026667pt;}
.y18{bottom:396.866667pt;}
.y3d{bottom:400.866667pt;}
.y5f{bottom:413.026667pt;}
.y17{bottom:416.706667pt;}
.y75{bottom:420.866667pt;}
.y5e{bottom:432.866667pt;}
.y16{bottom:436.546667pt;}
.y3c{bottom:436.866667pt;}
.y74{bottom:440.708000pt;}
.y5d{bottom:452.866667pt;}
.y15{bottom:456.388000pt;}
.y3b{bottom:456.708000pt;}
.y73{bottom:460.546667pt;}
.y5c{bottom:472.708000pt;}
.y14{bottom:476.226667pt;}
.y3a{bottom:476.546667pt;}
.y5b{bottom:492.546667pt;}
.y13{bottom:496.066667pt;}
.y39{bottom:496.388000pt;}
.y12{bottom:515.908000pt;}
.y38{bottom:516.226667pt;}
.y5a{bottom:528.388000pt;}
.y72{bottom:532.226667pt;}
.y11{bottom:535.746667pt;}
.y37{bottom:536.066667pt;}
.y59{bottom:548.226667pt;}
.y71{bottom:552.066667pt;}
.y10{bottom:555.746667pt;}
.y88{bottom:555.908000pt;}
.y58{bottom:568.066667pt;}
.y36{bottom:571.908000pt;}
.yf{bottom:575.426667pt;}
.y87{bottom:575.746667pt;}
.y57{bottom:587.908000pt;}
.y35{bottom:591.746667pt;}
.ye{bottom:595.266667pt;}
.y84{bottom:607.746667pt;}
.y34{bottom:611.588000pt;}
.yd{bottom:615.266667pt;}
.y56{bottom:623.746667pt;}
.y83{bottom:627.588000pt;}
.y33{bottom:631.426667pt;}
.yc{bottom:635.108000pt;}
.y55{bottom:643.588000pt;}
.y70{bottom:647.426667pt;}
.y32{bottom:651.266667pt;}
.yb{bottom:654.946667pt;}
.y54{bottom:663.426667pt;}
.y6f{bottom:667.266667pt;}
.ya{bottom:674.788000pt;}
.y53{bottom:683.266667pt;}
.y31{bottom:687.266667pt;}
.y9{bottom:694.626667pt;}
.y52{bottom:703.266667pt;}
.y30{bottom:707.108000pt;}
.y8{bottom:714.466667pt;}
.y51{bottom:723.108000pt;}
.y2f{bottom:726.946667pt;}
.y7{bottom:734.308000pt;}
.y50{bottom:742.946667pt;}
.y2e{bottom:746.788000pt;}
.y6{bottom:754.146667pt;}
.y6e{bottom:762.788000pt;}
.y2d{bottom:766.626667pt;}
.y5{bottom:774.146667pt;}
.y4f{bottom:778.788000pt;}
.y6d{bottom:782.626667pt;}
.y4e{bottom:798.626667pt;}
.y2c{bottom:802.466667pt;}
.y4{bottom:813.666667pt;}
.y4d{bottom:818.466667pt;}
.y2b{bottom:822.306667pt;}
.y4c{bottom:838.306667pt;}
.y2a{bottom:842.146667pt;}
.y4b{bottom:858.146667pt;}
.y29{bottom:862.146667pt;}
.y3{bottom:865.026667pt;}
.y4a{bottom:878.146667pt;}
.y2{bottom:888.066667pt;}
.y28{bottom:897.826667pt;}
.y1{bottom:911.266667pt;}
.y82{bottom:913.826667pt;}
.y6c{bottom:917.666667pt;}
.y27{bottom:933.666667pt;}
.y6b{bottom:937.666667pt;}
.y26{bottom:953.666667pt;}
.y6a{bottom:957.506667pt;}
.y8b{bottom:964.388000pt;}
.y25{bottom:973.506667pt;}
.y8a{bottom:987.588000pt;}
.y24{bottom:993.346667pt;}
.y89{bottom:1010.626667pt;}
.y23{bottom:1013.188000pt;}
.h6{height:28.159635pt;}
.h5{height:56.156250pt;}
.h4{height:56.843750pt;}
.h3{height:58.708438pt;}
.h7{height:65.749609pt;}
.h2{height:66.554557pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.278667pt;}
.x2{left:125.120000pt;}
.x1{left:140.320000pt;}
.x6{left:170.078667pt;}
.x4{left:325.760000pt;}
.x3{left:373.440000pt;}
}




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