
    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_4e5903d00f0f255c51c9df25.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1872b8c910743c708c52969e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_8b74315bdfd352d9e28167c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_c8de3c05d6a924e555d3fa06.woff')format("woff");}.ff4{font-family:ff4;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws6{word-spacing:-55.944000px;}
.ws9{word-spacing:-38.660400px;}
.ws79{word-spacing:-38.655900px;}
.ws5{word-spacing:-38.651100px;}
.ws76{word-spacing:-38.646000px;}
.ws7f{word-spacing:-38.577600px;}
.ws28{word-spacing:-38.440800px;}
.ws6b{word-spacing:-38.439000px;}
.ws2c{word-spacing:-38.437800px;}
.ws8a{word-spacing:-38.367300px;}
.ws87{word-spacing:-38.166000px;}
.ws90{word-spacing:-38.162400px;}
.ws3{word-spacing:-38.160000px;}
.wsa2{word-spacing:-38.159700px;}
.ws61{word-spacing:-38.155200px;}
.ws3c{word-spacing:-38.154600px;}
.ws65{word-spacing:-38.147400px;}
.ws8{word-spacing:-38.132400px;}
.wsa6{word-spacing:-38.088000px;}
.ws2{word-spacing:-38.081700px;}
.ws32{word-spacing:-38.002800px;}
.ws7b{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.wsa3{word-spacing:-37.943100px;}
.ws50{word-spacing:-37.942200px;}
.ws6f{word-spacing:-37.939200px;}
.ws7{word-spacing:-37.938300px;}
.ws97{word-spacing:-37.937700px;}
.ws2b{word-spacing:-37.937400px;}
.ws17{word-spacing:-37.935000px;}
.ws4{word-spacing:-37.932300px;}
.ws8f{word-spacing:-37.929600px;}
.ws5e{word-spacing:-37.927800px;}
.ws1a{word-spacing:-37.856700px;}
.wsa5{word-spacing:-37.729500px;}
.wsa1{word-spacing:-37.728000px;}
.ws94{word-spacing:-37.726200px;}
.ws96{word-spacing:-37.723500px;}
.ws43{word-spacing:-37.709100px;}
.wsa0{word-spacing:-37.446000px;}
.ws4a{word-spacing:-37.422000px;}
.ws62{word-spacing:-37.222200px;}
.ws42{word-spacing:-37.212000px;}
.ws84{word-spacing:-36.995400px;}
.ws4d{word-spacing:-36.710400px;}
.ws4c{word-spacing:-36.700200px;}
.ws9c{word-spacing:-36.507300px;}
.ws58{word-spacing:-36.500400px;}
.ws7a{word-spacing:-35.991000px;}
.ws89{word-spacing:-35.784000px;}
.ws5a{word-spacing:-35.766000px;}
.ws3f{word-spacing:-35.691600px;}
.ws35{word-spacing:-35.565000px;}
.ws54{word-spacing:-35.286000px;}
.ws12{word-spacing:-35.265600px;}
.ws59{word-spacing:-35.261700px;}
.ws9e{word-spacing:-35.061300px;}
.ws13{word-spacing:-35.056800px;}
.ws16{word-spacing:-35.049600px;}
.ws57{word-spacing:-34.557300px;}
.ws39{word-spacing:-34.398900px;}
.ws83{word-spacing:-34.346400px;}
.ws36{word-spacing:-34.344000px;}
.ws60{word-spacing:-34.264800px;}
.ws30{word-spacing:-34.253400px;}
.ws63{word-spacing:-33.830400px;}
.ws4e{word-spacing:-33.620400px;}
.ws15{word-spacing:-33.615000px;}
.ws75{word-spacing:-33.609000px;}
.ws78{word-spacing:-33.402600px;}
.ws2e{word-spacing:-33.323700px;}
.ws52{word-spacing:-32.889600px;}
.ws73{word-spacing:-32.887800px;}
.ws74{word-spacing:-32.885100px;}
.wsf{word-spacing:-32.882400px;}
.ws69{word-spacing:-32.816700px;}
.ws2d{word-spacing:-32.400000px;}
.ws8e{word-spacing:-32.181900px;}
.ws88{word-spacing:-32.177400px;}
.ws51{word-spacing:-32.160600px;}
.ws34{word-spacing:-31.686000px;}
.ws47{word-spacing:-30.960600px;}
.ws3b{word-spacing:-30.954600px;}
.ws3a{word-spacing:-30.744000px;}
.wsd{word-spacing:-30.735900px;}
.ws5b{word-spacing:-30.520800px;}
.ws21{word-spacing:-30.220200px;}
.ws9f{word-spacing:-30.020400px;}
.ws93{word-spacing:-28.590000px;}
.ws91{word-spacing:-28.576800px;}
.ws92{word-spacing:-28.501200px;}
.ws95{word-spacing:-27.861300px;}
.ws6e{word-spacing:-27.855900px;}
.ws1c{word-spacing:-27.849600px;}
.wsa4{word-spacing:-27.356400px;}
.ws18{word-spacing:-27.349200px;}
.ws23{word-spacing:-27.348000px;}
.ws19{word-spacing:-27.343800px;}
.ws7d{word-spacing:-27.120600px;}
.ws8c{word-spacing:-27.070200px;}
.ws1b{word-spacing:-26.640000px;}
.ws14{word-spacing:-26.414400px;}
.ws41{word-spacing:-26.409900px;}
.ws44{word-spacing:-25.918200px;}
.ws53{word-spacing:-25.700400px;}
.ws8d{word-spacing:-25.695000px;}
.ws4b{word-spacing:-25.196400px;}
.ws64{word-spacing:-24.480000px;}
.ws82{word-spacing:-24.251400px;}
.ws11{word-spacing:-24.247800px;}
.ws5d{word-spacing:-23.754600px;}
.ws38{word-spacing:-23.748300px;}
.ws72{word-spacing:-23.743200px;}
.ws48{word-spacing:-23.546400px;}
.ws68{word-spacing:-23.540400px;}
.ws67{word-spacing:-23.520600px;}
.ws7c{word-spacing:-22.100400px;}
.ws6c{word-spacing:-22.084500px;}
.ws6d{word-spacing:-22.021200px;}
.ws24{word-spacing:-21.877800px;}
.ws40{word-spacing:-20.156400px;}
.ws45{word-spacing:-19.941900px;}
.ws25{word-spacing:-19.926000px;}
.ws29{word-spacing:-19.432800px;}
.ws2a{word-spacing:-19.215000px;}
.ws6a{word-spacing:-18.500400px;}
.ws85{word-spacing:-17.985600px;}
.ws86{word-spacing:-17.976000px;}
.ws9d{word-spacing:-17.764200px;}
.ws33{word-spacing:-17.064000px;}
.ws5c{word-spacing:-17.060400px;}
.ws26{word-spacing:-17.056800px;}
.ws46{word-spacing:-15.840000px;}
.wsc{word-spacing:-14.888400px;}
.ws4f{word-spacing:-14.886600px;}
.wse{word-spacing:-14.396400px;}
.wsb{word-spacing:-12.522600px;}
.wsa{word-spacing:-12.225600px;}
.ws81{word-spacing:-12.216600px;}
.ws80{word-spacing:-12.016500px;}
.ws7e{word-spacing:-11.520000px;}
.ws98{word-spacing:-11.292600px;}
.ws55{word-spacing:-10.576500px;}
.ws56{word-spacing:-10.574100px;}
.ws9a{word-spacing:-9.648000px;}
.ws5f{word-spacing:-9.362400px;}
.ws99{word-spacing:-9.360000px;}
.ws1e{word-spacing:-8.413200px;}
.ws10{word-spacing:-8.407800px;}
.ws70{word-spacing:-7.911600px;}
.ws1f{word-spacing:-7.905600px;}
.ws71{word-spacing:-7.480800px;}
.ws22{word-spacing:-6.975000px;}
.ws49{word-spacing:-6.240600px;}
.ws31{word-spacing:-5.544000px;}
.ws9b{word-spacing:0.000000px;}
.ws37{word-spacing:0.003000px;}
.ws8b{word-spacing:0.216000px;}
.ws1d{word-spacing:1.663200px;}
.ws77{word-spacing:2.597400px;}
.ws27{word-spacing:2.604600px;}
.ws2f{word-spacing:2.740800px;}
.ws20{word-spacing:11.032200px;}
.ws3e{word-spacing:12.750300px;}
.ws3d{word-spacing:12.954000px;}
.ws66{word-spacing:26.856000px;}
.ws1{word-spacing:1037.484900px;}
._f{margin-left:-2.234400px;}
._2{margin-left:-1.218000px;}
._0{width:1.076400px;}
._20{width:17.771400px;}
._1{width:18.968400px;}
._18{width:20.820000px;}
._6{width:21.932400px;}
._9{width:23.370600px;}
._12{width:24.530100px;}
._5{width:26.343900px;}
._c{width:27.567900px;}
._a{width:29.624400px;}
._8{width:30.938400px;}
._1b{width:32.418000px;}
._15{width:33.462300px;}
._19{width:34.589700px;}
._e{width:35.911200px;}
._10{width:37.444800px;}
._1f{width:38.512800px;}
._11{width:40.093200px;}
._4{width:42.120000px;}
._1c{width:43.176600px;}
._3{width:44.526000px;}
._1d{width:46.368000px;}
._1e{width:47.605200px;}
._7{width:48.816000px;}
._d{width:50.235600px;}
._1a{width:51.572400px;}
._14{width:57.525000px;}
._b{width:59.242800px;}
._13{width:60.363600px;}
._16{width:69.912000px;}
._17{width:70.998000px;}
._21{width:82.800000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y2a{bottom:121.036500px;}
.y6b{bottom:121.936500px;}
.y29{bottom:141.736500px;}
.y8b{bottom:142.275000px;}
.y51{bottom:142.636500px;}
.y28{bottom:162.436500px;}
.y8a{bottom:162.975000px;}
.y50{bottom:163.336500px;}
.y27{bottom:183.136500px;}
.y89{bottom:183.675000px;}
.y4f{bottom:184.036500px;}
.y6a{bottom:184.396500px;}
.y26{bottom:203.836500px;}
.y88{bottom:204.375000px;}
.y4e{bottom:204.736500px;}
.y25{bottom:224.536500px;}
.y87{bottom:225.075000px;}
.y69{bottom:225.975000px;}
.y24{bottom:245.236500px;}
.y86{bottom:245.775000px;}
.y4d{bottom:246.496500px;}
.y68{bottom:246.675000px;}
.y23{bottom:265.936500px;}
.y85{bottom:266.475000px;}
.y67{bottom:267.375000px;}
.y22{bottom:286.636500px;}
.y84{bottom:287.175000px;}
.y4c{bottom:288.075000px;}
.y21{bottom:307.336500px;}
.y83{bottom:307.875000px;}
.y4b{bottom:308.775000px;}
.y66{bottom:309.136500px;}
.y20{bottom:328.036500px;}
.y82{bottom:328.575000px;}
.y65{bottom:329.836500px;}
.y1f{bottom:348.736500px;}
.y4a{bottom:350.536500px;}
.y1e{bottom:369.436500px;}
.y81{bottom:370.336500px;}
.y49{bottom:371.236500px;}
.y1d{bottom:390.136500px;}
.y48{bottom:391.936500px;}
.y80{bottom:412.096500px;}
.y47{bottom:412.636500px;}
.y1c{bottom:431.715000px;}
.y7f{bottom:432.795000px;}
.y46{bottom:433.336500px;}
.y7e{bottom:453.496500px;}
.y45{bottom:454.036500px;}
.y1b{bottom:473.475000px;}
.y7d{bottom:474.196500px;}
.y44{bottom:474.736500px;}
.y1a{bottom:494.175000px;}
.y7c{bottom:494.896500px;}
.y64{bottom:495.436500px;}
.y63{bottom:516.136500px;}
.y43{bottom:516.496500px;}
.y19{bottom:535.936500px;}
.y7b{bottom:536.475000px;}
.y62{bottom:536.836500px;}
.y42{bottom:537.195000px;}
.y18{bottom:556.636500px;}
.y61{bottom:557.536500px;}
.y41{bottom:557.896500px;}
.y17{bottom:577.336500px;}
.y60{bottom:578.236500px;}
.y40{bottom:578.596500px;}
.y16{bottom:598.036500px;}
.y7a{bottom:598.936500px;}
.y3f{bottom:599.295000px;}
.y15{bottom:618.736500px;}
.y79{bottom:619.636500px;}
.y3e{bottom:619.996500px;}
.y14{bottom:639.436500px;}
.y78{bottom:640.336500px;}
.y5f{bottom:640.695000px;}
.y13{bottom:660.136500px;}
.y77{bottom:661.036500px;}
.y5e{bottom:661.396500px;}
.y3d{bottom:661.575000px;}
.y12{bottom:680.836500px;}
.y76{bottom:681.736500px;}
.y11{bottom:701.536500px;}
.y75{bottom:702.436500px;}
.y5d{bottom:702.975000px;}
.y3c{bottom:703.336500px;}
.y10{bottom:722.236500px;}
.y3b{bottom:724.036500px;}
.yf{bottom:742.936500px;}
.y74{bottom:744.195000px;}
.y5c{bottom:744.736500px;}
.ye{bottom:763.636500px;}
.y5b{bottom:765.436500px;}
.y3a{bottom:765.795000px;}
.yd{bottom:784.336500px;}
.y73{bottom:785.775000px;}
.y5a{bottom:786.136500px;}
.y39{bottom:786.496500px;}
.y72{bottom:806.475000px;}
.y59{bottom:806.836500px;}
.y38{bottom:807.195000px;}
.yc{bottom:825.915000px;}
.y71{bottom:827.175000px;}
.y37{bottom:827.895000px;}
.y36{bottom:848.596500px;}
.y70{bottom:868.936500px;}
.y35{bottom:869.295000px;}
.y95{bottom:869.836500px;}
.y6f{bottom:889.636500px;}
.y34{bottom:889.995000px;}
.y94{bottom:890.536500px;}
.y6e{bottom:910.336500px;}
.y33{bottom:910.695000px;}
.y93{bottom:911.236500px;}
.yb{bottom:930.495000px;}
.y32{bottom:931.395000px;}
.y92{bottom:931.936500px;}
.y31{bottom:952.095000px;}
.y91{bottom:952.636500px;}
.ya{bottom:972.075000px;}
.y30{bottom:972.795000px;}
.y58{bottom:972.975000px;}
.y90{bottom:973.336500px;}
.y2f{bottom:993.495000px;}
.y57{bottom:993.675000px;}
.y8f{bottom:994.036500px;}
.y9{bottom:1013.836500px;}
.y2e{bottom:1014.195000px;}
.y56{bottom:1014.375000px;}
.y8e{bottom:1014.736500px;}
.y2d{bottom:1034.895000px;}
.y55{bottom:1035.075000px;}
.y8d{bottom:1035.436500px;}
.y8{bottom:1055.595000px;}
.y6d{bottom:1055.775000px;}
.y8c{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y6c{bottom:1076.475000px;}
.y54{bottom:1076.836500px;}
.y2c{bottom:1097.175000px;}
.y53{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y52{bottom:1118.236500px;}
.y2b{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:62.261719px;}
.h4{height:63.035156px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xc{left:136.620000px;}
.x7{left:142.738500px;}
.x5{left:144.900000px;}
.x2{left:160.560000px;}
.xa{left:237.420000px;}
.x9{left:334.800000px;}
.x6{left:337.680000px;}
.xb{left:343.080000px;}
.x8{left:438.480000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-49.728000pt;}
.ws9{word-spacing:-34.364800pt;}
.ws79{word-spacing:-34.360800pt;}
.ws5{word-spacing:-34.356533pt;}
.ws76{word-spacing:-34.352000pt;}
.ws7f{word-spacing:-34.291200pt;}
.ws28{word-spacing:-34.169600pt;}
.ws6b{word-spacing:-34.168000pt;}
.ws2c{word-spacing:-34.166933pt;}
.ws8a{word-spacing:-34.104267pt;}
.ws87{word-spacing:-33.925333pt;}
.ws90{word-spacing:-33.922133pt;}
.ws3{word-spacing:-33.920000pt;}
.wsa2{word-spacing:-33.919733pt;}
.ws61{word-spacing:-33.915733pt;}
.ws3c{word-spacing:-33.915200pt;}
.ws65{word-spacing:-33.908800pt;}
.ws8{word-spacing:-33.895467pt;}
.wsa6{word-spacing:-33.856000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws32{word-spacing:-33.780267pt;}
.ws7b{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.wsa3{word-spacing:-33.727200pt;}
.ws50{word-spacing:-33.726400pt;}
.ws6f{word-spacing:-33.723733pt;}
.ws7{word-spacing:-33.722933pt;}
.ws97{word-spacing:-33.722400pt;}
.ws2b{word-spacing:-33.722133pt;}
.ws17{word-spacing:-33.720000pt;}
.ws4{word-spacing:-33.717600pt;}
.ws8f{word-spacing:-33.715200pt;}
.ws5e{word-spacing:-33.713600pt;}
.ws1a{word-spacing:-33.650400pt;}
.wsa5{word-spacing:-33.537333pt;}
.wsa1{word-spacing:-33.536000pt;}
.ws94{word-spacing:-33.534400pt;}
.ws96{word-spacing:-33.532000pt;}
.ws43{word-spacing:-33.519200pt;}
.wsa0{word-spacing:-33.285333pt;}
.ws4a{word-spacing:-33.264000pt;}
.ws62{word-spacing:-33.086400pt;}
.ws42{word-spacing:-33.077333pt;}
.ws84{word-spacing:-32.884800pt;}
.ws4d{word-spacing:-32.631467pt;}
.ws4c{word-spacing:-32.622400pt;}
.ws9c{word-spacing:-32.450933pt;}
.ws58{word-spacing:-32.444800pt;}
.ws7a{word-spacing:-31.992000pt;}
.ws89{word-spacing:-31.808000pt;}
.ws5a{word-spacing:-31.792000pt;}
.ws3f{word-spacing:-31.725867pt;}
.ws35{word-spacing:-31.613333pt;}
.ws54{word-spacing:-31.365333pt;}
.ws12{word-spacing:-31.347200pt;}
.ws59{word-spacing:-31.343733pt;}
.ws9e{word-spacing:-31.165600pt;}
.ws13{word-spacing:-31.161600pt;}
.ws16{word-spacing:-31.155200pt;}
.ws57{word-spacing:-30.717600pt;}
.ws39{word-spacing:-30.576800pt;}
.ws83{word-spacing:-30.530133pt;}
.ws36{word-spacing:-30.528000pt;}
.ws60{word-spacing:-30.457600pt;}
.ws30{word-spacing:-30.447467pt;}
.ws63{word-spacing:-30.071467pt;}
.ws4e{word-spacing:-29.884800pt;}
.ws15{word-spacing:-29.880000pt;}
.ws75{word-spacing:-29.874667pt;}
.ws78{word-spacing:-29.691200pt;}
.ws2e{word-spacing:-29.621067pt;}
.ws52{word-spacing:-29.235200pt;}
.ws73{word-spacing:-29.233600pt;}
.ws74{word-spacing:-29.231200pt;}
.wsf{word-spacing:-29.228800pt;}
.ws69{word-spacing:-29.170400pt;}
.ws2d{word-spacing:-28.800000pt;}
.ws8e{word-spacing:-28.606133pt;}
.ws88{word-spacing:-28.602133pt;}
.ws51{word-spacing:-28.587200pt;}
.ws34{word-spacing:-28.165333pt;}
.ws47{word-spacing:-27.520533pt;}
.ws3b{word-spacing:-27.515200pt;}
.ws3a{word-spacing:-27.328000pt;}
.wsd{word-spacing:-27.320800pt;}
.ws5b{word-spacing:-27.129600pt;}
.ws21{word-spacing:-26.862400pt;}
.ws9f{word-spacing:-26.684800pt;}
.ws93{word-spacing:-25.413333pt;}
.ws91{word-spacing:-25.401600pt;}
.ws92{word-spacing:-25.334400pt;}
.ws95{word-spacing:-24.765600pt;}
.ws6e{word-spacing:-24.760800pt;}
.ws1c{word-spacing:-24.755200pt;}
.wsa4{word-spacing:-24.316800pt;}
.ws18{word-spacing:-24.310400pt;}
.ws23{word-spacing:-24.309333pt;}
.ws19{word-spacing:-24.305600pt;}
.ws7d{word-spacing:-24.107200pt;}
.ws8c{word-spacing:-24.062400pt;}
.ws1b{word-spacing:-23.680000pt;}
.ws14{word-spacing:-23.479467pt;}
.ws41{word-spacing:-23.475467pt;}
.ws44{word-spacing:-23.038400pt;}
.ws53{word-spacing:-22.844800pt;}
.ws8d{word-spacing:-22.840000pt;}
.ws4b{word-spacing:-22.396800pt;}
.ws64{word-spacing:-21.760000pt;}
.ws82{word-spacing:-21.556800pt;}
.ws11{word-spacing:-21.553600pt;}
.ws5d{word-spacing:-21.115200pt;}
.ws38{word-spacing:-21.109600pt;}
.ws72{word-spacing:-21.105067pt;}
.ws48{word-spacing:-20.930133pt;}
.ws68{word-spacing:-20.924800pt;}
.ws67{word-spacing:-20.907200pt;}
.ws7c{word-spacing:-19.644800pt;}
.ws6c{word-spacing:-19.630667pt;}
.ws6d{word-spacing:-19.574400pt;}
.ws24{word-spacing:-19.446933pt;}
.ws40{word-spacing:-17.916800pt;}
.ws45{word-spacing:-17.726133pt;}
.ws25{word-spacing:-17.712000pt;}
.ws29{word-spacing:-17.273600pt;}
.ws2a{word-spacing:-17.080000pt;}
.ws6a{word-spacing:-16.444800pt;}
.ws85{word-spacing:-15.987200pt;}
.ws86{word-spacing:-15.978667pt;}
.ws9d{word-spacing:-15.790400pt;}
.ws33{word-spacing:-15.168000pt;}
.ws5c{word-spacing:-15.164800pt;}
.ws26{word-spacing:-15.161600pt;}
.ws46{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.234133pt;}
.ws4f{word-spacing:-13.232533pt;}
.wse{word-spacing:-12.796800pt;}
.wsb{word-spacing:-11.131200pt;}
.wsa{word-spacing:-10.867200pt;}
.ws81{word-spacing:-10.859200pt;}
.ws80{word-spacing:-10.681333pt;}
.ws7e{word-spacing:-10.240000pt;}
.ws98{word-spacing:-10.037867pt;}
.ws55{word-spacing:-9.401333pt;}
.ws56{word-spacing:-9.399200pt;}
.ws9a{word-spacing:-8.576000pt;}
.ws5f{word-spacing:-8.322133pt;}
.ws99{word-spacing:-8.320000pt;}
.ws1e{word-spacing:-7.478400pt;}
.ws10{word-spacing:-7.473600pt;}
.ws70{word-spacing:-7.032533pt;}
.ws1f{word-spacing:-7.027200pt;}
.ws71{word-spacing:-6.649600pt;}
.ws22{word-spacing:-6.200000pt;}
.ws49{word-spacing:-5.547200pt;}
.ws31{word-spacing:-4.928000pt;}
.ws9b{word-spacing:0.000000pt;}
.ws37{word-spacing:0.002667pt;}
.ws8b{word-spacing:0.192000pt;}
.ws1d{word-spacing:1.478400pt;}
.ws77{word-spacing:2.308800pt;}
.ws27{word-spacing:2.315200pt;}
.ws2f{word-spacing:2.436267pt;}
.ws20{word-spacing:9.806400pt;}
.ws3e{word-spacing:11.333600pt;}
.ws3d{word-spacing:11.514667pt;}
.ws66{word-spacing:23.872000pt;}
.ws1{word-spacing:922.208800pt;}
._f{margin-left:-1.986133pt;}
._2{margin-left:-1.082667pt;}
._0{width:0.956800pt;}
._20{width:15.796800pt;}
._1{width:16.860800pt;}
._18{width:18.506667pt;}
._6{width:19.495467pt;}
._9{width:20.773867pt;}
._12{width:21.804533pt;}
._5{width:23.416800pt;}
._c{width:24.504800pt;}
._a{width:26.332800pt;}
._8{width:27.500800pt;}
._1b{width:28.816000pt;}
._15{width:29.744267pt;}
._19{width:30.746400pt;}
._e{width:31.921067pt;}
._10{width:33.284267pt;}
._1f{width:34.233600pt;}
._11{width:35.638400pt;}
._4{width:37.440000pt;}
._1c{width:38.379200pt;}
._3{width:39.578667pt;}
._1d{width:41.216000pt;}
._1e{width:42.315733pt;}
._7{width:43.392000pt;}
._d{width:44.653867pt;}
._1a{width:45.842133pt;}
._14{width:51.133333pt;}
._b{width:52.660267pt;}
._13{width:53.656533pt;}
._16{width:62.144000pt;}
._17{width:63.109333pt;}
._21{width:73.600000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y2a{bottom:107.588000pt;}
.y6b{bottom:108.388000pt;}
.y29{bottom:125.988000pt;}
.y8b{bottom:126.466667pt;}
.y51{bottom:126.788000pt;}
.y28{bottom:144.388000pt;}
.y8a{bottom:144.866667pt;}
.y50{bottom:145.188000pt;}
.y27{bottom:162.788000pt;}
.y89{bottom:163.266667pt;}
.y4f{bottom:163.588000pt;}
.y6a{bottom:163.908000pt;}
.y26{bottom:181.188000pt;}
.y88{bottom:181.666667pt;}
.y4e{bottom:181.988000pt;}
.y25{bottom:199.588000pt;}
.y87{bottom:200.066667pt;}
.y69{bottom:200.866667pt;}
.y24{bottom:217.988000pt;}
.y86{bottom:218.466667pt;}
.y4d{bottom:219.108000pt;}
.y68{bottom:219.266667pt;}
.y23{bottom:236.388000pt;}
.y85{bottom:236.866667pt;}
.y67{bottom:237.666667pt;}
.y22{bottom:254.788000pt;}
.y84{bottom:255.266667pt;}
.y4c{bottom:256.066667pt;}
.y21{bottom:273.188000pt;}
.y83{bottom:273.666667pt;}
.y4b{bottom:274.466667pt;}
.y66{bottom:274.788000pt;}
.y20{bottom:291.588000pt;}
.y82{bottom:292.066667pt;}
.y65{bottom:293.188000pt;}
.y1f{bottom:309.988000pt;}
.y4a{bottom:311.588000pt;}
.y1e{bottom:328.388000pt;}
.y81{bottom:329.188000pt;}
.y49{bottom:329.988000pt;}
.y1d{bottom:346.788000pt;}
.y48{bottom:348.388000pt;}
.y80{bottom:366.308000pt;}
.y47{bottom:366.788000pt;}
.y1c{bottom:383.746667pt;}
.y7f{bottom:384.706667pt;}
.y46{bottom:385.188000pt;}
.y7e{bottom:403.108000pt;}
.y45{bottom:403.588000pt;}
.y1b{bottom:420.866667pt;}
.y7d{bottom:421.508000pt;}
.y44{bottom:421.988000pt;}
.y1a{bottom:439.266667pt;}
.y7c{bottom:439.908000pt;}
.y64{bottom:440.388000pt;}
.y63{bottom:458.788000pt;}
.y43{bottom:459.108000pt;}
.y19{bottom:476.388000pt;}
.y7b{bottom:476.866667pt;}
.y62{bottom:477.188000pt;}
.y42{bottom:477.506667pt;}
.y18{bottom:494.788000pt;}
.y61{bottom:495.588000pt;}
.y41{bottom:495.908000pt;}
.y17{bottom:513.188000pt;}
.y60{bottom:513.988000pt;}
.y40{bottom:514.308000pt;}
.y16{bottom:531.588000pt;}
.y7a{bottom:532.388000pt;}
.y3f{bottom:532.706667pt;}
.y15{bottom:549.988000pt;}
.y79{bottom:550.788000pt;}
.y3e{bottom:551.108000pt;}
.y14{bottom:568.388000pt;}
.y78{bottom:569.188000pt;}
.y5f{bottom:569.506667pt;}
.y13{bottom:586.788000pt;}
.y77{bottom:587.588000pt;}
.y5e{bottom:587.908000pt;}
.y3d{bottom:588.066667pt;}
.y12{bottom:605.188000pt;}
.y76{bottom:605.988000pt;}
.y11{bottom:623.588000pt;}
.y75{bottom:624.388000pt;}
.y5d{bottom:624.866667pt;}
.y3c{bottom:625.188000pt;}
.y10{bottom:641.988000pt;}
.y3b{bottom:643.588000pt;}
.yf{bottom:660.388000pt;}
.y74{bottom:661.506667pt;}
.y5c{bottom:661.988000pt;}
.ye{bottom:678.788000pt;}
.y5b{bottom:680.388000pt;}
.y3a{bottom:680.706667pt;}
.yd{bottom:697.188000pt;}
.y73{bottom:698.466667pt;}
.y5a{bottom:698.788000pt;}
.y39{bottom:699.108000pt;}
.y72{bottom:716.866667pt;}
.y59{bottom:717.188000pt;}
.y38{bottom:717.506667pt;}
.yc{bottom:734.146667pt;}
.y71{bottom:735.266667pt;}
.y37{bottom:735.906667pt;}
.y36{bottom:754.308000pt;}
.y70{bottom:772.388000pt;}
.y35{bottom:772.706667pt;}
.y95{bottom:773.188000pt;}
.y6f{bottom:790.788000pt;}
.y34{bottom:791.106667pt;}
.y94{bottom:791.588000pt;}
.y6e{bottom:809.188000pt;}
.y33{bottom:809.506667pt;}
.y93{bottom:809.988000pt;}
.yb{bottom:827.106667pt;}
.y32{bottom:827.906667pt;}
.y92{bottom:828.388000pt;}
.y31{bottom:846.306667pt;}
.y91{bottom:846.788000pt;}
.ya{bottom:864.066667pt;}
.y30{bottom:864.706667pt;}
.y58{bottom:864.866667pt;}
.y90{bottom:865.188000pt;}
.y2f{bottom:883.106667pt;}
.y57{bottom:883.266667pt;}
.y8f{bottom:883.588000pt;}
.y9{bottom:901.188000pt;}
.y2e{bottom:901.506667pt;}
.y56{bottom:901.666667pt;}
.y8e{bottom:901.988000pt;}
.y2d{bottom:919.906667pt;}
.y55{bottom:920.066667pt;}
.y8d{bottom:920.388000pt;}
.y8{bottom:938.306667pt;}
.y6d{bottom:938.466667pt;}
.y8c{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y6c{bottom:956.866667pt;}
.y54{bottom:957.188000pt;}
.y2c{bottom:975.266667pt;}
.y53{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y52{bottom:993.988000pt;}
.y2b{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:55.343750pt;}
.h4{height:56.031250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xc{left:121.440000pt;}
.x7{left:126.878667pt;}
.x5{left:128.800000pt;}
.x2{left:142.720000pt;}
.xa{left:211.040000pt;}
.x9{left:297.600000pt;}
.x6{left:300.160000pt;}
.xb{left:304.960000pt;}
.x8{left:389.760000pt;}
}




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