
    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_e8dcd36d684b7f2c269c2695.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.804199;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_b9518ec2c1cc92c8cebe8e54.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_56907db3c2f10b66c1f92aff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cf90cbf28ac9e9e5acf884eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_c6e4c5815fa298258758db00.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_4024caa9035de9969760f9b9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_39bc820f38ab9f69916fe9eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_395eb4557b6a2292a50c2007.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937988;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_f334061a29a2657811cbb038.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2ed47558b337088ed6470520.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.109200px;}
.ls8{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls11{letter-spacing:10.944000px;}
.ls10{letter-spacing:14.400000px;}
.lsa{letter-spacing:15.840000px;}
.ls3{letter-spacing:21.600000px;}
.ls2{letter-spacing:39.060000px;}
.ls9{letter-spacing:44.040000px;}
.lsf{letter-spacing:59.760000px;}
.lse{letter-spacing:61.200000px;}
.ls12{letter-spacing:92.160000px;}
.lsd{letter-spacing:338.400000px;}
.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:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws5{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-2.573280px;}
._0{margin-left:-1.442880px;}
._1{width:1.421280px;}
._3{width:2.736000px;}
._13{width:4.536000px;}
._14{width:6.036480px;}
._5{width:7.272000px;}
._6{width:8.802720px;}
._16{width:10.784160px;}
._20{width:12.240000px;}
._4{width:14.256000px;}
._1e{width:15.768000px;}
._1f{width:16.869600px;}
._3b{width:18.668160px;}
._15{width:19.730880px;}
._1c{width:21.312000px;}
._1d{width:22.740480px;}
._2b{width:23.814720px;}
._e{width:25.272000px;}
._4e{width:26.832000px;}
._4a{width:28.800000px;}
._19{width:30.624480px;}
._f{width:31.752000px;}
._10{width:32.760000px;}
._2e{width:34.842240px;}
._1a{width:35.928000px;}
._1b{width:37.104480px;}
._11{width:38.232000px;}
._12{width:39.240000px;}
._48{width:41.168160px;}
._8{width:42.801600px;}
._7{width:43.920000px;}
._3f{width:45.496800px;}
._47{width:46.974240px;}
._b{width:48.888000px;}
._c{width:49.998720px;}
._49{width:51.336000px;}
._43{width:54.169920px;}
._24{width:56.237760px;}
._4d{width:58.674240px;}
._44{width:60.344640px;}
._d{width:61.992000px;}
._17{width:63.000000px;}
._18{width:64.139040px;}
._4b{width:67.680000px;}
._4c{width:68.712480px;}
._a{width:70.437600px;}
._9{width:71.496000px;}
._4f{width:73.812000px;}
._3d{width:74.826720px;}
._33{width:76.573440px;}
._3e{width:82.733760px;}
._2c{width:86.524320px;}
._37{width:92.338560px;}
._39{width:95.110560px;}
._2f{width:104.711040px;}
._22{width:110.157120px;}
._42{width:114.528960px;}
._2a{width:125.709120px;}
._35{width:129.962880px;}
._27{width:131.685120px;}
._26{width:133.331040px;}
._21{width:134.428800px;}
._2d{width:142.865280px;}
._40{width:166.659840px;}
._41{width:167.906880px;}
._3a{width:172.143360px;}
._28{width:176.860800px;}
._29{width:178.308000px;}
._36{width:181.100160px;}
._46{width:192.294720px;}
._38{width:201.369600px;}
._30{width:203.621760px;}
._32{width:207.529920px;}
._31{width:208.972800px;}
._34{width:321.916320px;}
._23{width:325.753920px;}
._45{width:336.035520px;}
._3c{width:337.890240px;}
._25{width:428.217120px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(112,48,160);}
.fc5{color:rgb(51,51,51);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y56{bottom:3.960000px;}
.y5f{bottom:4.140000px;}
.ya{bottom:10.800000px;}
.yb{bottom:11.520000px;}
.y6{bottom:12.600000px;}
.y4c{bottom:20.520000px;}
.y55{bottom:22.860000px;}
.y5d{bottom:23.034000px;}
.y6f{bottom:23.040000px;}
.y5e{bottom:23.070000px;}
.y3{bottom:25.020000px;}
.y5{bottom:32.580000px;}
.y4b{bottom:39.600000px;}
.y5c{bottom:41.934000px;}
.y69{bottom:41.940000px;}
.y54{bottom:41.985000px;}
.y7{bottom:42.120000px;}
.y2{bottom:52.740000px;}
.y4{bottom:56.340000px;}
.yc{bottom:57.636000px;}
.y68{bottom:60.840000px;}
.y53{bottom:60.885000px;}
.y5b{bottom:61.014000px;}
.y6e{bottom:61.020000px;}
.y9{bottom:73.836000px;}
.y5a{bottom:79.914000px;}
.y67{bottom:79.920000px;}
.y52{bottom:79.965000px;}
.y58{bottom:98.454000px;}
.y59{bottom:98.814000px;}
.y66{bottom:98.820000px;}
.y51{bottom:98.865000px;}
.y73{bottom:99.000000px;}
.y6d{bottom:99.045000px;}
.y71{bottom:117.540000px;}
.y6b{bottom:117.585000px;}
.y65{bottom:117.720000px;}
.y50{bottom:117.765000px;}
.y72{bottom:117.900000px;}
.y6c{bottom:117.945000px;}
.y62{bottom:136.440000px;}
.y4e{bottom:136.485000px;}
.y64{bottom:136.800000px;}
.y4f{bottom:136.845000px;}
.y8a{bottom:141.516000px;}
.y57{bottom:142.056000px;}
.y8f{bottom:147.096000px;}
.y61{bottom:155.340000px;}
.y63{bottom:155.700000px;}
.y89{bottom:163.830000px;}
.y38{bottom:169.410000px;}
.y88{bottom:186.150000px;}
.y8e{bottom:191.370000px;}
.y37{bottom:191.730000px;}
.y87{bottom:208.470000px;}
.y36{bottom:214.050000px;}
.y86{bottom:230.790000px;}
.y35{bottom:236.550000px;}
.y85{bottom:253.110000px;}
.y4d{bottom:256.710000px;}
.y34{bottom:258.870000px;}
.y84{bottom:275.430000px;}
.y33{bottom:281.190000px;}
.y83{bottom:297.795000px;}
.y32{bottom:303.555000px;}
.y82{bottom:320.295000px;}
.y31{bottom:325.875000px;}
.y81{bottom:342.615000px;}
.y30{bottom:348.195000px;}
.y80{bottom:364.935000px;}
.y2f{bottom:370.515000px;}
.y7f{bottom:387.255000px;}
.y2e{bottom:392.835000px;}
.y4a{bottom:409.215000px;}
.y7e{bottom:409.575000px;}
.y2d{bottom:415.155000px;}
.y7d{bottom:431.895000px;}
.y2c{bottom:437.475000px;}
.y7c{bottom:454.215000px;}
.y2b{bottom:459.975000px;}
.y49{bottom:470.415000px;}
.y7b{bottom:476.535000px;}
.y2a{bottom:482.295000px;}
.y48{bottom:492.735000px;}
.y7a{bottom:498.855000px;}
.y29{bottom:504.615000px;}
.y47{bottom:515.055000px;}
.y79{bottom:521.175000px;}
.y28{bottom:526.935000px;}
.y46{bottom:537.735000px;}
.y78{bottom:543.675000px;}
.y27{bottom:549.255000px;}
.y45{bottom:560.055000px;}
.y77{bottom:566.025000px;}
.y26{bottom:571.605000px;}
.y44{bottom:582.405000px;}
.y76{bottom:588.345000px;}
.y25{bottom:593.925000px;}
.y43{bottom:604.725000px;}
.y75{bottom:610.665000px;}
.y24{bottom:616.245000px;}
.y42{bottom:627.225000px;}
.y74{bottom:632.985000px;}
.y23{bottom:638.565000px;}
.y41{bottom:649.545000px;}
.y70{bottom:650.085000px;}
.y22{bottom:660.885000px;}
.y40{bottom:671.865000px;}
.y21{bottom:683.205000px;}
.y3f{bottom:694.185000px;}
.y20{bottom:705.705000px;}
.y3e{bottom:716.505000px;}
.y1f{bottom:728.025000px;}
.y3d{bottom:738.465000px;}
.y1e{bottom:750.345000px;}
.y3c{bottom:757.005000px;}
.y1d{bottom:772.665000px;}
.y6a{bottom:783.645000px;}
.y1c{bottom:794.985000px;}
.y1b{bottom:817.305000px;}
.y1a{bottom:839.625000px;}
.y19{bottom:861.990000px;}
.y18{bottom:884.310000px;}
.y17{bottom:906.630000px;}
.y16{bottom:928.950000px;}
.y60{bottom:936.330000px;}
.y15{bottom:951.090000px;}
.y8d{bottom:951.450000px;}
.y14{bottom:973.410000px;}
.y8c{bottom:973.770000px;}
.y90{bottom:973.950000px;}
.y13{bottom:996.090000px;}
.y12{bottom:1018.050000px;}
.y8b{bottom:1018.410000px;}
.y11{bottom:1040.730000px;}
.y10{bottom:1063.050000px;}
.yf{bottom:1085.010000px;}
.y3b{bottom:1085.370000px;}
.ye{bottom:1107.330000px;}
.y3a{bottom:1107.690000px;}
.yd{bottom:1129.650000px;}
.y39{bottom:1130.010000px;}
.y8{bottom:1150.560000px;}
.y1{bottom:1167.120000px;}
.h8{height:27.000000px;}
.h16{height:38.016000px;}
.h14{height:46.445625px;}
.hd{height:49.992188px;}
.he{height:50.484375px;}
.hc{height:51.996094px;}
.hf{height:54.900000px;}
.h11{height:57.280781px;}
.h5{height:60.226875px;}
.h3{height:61.781484px;}
.ha{height:62.261719px;}
.h13{height:65.010937px;}
.h9{height:65.884219px;}
.h10{height:66.757500px;}
.hb{height:70.628906px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.h19{height:74.004654px;}
.h2{height:95.760000px;}
.h4{height:102.861562px;}
.h15{height:113.760000px;}
.h18{height:132.840000px;}
.h12{height:151.770000px;}
.h17{height:170.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:71.130000px;}
.w7{width:108.036000px;}
.w2{width:109.476000px;}
.w9{width:169.020000px;}
.wa{width:254.415000px;}
.wb{width:294.330000px;}
.w8{width:310.170000px;}
.w6{width:310.350000px;}
.w3{width:712.365000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x2{left:-32.580028px;}
.x1{left:-19.260031px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.xd{left:40.500000px;}
.xa{left:98.316000px;}
.x9{left:106.415987px;}
.x3{left:109.476000px;}
.x5{left:127.434000px;}
.x1a{left:148.895987px;}
.xf{left:156.989987px;}
.x12{left:159.509987px;}
.x4{left:177.474000px;}
.x14{left:228.989987px;}
.x18{left:268.410000px;}
.x6{left:300.999000px;}
.xb{left:302.259000px;}
.x16{left:311.834987px;}
.x11{left:330.734987px;}
.x13{left:351.434987px;}
.x15{left:373.754987px;}
.x10{left:400.034987px;}
.xc{left:408.675000px;}
.xe{left:516.705000px;}
.x19{left:523.545000px;}
.x17{left:793.229987px;}
.x7{left:821.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.097067pt;}
.ls8{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls11{letter-spacing:9.728000pt;}
.ls10{letter-spacing:12.800000pt;}
.lsa{letter-spacing:14.080000pt;}
.ls3{letter-spacing:19.200000pt;}
.ls2{letter-spacing:34.720000pt;}
.ls9{letter-spacing:39.146667pt;}
.lsf{letter-spacing:53.120000pt;}
.lse{letter-spacing:54.400000pt;}
.ls12{letter-spacing:81.920000pt;}
.lsd{letter-spacing:300.800000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws5{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-2.287360pt;}
._0{margin-left:-1.282560pt;}
._1{width:1.263360pt;}
._3{width:2.432000pt;}
._13{width:4.032000pt;}
._14{width:5.365760pt;}
._5{width:6.464000pt;}
._6{width:7.824640pt;}
._16{width:9.585920pt;}
._20{width:10.880000pt;}
._4{width:12.672000pt;}
._1e{width:14.016000pt;}
._1f{width:14.995200pt;}
._3b{width:16.593920pt;}
._15{width:17.538560pt;}
._1c{width:18.944000pt;}
._1d{width:20.213760pt;}
._2b{width:21.168640pt;}
._e{width:22.464000pt;}
._4e{width:23.850667pt;}
._4a{width:25.600000pt;}
._19{width:27.221760pt;}
._f{width:28.224000pt;}
._10{width:29.120000pt;}
._2e{width:30.970880pt;}
._1a{width:31.936000pt;}
._1b{width:32.981760pt;}
._11{width:33.984000pt;}
._12{width:34.880000pt;}
._48{width:36.593920pt;}
._8{width:38.045867pt;}
._7{width:39.040000pt;}
._3f{width:40.441600pt;}
._47{width:41.754880pt;}
._b{width:43.456000pt;}
._c{width:44.443307pt;}
._49{width:45.632000pt;}
._43{width:48.151040pt;}
._24{width:49.989120pt;}
._4d{width:52.154880pt;}
._44{width:53.639680pt;}
._d{width:55.104000pt;}
._17{width:56.000000pt;}
._18{width:57.012480pt;}
._4b{width:60.160000pt;}
._4c{width:61.077760pt;}
._a{width:62.611200pt;}
._9{width:63.552000pt;}
._4f{width:65.610667pt;}
._3d{width:66.512640pt;}
._33{width:68.065280pt;}
._3e{width:73.541120pt;}
._2c{width:76.910507pt;}
._37{width:82.078720pt;}
._39{width:84.542720pt;}
._2f{width:93.076480pt;}
._22{width:97.917440pt;}
._42{width:101.803520pt;}
._2a{width:111.741440pt;}
._35{width:115.522560pt;}
._27{width:117.053440pt;}
._26{width:118.516480pt;}
._21{width:119.492267pt;}
._2d{width:126.991360pt;}
._40{width:148.142080pt;}
._41{width:149.250560pt;}
._3a{width:153.016320pt;}
._28{width:157.209600pt;}
._29{width:158.496000pt;}
._36{width:160.977920pt;}
._46{width:170.928640pt;}
._38{width:178.995200pt;}
._30{width:180.997120pt;}
._32{width:184.471040pt;}
._31{width:185.753600pt;}
._34{width:286.147840pt;}
._23{width:289.559040pt;}
._45{width:298.698240pt;}
._3c{width:300.346880pt;}
._25{width:380.637440pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:3.520000pt;}
.y5f{bottom:3.680000pt;}
.ya{bottom:9.600000pt;}
.yb{bottom:10.240000pt;}
.y6{bottom:11.200000pt;}
.y4c{bottom:18.240000pt;}
.y55{bottom:20.320000pt;}
.y5d{bottom:20.474667pt;}
.y6f{bottom:20.480000pt;}
.y5e{bottom:20.506667pt;}
.y3{bottom:22.240000pt;}
.y5{bottom:28.960000pt;}
.y4b{bottom:35.200000pt;}
.y5c{bottom:37.274667pt;}
.y69{bottom:37.280000pt;}
.y54{bottom:37.320000pt;}
.y7{bottom:37.440000pt;}
.y2{bottom:46.880000pt;}
.y4{bottom:50.080000pt;}
.yc{bottom:51.232000pt;}
.y68{bottom:54.080000pt;}
.y53{bottom:54.120000pt;}
.y5b{bottom:54.234667pt;}
.y6e{bottom:54.240000pt;}
.y9{bottom:65.632000pt;}
.y5a{bottom:71.034667pt;}
.y67{bottom:71.040000pt;}
.y52{bottom:71.080000pt;}
.y58{bottom:87.514667pt;}
.y59{bottom:87.834667pt;}
.y66{bottom:87.840000pt;}
.y51{bottom:87.880000pt;}
.y73{bottom:88.000000pt;}
.y6d{bottom:88.040000pt;}
.y71{bottom:104.480000pt;}
.y6b{bottom:104.520000pt;}
.y65{bottom:104.640000pt;}
.y50{bottom:104.680000pt;}
.y72{bottom:104.800000pt;}
.y6c{bottom:104.840000pt;}
.y62{bottom:121.280000pt;}
.y4e{bottom:121.320000pt;}
.y64{bottom:121.600000pt;}
.y4f{bottom:121.640000pt;}
.y8a{bottom:125.792000pt;}
.y57{bottom:126.272000pt;}
.y8f{bottom:130.752000pt;}
.y61{bottom:138.080000pt;}
.y63{bottom:138.400000pt;}
.y89{bottom:145.626667pt;}
.y38{bottom:150.586667pt;}
.y88{bottom:165.466667pt;}
.y8e{bottom:170.106667pt;}
.y37{bottom:170.426667pt;}
.y87{bottom:185.306667pt;}
.y36{bottom:190.266667pt;}
.y86{bottom:205.146667pt;}
.y35{bottom:210.266667pt;}
.y85{bottom:224.986667pt;}
.y4d{bottom:228.186667pt;}
.y34{bottom:230.106667pt;}
.y84{bottom:244.826667pt;}
.y33{bottom:249.946667pt;}
.y83{bottom:264.706667pt;}
.y32{bottom:269.826667pt;}
.y82{bottom:284.706667pt;}
.y31{bottom:289.666667pt;}
.y81{bottom:304.546667pt;}
.y30{bottom:309.506667pt;}
.y80{bottom:324.386667pt;}
.y2f{bottom:329.346667pt;}
.y7f{bottom:344.226667pt;}
.y2e{bottom:349.186667pt;}
.y4a{bottom:363.746667pt;}
.y7e{bottom:364.066667pt;}
.y2d{bottom:369.026667pt;}
.y7d{bottom:383.906667pt;}
.y2c{bottom:388.866667pt;}
.y7c{bottom:403.746667pt;}
.y2b{bottom:408.866667pt;}
.y49{bottom:418.146667pt;}
.y7b{bottom:423.586667pt;}
.y2a{bottom:428.706667pt;}
.y48{bottom:437.986667pt;}
.y7a{bottom:443.426667pt;}
.y29{bottom:448.546667pt;}
.y47{bottom:457.826667pt;}
.y79{bottom:463.266667pt;}
.y28{bottom:468.386667pt;}
.y46{bottom:477.986667pt;}
.y78{bottom:483.266667pt;}
.y27{bottom:488.226667pt;}
.y45{bottom:497.826667pt;}
.y77{bottom:503.133333pt;}
.y26{bottom:508.093333pt;}
.y44{bottom:517.693333pt;}
.y76{bottom:522.973333pt;}
.y25{bottom:527.933333pt;}
.y43{bottom:537.533333pt;}
.y75{bottom:542.813333pt;}
.y24{bottom:547.773333pt;}
.y42{bottom:557.533333pt;}
.y74{bottom:562.653333pt;}
.y23{bottom:567.613333pt;}
.y41{bottom:577.373333pt;}
.y70{bottom:577.853333pt;}
.y22{bottom:587.453333pt;}
.y40{bottom:597.213333pt;}
.y21{bottom:607.293333pt;}
.y3f{bottom:617.053333pt;}
.y20{bottom:627.293333pt;}
.y3e{bottom:636.893333pt;}
.y1f{bottom:647.133333pt;}
.y3d{bottom:656.413333pt;}
.y1e{bottom:666.973333pt;}
.y3c{bottom:672.893333pt;}
.y1d{bottom:686.813333pt;}
.y6a{bottom:696.573333pt;}
.y1c{bottom:706.653333pt;}
.y1b{bottom:726.493333pt;}
.y1a{bottom:746.333333pt;}
.y19{bottom:766.213333pt;}
.y18{bottom:786.053333pt;}
.y17{bottom:805.893333pt;}
.y16{bottom:825.733333pt;}
.y60{bottom:832.293333pt;}
.y15{bottom:845.413333pt;}
.y8d{bottom:845.733333pt;}
.y14{bottom:865.253333pt;}
.y8c{bottom:865.573333pt;}
.y90{bottom:865.733333pt;}
.y13{bottom:885.413333pt;}
.y12{bottom:904.933333pt;}
.y8b{bottom:905.253333pt;}
.y11{bottom:925.093333pt;}
.y10{bottom:944.933333pt;}
.yf{bottom:964.453333pt;}
.y3b{bottom:964.773333pt;}
.ye{bottom:984.293333pt;}
.y3a{bottom:984.613333pt;}
.yd{bottom:1004.133333pt;}
.y39{bottom:1004.453333pt;}
.y8{bottom:1022.720000pt;}
.y1{bottom:1037.440000pt;}
.h8{height:24.000000pt;}
.h16{height:33.792000pt;}
.h14{height:41.285000pt;}
.hd{height:44.437500pt;}
.he{height:44.875000pt;}
.hc{height:46.218750pt;}
.hf{height:48.800000pt;}
.h11{height:50.916250pt;}
.h5{height:53.535000pt;}
.h3{height:54.916875pt;}
.ha{height:55.343750pt;}
.h13{height:57.787500pt;}
.h9{height:58.563750pt;}
.h10{height:59.340000pt;}
.hb{height:62.781250pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.h19{height:65.781915pt;}
.h2{height:85.120000pt;}
.h4{height:91.432500pt;}
.h15{height:101.120000pt;}
.h18{height:118.080000pt;}
.h12{height:134.906667pt;}
.h17{height:151.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:63.226667pt;}
.w7{width:96.032000pt;}
.w2{width:97.312000pt;}
.w9{width:150.240000pt;}
.wa{width:226.146667pt;}
.wb{width:261.626667pt;}
.w8{width:275.706667pt;}
.w6{width:275.866667pt;}
.w3{width:633.213333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x2{left:-28.960025pt;}
.x1{left:-17.120028pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.xd{left:36.000000pt;}
.xa{left:87.392000pt;}
.x9{left:94.591988pt;}
.x3{left:97.312000pt;}
.x5{left:113.274667pt;}
.x1a{left:132.351988pt;}
.xf{left:139.546655pt;}
.x12{left:141.786655pt;}
.x4{left:157.754667pt;}
.x14{left:203.546655pt;}
.x18{left:238.586667pt;}
.x6{left:267.554667pt;}
.xb{left:268.674667pt;}
.x16{left:277.186655pt;}
.x11{left:293.986655pt;}
.x13{left:312.386655pt;}
.x15{left:332.226655pt;}
.x10{left:355.586655pt;}
.xc{left:363.266667pt;}
.xe{left:459.293333pt;}
.x19{left:465.373333pt;}
.x17{left:705.093322pt;}
.x7{left:730.533333pt;}
}




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