
    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_4ac1f0b8c05940e2f58ccb75.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_bfa43689d3931db509fffbf5.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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_1f0e16d1beb245090d3851be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_13fddf3e20c5f4b969c33fed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_9926a069fa1aa22d39e23341.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:21.660000px;}
.ls14{letter-spacing:-1.800000px;}
.ls1a{letter-spacing:-0.780000px;}
.ls4{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.552000px;}
.ls13{letter-spacing:-0.372000px;}
.ls18{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.096000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.084000px;}
.ls15{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.138000px;}
.ls17{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.372000px;}
.ls16{letter-spacing:0.420000px;}
.ls19{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.552000px;}
.ls7{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.732000px;}
.ls9{letter-spacing:0.828000px;}
.ls5{letter-spacing:3.060000px;}
.lse{letter-spacing:8.940000px;}
.ls11{letter-spacing:13.800000px;}
.ls10{letter-spacing:15.000000px;}
.ls1b{letter-spacing:21.228000px;}
.lsf{letter-spacing:28.200000px;}
.ls6{letter-spacing:40.284000px;}
.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:-21.648000px;}
.ws9{word-spacing:-21.552000px;}
.ws4{word-spacing:-21.372000px;}
.ws0{word-spacing:-21.000000px;}
.ws2{word-spacing:-20.448000px;}
.ws6{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.880000px;}
.ws8{word-spacing:-14.220000px;}
.ws1{word-spacing:0.000000px;}
._31{margin-left:-20.172000px;}
._d{margin-left:-4.368000px;}
._15{margin-left:-2.436000px;}
._1{margin-left:-1.344000px;}
._0{width:1.092000px;}
._2{width:2.280000px;}
._8{width:4.008000px;}
._11{width:5.040000px;}
._c{width:6.156000px;}
._b{width:7.560000px;}
._a{width:8.568000px;}
._24{width:9.618000px;}
._1e{width:10.884000px;}
._1d{width:12.426000px;}
._1f{width:14.034000px;}
._23{width:15.336000px;}
._19{width:17.010000px;}
._5{width:18.144000px;}
._1a{width:20.010000px;}
._6{width:22.794000px;}
._7{width:23.826000px;}
._f{width:25.284000px;}
._10{width:26.286000px;}
._1c{width:27.528000px;}
._27{width:29.046000px;}
._e{width:30.492000px;}
._2f{width:33.540000px;}
._30{width:37.464000px;}
._14{width:39.240000px;}
._9{width:40.716000px;}
._4{width:42.588000px;}
._3{width:44.304000px;}
._26{width:45.354000px;}
._25{width:46.866000px;}
._1b{width:48.426000px;}
._21{width:49.542000px;}
._22{width:50.568000px;}
._13{width:59.976000px;}
._12{width:61.752000px;}
._28{width:63.756000px;}
._29{width:64.860000px;}
._2b{width:66.024000px;}
._2c{width:67.032000px;}
._2a{width:68.460000px;}
._18{width:72.072000px;}
._17{width:74.004000px;}
._2d{width:75.600000px;}
._2e{width:76.944000px;}
._20{width:88.152000px;}
._16{width:116.340000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.600000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.300000px;}
.y66{bottom:3.585000px;}
.y55{bottom:3.600000px;}
.y8d{bottom:3.615000px;}
.y86{bottom:3.630000px;}
.y57{bottom:8.385000px;}
.y45{bottom:8.400000px;}
.y7f{bottom:8.430000px;}
.y65{bottom:20.685000px;}
.y40{bottom:20.700000px;}
.y85{bottom:20.730000px;}
.y3f{bottom:22.500000px;}
.y43{bottom:36.900000px;}
.y7c{bottom:37.800000px;}
.y64{bottom:38.085000px;}
.y8c{bottom:38.100000px;}
.y54{bottom:38.115000px;}
.y84{bottom:38.130000px;}
.y42{bottom:54.000000px;}
.y63{bottom:55.185000px;}
.y76{bottom:55.200000px;}
.y53{bottom:55.215000px;}
.y83{bottom:55.230000px;}
.y7{bottom:58.837500px;}
.y41{bottom:71.400000px;}
.y7b{bottom:72.300000px;}
.y62{bottom:72.585000px;}
.y52{bottom:72.600000px;}
.y82{bottom:72.630000px;}
.y8b{bottom:72.645000px;}
.y6{bottom:80.737500px;}
.y51{bottom:89.700000px;}
.y61{bottom:89.730000px;}
.y8a{bottom:89.745000px;}
.y6f{bottom:101.737500px;}
.y7a{bottom:106.800000px;}
.y50{bottom:107.115000px;}
.y60{bottom:107.130000px;}
.y6e{bottom:107.137500px;}
.y75{bottom:107.145000px;}
.y6d{bottom:121.237500px;}
.y3c{bottom:121.837500px;}
.y4f{bottom:124.200000px;}
.y5f{bottom:124.230000px;}
.y74{bottom:124.245000px;}
.y6c{bottom:126.637500px;}
.ya4{bottom:137.737500px;}
.y22{bottom:140.437500px;}
.y6b{bottom:141.037500px;}
.y79{bottom:141.345000px;}
.y4e{bottom:141.600000px;}
.y5e{bottom:141.630000px;}
.y73{bottom:141.645000px;}
.y87{bottom:141.937500px;}
.y6a{bottom:146.437500px;}
.y3b{bottom:157.830000px;}
.y4d{bottom:158.700000px;}
.y5d{bottom:158.730000px;}
.y72{bottom:158.745000px;}
.y69{bottom:160.830000px;}
.ya3{bottom:161.730000px;}
.y68{bottom:166.245000px;}
.y78{bottom:175.830000px;}
.y89{bottom:175.845000px;}
.y5c{bottom:176.130000px;}
.y4c{bottom:176.145000px;}
.y81{bottom:176.175000px;}
.y21{bottom:176.775000px;}
.y67{bottom:181.575000px;}
.ya2{bottom:186.075000px;}
.y5b{bottom:193.230000px;}
.y4b{bottom:193.245000px;}
.y80{bottom:193.275000px;}
.y3a{bottom:194.175000px;}
.ya1{bottom:210.075000px;}
.y71{bottom:210.345000px;}
.y5a{bottom:210.630000px;}
.y4a{bottom:210.645000px;}
.y20{bottom:213.075000px;}
.y59{bottom:227.730000px;}
.y49{bottom:227.745000px;}
.y39{bottom:230.475000px;}
.ya0{bottom:234.375000px;}
.y58{bottom:245.130000px;}
.y48{bottom:245.145000px;}
.y1f{bottom:249.375000px;}
.y9f{bottom:258.375000px;}
.y47{bottom:262.245000px;}
.y38{bottom:266.775000px;}
.y46{bottom:279.345000px;}
.y9e{bottom:282.675000px;}
.y1e{bottom:285.375000px;}
.y37{bottom:302.775000px;}
.y9d{bottom:306.675000px;}
.y1d{bottom:321.675000px;}
.y9c{bottom:330.975000px;}
.y7e{bottom:335.775000px;}
.y36{bottom:339.120000px;}
.y9b{bottom:355.005000px;}
.y1c{bottom:358.005000px;}
.y35{bottom:375.420000px;}
.y9a{bottom:379.320000px;}
.y1b{bottom:394.320000px;}
.y99{bottom:403.320000px;}
.y34{bottom:411.705000px;}
.y56{bottom:422.820000px;}
.y98{bottom:427.620000px;}
.y3e{bottom:430.005000px;}
.y1a{bottom:430.320000px;}
.y33{bottom:447.705000px;}
.y97{bottom:451.620000px;}
.y19{bottom:466.620000px;}
.y96{bottom:475.905000px;}
.y32{bottom:484.005000px;}
.y18{bottom:502.905000px;}
.y95{bottom:511.650000px;}
.y31{bottom:520.350000px;}
.y3d{bottom:520.650000px;}
.y17{bottom:539.250000px;}
.y77{bottom:543.750000px;}
.y94{bottom:547.950000px;}
.y30{bottom:556.350000px;}
.y16{bottom:575.250000px;}
.y93{bottom:584.250000px;}
.y2f{bottom:592.650000px;}
.y15{bottom:611.550000px;}
.y92{bottom:620.550000px;}
.y2e{bottom:628.950000px;}
.y14{bottom:647.850000px;}
.y91{bottom:656.550000px;}
.y2d{bottom:665.250000px;}
.y44{bottom:682.380000px;}
.y13{bottom:684.180000px;}
.y90{bottom:692.880000px;}
.y2c{bottom:701.280000px;}
.y12{bottom:720.195000px;}
.y8f{bottom:729.195000px;}
.y2b{bottom:737.595000px;}
.y70{bottom:751.380000px;}
.y11{bottom:756.480000px;}
.y8e{bottom:765.480000px;}
.y2a{bottom:773.880000px;}
.y88{bottom:785.880000px;}
.y10{bottom:792.780000px;}
.y29{bottom:810.195000px;}
.yf{bottom:829.080000px;}
.y28{bottom:846.225000px;}
.ye{bottom:865.425000px;}
.y27{bottom:882.525000px;}
.yd{bottom:901.425000px;}
.y26{bottom:918.825000px;}
.yc{bottom:937.725000px;}
.y25{bottom:955.125000px;}
.yb{bottom:973.725000px;}
.y24{bottom:991.125000px;}
.ya{bottom:1011.525000px;}
.y23{bottom:1027.455000px;}
.y9{bottom:1037.655000px;}
.y8{bottom:1063.755000px;}
.y5{bottom:1089.570000px;}
.y4{bottom:1111.455000px;}
.y3{bottom:1137.570000px;}
.y2{bottom:1163.655000px;}
.y1{bottom:1189.800000px;}
.hc{height:39.387305px;}
.h8{height:42.070313px;}
.h6{height:42.333984px;}
.ha{height:49.366406px;}
.h9{height:49.426406px;}
.h4{height:58.898438px;}
.h2{height:59.267578px;}
.hd{height:59.677734px;}
.h12{height:61.154297px;}
.h3{height:65.645508px;}
.h5{height:85.237500px;}
.h11{height:189.630000px;}
.hf{height:207.030000px;}
.h10{height:207.075000px;}
.he{height:224.145000px;}
.hb{height:258.975000px;}
.h7{height:293.130000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:44.700000px;}
.w6{width:152.775000px;}
.w7{width:157.845000px;}
.w5{width:158.430000px;}
.w4{width:183.060000px;}
.w8{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:8.100000px;}
.x13{left:10.230000px;}
.x2d{left:11.400000px;}
.x24{left:12.900000px;}
.x1b{left:14.100000px;}
.x1e{left:15.630000px;}
.x16{left:17.685000px;}
.x20{left:18.930000px;}
.x1d{left:20.130000px;}
.x10{left:21.592500px;}
.x21{left:23.130000px;}
.x2c{left:24.300000px;}
.x1f{left:25.530000px;}
.x27{left:26.685000px;}
.x23{left:28.830000px;}
.x2b{left:30.930000px;}
.x1c{left:32.100000px;}
.x22{left:33.630000px;}
.x36{left:34.830000px;}
.x19{left:36.330000px;}
.x29{left:37.545000px;}
.x11{left:39.592500px;}
.x2e{left:40.845000px;}
.x14{left:43.530000px;}
.x37{left:44.700000px;}
.x33{left:46.230000px;}
.x34{left:49.185000px;}
.x26{left:50.400000px;}
.x32{left:52.500000px;}
.x35{left:54.000000px;}
.x25{left:55.185000px;}
.x28{left:57.945000px;}
.x2f{left:60.600000px;}
.x17{left:63.030000px;}
.x5{left:127.537487px;}
.x31{left:132.637487px;}
.x3a{left:154.529987px;}
.xd{left:170.129987px;}
.x12{left:174.045000px;}
.x38{left:180.674987px;}
.xf{left:216.074987px;}
.x39{left:244.274987px;}
.x1{left:246.074987px;}
.x7{left:260.474987px;}
.x6{left:275.174987px;}
.xe{left:288.674987px;}
.xa{left:300.404987px;}
.x30{left:343.619987px;}
.x15{left:357.720000px;}
.xb{left:391.004987px;}
.x2{left:412.904987px;}
.x4{left:465.749987px;}
.x8{left:483.449987px;}
.x9{left:504.149987px;}
.x18{left:517.050000px;}
.x3{left:537.794987px;}
.x1a{left:670.725000px;}
.xc{left:829.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.253333pt;}
.ls14{letter-spacing:-1.600000pt;}
.ls1a{letter-spacing:-0.693333pt;}
.ls4{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.490667pt;}
.ls13{letter-spacing:-0.330667pt;}
.ls18{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.085333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.074667pt;}
.ls15{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.122667pt;}
.ls17{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.330667pt;}
.ls16{letter-spacing:0.373333pt;}
.ls19{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.490667pt;}
.ls7{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.650667pt;}
.ls9{letter-spacing:0.736000pt;}
.ls5{letter-spacing:2.720000pt;}
.lse{letter-spacing:7.946667pt;}
.ls11{letter-spacing:12.266667pt;}
.ls10{letter-spacing:13.333333pt;}
.ls1b{letter-spacing:18.869333pt;}
.lsf{letter-spacing:25.066667pt;}
.ls6{letter-spacing:35.808000pt;}
.ws3{word-spacing:-19.242667pt;}
.ws9{word-spacing:-19.157333pt;}
.ws4{word-spacing:-18.997333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws2{word-spacing:-18.176000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.226667pt;}
.ws8{word-spacing:-12.640000pt;}
.ws1{word-spacing:0.000000pt;}
._31{margin-left:-17.930667pt;}
._d{margin-left:-3.882667pt;}
._15{margin-left:-2.165333pt;}
._1{margin-left:-1.194667pt;}
._0{width:0.970667pt;}
._2{width:2.026667pt;}
._8{width:3.562667pt;}
._11{width:4.480000pt;}
._c{width:5.472000pt;}
._b{width:6.720000pt;}
._a{width:7.616000pt;}
._24{width:8.549333pt;}
._1e{width:9.674667pt;}
._1d{width:11.045333pt;}
._1f{width:12.474667pt;}
._23{width:13.632000pt;}
._19{width:15.120000pt;}
._5{width:16.128000pt;}
._1a{width:17.786667pt;}
._6{width:20.261333pt;}
._7{width:21.178667pt;}
._f{width:22.474667pt;}
._10{width:23.365333pt;}
._1c{width:24.469333pt;}
._27{width:25.818667pt;}
._e{width:27.104000pt;}
._2f{width:29.813333pt;}
._30{width:33.301333pt;}
._14{width:34.880000pt;}
._9{width:36.192000pt;}
._4{width:37.856000pt;}
._3{width:39.381333pt;}
._26{width:40.314667pt;}
._25{width:41.658667pt;}
._1b{width:43.045333pt;}
._21{width:44.037333pt;}
._22{width:44.949333pt;}
._13{width:53.312000pt;}
._12{width:54.890667pt;}
._28{width:56.672000pt;}
._29{width:57.653333pt;}
._2b{width:58.688000pt;}
._2c{width:59.584000pt;}
._2a{width:60.853333pt;}
._18{width:64.064000pt;}
._17{width:65.781333pt;}
._2d{width:67.200000pt;}
._2e{width:68.394667pt;}
._20{width:78.357333pt;}
._16{width:103.413333pt;}
.fs3{font-size:35.200000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:2.933333pt;}
.y66{bottom:3.186667pt;}
.y55{bottom:3.200000pt;}
.y8d{bottom:3.213333pt;}
.y86{bottom:3.226667pt;}
.y57{bottom:7.453333pt;}
.y45{bottom:7.466667pt;}
.y7f{bottom:7.493333pt;}
.y65{bottom:18.386667pt;}
.y40{bottom:18.400000pt;}
.y85{bottom:18.426667pt;}
.y3f{bottom:20.000000pt;}
.y43{bottom:32.800000pt;}
.y7c{bottom:33.600000pt;}
.y64{bottom:33.853333pt;}
.y8c{bottom:33.866667pt;}
.y54{bottom:33.880000pt;}
.y84{bottom:33.893333pt;}
.y42{bottom:48.000000pt;}
.y63{bottom:49.053333pt;}
.y76{bottom:49.066667pt;}
.y53{bottom:49.080000pt;}
.y83{bottom:49.093333pt;}
.y7{bottom:52.300000pt;}
.y41{bottom:63.466667pt;}
.y7b{bottom:64.266667pt;}
.y62{bottom:64.520000pt;}
.y52{bottom:64.533333pt;}
.y82{bottom:64.560000pt;}
.y8b{bottom:64.573333pt;}
.y6{bottom:71.766667pt;}
.y51{bottom:79.733333pt;}
.y61{bottom:79.760000pt;}
.y8a{bottom:79.773333pt;}
.y6f{bottom:90.433333pt;}
.y7a{bottom:94.933333pt;}
.y50{bottom:95.213333pt;}
.y60{bottom:95.226667pt;}
.y6e{bottom:95.233333pt;}
.y75{bottom:95.240000pt;}
.y6d{bottom:107.766667pt;}
.y3c{bottom:108.300000pt;}
.y4f{bottom:110.400000pt;}
.y5f{bottom:110.426667pt;}
.y74{bottom:110.440000pt;}
.y6c{bottom:112.566667pt;}
.ya4{bottom:122.433333pt;}
.y22{bottom:124.833333pt;}
.y6b{bottom:125.366667pt;}
.y79{bottom:125.640000pt;}
.y4e{bottom:125.866667pt;}
.y5e{bottom:125.893333pt;}
.y73{bottom:125.906667pt;}
.y87{bottom:126.166667pt;}
.y6a{bottom:130.166667pt;}
.y3b{bottom:140.293333pt;}
.y4d{bottom:141.066667pt;}
.y5d{bottom:141.093333pt;}
.y72{bottom:141.106667pt;}
.y69{bottom:142.960000pt;}
.ya3{bottom:143.760000pt;}
.y68{bottom:147.773333pt;}
.y78{bottom:156.293333pt;}
.y89{bottom:156.306667pt;}
.y5c{bottom:156.560000pt;}
.y4c{bottom:156.573333pt;}
.y81{bottom:156.600000pt;}
.y21{bottom:157.133333pt;}
.y67{bottom:161.400000pt;}
.ya2{bottom:165.400000pt;}
.y5b{bottom:171.760000pt;}
.y4b{bottom:171.773333pt;}
.y80{bottom:171.800000pt;}
.y3a{bottom:172.600000pt;}
.ya1{bottom:186.733333pt;}
.y71{bottom:186.973333pt;}
.y5a{bottom:187.226667pt;}
.y4a{bottom:187.240000pt;}
.y20{bottom:189.400000pt;}
.y59{bottom:202.426667pt;}
.y49{bottom:202.440000pt;}
.y39{bottom:204.866667pt;}
.ya0{bottom:208.333333pt;}
.y58{bottom:217.893333pt;}
.y48{bottom:217.906667pt;}
.y1f{bottom:221.666667pt;}
.y9f{bottom:229.666667pt;}
.y47{bottom:233.106667pt;}
.y38{bottom:237.133333pt;}
.y46{bottom:248.306667pt;}
.y9e{bottom:251.266667pt;}
.y1e{bottom:253.666667pt;}
.y37{bottom:269.133333pt;}
.y9d{bottom:272.600000pt;}
.y1d{bottom:285.933333pt;}
.y9c{bottom:294.200000pt;}
.y7e{bottom:298.466667pt;}
.y36{bottom:301.440000pt;}
.y9b{bottom:315.560000pt;}
.y1c{bottom:318.226667pt;}
.y35{bottom:333.706667pt;}
.y9a{bottom:337.173333pt;}
.y1b{bottom:350.506667pt;}
.y99{bottom:358.506667pt;}
.y34{bottom:365.960000pt;}
.y56{bottom:375.840000pt;}
.y98{bottom:380.106667pt;}
.y3e{bottom:382.226667pt;}
.y1a{bottom:382.506667pt;}
.y33{bottom:397.960000pt;}
.y97{bottom:401.440000pt;}
.y19{bottom:414.773333pt;}
.y96{bottom:423.026667pt;}
.y32{bottom:430.226667pt;}
.y18{bottom:447.026667pt;}
.y95{bottom:454.800000pt;}
.y31{bottom:462.533333pt;}
.y3d{bottom:462.800000pt;}
.y17{bottom:479.333333pt;}
.y77{bottom:483.333333pt;}
.y94{bottom:487.066667pt;}
.y30{bottom:494.533333pt;}
.y16{bottom:511.333333pt;}
.y93{bottom:519.333333pt;}
.y2f{bottom:526.800000pt;}
.y15{bottom:543.600000pt;}
.y92{bottom:551.600000pt;}
.y2e{bottom:559.066667pt;}
.y14{bottom:575.866667pt;}
.y91{bottom:583.600000pt;}
.y2d{bottom:591.333333pt;}
.y44{bottom:606.560000pt;}
.y13{bottom:608.160000pt;}
.y90{bottom:615.893333pt;}
.y2c{bottom:623.360000pt;}
.y12{bottom:640.173333pt;}
.y8f{bottom:648.173333pt;}
.y2b{bottom:655.640000pt;}
.y70{bottom:667.893333pt;}
.y11{bottom:672.426667pt;}
.y8e{bottom:680.426667pt;}
.y2a{bottom:687.893333pt;}
.y88{bottom:698.560000pt;}
.y10{bottom:704.693333pt;}
.y29{bottom:720.173333pt;}
.yf{bottom:736.960000pt;}
.y28{bottom:752.200000pt;}
.ye{bottom:769.266667pt;}
.y27{bottom:784.466667pt;}
.yd{bottom:801.266667pt;}
.y26{bottom:816.733333pt;}
.yc{bottom:833.533333pt;}
.y25{bottom:849.000000pt;}
.yb{bottom:865.533333pt;}
.y24{bottom:881.000000pt;}
.ya{bottom:899.133333pt;}
.y23{bottom:913.293333pt;}
.y9{bottom:922.360000pt;}
.y8{bottom:945.560000pt;}
.y5{bottom:968.506667pt;}
.y4{bottom:987.960000pt;}
.y3{bottom:1011.173333pt;}
.y2{bottom:1034.360000pt;}
.y1{bottom:1057.600000pt;}
.hc{height:35.010937pt;}
.h8{height:37.395833pt;}
.h6{height:37.630208pt;}
.ha{height:43.881250pt;}
.h9{height:43.934583pt;}
.h4{height:52.354167pt;}
.h2{height:52.682292pt;}
.hd{height:53.046875pt;}
.h12{height:54.359375pt;}
.h3{height:58.351562pt;}
.h5{height:75.766667pt;}
.h11{height:168.560000pt;}
.hf{height:184.026667pt;}
.h10{height:184.066667pt;}
.he{height:199.240000pt;}
.hb{height:230.200000pt;}
.h7{height:260.560000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:39.733333pt;}
.w6{width:135.800000pt;}
.w7{width:140.306667pt;}
.w5{width:140.826667pt;}
.w4{width:162.720000pt;}
.w8{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:7.200000pt;}
.x13{left:9.093333pt;}
.x2d{left:10.133333pt;}
.x24{left:11.466667pt;}
.x1b{left:12.533333pt;}
.x1e{left:13.893333pt;}
.x16{left:15.720000pt;}
.x20{left:16.826667pt;}
.x1d{left:17.893333pt;}
.x10{left:19.193333pt;}
.x21{left:20.560000pt;}
.x2c{left:21.600000pt;}
.x1f{left:22.693333pt;}
.x27{left:23.720000pt;}
.x23{left:25.626667pt;}
.x2b{left:27.493333pt;}
.x1c{left:28.533333pt;}
.x22{left:29.893333pt;}
.x36{left:30.960000pt;}
.x19{left:32.293333pt;}
.x29{left:33.373333pt;}
.x11{left:35.193333pt;}
.x2e{left:36.306667pt;}
.x14{left:38.693333pt;}
.x37{left:39.733333pt;}
.x33{left:41.093333pt;}
.x34{left:43.720000pt;}
.x26{left:44.800000pt;}
.x32{left:46.666667pt;}
.x35{left:48.000000pt;}
.x25{left:49.053333pt;}
.x28{left:51.506667pt;}
.x2f{left:53.866667pt;}
.x17{left:56.026667pt;}
.x5{left:113.366655pt;}
.x31{left:117.899988pt;}
.x3a{left:137.359988pt;}
.xd{left:151.226655pt;}
.x12{left:154.706667pt;}
.x38{left:160.599988pt;}
.xf{left:192.066655pt;}
.x39{left:217.133322pt;}
.x1{left:218.733322pt;}
.x7{left:231.533322pt;}
.x6{left:244.599988pt;}
.xe{left:256.599988pt;}
.xa{left:267.026655pt;}
.x30{left:305.439988pt;}
.x15{left:317.973333pt;}
.xb{left:347.559988pt;}
.x2{left:367.026655pt;}
.x4{left:413.999988pt;}
.x8{left:429.733322pt;}
.x9{left:448.133322pt;}
.x18{left:459.600000pt;}
.x3{left:478.039988pt;}
.x1a{left:596.200000pt;}
.xc{left:737.039988pt;}
}




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