
    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_48bd49f30d2b4d8520746ab4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_586f1d0717cf128920d8caea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_7b3a63e3431fd467353c9bb8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1cca72e5b6d36223c355f280.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_529050fcfc005a4f0ebcd92b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_814fd33310e479e4ed2fcfca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_c93852e43bf2c31811a97db5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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);}
.v2{vertical-align:-27.540000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.lse{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.720000px;}
.lsb{letter-spacing:4.104000px;}
.ls9{letter-spacing:5.040000px;}
.ls8{letter-spacing:16.560000px;}
.ls5{letter-spacing:21.197280px;}
.lsa{letter-spacing:27.360000px;}
.ls7{letter-spacing:38.160000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.420000px;}
.ws6{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws7{word-spacing:-14.993280px;}
.ws2{word-spacing:0.000000px;}
._1b{margin-left:-5.246400px;}
._1a{margin-left:-4.032000px;}
._16{margin-left:-2.955360px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._14{width:2.626560px;}
._7{width:3.744000px;}
._15{width:4.896000px;}
._5{width:5.962800px;}
._4{width:7.469280px;}
._a{width:9.378720px;}
._11{width:11.232000px;}
._12{width:12.311040px;}
._18{width:13.607040px;}
._19{width:14.760000px;}
._13{width:16.128000px;}
._2{width:17.907120px;}
._3{width:19.152000px;}
._1c{width:20.175360px;}
._10{width:21.312000px;}
._20{width:22.317120px;}
._b{width:23.400000px;}
._17{width:24.912000px;}
._c{width:26.064000px;}
._d{width:27.252000px;}
._1f{width:30.676320px;}
._e{width:31.824000px;}
._f{width:33.137280px;}
._1d{width:34.256640px;}
._1e{width:35.583360px;}
._8{width:37.097280px;}
._9{width:38.124000px;}
._6{width:84.747600px;}
._21{width:91.512000px;}
._22{width:92.520000px;}
._23{width:108.648000px;}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y83{bottom:7.740000px;}
.y8e{bottom:8.100000px;}
.y8c{bottom:11.880000px;}
.y7d{bottom:12.240000px;}
.y8a{bottom:20.340000px;}
.y7e{bottom:20.520000px;}
.y82{bottom:25.020000px;}
.y88{bottom:25.050000px;}
.y8d{bottom:25.380000px;}
.y86{bottom:28.650000px;}
.y80{bottom:28.800000px;}
.y7c{bottom:29.520000px;}
.y89{bottom:37.650000px;}
.y84{bottom:37.800000px;}
.y87{bottom:42.150000px;}
.y81{bottom:42.300000px;}
.y5{bottom:57.420000px;}
.y4{bottom:76.896000px;}
.y3{bottom:96.156000px;}
.y2{bottom:115.236000px;}
.y1{bottom:134.136000px;}
.y99{bottom:159.870000px;}
.y66{bottom:163.110000px;}
.y78{bottom:165.630000px;}
.y2e{bottom:171.030000px;}
.y4a{bottom:182.190000px;}
.y98{bottom:190.830000px;}
.y2d{bottom:191.730000px;}
.y65{bottom:194.070000px;}
.y77{bottom:196.590000px;}
.yb6{bottom:204.510000px;}
.y2c{bottom:212.430000px;}
.y49{bottom:213.330000px;}
.y97{bottom:221.970000px;}
.y64{bottom:225.210000px;}
.y76{bottom:227.730000px;}
.y2b{bottom:233.130000px;}
.y48{bottom:243.390000px;}
.yb5{bottom:245.910000px;}
.y96{bottom:252.930000px;}
.y2a{bottom:253.830000px;}
.y63{bottom:256.170000px;}
.y75{bottom:258.690000px;}
.yb4{bottom:266.610000px;}
.y47{bottom:272.370000px;}
.y29{bottom:274.530000px;}
.y95{bottom:284.070000px;}
.y62{bottom:287.310000px;}
.y74{bottom:289.830000px;}
.y28{bottom:295.230000px;}
.y46{bottom:301.530000px;}
.yb3{bottom:308.010000px;}
.y94{bottom:315.030000px;}
.y27{bottom:315.930000px;}
.y61{bottom:318.315000px;}
.y73{bottom:320.835000px;}
.yb2{bottom:328.755000px;}
.y45{bottom:330.555000px;}
.y26{bottom:336.675000px;}
.y93{bottom:346.215000px;}
.y60{bottom:349.455000px;}
.y72{bottom:351.975000px;}
.y25{bottom:357.375000px;}
.y44{bottom:359.535000px;}
.yb1{bottom:370.155000px;}
.y92{bottom:377.175000px;}
.y24{bottom:378.075000px;}
.y71{bottom:378.975000px;}
.y5f{bottom:380.415000px;}
.y43{bottom:389.415000px;}
.yb0{bottom:390.855000px;}
.y23{bottom:398.775000px;}
.yca{bottom:402.015000px;}
.y91{bottom:408.315000px;}
.y5e{bottom:411.555000px;}
.y22{bottom:419.475000px;}
.y42{bottom:420.555000px;}
.yc9{bottom:422.715000px;}
.yaf{bottom:432.255000px;}
.y90{bottom:439.275000px;}
.y21{bottom:440.175000px;}
.y9d{bottom:441.795000px;}
.y5d{bottom:442.515000px;}
.yc8{bottom:443.415000px;}
.y41{bottom:451.515000px;}
.yae{bottom:452.955000px;}
.y20{bottom:460.875000px;}
.yc7{bottom:464.115000px;}
.y5c{bottom:473.655000px;}
.y1f{bottom:481.575000px;}
.y40{bottom:482.655000px;}
.y9c{bottom:484.815000px;}
.y8f{bottom:485.895000px;}
.yad{bottom:494.355000px;}
.y8b{bottom:500.655000px;}
.y1e{bottom:502.275000px;}
.y5b{bottom:504.615000px;}
.yc6{bottom:505.515000px;}
.y3f{bottom:513.615000px;}
.yac{bottom:515.055000px;}
.y9b{bottom:515.775000px;}
.y1d{bottom:522.975000px;}
.yc5{bottom:526.215000px;}
.y6c{bottom:534.855000px;}
.y5a{bottom:535.755000px;}
.y1c{bottom:543.675000px;}
.y3e{bottom:544.755000px;}
.y85{bottom:545.295000px;}
.y9a{bottom:546.735000px;}
.yab{bottom:556.455000px;}
.y1b{bottom:564.375000px;}
.y59{bottom:566.715000px;}
.yc4{bottom:567.435000px;}
.y3d{bottom:575.745000px;}
.yaa{bottom:577.185000px;}
.y6b{bottom:577.905000px;}
.y1a{bottom:585.105000px;}
.yc3{bottom:588.165000px;}
.y58{bottom:597.885000px;}
.y19{bottom:605.805000px;}
.y7f{bottom:606.705000px;}
.y3c{bottom:606.885000px;}
.y6a{bottom:608.865000px;}
.ya9{bottom:618.585000px;}
.y18{bottom:626.505000px;}
.y57{bottom:628.845000px;}
.yc2{bottom:629.565000px;}
.y3b{bottom:637.845000px;}
.ya8{bottom:639.285000px;}
.y69{bottom:640.005000px;}
.y17{bottom:647.205000px;}
.yc1{bottom:650.265000px;}
.y56{bottom:659.985000px;}
.y16{bottom:667.905000px;}
.y7b{bottom:668.265000px;}
.y3a{bottom:668.985000px;}
.y68{bottom:670.965000px;}
.ya7{bottom:680.685000px;}
.y15{bottom:688.605000px;}
.y55{bottom:690.225000px;}
.yc0{bottom:691.665000px;}
.y39{bottom:699.945000px;}
.ya6{bottom:701.385000px;}
.y67{bottom:702.105000px;}
.y14{bottom:709.305000px;}
.ybf{bottom:712.365000px;}
.ya5{bottom:722.085000px;}
.y13{bottom:730.005000px;}
.y38{bottom:731.085000px;}
.y7a{bottom:731.445000px;}
.y54{bottom:733.065000px;}
.ya4{bottom:742.785000px;}
.y12{bottom:750.705000px;}
.ybe{bottom:753.765000px;}
.y79{bottom:758.085000px;}
.y37{bottom:762.045000px;}
.ya3{bottom:763.485000px;}
.y53{bottom:764.205000px;}
.y11{bottom:771.405000px;}
.ybd{bottom:774.465000px;}
.ya2{bottom:784.185000px;}
.y36{bottom:793.185000px;}
.y52{bottom:795.165000px;}
.y10{bottom:798.945000px;}
.ya1{bottom:804.885000px;}
.y70{bottom:814.245000px;}
.ybc{bottom:815.865000px;}
.yf{bottom:819.690000px;}
.y35{bottom:824.190000px;}
.ya0{bottom:825.630000px;}
.y51{bottom:826.350000px;}
.ye{bottom:836.610000px;}
.y6f{bottom:841.110000px;}
.y9f{bottom:846.330000px;}
.y34{bottom:855.330000px;}
.yd{bottom:857.310000px;}
.y6e{bottom:861.810000px;}
.y9e{bottom:876.570000px;}
.yc{bottom:878.010000px;}
.y6d{bottom:882.510000px;}
.y33{bottom:886.290000px;}
.y50{bottom:888.450000px;}
.ybb{bottom:898.710000px;}
.yb{bottom:900.150000px;}
.y32{bottom:917.430000px;}
.y4f{bottom:919.410000px;}
.ya{bottom:927.690000px;}
.yba{bottom:940.110000px;}
.y31{bottom:948.390000px;}
.y4e{bottom:950.550000px;}
.y9{bottom:955.230000px;}
.yb9{bottom:960.810000px;}
.y30{bottom:979.530000px;}
.y4d{bottom:981.510000px;}
.y8{bottom:982.950000px;}
.yb8{bottom:1002.210000px;}
.y7{bottom:1010.490000px;}
.y4c{bottom:1012.650000px;}
.yb7{bottom:1022.910000px;}
.y6{bottom:1038.030000px;}
.y2f{bottom:1040.730000px;}
.y4b{bottom:1043.610000px;}
.h7{height:43.246406px;}
.hf{height:43.920000px;}
.ha{height:52.560000px;}
.hb{height:53.077852px;}
.hd{height:53.573906px;}
.h2{height:57.636562px;}
.h1{height:59.383125px;}
.he{height:60.696000px;}
.hc{height:60.840000px;}
.h8{height:63.351562px;}
.h4{height:63.949219px;}
.h6{height:64.546875px;}
.h5{height:70.606406px;}
.h9{height:74.820586px;}
.h3{height:85.052461px;}
.h0{height:1188.000000px;}
.w2{width:95.400000px;}
.w3{width:221.790000px;}
.w4{width:385.275000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:10.620000px;}
.x20{left:15.300000px;}
.x12{left:20.700000px;}
.x21{left:21.780000px;}
.x11{left:23.394000px;}
.x1d{left:25.740000px;}
.x1a{left:28.260000px;}
.x17{left:31.494000px;}
.x1c{left:34.014000px;}
.x18{left:35.640000px;}
.x1f{left:39.774000px;}
.x14{left:57.240000px;}
.x22{left:76.890000px;}
.x19{left:78.165000px;}
.x1e{left:82.650000px;}
.x1b{left:93.090000px;}
.x1{left:127.655986px;}
.xb{left:133.235986px;}
.x8{left:170.129986px;}
.x4{left:172.289986px;}
.x9{left:180.749986px;}
.xa{left:183.089986px;}
.xc{left:191.909986px;}
.xf{left:194.069986px;}
.x3{left:195.329986px;}
.x5{left:199.109986px;}
.x13{left:224.490000px;}
.x10{left:247.709986px;}
.x6{left:308.594986px;}
.x23{left:400.214986px;}
.x15{left:447.015000px;}
.x7{left:480.344986px;}
.xd{left:506.984986px;}
.xe{left:822.389986px;}
.x2{left:833.189986px;}
@media print{
.v2{vertical-align:-24.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsb{letter-spacing:3.648000pt;}
.ls9{letter-spacing:4.480000pt;}
.ls8{letter-spacing:14.720000pt;}
.ls5{letter-spacing:18.842027pt;}
.lsa{letter-spacing:24.320000pt;}
.ls7{letter-spacing:33.920000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws2{word-spacing:0.000000pt;}
._1b{margin-left:-4.663467pt;}
._1a{margin-left:-3.584000pt;}
._16{margin-left:-2.626987pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._14{width:2.334720pt;}
._7{width:3.328000pt;}
._15{width:4.352000pt;}
._5{width:5.300267pt;}
._4{width:6.639360pt;}
._a{width:8.336640pt;}
._11{width:9.984000pt;}
._12{width:10.943147pt;}
._18{width:12.095147pt;}
._19{width:13.120000pt;}
._13{width:14.336000pt;}
._2{width:15.917440pt;}
._3{width:17.024000pt;}
._1c{width:17.933653pt;}
._10{width:18.944000pt;}
._20{width:19.837440pt;}
._b{width:20.800000pt;}
._17{width:22.144000pt;}
._c{width:23.168000pt;}
._d{width:24.224000pt;}
._1f{width:27.267840pt;}
._e{width:28.288000pt;}
._f{width:29.455360pt;}
._1d{width:30.450347pt;}
._1e{width:31.629653pt;}
._8{width:32.975360pt;}
._9{width:33.888000pt;}
._6{width:75.331200pt;}
._21{width:81.344000pt;}
._22{width:82.240000pt;}
._23{width:96.576000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:6.880000pt;}
.y8e{bottom:7.200000pt;}
.y8c{bottom:10.560000pt;}
.y7d{bottom:10.880000pt;}
.y8a{bottom:18.080000pt;}
.y7e{bottom:18.240000pt;}
.y82{bottom:22.240000pt;}
.y88{bottom:22.266667pt;}
.y8d{bottom:22.560000pt;}
.y86{bottom:25.466667pt;}
.y80{bottom:25.600000pt;}
.y7c{bottom:26.240000pt;}
.y89{bottom:33.466667pt;}
.y84{bottom:33.600000pt;}
.y87{bottom:37.466667pt;}
.y81{bottom:37.600000pt;}
.y5{bottom:51.040000pt;}
.y4{bottom:68.352000pt;}
.y3{bottom:85.472000pt;}
.y2{bottom:102.432000pt;}
.y1{bottom:119.232000pt;}
.y99{bottom:142.106667pt;}
.y66{bottom:144.986667pt;}
.y78{bottom:147.226667pt;}
.y2e{bottom:152.026667pt;}
.y4a{bottom:161.946667pt;}
.y98{bottom:169.626667pt;}
.y2d{bottom:170.426667pt;}
.y65{bottom:172.506667pt;}
.y77{bottom:174.746667pt;}
.yb6{bottom:181.786667pt;}
.y2c{bottom:188.826667pt;}
.y49{bottom:189.626667pt;}
.y97{bottom:197.306667pt;}
.y64{bottom:200.186667pt;}
.y76{bottom:202.426667pt;}
.y2b{bottom:207.226667pt;}
.y48{bottom:216.346667pt;}
.yb5{bottom:218.586667pt;}
.y96{bottom:224.826667pt;}
.y2a{bottom:225.626667pt;}
.y63{bottom:227.706667pt;}
.y75{bottom:229.946667pt;}
.yb4{bottom:236.986667pt;}
.y47{bottom:242.106667pt;}
.y29{bottom:244.026667pt;}
.y95{bottom:252.506667pt;}
.y62{bottom:255.386667pt;}
.y74{bottom:257.626667pt;}
.y28{bottom:262.426667pt;}
.y46{bottom:268.026667pt;}
.yb3{bottom:273.786667pt;}
.y94{bottom:280.026667pt;}
.y27{bottom:280.826667pt;}
.y61{bottom:282.946667pt;}
.y73{bottom:285.186667pt;}
.yb2{bottom:292.226667pt;}
.y45{bottom:293.826667pt;}
.y26{bottom:299.266667pt;}
.y93{bottom:307.746667pt;}
.y60{bottom:310.626667pt;}
.y72{bottom:312.866667pt;}
.y25{bottom:317.666667pt;}
.y44{bottom:319.586667pt;}
.yb1{bottom:329.026667pt;}
.y92{bottom:335.266667pt;}
.y24{bottom:336.066667pt;}
.y71{bottom:336.866667pt;}
.y5f{bottom:338.146667pt;}
.y43{bottom:346.146667pt;}
.yb0{bottom:347.426667pt;}
.y23{bottom:354.466667pt;}
.yca{bottom:357.346667pt;}
.y91{bottom:362.946667pt;}
.y5e{bottom:365.826667pt;}
.y22{bottom:372.866667pt;}
.y42{bottom:373.826667pt;}
.yc9{bottom:375.746667pt;}
.yaf{bottom:384.226667pt;}
.y90{bottom:390.466667pt;}
.y21{bottom:391.266667pt;}
.y9d{bottom:392.706667pt;}
.y5d{bottom:393.346667pt;}
.yc8{bottom:394.146667pt;}
.y41{bottom:401.346667pt;}
.yae{bottom:402.626667pt;}
.y20{bottom:409.666667pt;}
.yc7{bottom:412.546667pt;}
.y5c{bottom:421.026667pt;}
.y1f{bottom:428.066667pt;}
.y40{bottom:429.026667pt;}
.y9c{bottom:430.946667pt;}
.y8f{bottom:431.906667pt;}
.yad{bottom:439.426667pt;}
.y8b{bottom:445.026667pt;}
.y1e{bottom:446.466667pt;}
.y5b{bottom:448.546667pt;}
.yc6{bottom:449.346667pt;}
.y3f{bottom:456.546667pt;}
.yac{bottom:457.826667pt;}
.y9b{bottom:458.466667pt;}
.y1d{bottom:464.866667pt;}
.yc5{bottom:467.746667pt;}
.y6c{bottom:475.426667pt;}
.y5a{bottom:476.226667pt;}
.y1c{bottom:483.266667pt;}
.y3e{bottom:484.226667pt;}
.y85{bottom:484.706667pt;}
.y9a{bottom:485.986667pt;}
.yab{bottom:494.626667pt;}
.y1b{bottom:501.666667pt;}
.y59{bottom:503.746667pt;}
.yc4{bottom:504.386667pt;}
.y3d{bottom:511.773333pt;}
.yaa{bottom:513.053333pt;}
.y6b{bottom:513.693333pt;}
.y1a{bottom:520.093333pt;}
.yc3{bottom:522.813333pt;}
.y58{bottom:531.453333pt;}
.y19{bottom:538.493333pt;}
.y7f{bottom:539.293333pt;}
.y3c{bottom:539.453333pt;}
.y6a{bottom:541.213333pt;}
.ya9{bottom:549.853333pt;}
.y18{bottom:556.893333pt;}
.y57{bottom:558.973333pt;}
.yc2{bottom:559.613333pt;}
.y3b{bottom:566.973333pt;}
.ya8{bottom:568.253333pt;}
.y69{bottom:568.893333pt;}
.y17{bottom:575.293333pt;}
.yc1{bottom:578.013333pt;}
.y56{bottom:586.653333pt;}
.y16{bottom:593.693333pt;}
.y7b{bottom:594.013333pt;}
.y3a{bottom:594.653333pt;}
.y68{bottom:596.413333pt;}
.ya7{bottom:605.053333pt;}
.y15{bottom:612.093333pt;}
.y55{bottom:613.533333pt;}
.yc0{bottom:614.813333pt;}
.y39{bottom:622.173333pt;}
.ya6{bottom:623.453333pt;}
.y67{bottom:624.093333pt;}
.y14{bottom:630.493333pt;}
.ybf{bottom:633.213333pt;}
.ya5{bottom:641.853333pt;}
.y13{bottom:648.893333pt;}
.y38{bottom:649.853333pt;}
.y7a{bottom:650.173333pt;}
.y54{bottom:651.613333pt;}
.ya4{bottom:660.253333pt;}
.y12{bottom:667.293333pt;}
.ybe{bottom:670.013333pt;}
.y79{bottom:673.853333pt;}
.y37{bottom:677.373333pt;}
.ya3{bottom:678.653333pt;}
.y53{bottom:679.293333pt;}
.y11{bottom:685.693333pt;}
.ybd{bottom:688.413333pt;}
.ya2{bottom:697.053333pt;}
.y36{bottom:705.053333pt;}
.y52{bottom:706.813333pt;}
.y10{bottom:710.173333pt;}
.ya1{bottom:715.453333pt;}
.y70{bottom:723.773333pt;}
.ybc{bottom:725.213333pt;}
.yf{bottom:728.613333pt;}
.y35{bottom:732.613333pt;}
.ya0{bottom:733.893333pt;}
.y51{bottom:734.533333pt;}
.ye{bottom:743.653333pt;}
.y6f{bottom:747.653333pt;}
.y9f{bottom:752.293333pt;}
.y34{bottom:760.293333pt;}
.yd{bottom:762.053333pt;}
.y6e{bottom:766.053333pt;}
.y9e{bottom:779.173333pt;}
.yc{bottom:780.453333pt;}
.y6d{bottom:784.453333pt;}
.y33{bottom:787.813333pt;}
.y50{bottom:789.733333pt;}
.ybb{bottom:798.853333pt;}
.yb{bottom:800.133333pt;}
.y32{bottom:815.493333pt;}
.y4f{bottom:817.253333pt;}
.ya{bottom:824.613333pt;}
.yba{bottom:835.653333pt;}
.y31{bottom:843.013333pt;}
.y4e{bottom:844.933333pt;}
.y9{bottom:849.093333pt;}
.yb9{bottom:854.053333pt;}
.y30{bottom:870.693333pt;}
.y4d{bottom:872.453333pt;}
.y8{bottom:873.733333pt;}
.yb8{bottom:890.853333pt;}
.y7{bottom:898.213333pt;}
.y4c{bottom:900.133333pt;}
.yb7{bottom:909.253333pt;}
.y6{bottom:922.693333pt;}
.y2f{bottom:925.093333pt;}
.y4b{bottom:927.653333pt;}
.h7{height:38.441250pt;}
.hf{height:39.040000pt;}
.ha{height:46.720000pt;}
.hb{height:47.180312pt;}
.hd{height:47.621250pt;}
.h2{height:51.232500pt;}
.h1{height:52.785000pt;}
.he{height:53.952000pt;}
.hc{height:54.080000pt;}
.h8{height:56.312500pt;}
.h4{height:56.843750pt;}
.h6{height:57.375000pt;}
.h5{height:62.761250pt;}
.h9{height:66.507188pt;}
.h3{height:75.602187pt;}
.h0{height:1056.000000pt;}
.w2{width:84.800000pt;}
.w3{width:197.146667pt;}
.w4{width:342.466667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:9.440000pt;}
.x20{left:13.600000pt;}
.x12{left:18.400000pt;}
.x21{left:19.360000pt;}
.x11{left:20.794667pt;}
.x1d{left:22.880000pt;}
.x1a{left:25.120000pt;}
.x17{left:27.994667pt;}
.x1c{left:30.234667pt;}
.x18{left:31.680000pt;}
.x1f{left:35.354667pt;}
.x14{left:50.880000pt;}
.x22{left:68.346667pt;}
.x19{left:69.480000pt;}
.x1e{left:73.466667pt;}
.x1b{left:82.746667pt;}
.x1{left:113.471988pt;}
.xb{left:118.431988pt;}
.x8{left:151.226655pt;}
.x4{left:153.146655pt;}
.x9{left:160.666655pt;}
.xa{left:162.746655pt;}
.xc{left:170.586655pt;}
.xf{left:172.506655pt;}
.x3{left:173.626655pt;}
.x5{left:176.986655pt;}
.x13{left:199.546667pt;}
.x10{left:220.186655pt;}
.x6{left:274.306655pt;}
.x23{left:355.746655pt;}
.x15{left:397.346667pt;}
.x7{left:426.973321pt;}
.xd{left:450.653321pt;}
.xe{left:731.013321pt;}
.x2{left:740.613321pt;}
}




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