
    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_9c84c862f288e9ab23ee1898.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_6651534d7c94c824a3c5f8ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_8330fd4caa030fef63c86aa9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_a6800a64d47df52d4a2e426e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_fe193a97988ae08480de3eb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_395e7a2459a023961cb64a2d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_e88096d4afb4130e7c79c30c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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:ff8;src:url('chunks/assets/font_d87df3f31a8fc052d648cb37.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933594;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:ff9;src:url('chunks/assets/font_753b83852c71e779bb00162c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lse{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.106560px;}
.ls8{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.460200px;}
.ls16{letter-spacing:0.489360px;}
.lsd{letter-spacing:0.513600px;}
.ls17{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.020000px;}
.ls11{letter-spacing:1.620000px;}
.ls6{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.ls5{letter-spacing:3.144000px;}
.ls15{letter-spacing:5.220000px;}
.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:-21.060000px;}
.ws0{word-spacing:-19.642080px;}
.ws9{word-spacing:-15.453600px;}
.wse{word-spacing:-15.400200px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.wsd{word-spacing:-9.720000px;}
.ws4{word-spacing:-9.711360px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._d{width:5.617440px;}
._b{width:6.762480px;}
._c{width:7.919280px;}
._6{width:9.083520px;}
._11{width:10.340880px;}
._a{width:11.832480px;}
._9{width:13.685040px;}
._e{width:15.984720px;}
._f{width:17.151120px;}
._10{width:18.186240px;}
._15{width:19.223520px;}
._8{width:20.925600px;}
._7{width:22.111200px;}
._16{width:25.338240px;}
._12{width:26.413920px;}
._13{width:28.933440px;}
._14{width:30.568320px;}
._19{width:40.118160px;}
._18{width:41.234400px;}
._1a{width:42.489360px;}
._1b{width:43.804080px;}
._17{width:56.353680px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.y12{bottom:3.420000px;}
.y18{bottom:3.780000px;}
.y6{bottom:4.140000px;}
.y5{bottom:8.100000px;}
.y3{bottom:12.780000px;}
.y33{bottom:20.700000px;}
.y17{bottom:20.880000px;}
.ya3{bottom:21.060000px;}
.y2b{bottom:21.105000px;}
.y2{bottom:28.980000px;}
.y2c{bottom:38.025000px;}
.y16{bottom:38.160000px;}
.y2a{bottom:38.385000px;}
.ya2{bottom:55.080000px;}
.y15{bottom:55.440000px;}
.yb{bottom:56.700000px;}
.y14{bottom:72.360000px;}
.y19{bottom:72.720000px;}
.ya{bottom:73.980000px;}
.y32{bottom:90.000000px;}
.y28{bottom:91.440000px;}
.y31{bottom:107.280000px;}
.y27{bottom:108.720000px;}
.y9f{bottom:123.336000px;}
.y30{bottom:124.560000px;}
.y26{bottom:126.000000px;}
.y53{bottom:126.756000px;}
.y90{bottom:140.616000px;}
.y2f{bottom:141.660000px;}
.y25{bottom:143.280000px;}
.y52{bottom:144.036000px;}
.y9e{bottom:157.530000px;}
.y8f{bottom:157.890000px;}
.y2e{bottom:158.940000px;}
.y24{bottom:160.560000px;}
.y51{bottom:161.310000px;}
.y8e{bottom:175.170000px;}
.y2d{bottom:175.860000px;}
.y23{bottom:177.660000px;}
.y50{bottom:178.590000px;}
.y95{bottom:192.090000px;}
.y8d{bottom:192.450000px;}
.y22{bottom:194.940000px;}
.y4f{bottom:195.690000px;}
.y8c{bottom:209.550000px;}
.y21{bottom:212.265000px;}
.y4e{bottom:212.970000px;}
.y8b{bottom:226.830000px;}
.y20{bottom:229.545000px;}
.y4d{bottom:230.250000px;}
.y8a{bottom:244.110000px;}
.y1f{bottom:246.825000px;}
.y4c{bottom:247.530000px;}
.y9d{bottom:261.030000px;}
.y89{bottom:261.390000px;}
.y1e{bottom:263.925000px;}
.y4b{bottom:264.810000px;}
.y88{bottom:278.670000px;}
.y1d{bottom:281.205000px;}
.y4a{bottom:282.090000px;}
.y87{bottom:295.950000px;}
.y1c{bottom:298.485000px;}
.y49{bottom:298.830000px;}
.y86{bottom:313.050000px;}
.y1b{bottom:315.765000px;}
.y48{bottom:316.470000px;}
.y85{bottom:330.330000px;}
.y47{bottom:333.750000px;}
.y94{bottom:347.250000px;}
.y84{bottom:347.610000px;}
.y46{bottom:351.030000px;}
.y9c{bottom:364.575000px;}
.y83{bottom:364.935000px;}
.y45{bottom:368.355000px;}
.y82{bottom:382.215000px;}
.y44{bottom:385.635000px;}
.ya5{bottom:397.155000px;}
.y81{bottom:399.495000px;}
.y43{bottom:402.735000px;}
.ya4{bottom:411.375000px;}
.y80{bottom:416.595000px;}
.y42{bottom:420.015000px;}
.ya1{bottom:428.655000px;}
.y7f{bottom:433.875000px;}
.y41{bottom:437.295000px;}
.y7e{bottom:451.155000px;}
.y40{bottom:454.575000px;}
.y7d{bottom:468.435000px;}
.y3f{bottom:471.855000px;}
.y7c{bottom:485.715000px;}
.y3e{bottom:489.135000px;}
.ya0{bottom:498.315000px;}
.y7b{bottom:502.815000px;}
.y3d{bottom:506.235000px;}
.y7a{bottom:520.095000px;}
.y3c{bottom:523.515000px;}
.y9b{bottom:537.015000px;}
.y79{bottom:537.375000px;}
.y3b{bottom:540.795000px;}
.y78{bottom:554.655000px;}
.y3a{bottom:558.075000px;}
.y77{bottom:571.935000px;}
.y39{bottom:575.355000px;}
.y76{bottom:589.215000px;}
.y38{bottom:592.455000px;}
.y93{bottom:605.955000px;}
.y75{bottom:606.315000px;}
.y37{bottom:609.735000px;}
.y74{bottom:623.625000px;}
.y36{bottom:627.045000px;}
.y73{bottom:640.905000px;}
.y35{bottom:643.965000px;}
.y72{bottom:658.185000px;}
.y34{bottom:661.245000px;}
.y71{bottom:675.465000px;}
.y1a{bottom:675.825000px;}
.y70{bottom:692.745000px;}
.y6f{bottom:709.845000px;}
.y9a{bottom:726.765000px;}
.y6e{bottom:727.125000px;}
.y6d{bottom:744.405000px;}
.y6c{bottom:761.685000px;}
.y6b{bottom:778.965000px;}
.y6a{bottom:796.065000px;}
.y69{bottom:813.345000px;}
.y68{bottom:830.625000px;}
.y67{bottom:847.905000px;}
.y66{bottom:865.185000px;}
.y29{bottom:866.265000px;}
.y65{bottom:882.510000px;}
.y64{bottom:899.610000px;}
.y99{bottom:916.530000px;}
.y63{bottom:916.890000px;}
.y13{bottom:918.870000px;}
.y62{bottom:934.170000px;}
.y61{bottom:951.450000px;}
.y92{bottom:968.370000px;}
.y60{bottom:968.730000px;}
.y98{bottom:985.650000px;}
.y5f{bottom:986.010000px;}
.y5e{bottom:1003.110000px;}
.y11{bottom:1005.810000px;}
.y91{bottom:1020.030000px;}
.y5d{bottom:1020.390000px;}
.y10{bottom:1027.230000px;}
.y5c{bottom:1037.670000px;}
.yf{bottom:1044.510000px;}
.y5b{bottom:1054.950000px;}
.ye{bottom:1062.150000px;}
.y97{bottom:1071.870000px;}
.y5a{bottom:1072.230000px;}
.yd{bottom:1080.330000px;}
.y59{bottom:1089.510000px;}
.yc{bottom:1104.450000px;}
.y58{bottom:1106.610000px;}
.y57{bottom:1123.890000px;}
.y9{bottom:1127.670000px;}
.y96{bottom:1140.840000px;}
.y56{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y55{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y54{bottom:1196.100000px;}
.hc{height:17.280000px;}
.h6{height:20.880000px;}
.h5{height:23.400000px;}
.h7{height:36.651094px;}
.h8{height:40.500000px;}
.h10{height:41.493516px;}
.h14{height:42.894141px;}
.h2{height:44.280000px;}
.h11{height:51.876000px;}
.h4{height:54.421875px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h16{height:61.423863px;}
.h13{height:65.499609px;}
.h15{height:65.518594px;}
.h3{height:66.757500px;}
.h17{height:68.940000px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h12{height:189.720000px;}
.hf{height:329.250000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:31.140000px;}
.w6{width:176.250000px;}
.w2{width:216.570000px;}
.w5{width:225.795000px;}
.w4{width:269.850000px;}
.wa{width:337.755000px;}
.wb{width:340.275000px;}
.w8{width:470.625000px;}
.w3{width:495.645000px;}
.w9{width:678.030000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.xf{left:7.020000px;}
.xc{left:8.100000px;}
.x5{left:34.920000px;}
.x1{left:90.396000px;}
.x7{left:108.036000px;}
.x11{left:148.536000px;}
.x9{left:150.870000px;}
.x10{left:162.030000px;}
.x12{left:274.539000px;}
.xd{left:283.755000px;}
.x3{left:306.975000px;}
.xe{left:314.895000px;}
.xb{left:360.975000px;}
.xa{left:398.055000px;}
.x13{left:445.245000px;}
.x6{left:576.825000px;}
.x8{left:770.040000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.094720pt;}
.ls8{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.409067pt;}
.ls16{letter-spacing:0.434987pt;}
.lsd{letter-spacing:0.456533pt;}
.ls17{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.906667pt;}
.ls11{letter-spacing:1.440000pt;}
.ls6{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls5{letter-spacing:2.794667pt;}
.ls15{letter-spacing:4.640000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-17.459627pt;}
.ws9{word-spacing:-13.736533pt;}
.wse{word-spacing:-13.689067pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.096533pt;}
.ws8{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.wsd{word-spacing:-8.640000pt;}
.ws4{word-spacing:-8.632320pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._d{width:4.993280pt;}
._b{width:6.011093pt;}
._c{width:7.039360pt;}
._6{width:8.074240pt;}
._11{width:9.191893pt;}
._a{width:10.517760pt;}
._9{width:12.164480pt;}
._e{width:14.208640pt;}
._f{width:15.245440pt;}
._10{width:16.165547pt;}
._15{width:17.087573pt;}
._8{width:18.600533pt;}
._7{width:19.654400pt;}
._16{width:22.522880pt;}
._12{width:23.479040pt;}
._13{width:25.718613pt;}
._14{width:27.171840pt;}
._19{width:35.660587pt;}
._18{width:36.652800pt;}
._1a{width:37.768320pt;}
._1b{width:38.936960pt;}
._17{width:50.092160pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.y12{bottom:3.040000pt;}
.y18{bottom:3.360000pt;}
.y6{bottom:3.680000pt;}
.y5{bottom:7.200000pt;}
.y3{bottom:11.360000pt;}
.y33{bottom:18.400000pt;}
.y17{bottom:18.560000pt;}
.ya3{bottom:18.720000pt;}
.y2b{bottom:18.760000pt;}
.y2{bottom:25.760000pt;}
.y2c{bottom:33.800000pt;}
.y16{bottom:33.920000pt;}
.y2a{bottom:34.120000pt;}
.ya2{bottom:48.960000pt;}
.y15{bottom:49.280000pt;}
.yb{bottom:50.400000pt;}
.y14{bottom:64.320000pt;}
.y19{bottom:64.640000pt;}
.ya{bottom:65.760000pt;}
.y32{bottom:80.000000pt;}
.y28{bottom:81.280000pt;}
.y31{bottom:95.360000pt;}
.y27{bottom:96.640000pt;}
.y9f{bottom:109.632000pt;}
.y30{bottom:110.720000pt;}
.y26{bottom:112.000000pt;}
.y53{bottom:112.672000pt;}
.y90{bottom:124.992000pt;}
.y2f{bottom:125.920000pt;}
.y25{bottom:127.360000pt;}
.y52{bottom:128.032000pt;}
.y9e{bottom:140.026667pt;}
.y8f{bottom:140.346667pt;}
.y2e{bottom:141.280000pt;}
.y24{bottom:142.720000pt;}
.y51{bottom:143.386667pt;}
.y8e{bottom:155.706667pt;}
.y2d{bottom:156.320000pt;}
.y23{bottom:157.920000pt;}
.y50{bottom:158.746667pt;}
.y95{bottom:170.746667pt;}
.y8d{bottom:171.066667pt;}
.y22{bottom:173.280000pt;}
.y4f{bottom:173.946667pt;}
.y8c{bottom:186.266667pt;}
.y21{bottom:188.680000pt;}
.y4e{bottom:189.306667pt;}
.y8b{bottom:201.626667pt;}
.y20{bottom:204.040000pt;}
.y4d{bottom:204.666667pt;}
.y8a{bottom:216.986667pt;}
.y1f{bottom:219.400000pt;}
.y4c{bottom:220.026667pt;}
.y9d{bottom:232.026667pt;}
.y89{bottom:232.346667pt;}
.y1e{bottom:234.600000pt;}
.y4b{bottom:235.386667pt;}
.y88{bottom:247.706667pt;}
.y1d{bottom:249.960000pt;}
.y4a{bottom:250.746667pt;}
.y87{bottom:263.066667pt;}
.y1c{bottom:265.320000pt;}
.y49{bottom:265.626667pt;}
.y86{bottom:278.266667pt;}
.y1b{bottom:280.680000pt;}
.y48{bottom:281.306667pt;}
.y85{bottom:293.626667pt;}
.y47{bottom:296.666667pt;}
.y94{bottom:308.666667pt;}
.y84{bottom:308.986667pt;}
.y46{bottom:312.026667pt;}
.y9c{bottom:324.066667pt;}
.y83{bottom:324.386667pt;}
.y45{bottom:327.426667pt;}
.y82{bottom:339.746667pt;}
.y44{bottom:342.786667pt;}
.ya5{bottom:353.026667pt;}
.y81{bottom:355.106667pt;}
.y43{bottom:357.986667pt;}
.ya4{bottom:365.666667pt;}
.y80{bottom:370.306667pt;}
.y42{bottom:373.346667pt;}
.ya1{bottom:381.026667pt;}
.y7f{bottom:385.666667pt;}
.y41{bottom:388.706667pt;}
.y7e{bottom:401.026667pt;}
.y40{bottom:404.066667pt;}
.y7d{bottom:416.386667pt;}
.y3f{bottom:419.426667pt;}
.y7c{bottom:431.746667pt;}
.y3e{bottom:434.786667pt;}
.ya0{bottom:442.946667pt;}
.y7b{bottom:446.946667pt;}
.y3d{bottom:449.986667pt;}
.y7a{bottom:462.306667pt;}
.y3c{bottom:465.346667pt;}
.y9b{bottom:477.346667pt;}
.y79{bottom:477.666667pt;}
.y3b{bottom:480.706667pt;}
.y78{bottom:493.026667pt;}
.y3a{bottom:496.066667pt;}
.y77{bottom:508.386667pt;}
.y39{bottom:511.426667pt;}
.y76{bottom:523.746667pt;}
.y38{bottom:526.626667pt;}
.y93{bottom:538.626667pt;}
.y75{bottom:538.946667pt;}
.y37{bottom:541.986667pt;}
.y74{bottom:554.333333pt;}
.y36{bottom:557.373333pt;}
.y73{bottom:569.693333pt;}
.y35{bottom:572.413333pt;}
.y72{bottom:585.053333pt;}
.y34{bottom:587.773333pt;}
.y71{bottom:600.413333pt;}
.y1a{bottom:600.733333pt;}
.y70{bottom:615.773333pt;}
.y6f{bottom:630.973333pt;}
.y9a{bottom:646.013333pt;}
.y6e{bottom:646.333333pt;}
.y6d{bottom:661.693333pt;}
.y6c{bottom:677.053333pt;}
.y6b{bottom:692.413333pt;}
.y6a{bottom:707.613333pt;}
.y69{bottom:722.973333pt;}
.y68{bottom:738.333333pt;}
.y67{bottom:753.693333pt;}
.y66{bottom:769.053333pt;}
.y29{bottom:770.013333pt;}
.y65{bottom:784.453333pt;}
.y64{bottom:799.653333pt;}
.y99{bottom:814.693333pt;}
.y63{bottom:815.013333pt;}
.y13{bottom:816.773333pt;}
.y62{bottom:830.373333pt;}
.y61{bottom:845.733333pt;}
.y92{bottom:860.773333pt;}
.y60{bottom:861.093333pt;}
.y98{bottom:876.133333pt;}
.y5f{bottom:876.453333pt;}
.y5e{bottom:891.653333pt;}
.y11{bottom:894.053333pt;}
.y91{bottom:906.693333pt;}
.y5d{bottom:907.013333pt;}
.y10{bottom:913.093333pt;}
.y5c{bottom:922.373333pt;}
.yf{bottom:928.453333pt;}
.y5b{bottom:937.733333pt;}
.ye{bottom:944.133333pt;}
.y97{bottom:952.773333pt;}
.y5a{bottom:953.093333pt;}
.yd{bottom:960.293333pt;}
.y59{bottom:968.453333pt;}
.yc{bottom:981.733333pt;}
.y58{bottom:983.653333pt;}
.y57{bottom:999.013333pt;}
.y9{bottom:1002.373333pt;}
.y96{bottom:1014.080000pt;}
.y56{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y55{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y54{bottom:1063.200000pt;}
.hc{height:15.360000pt;}
.h6{height:18.560000pt;}
.h5{height:20.800000pt;}
.h7{height:32.578750pt;}
.h8{height:36.000000pt;}
.h10{height:36.883125pt;}
.h14{height:38.128125pt;}
.h2{height:39.360000pt;}
.h11{height:46.112000pt;}
.h4{height:48.375000pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h16{height:54.598989pt;}
.h13{height:58.221875pt;}
.h15{height:58.238750pt;}
.h3{height:59.340000pt;}
.h17{height:61.280000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h12{height:168.640000pt;}
.hf{height:292.666667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.680000pt;}
.w6{width:156.666667pt;}
.w2{width:192.506667pt;}
.w5{width:200.706667pt;}
.w4{width:239.866667pt;}
.wa{width:300.226667pt;}
.wb{width:302.466667pt;}
.w8{width:418.333333pt;}
.w3{width:440.573333pt;}
.w9{width:602.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.xf{left:6.240000pt;}
.xc{left:7.200000pt;}
.x5{left:31.040000pt;}
.x1{left:80.352000pt;}
.x7{left:96.032000pt;}
.x11{left:132.032000pt;}
.x9{left:134.106667pt;}
.x10{left:144.026667pt;}
.x12{left:244.034667pt;}
.xd{left:252.226667pt;}
.x3{left:272.866667pt;}
.xe{left:279.906667pt;}
.xb{left:320.866667pt;}
.xa{left:353.826667pt;}
.x13{left:395.773333pt;}
.x6{left:512.733333pt;}
.x8{left:684.480000pt;}
}




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