
    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_ded1c8ce8968ea58d0e43e5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_b0ead8393d2ecd63b9eb1ff3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_d84958f5f10f51ec5af92526.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_33809d958f279d03ca921edd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_612b855c4489b8fdcfc3e6b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_16a4a7400368a3055666bbf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_c0149f28842aade644895349.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916016;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;}
.v2{vertical-align:22.326000px;}
.v1{vertical-align:23.760000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:74.952000px;}
.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:-63.071100px;}
.ws7{word-spacing:-55.944000px;}
.ws84{word-spacing:-51.515100px;}
.ws2c{word-spacing:-38.863800px;}
.ws58{word-spacing:-38.666400px;}
.ws3a{word-spacing:-38.661900px;}
.ws66{word-spacing:-38.655900px;}
.ws22{word-spacing:-38.653200px;}
.ws5e{word-spacing:-38.649600px;}
.ws48{word-spacing:-38.647800px;}
.ws80{word-spacing:-38.646000px;}
.ws3c{word-spacing:-38.592000px;}
.ws5d{word-spacing:-38.448000px;}
.ws4d{word-spacing:-38.442600px;}
.ws61{word-spacing:-38.439900px;}
.ws6{word-spacing:-38.429100px;}
.ws3{word-spacing:-38.371200px;}
.ws39{word-spacing:-38.166000px;}
.ws5{word-spacing:-38.160000px;}
.ws4{word-spacing:-38.156400px;}
.ws1f{word-spacing:-38.154000px;}
.ws4e{word-spacing:-38.151000px;}
.ws65{word-spacing:-38.150400px;}
.ws11{word-spacing:-38.146800px;}
.ws35{word-spacing:-38.144100px;}
.ws14{word-spacing:-38.139300px;}
.ws8f{word-spacing:-38.133300px;}
.ws2f{word-spacing:-37.944000px;}
.ws79{word-spacing:-37.942200px;}
.ws50{word-spacing:-37.940400px;}
.ws38{word-spacing:-37.936200px;}
.ws60{word-spacing:-37.935000px;}
.ws8c{word-spacing:-37.934400px;}
.ws88{word-spacing:-37.931400px;}
.ws64{word-spacing:-37.921800px;}
.ws32{word-spacing:-37.724400px;}
.ws8{word-spacing:-37.723500px;}
.ws8a{word-spacing:-37.713600px;}
.ws54{word-spacing:-37.442400px;}
.ws4f{word-spacing:-37.430400px;}
.ws3d{word-spacing:-37.222200px;}
.ws37{word-spacing:-37.211400px;}
.ws42{word-spacing:-36.722400px;}
.ws5f{word-spacing:-36.716400px;}
.ws76{word-spacing:-36.502200px;}
.ws40{word-spacing:-36.500400px;}
.ws44{word-spacing:-36.499500px;}
.ws23{word-spacing:-36.000000px;}
.ws31{word-spacing:-35.996400px;}
.ws24{word-spacing:-35.990100px;}
.ws7c{word-spacing:-35.779500px;}
.ws5c{word-spacing:-35.770800px;}
.ws36{word-spacing:-35.709300px;}
.ws82{word-spacing:-35.699700px;}
.ws34{word-spacing:-35.064000px;}
.ws6e{word-spacing:-34.560000px;}
.ws55{word-spacing:-34.557300px;}
.ws5b{word-spacing:-34.545900px;}
.ws63{word-spacing:-34.348200px;}
.ws29{word-spacing:-34.344000px;}
.ws1b{word-spacing:-34.335000px;}
.ws78{word-spacing:-34.334700px;}
.ws9{word-spacing:-33.842400px;}
.ws28{word-spacing:-33.815700px;}
.ws7e{word-spacing:-33.622200px;}
.ws2{word-spacing:-33.547800px;}
.ws2d{word-spacing:-33.120000px;}
.ws2e{word-spacing:-32.904000px;}
.ws51{word-spacing:-32.903100px;}
.ws53{word-spacing:-32.890200px;}
.wsf{word-spacing:-32.883600px;}
.ws2b{word-spacing:-32.400000px;}
.ws89{word-spacing:-32.396400px;}
.wsd{word-spacing:-32.390100px;}
.ws21{word-spacing:-32.176500px;}
.ws3f{word-spacing:-32.174400px;}
.ws20{word-spacing:-31.671900px;}
.ws73{word-spacing:-31.466400px;}
.ws18{word-spacing:-31.456800px;}
.ws10{word-spacing:-30.946200px;}
.ws62{word-spacing:-30.740400px;}
.ws30{word-spacing:-30.224100px;}
.ws47{word-spacing:-30.022200px;}
.ws70{word-spacing:-29.522400px;}
.ws6b{word-spacing:-29.304000px;}
.ws1e{word-spacing:-29.300400px;}
.ws86{word-spacing:-29.291400px;}
.wse{word-spacing:-28.796400px;}
.ws4c{word-spacing:-28.795500px;}
.ws43{word-spacing:-28.584000px;}
.ws8d{word-spacing:-28.574100px;}
.ws49{word-spacing:-27.869100px;}
.ws59{word-spacing:-27.866400px;}
.ws85{word-spacing:-27.834600px;}
.ws74{word-spacing:-27.144000px;}
.ws4b{word-spacing:-27.142200px;}
.ws1d{word-spacing:-27.135000px;}
.ws41{word-spacing:-26.646000px;}
.ws56{word-spacing:-26.424000px;}
.ws77{word-spacing:-26.420400px;}
.ws3b{word-spacing:-26.415900px;}
.ws1c{word-spacing:-26.413800px;}
.ws45{word-spacing:-25.688700px;}
.ws8b{word-spacing:-25.200000px;}
.ws7b{word-spacing:-25.184100px;}
.ws57{word-spacing:-24.990000px;}
.ws90{word-spacing:-24.048000px;}
.ws6f{word-spacing:-23.548200px;}
.wsc{word-spacing:-23.535000px;}
.ws27{word-spacing:-22.883700px;}
.ws46{word-spacing:-22.100400px;}
.ws7d{word-spacing:-21.600000px;}
.ws12{word-spacing:-21.589200px;}
.ws81{word-spacing:-21.582300px;}
.ws13{word-spacing:-21.375000px;}
.ws2a{word-spacing:-20.440800px;}
.ws7f{word-spacing:-19.933200px;}
.ws3e{word-spacing:-18.495900px;}
.ws17{word-spacing:-18.492300px;}
.ws19{word-spacing:-16.561500px;}
.ws7a{word-spacing:-16.544100px;}
.ws71{word-spacing:-16.344000px;}
.ws15{word-spacing:-15.818700px;}
.ws16{word-spacing:-15.627300px;}
.wsa{word-spacing:-15.120000px;}
.ws5a{word-spacing:-14.385000px;}
.ws72{word-spacing:-13.680000px;}
.ws26{word-spacing:-9.833700px;}
.ws1a{word-spacing:-9.632100px;}
.ws68{word-spacing:-7.916400px;}
.ws69{word-spacing:-7.483500px;}
.ws6a{word-spacing:-6.975000px;}
.wsb{word-spacing:-6.462000px;}
.ws6d{word-spacing:-6.264000px;}
.ws8e{word-spacing:-4.829100px;}
.ws87{word-spacing:-1.944000px;}
.ws83{word-spacing:-0.400200px;}
.ws33{word-spacing:0.000000px;}
.ws75{word-spacing:3.825000px;}
.ws6c{word-spacing:7.914000px;}
.ws52{word-spacing:10.800000px;}
.ws67{word-spacing:16.062600px;}
.ws4a{word-spacing:20.160000px;}
.ws25{word-spacing:27.438000px;}
.ws1{word-spacing:1871.357400px;}
._2{margin-left:-1.085400px;}
._0{width:1.148400px;}
._15{width:17.400600px;}
._1{width:18.574800px;}
._13{width:20.191200px;}
._e{width:21.318000px;}
._19{width:22.473000px;}
._3{width:23.554800px;}
._7{width:24.620100px;}
._9{width:26.728200px;}
._8{width:28.363200px;}
._17{width:29.564400px;}
._6{width:30.588000px;}
._14{width:31.694400px;}
._11{width:34.134000px;}
._a{width:35.764800px;}
._12{width:37.019400px;}
._b{width:38.514300px;}
._c{width:40.903500px;}
._4{width:42.126000px;}
._18{width:43.360200px;}
._10{width:47.129700px;}
._d{width:48.158100px;}
._1b{width:49.681800px;}
._5{width:50.748000px;}
._20{width:52.437600px;}
._1e{width:54.000000px;}
._1f{width:55.512000px;}
._16{width:59.538000px;}
._1d{width:60.908400px;}
._1c{width:65.388000px;}
._1a{width:73.780800px;}
._f{width:85.176600px;}
.fc3{color:rgb(0,102,204);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs4{font-size:42.600000px;}
.fs3{font-size:46.800000px;}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.471500px;}
.y8b{bottom:9.465000px;}
.y3{bottom:72.825000px;}
.y30{bottom:99.075000px;}
.y89{bottom:108.615000px;}
.y5c{bottom:115.996500px;}
.y2f{bottom:119.775000px;}
.y88{bottom:129.315000px;}
.y5b{bottom:138.136500px;}
.y2e{bottom:140.296500px;}
.y87{bottom:150.015000px;}
.y5a{bottom:175.036500px;}
.y2d{bottom:176.115000px;}
.y86{bottom:185.655000px;}
.y59{bottom:210.675000px;}
.y2c{bottom:211.755000px;}
.y85{bottom:221.295000px;}
.y58{bottom:231.375000px;}
.y2b{bottom:232.455000px;}
.y84{bottom:241.996500px;}
.y57{bottom:252.075000px;}
.y83{bottom:262.696500px;}
.y2a{bottom:268.096500px;}
.y56{bottom:272.775000px;}
.y82{bottom:283.396500px;}
.y29{bottom:288.795000px;}
.y55{bottom:293.475000px;}
.y81{bottom:304.096500px;}
.y28{bottom:309.496500px;}
.y80{bottom:324.795000px;}
.y54{bottom:329.295000px;}
.y27{bottom:330.196500px;}
.y7f{bottom:345.496500px;}
.y53{bottom:349.996500px;}
.y26{bottom:350.896500px;}
.y7e{bottom:366.196500px;}
.y52{bottom:370.515000px;}
.y25{bottom:371.596500px;}
.y7d{bottom:386.896500px;}
.y51{bottom:391.215000px;}
.y24{bottom:392.295000px;}
.y50{bottom:411.915000px;}
.y23{bottom:412.996500px;}
.y7c{bottom:422.715000px;}
.y4f{bottom:432.615000px;}
.y22{bottom:433.696500px;}
.y4e{bottom:453.315000px;}
.y21{bottom:454.396500px;}
.y4d{bottom:474.196500px;}
.y7b{bottom:484.815000px;}
.y20{bottom:490.215000px;}
.y4c{bottom:496.155000px;}
.y7a{bottom:505.515000px;}
.y1f{bottom:510.915000px;}
.y4b{bottom:518.115000px;}
.y79{bottom:526.215000px;}
.y4a{bottom:540.075000px;}
.y1e{bottom:546.555000px;}
.y78{bottom:546.915000px;}
.y8a{bottom:554.550000px;}
.y49{bottom:562.036500px;}
.y1d{bottom:567.255000px;}
.y77{bottom:567.615000px;}
.y1c{bottom:587.955000px;}
.y76{bottom:588.136500px;}
.y48{bottom:599.115000px;}
.y1b{bottom:608.655000px;}
.y75{bottom:608.836500px;}
.y47{bottom:619.815000px;}
.y1a{bottom:629.355000px;}
.y74{bottom:629.536500px;}
.y46{bottom:640.515000px;}
.y19{bottom:650.055000px;}
.y73{bottom:650.236500px;}
.y18{bottom:670.755000px;}
.y72{bottom:670.936500px;}
.y45{bottom:676.155000px;}
.y17{bottom:691.455000px;}
.y71{bottom:691.636500px;}
.y44{bottom:696.855000px;}
.y16{bottom:712.155000px;}
.y70{bottom:712.336500px;}
.y43{bottom:717.555000px;}
.y15{bottom:732.855000px;}
.y6f{bottom:733.036500px;}
.y42{bottom:738.255000px;}
.y6e{bottom:753.736500px;}
.y41{bottom:758.955000px;}
.y14{bottom:768.496500px;}
.y6d{bottom:774.436500px;}
.y40{bottom:779.655000px;}
.y13{bottom:789.195000px;}
.y6c{bottom:795.136500px;}
.y3f{bottom:800.355000px;}
.y6b{bottom:815.836500px;}
.y96{bottom:819.255000px;}
.y3e{bottom:821.055000px;}
.y12{bottom:825.015000px;}
.y6a{bottom:836.536500px;}
.y95{bottom:839.955000px;}
.y3d{bottom:841.755000px;}
.y11{bottom:845.715000px;}
.y69{bottom:857.236500px;}
.y94{bottom:860.655000px;}
.y3c{bottom:862.455000px;}
.y10{bottom:866.415000px;}
.y68{bottom:877.936500px;}
.y93{bottom:881.355000px;}
.y3b{bottom:883.155000px;}
.yf{bottom:887.115000px;}
.y67{bottom:898.636500px;}
.y92{bottom:902.055000px;}
.y3a{bottom:903.855000px;}
.ye{bottom:907.815000px;}
.y66{bottom:920.775000px;}
.y91{bottom:922.755000px;}
.y39{bottom:924.555000px;}
.yd{bottom:928.515000px;}
.y65{bottom:942.736500px;}
.y90{bottom:943.455000px;}
.y38{bottom:945.255000px;}
.yc{bottom:949.215000px;}
.y8f{bottom:964.155000px;}
.y64{bottom:964.695000px;}
.y37{bottom:965.955000px;}
.yb{bottom:969.915000px;}
.y8e{bottom:984.855000px;}
.y36{bottom:987.915000px;}
.ya{bottom:990.615000px;}
.y63{bottom:1001.595000px;}
.y8d{bottom:1005.555000px;}
.y35{bottom:1009.875000px;}
.y62{bottom:1022.295000px;}
.y8c{bottom:1026.255000px;}
.y9{bottom:1032.015000px;}
.y61{bottom:1042.995000px;}
.y34{bottom:1046.955000px;}
.y8{bottom:1052.715000px;}
.y60{bottom:1063.695000px;}
.y33{bottom:1067.655000px;}
.y7{bottom:1073.415000px;}
.y5f{bottom:1085.655000px;}
.y32{bottom:1088.355000px;}
.y6{bottom:1094.115000px;}
.y5e{bottom:1107.615000px;}
.y31{bottom:1109.055000px;}
.y5d{bottom:1128.315000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h3{height:50.308594px;}
.ha{height:50.414063px;}
.hc{height:51.925512px;}
.h8{height:56.277773px;}
.h9{height:57.003773px;}
.h2{height:97.101563px;}
.hb{height:335.025000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w4{width:247.800000px;}
.w3{width:506.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:4.545000px;}
.x15{left:10.785000px;}
.x11{left:27.045000px;}
.x12{left:54.045000px;}
.x14{left:125.475000px;}
.x9{left:138.238500px;}
.x4{left:141.838500px;}
.xb{left:143.460000px;}
.x2{left:150.120000px;}
.x1{left:153.000000px;}
.xd{left:160.738500px;}
.xe{left:165.238500px;}
.xa{left:170.460000px;}
.xc{left:174.960000px;}
.xf{left:192.238500px;}
.x10{left:386.775000px;}
.x3{left:471.150000px;}
.x6{left:483.300000px;}
.x7{left:546.300000px;}
.x5{left:559.800000px;}
.x8{left:574.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.845333pt;}
.v1{vertical-align:21.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:66.624000pt;}
.ws0{word-spacing:-56.063200pt;}
.ws7{word-spacing:-49.728000pt;}
.ws84{word-spacing:-45.791200pt;}
.ws2c{word-spacing:-34.545600pt;}
.ws58{word-spacing:-34.370133pt;}
.ws3a{word-spacing:-34.366133pt;}
.ws66{word-spacing:-34.360800pt;}
.ws22{word-spacing:-34.358400pt;}
.ws5e{word-spacing:-34.355200pt;}
.ws48{word-spacing:-34.353600pt;}
.ws80{word-spacing:-34.352000pt;}
.ws3c{word-spacing:-34.304000pt;}
.ws5d{word-spacing:-34.176000pt;}
.ws4d{word-spacing:-34.171200pt;}
.ws61{word-spacing:-34.168800pt;}
.ws6{word-spacing:-34.159200pt;}
.ws3{word-spacing:-34.107733pt;}
.ws39{word-spacing:-33.925333pt;}
.ws5{word-spacing:-33.920000pt;}
.ws4{word-spacing:-33.916800pt;}
.ws1f{word-spacing:-33.914667pt;}
.ws4e{word-spacing:-33.912000pt;}
.ws65{word-spacing:-33.911467pt;}
.ws11{word-spacing:-33.908267pt;}
.ws35{word-spacing:-33.905867pt;}
.ws14{word-spacing:-33.901600pt;}
.ws8f{word-spacing:-33.896267pt;}
.ws2f{word-spacing:-33.728000pt;}
.ws79{word-spacing:-33.726400pt;}
.ws50{word-spacing:-33.724800pt;}
.ws38{word-spacing:-33.721067pt;}
.ws60{word-spacing:-33.720000pt;}
.ws8c{word-spacing:-33.719467pt;}
.ws88{word-spacing:-33.716800pt;}
.ws64{word-spacing:-33.708267pt;}
.ws32{word-spacing:-33.532800pt;}
.ws8{word-spacing:-33.532000pt;}
.ws8a{word-spacing:-33.523200pt;}
.ws54{word-spacing:-33.282133pt;}
.ws4f{word-spacing:-33.271467pt;}
.ws3d{word-spacing:-33.086400pt;}
.ws37{word-spacing:-33.076800pt;}
.ws42{word-spacing:-32.642133pt;}
.ws5f{word-spacing:-32.636800pt;}
.ws76{word-spacing:-32.446400pt;}
.ws40{word-spacing:-32.444800pt;}
.ws44{word-spacing:-32.444000pt;}
.ws23{word-spacing:-32.000000pt;}
.ws31{word-spacing:-31.996800pt;}
.ws24{word-spacing:-31.991200pt;}
.ws7c{word-spacing:-31.804000pt;}
.ws5c{word-spacing:-31.796267pt;}
.ws36{word-spacing:-31.741600pt;}
.ws82{word-spacing:-31.733067pt;}
.ws34{word-spacing:-31.168000pt;}
.ws6e{word-spacing:-30.720000pt;}
.ws55{word-spacing:-30.717600pt;}
.ws5b{word-spacing:-30.707467pt;}
.ws63{word-spacing:-30.531733pt;}
.ws29{word-spacing:-30.528000pt;}
.ws1b{word-spacing:-30.520000pt;}
.ws78{word-spacing:-30.519733pt;}
.ws9{word-spacing:-30.082133pt;}
.ws28{word-spacing:-30.058400pt;}
.ws7e{word-spacing:-29.886400pt;}
.ws2{word-spacing:-29.820267pt;}
.ws2d{word-spacing:-29.440000pt;}
.ws2e{word-spacing:-29.248000pt;}
.ws51{word-spacing:-29.247200pt;}
.ws53{word-spacing:-29.235733pt;}
.wsf{word-spacing:-29.229867pt;}
.ws2b{word-spacing:-28.800000pt;}
.ws89{word-spacing:-28.796800pt;}
.wsd{word-spacing:-28.791200pt;}
.ws21{word-spacing:-28.601333pt;}
.ws3f{word-spacing:-28.599467pt;}
.ws20{word-spacing:-28.152800pt;}
.ws73{word-spacing:-27.970133pt;}
.ws18{word-spacing:-27.961600pt;}
.ws10{word-spacing:-27.507733pt;}
.ws62{word-spacing:-27.324800pt;}
.ws30{word-spacing:-26.865867pt;}
.ws47{word-spacing:-26.686400pt;}
.ws70{word-spacing:-26.242133pt;}
.ws6b{word-spacing:-26.048000pt;}
.ws1e{word-spacing:-26.044800pt;}
.ws86{word-spacing:-26.036800pt;}
.wse{word-spacing:-25.596800pt;}
.ws4c{word-spacing:-25.596000pt;}
.ws43{word-spacing:-25.408000pt;}
.ws8d{word-spacing:-25.399200pt;}
.ws49{word-spacing:-24.772533pt;}
.ws59{word-spacing:-24.770133pt;}
.ws85{word-spacing:-24.741867pt;}
.ws74{word-spacing:-24.128000pt;}
.ws4b{word-spacing:-24.126400pt;}
.ws1d{word-spacing:-24.120000pt;}
.ws41{word-spacing:-23.685333pt;}
.ws56{word-spacing:-23.488000pt;}
.ws77{word-spacing:-23.484800pt;}
.ws3b{word-spacing:-23.480800pt;}
.ws1c{word-spacing:-23.478933pt;}
.ws45{word-spacing:-22.834400pt;}
.ws8b{word-spacing:-22.400000pt;}
.ws7b{word-spacing:-22.385867pt;}
.ws57{word-spacing:-22.213333pt;}
.ws90{word-spacing:-21.376000pt;}
.ws6f{word-spacing:-20.931733pt;}
.wsc{word-spacing:-20.920000pt;}
.ws27{word-spacing:-20.341067pt;}
.ws46{word-spacing:-19.644800pt;}
.ws7d{word-spacing:-19.200000pt;}
.ws12{word-spacing:-19.190400pt;}
.ws81{word-spacing:-19.184267pt;}
.ws13{word-spacing:-19.000000pt;}
.ws2a{word-spacing:-18.169600pt;}
.ws7f{word-spacing:-17.718400pt;}
.ws3e{word-spacing:-16.440800pt;}
.ws17{word-spacing:-16.437600pt;}
.ws19{word-spacing:-14.721333pt;}
.ws7a{word-spacing:-14.705867pt;}
.ws71{word-spacing:-14.528000pt;}
.ws15{word-spacing:-14.061067pt;}
.ws16{word-spacing:-13.890933pt;}
.wsa{word-spacing:-13.440000pt;}
.ws5a{word-spacing:-12.786667pt;}
.ws72{word-spacing:-12.160000pt;}
.ws26{word-spacing:-8.741067pt;}
.ws1a{word-spacing:-8.561867pt;}
.ws68{word-spacing:-7.036800pt;}
.ws69{word-spacing:-6.652000pt;}
.ws6a{word-spacing:-6.200000pt;}
.wsb{word-spacing:-5.744000pt;}
.ws6d{word-spacing:-5.568000pt;}
.ws8e{word-spacing:-4.292533pt;}
.ws87{word-spacing:-1.728000pt;}
.ws83{word-spacing:-0.355733pt;}
.ws33{word-spacing:0.000000pt;}
.ws75{word-spacing:3.400000pt;}
.ws6c{word-spacing:7.034667pt;}
.ws52{word-spacing:9.600000pt;}
.ws67{word-spacing:14.277867pt;}
.ws4a{word-spacing:17.920000pt;}
.ws25{word-spacing:24.389333pt;}
.ws1{word-spacing:1663.428800pt;}
._2{margin-left:-0.964800pt;}
._0{width:1.020800pt;}
._15{width:15.467200pt;}
._1{width:16.510933pt;}
._13{width:17.947733pt;}
._e{width:18.949333pt;}
._19{width:19.976000pt;}
._3{width:20.937600pt;}
._7{width:21.884533pt;}
._9{width:23.758400pt;}
._8{width:25.211733pt;}
._17{width:26.279467pt;}
._6{width:27.189333pt;}
._14{width:28.172800pt;}
._11{width:30.341333pt;}
._a{width:31.790933pt;}
._12{width:32.906133pt;}
._b{width:34.234933pt;}
._c{width:36.358667pt;}
._4{width:37.445333pt;}
._18{width:38.542400pt;}
._10{width:41.893067pt;}
._d{width:42.807200pt;}
._1b{width:44.161600pt;}
._5{width:45.109333pt;}
._20{width:46.611200pt;}
._1e{width:48.000000pt;}
._1f{width:49.344000pt;}
._16{width:52.922667pt;}
._1d{width:54.140800pt;}
._1c{width:58.122667pt;}
._1a{width:65.582933pt;}
._f{width:75.712533pt;}
.fs4{font-size:37.866667pt;}
.fs3{font-size:41.600000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.974667pt;}
.y8b{bottom:8.413333pt;}
.y3{bottom:64.733333pt;}
.y30{bottom:88.066667pt;}
.y89{bottom:96.546667pt;}
.y5c{bottom:103.108000pt;}
.y2f{bottom:106.466667pt;}
.y88{bottom:114.946667pt;}
.y5b{bottom:122.788000pt;}
.y2e{bottom:124.708000pt;}
.y87{bottom:133.346667pt;}
.y5a{bottom:155.588000pt;}
.y2d{bottom:156.546667pt;}
.y86{bottom:165.026667pt;}
.y59{bottom:187.266667pt;}
.y2c{bottom:188.226667pt;}
.y85{bottom:196.706667pt;}
.y58{bottom:205.666667pt;}
.y2b{bottom:206.626667pt;}
.y84{bottom:215.108000pt;}
.y57{bottom:224.066667pt;}
.y83{bottom:233.508000pt;}
.y2a{bottom:238.308000pt;}
.y56{bottom:242.466667pt;}
.y82{bottom:251.908000pt;}
.y29{bottom:256.706667pt;}
.y55{bottom:260.866667pt;}
.y81{bottom:270.308000pt;}
.y28{bottom:275.108000pt;}
.y80{bottom:288.706667pt;}
.y54{bottom:292.706667pt;}
.y27{bottom:293.508000pt;}
.y7f{bottom:307.108000pt;}
.y53{bottom:311.108000pt;}
.y26{bottom:311.908000pt;}
.y7e{bottom:325.508000pt;}
.y52{bottom:329.346667pt;}
.y25{bottom:330.308000pt;}
.y7d{bottom:343.908000pt;}
.y51{bottom:347.746667pt;}
.y24{bottom:348.706667pt;}
.y50{bottom:366.146667pt;}
.y23{bottom:367.108000pt;}
.y7c{bottom:375.746667pt;}
.y4f{bottom:384.546667pt;}
.y22{bottom:385.508000pt;}
.y4e{bottom:402.946667pt;}
.y21{bottom:403.908000pt;}
.y4d{bottom:421.508000pt;}
.y7b{bottom:430.946667pt;}
.y20{bottom:435.746667pt;}
.y4c{bottom:441.026667pt;}
.y7a{bottom:449.346667pt;}
.y1f{bottom:454.146667pt;}
.y4b{bottom:460.546667pt;}
.y79{bottom:467.746667pt;}
.y4a{bottom:480.066667pt;}
.y1e{bottom:485.826667pt;}
.y78{bottom:486.146667pt;}
.y8a{bottom:492.933333pt;}
.y49{bottom:499.588000pt;}
.y1d{bottom:504.226667pt;}
.y77{bottom:504.546667pt;}
.y1c{bottom:522.626667pt;}
.y76{bottom:522.788000pt;}
.y48{bottom:532.546667pt;}
.y1b{bottom:541.026667pt;}
.y75{bottom:541.188000pt;}
.y47{bottom:550.946667pt;}
.y1a{bottom:559.426667pt;}
.y74{bottom:559.588000pt;}
.y46{bottom:569.346667pt;}
.y19{bottom:577.826667pt;}
.y73{bottom:577.988000pt;}
.y18{bottom:596.226667pt;}
.y72{bottom:596.388000pt;}
.y45{bottom:601.026667pt;}
.y17{bottom:614.626667pt;}
.y71{bottom:614.788000pt;}
.y44{bottom:619.426667pt;}
.y16{bottom:633.026667pt;}
.y70{bottom:633.188000pt;}
.y43{bottom:637.826667pt;}
.y15{bottom:651.426667pt;}
.y6f{bottom:651.588000pt;}
.y42{bottom:656.226667pt;}
.y6e{bottom:669.988000pt;}
.y41{bottom:674.626667pt;}
.y14{bottom:683.108000pt;}
.y6d{bottom:688.388000pt;}
.y40{bottom:693.026667pt;}
.y13{bottom:701.506667pt;}
.y6c{bottom:706.788000pt;}
.y3f{bottom:711.426667pt;}
.y6b{bottom:725.188000pt;}
.y96{bottom:728.226667pt;}
.y3e{bottom:729.826667pt;}
.y12{bottom:733.346667pt;}
.y6a{bottom:743.588000pt;}
.y95{bottom:746.626667pt;}
.y3d{bottom:748.226667pt;}
.y11{bottom:751.746667pt;}
.y69{bottom:761.988000pt;}
.y94{bottom:765.026667pt;}
.y3c{bottom:766.626667pt;}
.y10{bottom:770.146667pt;}
.y68{bottom:780.388000pt;}
.y93{bottom:783.426667pt;}
.y3b{bottom:785.026667pt;}
.yf{bottom:788.546667pt;}
.y67{bottom:798.788000pt;}
.y92{bottom:801.826667pt;}
.y3a{bottom:803.426667pt;}
.ye{bottom:806.946667pt;}
.y66{bottom:818.466667pt;}
.y91{bottom:820.226667pt;}
.y39{bottom:821.826667pt;}
.yd{bottom:825.346667pt;}
.y65{bottom:837.988000pt;}
.y90{bottom:838.626667pt;}
.y38{bottom:840.226667pt;}
.yc{bottom:843.746667pt;}
.y8f{bottom:857.026667pt;}
.y64{bottom:857.506667pt;}
.y37{bottom:858.626667pt;}
.yb{bottom:862.146667pt;}
.y8e{bottom:875.426667pt;}
.y36{bottom:878.146667pt;}
.ya{bottom:880.546667pt;}
.y63{bottom:890.306667pt;}
.y8d{bottom:893.826667pt;}
.y35{bottom:897.666667pt;}
.y62{bottom:908.706667pt;}
.y8c{bottom:912.226667pt;}
.y9{bottom:917.346667pt;}
.y61{bottom:927.106667pt;}
.y34{bottom:930.626667pt;}
.y8{bottom:935.746667pt;}
.y60{bottom:945.506667pt;}
.y33{bottom:949.026667pt;}
.y7{bottom:954.146667pt;}
.y5f{bottom:965.026667pt;}
.y32{bottom:967.426667pt;}
.y6{bottom:972.546667pt;}
.y5e{bottom:984.546667pt;}
.y31{bottom:985.826667pt;}
.y5d{bottom:1002.946667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h3{height:44.718750pt;}
.ha{height:44.812500pt;}
.hc{height:46.156010pt;}
.h8{height:50.024688pt;}
.h9{height:50.670021pt;}
.h2{height:86.312500pt;}
.hb{height:297.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w4{width:220.266667pt;}
.w3{width:449.933333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:4.040000pt;}
.x15{left:9.586667pt;}
.x11{left:24.040000pt;}
.x12{left:48.040000pt;}
.x14{left:111.533333pt;}
.x9{left:122.878667pt;}
.x4{left:126.078667pt;}
.xb{left:127.520000pt;}
.x2{left:133.440000pt;}
.x1{left:136.000000pt;}
.xd{left:142.878667pt;}
.xe{left:146.878667pt;}
.xa{left:151.520000pt;}
.xc{left:155.520000pt;}
.xf{left:170.878667pt;}
.x10{left:343.800000pt;}
.x3{left:418.800000pt;}
.x6{left:429.600000pt;}
.x7{left:485.600000pt;}
.x5{left:497.600000pt;}
.x8{left:510.400000pt;}
}




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