
    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_aa21a3ba8e4c1c403341891b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896973;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_2410cbca380b32949022cb39.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9a36cc4fa4f73976fd45445c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_b6523bef9c836f01a4b9aa05.woff2')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;}
}
.ws44{word-spacing:-55.944000px;}
.ws5{word-spacing:-40.968000px;}
.wsa{word-spacing:-39.004200px;}
.ws64{word-spacing:-38.869200px;}
.ws12{word-spacing:-38.865300px;}
.ws7{word-spacing:-38.726700px;}
.ws3c{word-spacing:-38.665500px;}
.ws73{word-spacing:-38.656800px;}
.ws8{word-spacing:-38.655000px;}
.ws1a{word-spacing:-38.652300px;}
.ws62{word-spacing:-38.652000px;}
.wsb{word-spacing:-38.651400px;}
.ws5f{word-spacing:-38.649600px;}
.ws17{word-spacing:-38.647800px;}
.ws9{word-spacing:-38.590200px;}
.ws4b{word-spacing:-38.589300px;}
.ws20{word-spacing:-38.579400px;}
.ws6a{word-spacing:-38.574000px;}
.ws88{word-spacing:-38.448000px;}
.ws86{word-spacing:-38.372100px;}
.ws57{word-spacing:-38.367900px;}
.ws4e{word-spacing:-38.362500px;}
.ws45{word-spacing:-38.310000px;}
.ws51{word-spacing:-38.304000px;}
.ws71{word-spacing:-38.302200px;}
.ws4f{word-spacing:-38.298300px;}
.ws91{word-spacing:-38.294100px;}
.ws54{word-spacing:-38.288700px;}
.ws8d{word-spacing:-38.157900px;}
.ws3d{word-spacing:-38.145600px;}
.ws8a{word-spacing:-38.143200px;}
.ws60{word-spacing:-38.007900px;}
.ws6b{word-spacing:-38.007000px;}
.wsc{word-spacing:-37.944000px;}
.ws33{word-spacing:-37.927800px;}
.ws90{word-spacing:-37.734000px;}
.ws8e{word-spacing:-37.574100px;}
.ws65{word-spacing:-37.440000px;}
.ws5b{word-spacing:-37.287900px;}
.ws7b{word-spacing:-37.075500px;}
.ws69{word-spacing:-36.998100px;}
.ws49{word-spacing:-36.831600px;}
.ws46{word-spacing:-36.504000px;}
.ws47{word-spacing:-35.998200px;}
.ws6f{word-spacing:-35.784000px;}
.ws6e{word-spacing:-35.053500px;}
.ws81{word-spacing:-34.552800px;}
.ws3f{word-spacing:-34.472700px;}
.ws67{word-spacing:-34.342200px;}
.ws2b{word-spacing:-33.984000px;}
.ws6c{word-spacing:-33.829200px;}
.ws6{word-spacing:-33.547800px;}
.ws7d{word-spacing:-33.539400px;}
.ws41{word-spacing:-33.264000px;}
.ws3b{word-spacing:-33.255900px;}
.ws29{word-spacing:-33.114300px;}
.ws52{word-spacing:-32.904000px;}
.ws48{word-spacing:-32.536500px;}
.ws15{word-spacing:-32.392800px;}
.ws50{word-spacing:-32.387400px;}
.ws36{word-spacing:-32.328000px;}
.ws89{word-spacing:-32.184000px;}
.ws75{word-spacing:-31.672200px;}
.ws23{word-spacing:-31.470000px;}
.ws7c{word-spacing:-31.172400px;}
.ws43{word-spacing:-31.167000px;}
.ws25{word-spacing:-30.964200px;}
.ws34{word-spacing:-30.744000px;}
.ws42{word-spacing:-30.024000px;}
.ws8f{word-spacing:-29.304000px;}
.ws4a{word-spacing:-28.998000px;}
.ws77{word-spacing:-28.711800px;}
.ws6d{word-spacing:-28.218300px;}
.ws3a{word-spacing:-28.075500px;}
.ws38{word-spacing:-26.120100px;}
.ws26{word-spacing:-26.064000px;}
.ws35{word-spacing:-26.050500px;}
.ws39{word-spacing:-25.189200px;}
.ws2e{word-spacing:-24.901200px;}
.ws2f{word-spacing:-24.890400px;}
.ws53{word-spacing:-24.690600px;}
.ws7a{word-spacing:-24.253200px;}
.ws83{word-spacing:-23.910000px;}
.ws79{word-spacing:-23.894100px;}
.ws4{word-spacing:-23.687700px;}
.ws0{word-spacing:-23.390100px;}
.ws1{word-spacing:-23.178600px;}
.ws2{word-spacing:-23.174100px;}
.ws68{word-spacing:-22.824000px;}
.ws24{word-spacing:-22.814100px;}
.ws18{word-spacing:-22.248000px;}
.ws14{word-spacing:-21.582600px;}
.ws70{word-spacing:-21.384000px;}
.ws40{word-spacing:-20.166000px;}
.ws32{word-spacing:-19.944000px;}
.ws31{word-spacing:-19.865400px;}
.ws13{word-spacing:-19.215000px;}
.ws27{word-spacing:-17.197200px;}
.wsd{word-spacing:-16.566000px;}
.ws2c{word-spacing:-16.344000px;}
.ws4c{word-spacing:-16.258500px;}
.wse{word-spacing:-16.110900px;}
.ws8b{word-spacing:-15.624000px;}
.ws56{word-spacing:-14.537400px;}
.ws5e{word-spacing:-14.184000px;}
.ws58{word-spacing:-13.809600px;}
.ws59{word-spacing:-11.304000px;}
.ws21{word-spacing:-10.798200px;}
.ws85{word-spacing:-9.979200px;}
.ws1e{word-spacing:-9.144000px;}
.ws1d{word-spacing:-8.336700px;}
.ws63{word-spacing:-7.897500px;}
.ws7f{word-spacing:-6.990000px;}
.ws19{word-spacing:-6.686100px;}
.ws37{word-spacing:-6.613200px;}
.ws78{word-spacing:-6.463200px;}
.ws3{word-spacing:-5.177700px;}
.ws3e{word-spacing:-4.313400px;}
.ws82{word-spacing:-4.108200px;}
.ws55{word-spacing:-4.104000px;}
.ws61{word-spacing:-3.605100px;}
.ws80{word-spacing:-2.664000px;}
.wsf{word-spacing:-2.150100px;}
.ws74{word-spacing:-1.423200px;}
.ws10{word-spacing:-0.475200px;}
.ws7e{word-spacing:0.298800px;}
.ws30{word-spacing:0.725400px;}
.ws11{word-spacing:0.729900px;}
.ws72{word-spacing:1.447500px;}
.ws5c{word-spacing:1.953900px;}
.ws5d{word-spacing:2.028600px;}
.ws8c{word-spacing:2.312700px;}
.ws4d{word-spacing:2.376000px;}
.ws16{word-spacing:2.757300px;}
.ws28{word-spacing:3.321300px;}
.ws76{word-spacing:3.466800px;}
.ws5a{word-spacing:4.620600px;}
.ws2d{word-spacing:12.322200px;}
.ws87{word-spacing:15.330000px;}
.ws22{word-spacing:16.648200px;}
.ws2a{word-spacing:18.799200px;}
.ws84{word-spacing:19.303800px;}
.ws66{word-spacing:20.020800px;}
.ws1c{word-spacing:20.370000px;}
.ws1b{word-spacing:20.880000px;}
.ws1f{word-spacing:31.896000px;}
._4{margin-left:-1.134900px;}
._3{width:1.067400px;}
._28{width:16.816500px;}
._5{width:18.136800px;}
._0{width:19.142100px;}
._1c{width:20.300400px;}
._22{width:21.647100px;}
._1f{width:22.736700px;}
._16{width:23.834400px;}
._c{width:24.975000px;}
._14{width:26.445000px;}
._21{width:27.487200px;}
._1d{width:29.002500px;}
._15{width:31.464000px;}
._1a{width:32.821200px;}
._e{width:35.019300px;}
._b{width:36.054600px;}
._20{width:37.092000px;}
._18{width:38.304000px;}
._6{width:41.079300px;}
._23{width:42.761400px;}
._24{width:43.834800px;}
._11{width:46.224000px;}
._27{width:49.431600px;}
._f{width:50.454900px;}
._1e{width:53.554800px;}
._7{width:54.926100px;}
._9{width:56.707200px;}
._a{width:57.878100px;}
._26{width:59.102100px;}
._d{width:60.448200px;}
._25{width:61.835400px;}
._19{width:69.603900px;}
._13{width:72.884100px;}
._12{width:74.142900px;}
._17{width:76.240800px;}
._29{width:77.410200px;}
._10{width:89.347500px;}
._8{width:113.494500px;}
._1{width:954.360000px;}
._2{width:1025.700300px;}
._1b{width:1026.705600px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(227,108,9);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.575000px;}
.y7{bottom:72.900000px;}
.y2f{bottom:130.215000px;}
.y2e{bottom:150.915000px;}
.y76{bottom:168.375000px;}
.y2d{bottom:171.615000px;}
.y55{bottom:183.675000px;}
.y75{bottom:189.075000px;}
.y2c{bottom:192.315000px;}
.y54{bottom:204.375000px;}
.y2b{bottom:213.015000px;}
.y74{bottom:221.836500px;}
.y2a{bottom:233.715000px;}
.y53{bottom:237.136500px;}
.y73{bottom:242.536500px;}
.y29{bottom:254.415000px;}
.y72{bottom:263.236500px;}
.y92{bottom:267.736500px;}
.y52{bottom:269.715000px;}
.y28{bottom:275.115000px;}
.y91{bottom:288.436500px;}
.y51{bottom:290.415000px;}
.y27{bottom:295.815000px;}
.y90{bottom:309.136500px;}
.y50{bottom:311.115000px;}
.y26{bottom:316.515000px;}
.y8f{bottom:329.836500px;}
.y4f{bottom:331.815000px;}
.y25{bottom:337.215000px;}
.y8e{bottom:350.536500px;}
.y24{bottom:357.915000px;}
.y4e{bottom:364.575000px;}
.y71{bottom:369.975000px;}
.y8d{bottom:371.236500px;}
.y23{bottom:378.615000px;}
.y4d{bottom:385.275000px;}
.y70{bottom:390.675000px;}
.y8c{bottom:391.936500px;}
.y22{bottom:399.315000px;}
.y4c{bottom:405.975000px;}
.y8b{bottom:412.636500px;}
.y21{bottom:420.015000px;}
.y6f{bottom:423.436500px;}
.y4b{bottom:426.675000px;}
.y8a{bottom:433.336500px;}
.y89{bottom:454.036500px;}
.y6e{bottom:456.015000px;}
.y4a{bottom:459.436500px;}
.y88{bottom:474.736500px;}
.y6d{bottom:476.715000px;}
.y49{bottom:480.136500px;}
.y20{bottom:485.536500px;}
.y87{bottom:495.436500px;}
.y6c{bottom:497.415000px;}
.y48{bottom:500.836500px;}
.y1f{bottom:506.236500px;}
.y86{bottom:516.136500px;}
.y1e{bottom:526.936500px;}
.y6b{bottom:530.175000px;}
.y47{bottom:533.415000px;}
.y85{bottom:536.836500px;}
.y1d{bottom:547.636500px;}
.y6a{bottom:550.875000px;}
.y84{bottom:557.536500px;}
.y46{bottom:566.175000px;}
.y1c{bottom:568.336500px;}
.y69{bottom:571.575000px;}
.y83{bottom:578.236500px;}
.y45{bottom:598.936500px;}
.y68{bottom:604.336500px;}
.y82{bottom:610.815000px;}
.y44{bottom:619.636500px;}
.y1b{bottom:621.615000px;}
.y67{bottom:625.036500px;}
.y43{bottom:640.336500px;}
.y1a{bottom:642.315000px;}
.y81{bottom:643.575000px;}
.y66{bottom:645.736500px;}
.y42{bottom:661.036500px;}
.y19{bottom:663.015000px;}
.y80{bottom:664.275000px;}
.y65{bottom:678.315000px;}
.y41{bottom:681.736500px;}
.y7f{bottom:684.975000px;}
.y18{bottom:695.775000px;}
.y64{bottom:699.015000px;}
.y40{bottom:702.436500px;}
.y7e{bottom:705.675000px;}
.y17{bottom:716.475000px;}
.y3f{bottom:723.136500px;}
.y7d{bottom:726.375000px;}
.y63{bottom:731.775000px;}
.y16{bottom:737.175000px;}
.y7c{bottom:747.075000px;}
.y3e{bottom:755.715000px;}
.y15{bottom:757.875000px;}
.y62{bottom:764.536500px;}
.y14{bottom:778.575000px;}
.y7b{bottom:779.836500px;}
.y61{bottom:785.236500px;}
.y3d{bottom:788.475000px;}
.y7a{bottom:800.536500px;}
.y60{bottom:805.936500px;}
.y3c{bottom:809.175000px;}
.y13{bottom:811.336500px;}
.y79{bottom:821.236500px;}
.y5f{bottom:826.636500px;}
.y3b{bottom:829.875000px;}
.y12{bottom:832.036500px;}
.y78{bottom:841.936500px;}
.y3a{bottom:850.575000px;}
.y11{bottom:852.736500px;}
.y5e{bottom:859.215000px;}
.y77{bottom:862.636500px;}
.y10{bottom:873.436500px;}
.y5d{bottom:879.915000px;}
.y39{bottom:883.336500px;}
.yf{bottom:894.136500px;}
.y5c{bottom:900.615000px;}
.y38{bottom:904.036500px;}
.y5b{bottom:921.315000px;}
.y37{bottom:924.736500px;}
.ye{bottom:926.715000px;}
.y5a{bottom:942.015000px;}
.y36{bottom:945.436500px;}
.yd{bottom:959.475000px;}
.y35{bottom:966.136500px;}
.y59{bottom:974.775000px;}
.y34{bottom:986.836500px;}
.yc{bottom:992.236500px;}
.y58{bottom:995.475000px;}
.y33{bottom:1007.536500px;}
.y57{bottom:1016.175000px;}
.yb{bottom:1024.815000px;}
.y32{bottom:1028.236500px;}
.y56{bottom:1036.875000px;}
.y31{bottom:1048.936500px;}
.ya{bottom:1057.575000px;}
.y30{bottom:1069.636500px;}
.y9{bottom:1090.155000px;}
.y6{bottom:1131.915000px;}
.y5{bottom:1152.615000px;}
.y4{bottom:1173.315000px;}
.y3{bottom:1194.015000px;}
.y2{bottom:1214.715000px;}
.y1{bottom:1235.415000px;}
.h3{height:20.175000px;}
.h4{height:45.225146px;}
.h5{height:48.761719px;}
.h2{height:49.042969px;}
.h6{height:49.992188px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x9{left:213.120000px;}
.x3{left:214.200000px;}
.x6{left:442.080000px;}
.x2{left:470.025000px;}
.x8{left:537.480000px;}
.x5{left:589.138500px;}
.x4{left:597.060000px;}
.x7{left:662.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws44{word-spacing:-49.728000pt;}
.ws5{word-spacing:-36.416000pt;}
.wsa{word-spacing:-34.670400pt;}
.ws64{word-spacing:-34.550400pt;}
.ws12{word-spacing:-34.546933pt;}
.ws7{word-spacing:-34.423733pt;}
.ws3c{word-spacing:-34.369333pt;}
.ws73{word-spacing:-34.361600pt;}
.ws8{word-spacing:-34.360000pt;}
.ws1a{word-spacing:-34.357600pt;}
.ws62{word-spacing:-34.357333pt;}
.wsb{word-spacing:-34.356800pt;}
.ws5f{word-spacing:-34.355200pt;}
.ws17{word-spacing:-34.353600pt;}
.ws9{word-spacing:-34.302400pt;}
.ws4b{word-spacing:-34.301600pt;}
.ws20{word-spacing:-34.292800pt;}
.ws6a{word-spacing:-34.288000pt;}
.ws88{word-spacing:-34.176000pt;}
.ws86{word-spacing:-34.108533pt;}
.ws57{word-spacing:-34.104800pt;}
.ws4e{word-spacing:-34.100000pt;}
.ws45{word-spacing:-34.053333pt;}
.ws51{word-spacing:-34.048000pt;}
.ws71{word-spacing:-34.046400pt;}
.ws4f{word-spacing:-34.042933pt;}
.ws91{word-spacing:-34.039200pt;}
.ws54{word-spacing:-34.034400pt;}
.ws8d{word-spacing:-33.918133pt;}
.ws3d{word-spacing:-33.907200pt;}
.ws8a{word-spacing:-33.905067pt;}
.ws60{word-spacing:-33.784800pt;}
.ws6b{word-spacing:-33.784000pt;}
.wsc{word-spacing:-33.728000pt;}
.ws33{word-spacing:-33.713600pt;}
.ws90{word-spacing:-33.541333pt;}
.ws8e{word-spacing:-33.399200pt;}
.ws65{word-spacing:-33.280000pt;}
.ws5b{word-spacing:-33.144800pt;}
.ws7b{word-spacing:-32.956000pt;}
.ws69{word-spacing:-32.887200pt;}
.ws49{word-spacing:-32.739200pt;}
.ws46{word-spacing:-32.448000pt;}
.ws47{word-spacing:-31.998400pt;}
.ws6f{word-spacing:-31.808000pt;}
.ws6e{word-spacing:-31.158667pt;}
.ws81{word-spacing:-30.713600pt;}
.ws3f{word-spacing:-30.642400pt;}
.ws67{word-spacing:-30.526400pt;}
.ws2b{word-spacing:-30.208000pt;}
.ws6c{word-spacing:-30.070400pt;}
.ws6{word-spacing:-29.820267pt;}
.ws7d{word-spacing:-29.812800pt;}
.ws41{word-spacing:-29.568000pt;}
.ws3b{word-spacing:-29.560800pt;}
.ws29{word-spacing:-29.434933pt;}
.ws52{word-spacing:-29.248000pt;}
.ws48{word-spacing:-28.921333pt;}
.ws15{word-spacing:-28.793600pt;}
.ws50{word-spacing:-28.788800pt;}
.ws36{word-spacing:-28.736000pt;}
.ws89{word-spacing:-28.608000pt;}
.ws75{word-spacing:-28.153067pt;}
.ws23{word-spacing:-27.973333pt;}
.ws7c{word-spacing:-27.708800pt;}
.ws43{word-spacing:-27.704000pt;}
.ws25{word-spacing:-27.523733pt;}
.ws34{word-spacing:-27.328000pt;}
.ws42{word-spacing:-26.688000pt;}
.ws8f{word-spacing:-26.048000pt;}
.ws4a{word-spacing:-25.776000pt;}
.ws77{word-spacing:-25.521600pt;}
.ws6d{word-spacing:-25.082933pt;}
.ws3a{word-spacing:-24.956000pt;}
.ws38{word-spacing:-23.217867pt;}
.ws26{word-spacing:-23.168000pt;}
.ws35{word-spacing:-23.156000pt;}
.ws39{word-spacing:-22.390400pt;}
.ws2e{word-spacing:-22.134400pt;}
.ws2f{word-spacing:-22.124800pt;}
.ws53{word-spacing:-21.947200pt;}
.ws7a{word-spacing:-21.558400pt;}
.ws83{word-spacing:-21.253333pt;}
.ws79{word-spacing:-21.239200pt;}
.ws4{word-spacing:-21.055733pt;}
.ws0{word-spacing:-20.791200pt;}
.ws1{word-spacing:-20.603200pt;}
.ws2{word-spacing:-20.599200pt;}
.ws68{word-spacing:-20.288000pt;}
.ws24{word-spacing:-20.279200pt;}
.ws18{word-spacing:-19.776000pt;}
.ws14{word-spacing:-19.184533pt;}
.ws70{word-spacing:-19.008000pt;}
.ws40{word-spacing:-17.925333pt;}
.ws32{word-spacing:-17.728000pt;}
.ws31{word-spacing:-17.658133pt;}
.ws13{word-spacing:-17.080000pt;}
.ws27{word-spacing:-15.286400pt;}
.wsd{word-spacing:-14.725333pt;}
.ws2c{word-spacing:-14.528000pt;}
.ws4c{word-spacing:-14.452000pt;}
.wse{word-spacing:-14.320800pt;}
.ws8b{word-spacing:-13.888000pt;}
.ws56{word-spacing:-12.922133pt;}
.ws5e{word-spacing:-12.608000pt;}
.ws58{word-spacing:-12.275200pt;}
.ws59{word-spacing:-10.048000pt;}
.ws21{word-spacing:-9.598400pt;}
.ws85{word-spacing:-8.870400pt;}
.ws1e{word-spacing:-8.128000pt;}
.ws1d{word-spacing:-7.410400pt;}
.ws63{word-spacing:-7.020000pt;}
.ws7f{word-spacing:-6.213333pt;}
.ws19{word-spacing:-5.943200pt;}
.ws37{word-spacing:-5.878400pt;}
.ws78{word-spacing:-5.745067pt;}
.ws3{word-spacing:-4.602400pt;}
.ws3e{word-spacing:-3.834133pt;}
.ws82{word-spacing:-3.651733pt;}
.ws55{word-spacing:-3.648000pt;}
.ws61{word-spacing:-3.204533pt;}
.ws80{word-spacing:-2.368000pt;}
.wsf{word-spacing:-1.911200pt;}
.ws74{word-spacing:-1.265067pt;}
.ws10{word-spacing:-0.422400pt;}
.ws7e{word-spacing:0.265600pt;}
.ws30{word-spacing:0.644800pt;}
.ws11{word-spacing:0.648800pt;}
.ws72{word-spacing:1.286667pt;}
.ws5c{word-spacing:1.736800pt;}
.ws5d{word-spacing:1.803200pt;}
.ws8c{word-spacing:2.055733pt;}
.ws4d{word-spacing:2.112000pt;}
.ws16{word-spacing:2.450933pt;}
.ws28{word-spacing:2.952267pt;}
.ws76{word-spacing:3.081600pt;}
.ws5a{word-spacing:4.107200pt;}
.ws2d{word-spacing:10.953067pt;}
.ws87{word-spacing:13.626667pt;}
.ws22{word-spacing:14.798400pt;}
.ws2a{word-spacing:16.710400pt;}
.ws84{word-spacing:17.158933pt;}
.ws66{word-spacing:17.796267pt;}
.ws1c{word-spacing:18.106667pt;}
.ws1b{word-spacing:18.560000pt;}
.ws1f{word-spacing:28.352000pt;}
._4{margin-left:-1.008800pt;}
._3{width:0.948800pt;}
._28{width:14.948000pt;}
._5{width:16.121600pt;}
._0{width:17.015200pt;}
._1c{width:18.044800pt;}
._22{width:19.241867pt;}
._1f{width:20.210400pt;}
._16{width:21.186133pt;}
._c{width:22.200000pt;}
._14{width:23.506667pt;}
._21{width:24.433067pt;}
._1d{width:25.780000pt;}
._15{width:27.968000pt;}
._1a{width:29.174400pt;}
._e{width:31.128267pt;}
._b{width:32.048533pt;}
._20{width:32.970667pt;}
._18{width:34.048000pt;}
._6{width:36.514933pt;}
._23{width:38.010133pt;}
._24{width:38.964267pt;}
._11{width:41.088000pt;}
._27{width:43.939200pt;}
._f{width:44.848800pt;}
._1e{width:47.604267pt;}
._7{width:48.823200pt;}
._9{width:50.406400pt;}
._a{width:51.447200pt;}
._26{width:52.535200pt;}
._d{width:53.731733pt;}
._25{width:54.964800pt;}
._19{width:61.870133pt;}
._13{width:64.785867pt;}
._12{width:65.904800pt;}
._17{width:67.769600pt;}
._29{width:68.809067pt;}
._10{width:79.420000pt;}
._8{width:100.884000pt;}
._1{width:848.320000pt;}
._2{width:911.733600pt;}
._1b{width:912.627200pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.066667pt;}
.y7{bottom:64.800000pt;}
.y2f{bottom:115.746667pt;}
.y2e{bottom:134.146667pt;}
.y76{bottom:149.666667pt;}
.y2d{bottom:152.546667pt;}
.y55{bottom:163.266667pt;}
.y75{bottom:168.066667pt;}
.y2c{bottom:170.946667pt;}
.y54{bottom:181.666667pt;}
.y2b{bottom:189.346667pt;}
.y74{bottom:197.188000pt;}
.y2a{bottom:207.746667pt;}
.y53{bottom:210.788000pt;}
.y73{bottom:215.588000pt;}
.y29{bottom:226.146667pt;}
.y72{bottom:233.988000pt;}
.y92{bottom:237.988000pt;}
.y52{bottom:239.746667pt;}
.y28{bottom:244.546667pt;}
.y91{bottom:256.388000pt;}
.y51{bottom:258.146667pt;}
.y27{bottom:262.946667pt;}
.y90{bottom:274.788000pt;}
.y50{bottom:276.546667pt;}
.y26{bottom:281.346667pt;}
.y8f{bottom:293.188000pt;}
.y4f{bottom:294.946667pt;}
.y25{bottom:299.746667pt;}
.y8e{bottom:311.588000pt;}
.y24{bottom:318.146667pt;}
.y4e{bottom:324.066667pt;}
.y71{bottom:328.866667pt;}
.y8d{bottom:329.988000pt;}
.y23{bottom:336.546667pt;}
.y4d{bottom:342.466667pt;}
.y70{bottom:347.266667pt;}
.y8c{bottom:348.388000pt;}
.y22{bottom:354.946667pt;}
.y4c{bottom:360.866667pt;}
.y8b{bottom:366.788000pt;}
.y21{bottom:373.346667pt;}
.y6f{bottom:376.388000pt;}
.y4b{bottom:379.266667pt;}
.y8a{bottom:385.188000pt;}
.y89{bottom:403.588000pt;}
.y6e{bottom:405.346667pt;}
.y4a{bottom:408.388000pt;}
.y88{bottom:421.988000pt;}
.y6d{bottom:423.746667pt;}
.y49{bottom:426.788000pt;}
.y20{bottom:431.588000pt;}
.y87{bottom:440.388000pt;}
.y6c{bottom:442.146667pt;}
.y48{bottom:445.188000pt;}
.y1f{bottom:449.988000pt;}
.y86{bottom:458.788000pt;}
.y1e{bottom:468.388000pt;}
.y6b{bottom:471.266667pt;}
.y47{bottom:474.146667pt;}
.y85{bottom:477.188000pt;}
.y1d{bottom:486.788000pt;}
.y6a{bottom:489.666667pt;}
.y84{bottom:495.588000pt;}
.y46{bottom:503.266667pt;}
.y1c{bottom:505.188000pt;}
.y69{bottom:508.066667pt;}
.y83{bottom:513.988000pt;}
.y45{bottom:532.388000pt;}
.y68{bottom:537.188000pt;}
.y82{bottom:542.946667pt;}
.y44{bottom:550.788000pt;}
.y1b{bottom:552.546667pt;}
.y67{bottom:555.588000pt;}
.y43{bottom:569.188000pt;}
.y1a{bottom:570.946667pt;}
.y81{bottom:572.066667pt;}
.y66{bottom:573.988000pt;}
.y42{bottom:587.588000pt;}
.y19{bottom:589.346667pt;}
.y80{bottom:590.466667pt;}
.y65{bottom:602.946667pt;}
.y41{bottom:605.988000pt;}
.y7f{bottom:608.866667pt;}
.y18{bottom:618.466667pt;}
.y64{bottom:621.346667pt;}
.y40{bottom:624.388000pt;}
.y7e{bottom:627.266667pt;}
.y17{bottom:636.866667pt;}
.y3f{bottom:642.788000pt;}
.y7d{bottom:645.666667pt;}
.y63{bottom:650.466667pt;}
.y16{bottom:655.266667pt;}
.y7c{bottom:664.066667pt;}
.y3e{bottom:671.746667pt;}
.y15{bottom:673.666667pt;}
.y62{bottom:679.588000pt;}
.y14{bottom:692.066667pt;}
.y7b{bottom:693.188000pt;}
.y61{bottom:697.988000pt;}
.y3d{bottom:700.866667pt;}
.y7a{bottom:711.588000pt;}
.y60{bottom:716.388000pt;}
.y3c{bottom:719.266667pt;}
.y13{bottom:721.188000pt;}
.y79{bottom:729.988000pt;}
.y5f{bottom:734.788000pt;}
.y3b{bottom:737.666667pt;}
.y12{bottom:739.588000pt;}
.y78{bottom:748.388000pt;}
.y3a{bottom:756.066667pt;}
.y11{bottom:757.988000pt;}
.y5e{bottom:763.746667pt;}
.y77{bottom:766.788000pt;}
.y10{bottom:776.388000pt;}
.y5d{bottom:782.146667pt;}
.y39{bottom:785.188000pt;}
.yf{bottom:794.788000pt;}
.y5c{bottom:800.546667pt;}
.y38{bottom:803.588000pt;}
.y5b{bottom:818.946667pt;}
.y37{bottom:821.988000pt;}
.ye{bottom:823.746667pt;}
.y5a{bottom:837.346667pt;}
.y36{bottom:840.388000pt;}
.yd{bottom:852.866667pt;}
.y35{bottom:858.788000pt;}
.y59{bottom:866.466667pt;}
.y34{bottom:877.188000pt;}
.yc{bottom:881.988000pt;}
.y58{bottom:884.866667pt;}
.y33{bottom:895.588000pt;}
.y57{bottom:903.266667pt;}
.yb{bottom:910.946667pt;}
.y32{bottom:913.988000pt;}
.y56{bottom:921.666667pt;}
.y31{bottom:932.388000pt;}
.ya{bottom:940.066667pt;}
.y30{bottom:950.788000pt;}
.y9{bottom:969.026667pt;}
.y6{bottom:1006.146667pt;}
.y5{bottom:1024.546667pt;}
.y4{bottom:1042.946667pt;}
.y3{bottom:1061.346667pt;}
.y2{bottom:1079.746667pt;}
.y1{bottom:1098.146667pt;}
.h3{height:17.933333pt;}
.h4{height:40.200130pt;}
.h5{height:43.343750pt;}
.h2{height:43.593750pt;}
.h6{height:44.437500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x9{left:189.440000pt;}
.x3{left:190.400000pt;}
.x6{left:392.960000pt;}
.x2{left:417.800000pt;}
.x8{left:477.760000pt;}
.x5{left:523.678667pt;}
.x4{left:530.720000pt;}
.x7{left:588.800000pt;}
}




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