
    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_e63889c3dca3e4e72e55387f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_a2a64b38710ce3ea42bd2da5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_35eabcc490c7f549040c9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_40bc7a5f48c92ff415b73ab9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_867481b34e81f17b8321f10e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_3fb297ca403a2b01e82d7e7b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_34bcb7c2f69221629c0680bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_c0ba45a16670bf4312834f94.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_a238fe380abbcc41ecf37166.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.208200px;}
.ls9{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.156000px;}
.lsb{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.439920px;}
.lsa{letter-spacing:7.380000px;}
.lse{letter-spacing:11.466720px;}
.lsc{letter-spacing:41.850720px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.833200px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-989.717760px;}
._7{margin-left:-577.969920px;}
._4{margin-left:-8.213760px;}
._14{margin-left:-6.448800px;}
._9{margin-left:-5.209200px;}
._a{margin-left:-3.908160px;}
._8{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._e{width:2.583360px;}
._10{width:3.654000px;}
._f{width:4.739280px;}
._11{width:5.856480px;}
._12{width:7.725120px;}
._d{width:9.306480px;}
._20{width:11.354400px;}
._1f{width:12.370320px;}
._c{width:14.364000px;}
._b{width:16.374960px;}
._1b{width:17.454000px;}
._22{width:18.654480px;}
._13{width:20.149200px;}
._15{width:28.146960px;}
._21{width:29.162880px;}
._23{width:30.518640px;}
._24{width:31.732560px;}
._1a{width:41.026560px;}
._19{width:104.544000px;}
._17{width:120.057840px;}
._1e{width:132.631200px;}
._1c{width:147.427920px;}
._16{width:190.239840px;}
._18{width:194.542560px;}
._1d{width:222.629760px;}
.fc4{color:rgb(70,120,134);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(28,28,28);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y41{bottom:5.760000px;}
.y43{bottom:5.940000px;}
.y6d{bottom:5.970000px;}
.y7a{bottom:5.985000px;}
.y55{bottom:11.880000px;}
.y51{bottom:12.240000px;}
.y5f{bottom:15.660000px;}
.y7d{bottom:15.840000px;}
.y60{bottom:25.560000px;}
.y7c{bottom:25.740000px;}
.yc4{bottom:41.760000px;}
.yc6{bottom:57.414000px;}
.y6{bottom:65.736000px;}
.yc5{bottom:77.214000px;}
.y6a{bottom:101.736000px;}
.y33{bottom:104.796000px;}
.yc3{bottom:105.156000px;}
.y96{bottom:107.136000px;}
.yc2{bottom:115.956000px;}
.y69{bottom:121.536000px;}
.y32{bottom:124.596000px;}
.y95{bottom:126.936000px;}
.yc1{bottom:133.236000px;}
.y68{bottom:141.336000px;}
.y31{bottom:144.396000px;}
.y94{bottom:146.916000px;}
.yc0{bottom:150.510000px;}
.y67{bottom:161.310000px;}
.y30{bottom:164.370000px;}
.y93{bottom:166.710000px;}
.ybf{bottom:167.790000px;}
.y66{bottom:181.110000px;}
.y2f{bottom:184.170000px;}
.y92{bottom:186.510000px;}
.ybe{bottom:187.590000px;}
.y65{bottom:196.950000px;}
.y2e{bottom:203.970000px;}
.y91{bottom:206.310000px;}
.ybd{bottom:207.390000px;}
.y64{bottom:219.090000px;}
.y2d{bottom:223.770000px;}
.y90{bottom:226.110000px;}
.ybc{bottom:227.190000px;}
.y63{bottom:241.230000px;}
.y2c{bottom:243.570000px;}
.y8f{bottom:246.090000px;}
.ybb{bottom:247.170000px;}
.y2b{bottom:263.550000px;}
.y8e{bottom:265.890000px;}
.yba{bottom:266.970000px;}
.y8d{bottom:281.775000px;}
.y62{bottom:283.035000px;}
.y2a{bottom:283.395000px;}
.yb9{bottom:286.815000px;}
.y29{bottom:303.195000px;}
.y8c{bottom:303.915000px;}
.y61{bottom:305.175000px;}
.yb8{bottom:306.615000px;}
.y28{bottom:322.995000px;}
.yb7{bottom:326.415000px;}
.y5e{bottom:327.315000px;}
.y27{bottom:342.795000px;}
.y8b{bottom:345.855000px;}
.yb6{bottom:346.395000px;}
.y26{bottom:362.775000px;}
.yb5{bottom:366.195000px;}
.y5d{bottom:369.255000px;}
.y25{bottom:382.575000px;}
.yb4{bottom:385.995000px;}
.y8a{bottom:387.795000px;}
.y5c{bottom:391.215000px;}
.y24{bottom:402.375000px;}
.yb3{bottom:405.795000px;}
.y5b{bottom:414.075000px;}
.y23{bottom:422.175000px;}
.yb2{bottom:425.595000px;}
.y89{bottom:429.735000px;}
.y5a{bottom:441.615000px;}
.y22{bottom:441.975000px;}
.yb1{bottom:445.575000px;}
.y88{bottom:451.695000px;}
.y59{bottom:461.415000px;}
.y21{bottom:461.955000px;}
.yb0{bottom:465.375000px;}
.y58{bottom:481.215000px;}
.y20{bottom:481.755000px;}
.yaf{bottom:485.175000px;}
.y87{bottom:493.635000px;}
.y57{bottom:497.235000px;}
.y1f{bottom:501.555000px;}
.yae{bottom:504.975000px;}
.y86{bottom:515.775000px;}
.y56{bottom:519.375000px;}
.y1e{bottom:521.355000px;}
.yad{bottom:524.775000px;}
.y1d{bottom:541.155000px;}
.y54{bottom:541.335000px;}
.yac{bottom:544.755000px;}
.y85{bottom:558.465000px;}
.y1c{bottom:561.165000px;}
.yab{bottom:562.065000px;}
.y53{bottom:575.565000px;}
.yaa{bottom:579.165000px;}
.y1b{bottom:580.965000px;}
.y84{bottom:586.005000px;}
.ya9{bottom:596.445000px;}
.y52{bottom:597.705000px;}
.y1a{bottom:600.765000px;}
.y83{bottom:605.805000px;}
.ya8{bottom:613.725000px;}
.y50{bottom:619.845000px;}
.y82{bottom:621.645000px;}
.y19{bottom:622.905000px;}
.ya7{bottom:631.005000px;}
.y18{bottom:642.705000px;}
.y81{bottom:643.785000px;}
.ya6{bottom:650.805000px;}
.y4f{bottom:655.125000px;}
.y17{bottom:662.505000px;}
.ya5{bottom:670.605000px;}
.y4e{bottom:677.085000px;}
.y80{bottom:685.725000px;}
.ya4{bottom:690.405000px;}
.y16{bottom:691.305000px;}
.y4d{bottom:699.945000px;}
.ya3{bottom:710.385000px;}
.y15{bottom:711.105000px;}
.y4c{bottom:727.485000px;}
.y7f{bottom:727.665000px;}
.ya2{bottom:730.185000px;}
.y14{bottom:731.085000px;}
.y4b{bottom:747.285000px;}
.ya1{bottom:749.985000px;}
.y13{bottom:750.885000px;}
.y4a{bottom:763.305000px;}
.y7e{bottom:769.605000px;}
.ya0{bottom:769.785000px;}
.y12{bottom:770.685000px;}
.y49{bottom:785.265000px;}
.y9f{bottom:789.585000px;}
.y11{bottom:790.485000px;}
.y7b{bottom:791.565000px;}
.y48{bottom:807.405000px;}
.y9e{bottom:809.565000px;}
.y10{bottom:810.285000px;}
.y9d{bottom:829.365000px;}
.y47{bottom:829.545000px;}
.yf{bottom:830.085000px;}
.y79{bottom:833.505000px;}
.y9c{bottom:849.210000px;}
.y46{bottom:851.550000px;}
.ye{bottom:852.270000px;}
.y78{bottom:855.690000px;}
.y9b{bottom:869.010000px;}
.y45{bottom:873.690000px;}
.yd{bottom:877.290000px;}
.y9a{bottom:888.810000px;}
.y44{bottom:895.830000px;}
.yc{bottom:897.270000px;}
.y77{bottom:898.350000px;}
.y99{bottom:908.790000px;}
.yb{bottom:912.390000px;}
.y42{bottom:917.790000px;}
.y76{bottom:925.890000px;}
.y98{bottom:928.590000px;}
.ya{bottom:934.170000px;}
.y40{bottom:940.650000px;}
.y75{bottom:945.690000px;}
.y97{bottom:948.390000px;}
.y9{bottom:955.410000px;}
.y74{bottom:961.710000px;}
.y3f{bottom:968.190000px;}
.y8{bottom:978.990000px;}
.y73{bottom:983.670000px;}
.y3e{bottom:987.990000px;}
.y72{bottom:1005.810000px;}
.y3d{bottom:1007.970000px;}
.y7{bottom:1010.670000px;}
.y3c{bottom:1027.770000px;}
.y71{bottom:1027.950000px;}
.y3b{bottom:1047.570000px;}
.y70{bottom:1049.910000px;}
.y5{bottom:1052.070000px;}
.y3a{bottom:1067.370000px;}
.y6f{bottom:1072.050000px;}
.y4{bottom:1082.850000px;}
.y39{bottom:1087.170000px;}
.y6e{bottom:1094.190000px;}
.y38{bottom:1107.150000px;}
.y3{bottom:1113.630000px;}
.y6c{bottom:1116.150000px;}
.y37{bottom:1126.980000px;}
.y6b{bottom:1139.040000px;}
.y2{bottom:1144.620000px;}
.y36{bottom:1146.780000px;}
.y35{bottom:1166.580000px;}
.y1{bottom:1178.460000px;}
.y34{bottom:1194.120000px;}
.h16{height:2.082656px;}
.hb{height:19.800000px;}
.hd{height:19.836000px;}
.hc{height:19.980000px;}
.h12{height:20.016000px;}
.h7{height:28.115859px;}
.hf{height:32.076000px;}
.he{height:32.940000px;}
.h10{height:39.600000px;}
.h11{height:39.636000px;}
.h13{height:39.780000px;}
.h5{height:42.164648px;}
.h8{height:43.215117px;}
.h14{height:43.506914px;}
.h3{height:46.736719px;}
.h4{height:47.901094px;}
.h9{height:49.255313px;}
.h6{height:53.224453px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.h15{height:91.260000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:110.196000px;}
.wc{width:133.056000px;}
.we{width:140.076000px;}
.w8{width:154.470000px;}
.w6{width:156.990000px;}
.wa{width:158.400000px;}
.w3{width:161.130000px;}
.w10{width:206.130000px;}
.w4{width:447.555000px;}
.wb{width:489.885000px;}
.w11{width:568.365000px;}
.w9{width:630.645000px;}
.w7{width:634.785000px;}
.wf{width:645.045000px;}
.wd{width:652.065000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.580000px;}
.x10{left:7.740000px;}
.x6{left:50.580000px;}
.x1{left:54.179987px;}
.xc{left:80.999987px;}
.x2{left:87.120000px;}
.xd{left:108.035987px;}
.x8{left:122.436000px;}
.xa{left:187.050000px;}
.xe{left:191.370000px;}
.xb{left:194.070000px;}
.x7{left:207.570000px;}
.x4{left:248.250000px;}
.xf{left:260.130000px;}
.x9{left:280.830000px;}
.x5{left:695.805000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.185067pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.138667pt;}
.lsb{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.391040pt;}
.lsa{letter-spacing:6.560000pt;}
.lse{letter-spacing:10.192640pt;}
.lsc{letter-spacing:37.200640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.185067pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-879.749120pt;}
._7{margin-left:-513.751040pt;}
._4{margin-left:-7.301120pt;}
._14{margin-left:-5.732267pt;}
._9{margin-left:-4.630400pt;}
._a{margin-left:-3.473920pt;}
._8{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._e{width:2.296320pt;}
._10{width:3.248000pt;}
._f{width:4.212693pt;}
._11{width:5.205760pt;}
._12{width:6.866773pt;}
._d{width:8.272427pt;}
._20{width:10.092800pt;}
._1f{width:10.995840pt;}
._c{width:12.768000pt;}
._b{width:14.555520pt;}
._1b{width:15.514667pt;}
._22{width:16.581760pt;}
._13{width:17.910400pt;}
._15{width:25.019520pt;}
._21{width:25.922560pt;}
._23{width:27.127680pt;}
._24{width:28.206720pt;}
._1a{width:36.468053pt;}
._19{width:92.928000pt;}
._17{width:106.718080pt;}
._1e{width:117.894400pt;}
._1c{width:131.047040pt;}
._16{width:169.102080pt;}
._18{width:172.926720pt;}
._1d{width:197.893120pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:5.120000pt;}
.y43{bottom:5.280000pt;}
.y6d{bottom:5.306667pt;}
.y7a{bottom:5.320000pt;}
.y55{bottom:10.560000pt;}
.y51{bottom:10.880000pt;}
.y5f{bottom:13.920000pt;}
.y7d{bottom:14.080000pt;}
.y60{bottom:22.720000pt;}
.y7c{bottom:22.880000pt;}
.yc4{bottom:37.120000pt;}
.yc6{bottom:51.034667pt;}
.y6{bottom:58.432000pt;}
.yc5{bottom:68.634667pt;}
.y6a{bottom:90.432000pt;}
.y33{bottom:93.152000pt;}
.yc3{bottom:93.472000pt;}
.y96{bottom:95.232000pt;}
.yc2{bottom:103.072000pt;}
.y69{bottom:108.032000pt;}
.y32{bottom:110.752000pt;}
.y95{bottom:112.832000pt;}
.yc1{bottom:118.432000pt;}
.y68{bottom:125.632000pt;}
.y31{bottom:128.352000pt;}
.y94{bottom:130.592000pt;}
.yc0{bottom:133.786667pt;}
.y67{bottom:143.386667pt;}
.y30{bottom:146.106667pt;}
.y93{bottom:148.186667pt;}
.ybf{bottom:149.146667pt;}
.y66{bottom:160.986667pt;}
.y2f{bottom:163.706667pt;}
.y92{bottom:165.786667pt;}
.ybe{bottom:166.746667pt;}
.y65{bottom:175.066667pt;}
.y2e{bottom:181.306667pt;}
.y91{bottom:183.386667pt;}
.ybd{bottom:184.346667pt;}
.y64{bottom:194.746667pt;}
.y2d{bottom:198.906667pt;}
.y90{bottom:200.986667pt;}
.ybc{bottom:201.946667pt;}
.y63{bottom:214.426667pt;}
.y2c{bottom:216.506667pt;}
.y8f{bottom:218.746667pt;}
.ybb{bottom:219.706667pt;}
.y2b{bottom:234.266667pt;}
.y8e{bottom:236.346667pt;}
.yba{bottom:237.306667pt;}
.y8d{bottom:250.466667pt;}
.y62{bottom:251.586667pt;}
.y2a{bottom:251.906667pt;}
.yb9{bottom:254.946667pt;}
.y29{bottom:269.506667pt;}
.y8c{bottom:270.146667pt;}
.y61{bottom:271.266667pt;}
.yb8{bottom:272.546667pt;}
.y28{bottom:287.106667pt;}
.yb7{bottom:290.146667pt;}
.y5e{bottom:290.946667pt;}
.y27{bottom:304.706667pt;}
.y8b{bottom:307.426667pt;}
.yb6{bottom:307.906667pt;}
.y26{bottom:322.466667pt;}
.yb5{bottom:325.506667pt;}
.y5d{bottom:328.226667pt;}
.y25{bottom:340.066667pt;}
.yb4{bottom:343.106667pt;}
.y8a{bottom:344.706667pt;}
.y5c{bottom:347.746667pt;}
.y24{bottom:357.666667pt;}
.yb3{bottom:360.706667pt;}
.y5b{bottom:368.066667pt;}
.y23{bottom:375.266667pt;}
.yb2{bottom:378.306667pt;}
.y89{bottom:381.986667pt;}
.y5a{bottom:392.546667pt;}
.y22{bottom:392.866667pt;}
.yb1{bottom:396.066667pt;}
.y88{bottom:401.506667pt;}
.y59{bottom:410.146667pt;}
.y21{bottom:410.626667pt;}
.yb0{bottom:413.666667pt;}
.y58{bottom:427.746667pt;}
.y20{bottom:428.226667pt;}
.yaf{bottom:431.266667pt;}
.y87{bottom:438.786667pt;}
.y57{bottom:441.986667pt;}
.y1f{bottom:445.826667pt;}
.yae{bottom:448.866667pt;}
.y86{bottom:458.466667pt;}
.y56{bottom:461.666667pt;}
.y1e{bottom:463.426667pt;}
.yad{bottom:466.466667pt;}
.y1d{bottom:481.026667pt;}
.y54{bottom:481.186667pt;}
.yac{bottom:484.226667pt;}
.y85{bottom:496.413333pt;}
.y1c{bottom:498.813333pt;}
.yab{bottom:499.613333pt;}
.y53{bottom:511.613333pt;}
.yaa{bottom:514.813333pt;}
.y1b{bottom:516.413333pt;}
.y84{bottom:520.893333pt;}
.ya9{bottom:530.173333pt;}
.y52{bottom:531.293333pt;}
.y1a{bottom:534.013333pt;}
.y83{bottom:538.493333pt;}
.ya8{bottom:545.533333pt;}
.y50{bottom:550.973333pt;}
.y82{bottom:552.573333pt;}
.y19{bottom:553.693333pt;}
.ya7{bottom:560.893333pt;}
.y18{bottom:571.293333pt;}
.y81{bottom:572.253333pt;}
.ya6{bottom:578.493333pt;}
.y4f{bottom:582.333333pt;}
.y17{bottom:588.893333pt;}
.ya5{bottom:596.093333pt;}
.y4e{bottom:601.853333pt;}
.y80{bottom:609.533333pt;}
.ya4{bottom:613.693333pt;}
.y16{bottom:614.493333pt;}
.y4d{bottom:622.173333pt;}
.ya3{bottom:631.453333pt;}
.y15{bottom:632.093333pt;}
.y4c{bottom:646.653333pt;}
.y7f{bottom:646.813333pt;}
.ya2{bottom:649.053333pt;}
.y14{bottom:649.853333pt;}
.y4b{bottom:664.253333pt;}
.ya1{bottom:666.653333pt;}
.y13{bottom:667.453333pt;}
.y4a{bottom:678.493333pt;}
.y7e{bottom:684.093333pt;}
.ya0{bottom:684.253333pt;}
.y12{bottom:685.053333pt;}
.y49{bottom:698.013333pt;}
.y9f{bottom:701.853333pt;}
.y11{bottom:702.653333pt;}
.y7b{bottom:703.613333pt;}
.y48{bottom:717.693333pt;}
.y9e{bottom:719.613333pt;}
.y10{bottom:720.253333pt;}
.y9d{bottom:737.213333pt;}
.y47{bottom:737.373333pt;}
.yf{bottom:737.853333pt;}
.y79{bottom:740.893333pt;}
.y9c{bottom:754.853333pt;}
.y46{bottom:756.933333pt;}
.ye{bottom:757.573333pt;}
.y78{bottom:760.613333pt;}
.y9b{bottom:772.453333pt;}
.y45{bottom:776.613333pt;}
.yd{bottom:779.813333pt;}
.y9a{bottom:790.053333pt;}
.y44{bottom:796.293333pt;}
.yc{bottom:797.573333pt;}
.y77{bottom:798.533333pt;}
.y99{bottom:807.813333pt;}
.yb{bottom:811.013333pt;}
.y42{bottom:815.813333pt;}
.y76{bottom:823.013333pt;}
.y98{bottom:825.413333pt;}
.ya{bottom:830.373333pt;}
.y40{bottom:836.133333pt;}
.y75{bottom:840.613333pt;}
.y97{bottom:843.013333pt;}
.y9{bottom:849.253333pt;}
.y74{bottom:854.853333pt;}
.y3f{bottom:860.613333pt;}
.y8{bottom:870.213333pt;}
.y73{bottom:874.373333pt;}
.y3e{bottom:878.213333pt;}
.y72{bottom:894.053333pt;}
.y3d{bottom:895.973333pt;}
.y7{bottom:898.373333pt;}
.y3c{bottom:913.573333pt;}
.y71{bottom:913.733333pt;}
.y3b{bottom:931.173333pt;}
.y70{bottom:933.253333pt;}
.y5{bottom:935.173333pt;}
.y3a{bottom:948.773333pt;}
.y6f{bottom:952.933333pt;}
.y4{bottom:962.533333pt;}
.y39{bottom:966.373333pt;}
.y6e{bottom:972.613333pt;}
.y38{bottom:984.133333pt;}
.y3{bottom:989.893333pt;}
.y6c{bottom:992.133333pt;}
.y37{bottom:1001.760000pt;}
.y6b{bottom:1012.480000pt;}
.y2{bottom:1017.440000pt;}
.y36{bottom:1019.360000pt;}
.y35{bottom:1036.960000pt;}
.y1{bottom:1047.520000pt;}
.y34{bottom:1061.440000pt;}
.h16{height:1.851250pt;}
.hb{height:17.600000pt;}
.hd{height:17.632000pt;}
.hc{height:17.760000pt;}
.h12{height:17.792000pt;}
.h7{height:24.991875pt;}
.hf{height:28.512000pt;}
.he{height:29.280000pt;}
.h10{height:35.200000pt;}
.h11{height:35.232000pt;}
.h13{height:35.360000pt;}
.h5{height:37.479688pt;}
.h8{height:38.413438pt;}
.h14{height:38.672812pt;}
.h3{height:41.543750pt;}
.h4{height:42.578750pt;}
.h9{height:43.782500pt;}
.h6{height:47.310625pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.h15{height:81.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:97.952000pt;}
.wc{width:118.272000pt;}
.we{width:124.512000pt;}
.w8{width:137.306667pt;}
.w6{width:139.546667pt;}
.wa{width:140.800000pt;}
.w3{width:143.226667pt;}
.w10{width:183.226667pt;}
.w4{width:397.826667pt;}
.wb{width:435.453333pt;}
.w11{width:505.213333pt;}
.w9{width:560.573333pt;}
.w7{width:564.253333pt;}
.wf{width:573.373333pt;}
.wd{width:579.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:4.960000pt;}
.x10{left:6.880000pt;}
.x6{left:44.960000pt;}
.x1{left:48.159988pt;}
.xc{left:71.999988pt;}
.x2{left:77.440000pt;}
.xd{left:96.031988pt;}
.x8{left:108.832000pt;}
.xa{left:166.266667pt;}
.xe{left:170.106667pt;}
.xb{left:172.506667pt;}
.x7{left:184.506667pt;}
.x4{left:220.666667pt;}
.xf{left:231.226667pt;}
.x9{left:249.626667pt;}
.x5{left:618.493333pt;}
}




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