
    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_9228b6e1ac13eea39a13ed94.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6d5c2213de0812ca76162247.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_8c8c6d5178969dec02a54b2c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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;}
}
.ws9{word-spacing:-55.944000px;}
.ws47{word-spacing:-39.028200px;}
.ws5{word-spacing:-39.007800px;}
.wsa0{word-spacing:-38.878200px;}
.ws8{word-spacing:-38.790000px;}
.wsa1{word-spacing:-38.711700px;}
.ws23{word-spacing:-38.651400px;}
.ws71{word-spacing:-38.645100px;}
.ws50{word-spacing:-38.638800px;}
.ws64{word-spacing:-38.589300px;}
.ws38{word-spacing:-38.436300px;}
.ws1a{word-spacing:-38.426400px;}
.ws3{word-spacing:-38.368800px;}
.ws67{word-spacing:-38.366100px;}
.ws12{word-spacing:-38.357100px;}
.ws40{word-spacing:-38.304000px;}
.ws7c{word-spacing:-38.302200px;}
.wsa2{word-spacing:-38.287800px;}
.ws21{word-spacing:-38.166000px;}
.ws59{word-spacing:-38.160000px;}
.ws53{word-spacing:-38.155500px;}
.ws1b{word-spacing:-38.153400px;}
.ws22{word-spacing:-38.150100px;}
.ws7{word-spacing:-38.144700px;}
.ws15{word-spacing:-38.143800px;}
.ws2{word-spacing:-38.081700px;}
.ws91{word-spacing:-38.078100px;}
.ws6d{word-spacing:-38.069100px;}
.ws0{word-spacing:-37.944000px;}
.ws1c{word-spacing:-37.935000px;}
.ws6{word-spacing:-37.932300px;}
.ws1f{word-spacing:-37.928400px;}
.ws61{word-spacing:-37.926000px;}
.ws44{word-spacing:-37.923300px;}
.ws29{word-spacing:-37.800600px;}
.ws5c{word-spacing:-37.584000px;}
.ws4{word-spacing:-37.575900px;}
.ws2e{word-spacing:-37.433400px;}
.ws27{word-spacing:-36.864000px;}
.ws4b{word-spacing:-36.848700px;}
.ws73{word-spacing:-36.690600px;}
.ws62{word-spacing:-36.200700px;}
.ws39{word-spacing:-36.142200px;}
.wsb{word-spacing:-36.135900px;}
.ws86{word-spacing:-36.128700px;}
.wsc{word-spacing:-36.125400px;}
.wsa{word-spacing:-36.000000px;}
.ws37{word-spacing:-35.758800px;}
.ws9e{word-spacing:-35.486100px;}
.ws57{word-spacing:-35.411400px;}
.ws3e{word-spacing:-35.064000px;}
.ws45{word-spacing:-35.055000px;}
.ws19{word-spacing:-35.046000px;}
.ws25{word-spacing:-34.702200px;}
.ws7f{word-spacing:-34.041600px;}
.ws48{word-spacing:-33.822300px;}
.ws6b{word-spacing:-33.104100px;}
.ws8e{word-spacing:-33.103800px;}
.ws9d{word-spacing:-32.910000px;}
.ws49{word-spacing:-32.542200px;}
.ws3b{word-spacing:-32.394600px;}
.ws5b{word-spacing:-32.171700px;}
.ws52{word-spacing:-31.670700px;}
.ws90{word-spacing:-31.660200px;}
.ws83{word-spacing:-30.888000px;}
.wsd{word-spacing:-30.724800px;}
.ws32{word-spacing:-30.444300px;}
.ws97{word-spacing:-30.086100px;}
.ws65{word-spacing:-30.024000px;}
.ws1e{word-spacing:-29.939700px;}
.ws34{word-spacing:-29.517000px;}
.ws1d{word-spacing:-28.791600px;}
.ws77{word-spacing:-27.843300px;}
.ws8c{word-spacing:-27.510000px;}
.ws24{word-spacing:-27.508200px;}
.ws5d{word-spacing:-27.208800px;}
.ws51{word-spacing:-27.144000px;}
.ws7b{word-spacing:-27.053400px;}
.ws74{word-spacing:-26.553900px;}
.ws5a{word-spacing:-25.908300px;}
.ws98{word-spacing:-25.700100px;}
.ws63{word-spacing:-25.609800px;}
.ws4f{word-spacing:-25.184100px;}
.ws70{word-spacing:-24.984000px;}
.ws31{word-spacing:-24.042600px;}
.ws72{word-spacing:-23.329500px;}
.ws33{word-spacing:-23.256000px;}
.ws6e{word-spacing:-23.176800px;}
.ws2c{word-spacing:-23.022000px;}
.ws2f{word-spacing:-22.318800px;}
.ws85{word-spacing:-22.108200px;}
.ws8d{word-spacing:-21.797100px;}
.ws89{word-spacing:-21.744000px;}
.ws28{word-spacing:-21.384000px;}
.ws20{word-spacing:-21.375000px;}
.ws9f{word-spacing:-21.293100px;}
.ws4a{word-spacing:-20.880000px;}
.ws35{word-spacing:-20.664000px;}
.ws3d{word-spacing:-20.658000px;}
.ws2d{word-spacing:-16.564200px;}
.ws42{word-spacing:-16.044300px;}
.ws7a{word-spacing:-14.904000px;}
.ws6a{word-spacing:-13.812600px;}
.ws68{word-spacing:-13.662300px;}
.ws3c{word-spacing:-11.655000px;}
.ws4e{word-spacing:-11.310000px;}
.ws55{word-spacing:-11.304000px;}
.ws7d{word-spacing:-10.796100px;}
.ws93{word-spacing:-10.584000px;}
.ws66{word-spacing:-10.504800px;}
.ws9b{word-spacing:-10.078200px;}
.ws78{word-spacing:-9.783600px;}
.ws56{word-spacing:-9.358200px;}
.ws82{word-spacing:-8.333100px;}
.ws6f{word-spacing:-8.051100px;}
.ws30{word-spacing:-6.984000px;}
.ws2a{word-spacing:-5.951100px;}
.ws69{word-spacing:-5.764200px;}
.ws18{word-spacing:-5.317200px;}
.ws75{word-spacing:-4.824000px;}
.ws26{word-spacing:-2.158200px;}
.ws96{word-spacing:-2.152800px;}
.ws58{word-spacing:-2.014800px;}
.ws5f{word-spacing:-1.431000px;}
.ws4d{word-spacing:-1.203600px;}
.ws94{word-spacing:-0.857400px;}
.ws36{word-spacing:-0.131400px;}
.ws7e{word-spacing:0.075000px;}
.ws76{word-spacing:0.432000px;}
.ws3a{word-spacing:1.299600px;}
.ws84{word-spacing:1.308600px;}
.ws9c{word-spacing:1.448100px;}
.ws14{word-spacing:3.816000px;}
.ws92{word-spacing:3.898500px;}
.ws13{word-spacing:4.320000px;}
.ws2b{word-spacing:4.842900px;}
.ws60{word-spacing:5.050800px;}
.ws5e{word-spacing:5.970000px;}
.ws80{word-spacing:7.776000px;}
.ws3f{word-spacing:8.131800px;}
.ws88{word-spacing:8.514900px;}
.ws54{word-spacing:9.591300px;}
.ws95{word-spacing:10.296000px;}
.wse{word-spacing:12.240000px;}
.wsf{word-spacing:12.396300px;}
.ws9a{word-spacing:12.456000px;}
.ws99{word-spacing:13.244700px;}
.ws41{word-spacing:17.288100px;}
.ws46{word-spacing:17.490000px;}
.ws8f{word-spacing:17.867700px;}
.ws87{word-spacing:18.008100px;}
.ws6c{word-spacing:19.242900px;}
.ws4c{word-spacing:20.023200px;}
.ws11{word-spacing:23.775900px;}
.ws10{word-spacing:23.977800px;}
.ws79{word-spacing:24.697800px;}
.ws8a{word-spacing:27.155700px;}
.ws43{word-spacing:28.074000px;}
.ws81{word-spacing:32.990400px;}
.ws17{word-spacing:33.338700px;}
.ws16{word-spacing:33.858900px;}
.ws8b{word-spacing:42.702000px;}
.ws1{word-spacing:1037.484900px;}
._21{margin-left:-2.284200px;}
._2{margin-left:-1.156500px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._e{width:20.514000px;}
._a{width:22.251600px;}
._1b{width:23.385900px;}
._15{width:24.900600px;}
._5{width:26.332800px;}
._b{width:28.131300px;}
._d{width:29.664000px;}
._25{width:30.873900px;}
._1f{width:32.071500px;}
._11{width:33.102000px;}
._f{width:34.614000px;}
._c{width:35.832600px;}
._3{width:37.268100px;}
._4{width:41.459400px;}
._23{width:44.152500px;}
._16{width:45.423000px;}
._1e{width:46.608600px;}
._20{width:47.665800px;}
._24{width:49.032000px;}
._10{width:50.040000px;}
._9{width:51.912000px;}
._2c{width:54.930000px;}
._1d{width:55.944000px;}
._13{width:57.275400px;}
._14{width:58.312800px;}
._8{width:61.200000px;}
._22{width:62.352000px;}
._18{width:65.226000px;}
._17{width:66.316500px;}
._2b{width:67.464000px;}
._6{width:69.480000px;}
._12{width:72.391500px;}
._19{width:74.278800px;}
._2a{width:75.321000px;}
._1c{width:77.227200px;}
._7{width:81.072000px;}
._26{width:82.080000px;}
._28{width:84.384000px;}
._1a{width:85.795200px;}
._27{width:90.072000px;}
._29{width:99.648000px;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(31,31,31);}
.fc3{color:rgb(32,33,36);}
.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;}
.y87{bottom:100.875000px;}
.y86{bottom:121.575000px;}
.y51{bottom:121.936500px;}
.y85{bottom:142.275000px;}
.y50{bottom:142.636500px;}
.y28{bottom:162.436500px;}
.y73{bottom:162.796500px;}
.y4f{bottom:163.336500px;}
.y27{bottom:183.136500px;}
.y72{bottom:183.496500px;}
.y84{bottom:184.036500px;}
.y26{bottom:203.836500px;}
.y71{bottom:204.196500px;}
.y83{bottom:204.736500px;}
.y4e{bottom:205.096500px;}
.y25{bottom:224.536500px;}
.y82{bottom:225.436500px;}
.y4d{bottom:225.795000px;}
.y24{bottom:245.236500px;}
.y70{bottom:245.775000px;}
.y81{bottom:246.136500px;}
.y4c{bottom:246.496500px;}
.y80{bottom:266.836500px;}
.y4b{bottom:267.196500px;}
.y98{bottom:286.096500px;}
.y23{bottom:286.815000px;}
.y6f{bottom:287.536500px;}
.y4a{bottom:287.896500px;}
.y22{bottom:307.515000px;}
.y6e{bottom:308.236500px;}
.y7f{bottom:308.596500px;}
.y97{bottom:327.675000px;}
.y21{bottom:328.215000px;}
.y6d{bottom:328.936500px;}
.y7e{bottom:329.295000px;}
.y49{bottom:329.475000px;}
.y20{bottom:348.915000px;}
.y6c{bottom:349.636500px;}
.y7d{bottom:349.996500px;}
.y48{bottom:350.175000px;}
.y96{bottom:369.436500px;}
.y1f{bottom:369.615000px;}
.y7c{bottom:370.696500px;}
.y47{bottom:370.875000px;}
.y1e{bottom:390.315000px;}
.y6b{bottom:391.396500px;}
.y46{bottom:391.575000px;}
.y95{bottom:411.196500px;}
.y6a{bottom:412.096500px;}
.y1d{bottom:432.075000px;}
.y69{bottom:432.795000px;}
.y7b{bottom:432.975000px;}
.y45{bottom:433.336500px;}
.y1c{bottom:452.775000px;}
.y68{bottom:453.496500px;}
.y7a{bottom:453.675000px;}
.y44{bottom:454.036500px;}
.y1b{bottom:473.475000px;}
.y43{bottom:474.736500px;}
.y1a{bottom:494.175000px;}
.y94{bottom:494.536500px;}
.y67{bottom:495.075000px;}
.y79{bottom:495.436500px;}
.y19{bottom:514.875000px;}
.y66{bottom:515.775000px;}
.y78{bottom:516.136500px;}
.y42{bottom:516.496500px;}
.y18{bottom:535.575000px;}
.y93{bottom:536.296500px;}
.y65{bottom:536.475000px;}
.y77{bottom:536.836500px;}
.y41{bottom:537.195000px;}
.y17{bottom:556.275000px;}
.y76{bottom:557.536500px;}
.y40{bottom:557.896500px;}
.y16{bottom:576.975000px;}
.y92{bottom:577.875000px;}
.y64{bottom:578.236500px;}
.y3f{bottom:578.596500px;}
.y15{bottom:597.675000px;}
.y63{bottom:598.936500px;}
.y14{bottom:618.375000px;}
.y62{bottom:619.636500px;}
.y75{bottom:619.996500px;}
.y3e{bottom:620.175000px;}
.y13{bottom:639.075000px;}
.y74{bottom:640.695000px;}
.y3d{bottom:640.875000px;}
.y12{bottom:659.775000px;}
.y61{bottom:661.396500px;}
.y3c{bottom:661.575000px;}
.y60{bottom:682.096500px;}
.y3b{bottom:682.275000px;}
.y11{bottom:701.536500px;}
.y5f{bottom:702.795000px;}
.y91{bottom:702.975000px;}
.y10{bottom:722.236500px;}
.y3a{bottom:724.036500px;}
.yf{bottom:742.936500px;}
.y5e{bottom:744.375000px;}
.y39{bottom:744.736500px;}
.ye{bottom:763.636500px;}
.y5d{bottom:765.075000px;}
.y38{bottom:765.436500px;}
.yd{bottom:784.336500px;}
.y5c{bottom:785.775000px;}
.y90{bottom:786.136500px;}
.y5b{bottom:806.475000px;}
.y8f{bottom:806.836500px;}
.y37{bottom:807.195000px;}
.yc{bottom:825.915000px;}
.y8e{bottom:827.536500px;}
.y36{bottom:827.895000px;}
.yb{bottom:846.615000px;}
.y5a{bottom:848.236500px;}
.y35{bottom:848.596500px;}
.y59{bottom:868.936500px;}
.y8d{bottom:869.295000px;}
.y58{bottom:889.636500px;}
.y8c{bottom:889.995000px;}
.y34{bottom:890.175000px;}
.y8b{bottom:910.695000px;}
.y33{bottom:910.875000px;}
.y57{bottom:931.395000px;}
.y32{bottom:931.575000px;}
.ya{bottom:951.195000px;}
.y56{bottom:952.095000px;}
.y55{bottom:972.795000px;}
.y31{bottom:973.336500px;}
.y9{bottom:992.775000px;}
.y8a{bottom:993.675000px;}
.y30{bottom:994.036500px;}
.y54{bottom:1014.375000px;}
.y2f{bottom:1014.736500px;}
.y8{bottom:1034.536500px;}
.y53{bottom:1035.075000px;}
.y2e{bottom:1035.436500px;}
.y52{bottom:1055.775000px;}
.y2d{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y89{bottom:1076.475000px;}
.y2c{bottom:1076.836500px;}
.y88{bottom:1097.175000px;}
.y2b{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y2a{bottom:1118.236500px;}
.y29{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:63.457031px;}
.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:143.100000px;}
.xa{left:154.980000px;}
.x2{left:160.560000px;}
.x7{left:277.380000px;}
.x5{left:347.400000px;}
.x6{left:375.300000px;}
.x9{left:393.300000px;}
.x8{left:398.520000px;}
.xb{left:404.460000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws9{word-spacing:-49.728000pt;}
.ws47{word-spacing:-34.691733pt;}
.ws5{word-spacing:-34.673600pt;}
.wsa0{word-spacing:-34.558400pt;}
.ws8{word-spacing:-34.480000pt;}
.wsa1{word-spacing:-34.410400pt;}
.ws23{word-spacing:-34.356800pt;}
.ws71{word-spacing:-34.351200pt;}
.ws50{word-spacing:-34.345600pt;}
.ws64{word-spacing:-34.301600pt;}
.ws38{word-spacing:-34.165600pt;}
.ws1a{word-spacing:-34.156800pt;}
.ws3{word-spacing:-34.105600pt;}
.ws67{word-spacing:-34.103200pt;}
.ws12{word-spacing:-34.095200pt;}
.ws40{word-spacing:-34.048000pt;}
.ws7c{word-spacing:-34.046400pt;}
.wsa2{word-spacing:-34.033600pt;}
.ws21{word-spacing:-33.925333pt;}
.ws59{word-spacing:-33.920000pt;}
.ws53{word-spacing:-33.916000pt;}
.ws1b{word-spacing:-33.914133pt;}
.ws22{word-spacing:-33.911200pt;}
.ws7{word-spacing:-33.906400pt;}
.ws15{word-spacing:-33.905600pt;}
.ws2{word-spacing:-33.850400pt;}
.ws91{word-spacing:-33.847200pt;}
.ws6d{word-spacing:-33.839200pt;}
.ws0{word-spacing:-33.728000pt;}
.ws1c{word-spacing:-33.720000pt;}
.ws6{word-spacing:-33.717600pt;}
.ws1f{word-spacing:-33.714133pt;}
.ws61{word-spacing:-33.712000pt;}
.ws44{word-spacing:-33.709600pt;}
.ws29{word-spacing:-33.600533pt;}
.ws5c{word-spacing:-33.408000pt;}
.ws4{word-spacing:-33.400800pt;}
.ws2e{word-spacing:-33.274133pt;}
.ws27{word-spacing:-32.768000pt;}
.ws4b{word-spacing:-32.754400pt;}
.ws73{word-spacing:-32.613867pt;}
.ws62{word-spacing:-32.178400pt;}
.ws39{word-spacing:-32.126400pt;}
.wsb{word-spacing:-32.120800pt;}
.ws86{word-spacing:-32.114400pt;}
.wsc{word-spacing:-32.111467pt;}
.wsa{word-spacing:-32.000000pt;}
.ws37{word-spacing:-31.785600pt;}
.ws9e{word-spacing:-31.543200pt;}
.ws57{word-spacing:-31.476800pt;}
.ws3e{word-spacing:-31.168000pt;}
.ws45{word-spacing:-31.160000pt;}
.ws19{word-spacing:-31.152000pt;}
.ws25{word-spacing:-30.846400pt;}
.ws7f{word-spacing:-30.259200pt;}
.ws48{word-spacing:-30.064267pt;}
.ws6b{word-spacing:-29.425867pt;}
.ws8e{word-spacing:-29.425600pt;}
.ws9d{word-spacing:-29.253333pt;}
.ws49{word-spacing:-28.926400pt;}
.ws3b{word-spacing:-28.795200pt;}
.ws5b{word-spacing:-28.597067pt;}
.ws52{word-spacing:-28.151733pt;}
.ws90{word-spacing:-28.142400pt;}
.ws83{word-spacing:-27.456000pt;}
.wsd{word-spacing:-27.310933pt;}
.ws32{word-spacing:-27.061600pt;}
.ws97{word-spacing:-26.743200pt;}
.ws65{word-spacing:-26.688000pt;}
.ws1e{word-spacing:-26.613067pt;}
.ws34{word-spacing:-26.237333pt;}
.ws1d{word-spacing:-25.592533pt;}
.ws77{word-spacing:-24.749600pt;}
.ws8c{word-spacing:-24.453333pt;}
.ws24{word-spacing:-24.451733pt;}
.ws5d{word-spacing:-24.185600pt;}
.ws51{word-spacing:-24.128000pt;}
.ws7b{word-spacing:-24.047467pt;}
.ws74{word-spacing:-23.603467pt;}
.ws5a{word-spacing:-23.029600pt;}
.ws98{word-spacing:-22.844533pt;}
.ws63{word-spacing:-22.764267pt;}
.ws4f{word-spacing:-22.385867pt;}
.ws70{word-spacing:-22.208000pt;}
.ws31{word-spacing:-21.371200pt;}
.ws72{word-spacing:-20.737333pt;}
.ws33{word-spacing:-20.672000pt;}
.ws6e{word-spacing:-20.601600pt;}
.ws2c{word-spacing:-20.464000pt;}
.ws2f{word-spacing:-19.838933pt;}
.ws85{word-spacing:-19.651733pt;}
.ws8d{word-spacing:-19.375200pt;}
.ws89{word-spacing:-19.328000pt;}
.ws28{word-spacing:-19.008000pt;}
.ws20{word-spacing:-19.000000pt;}
.ws9f{word-spacing:-18.927200pt;}
.ws4a{word-spacing:-18.560000pt;}
.ws35{word-spacing:-18.368000pt;}
.ws3d{word-spacing:-18.362667pt;}
.ws2d{word-spacing:-14.723733pt;}
.ws42{word-spacing:-14.261600pt;}
.ws7a{word-spacing:-13.248000pt;}
.ws6a{word-spacing:-12.277867pt;}
.ws68{word-spacing:-12.144267pt;}
.ws3c{word-spacing:-10.360000pt;}
.ws4e{word-spacing:-10.053333pt;}
.ws55{word-spacing:-10.048000pt;}
.ws7d{word-spacing:-9.596533pt;}
.ws93{word-spacing:-9.408000pt;}
.ws66{word-spacing:-9.337600pt;}
.ws9b{word-spacing:-8.958400pt;}
.ws78{word-spacing:-8.696533pt;}
.ws56{word-spacing:-8.318400pt;}
.ws82{word-spacing:-7.407200pt;}
.ws6f{word-spacing:-7.156533pt;}
.ws30{word-spacing:-6.208000pt;}
.ws2a{word-spacing:-5.289867pt;}
.ws69{word-spacing:-5.123733pt;}
.ws18{word-spacing:-4.726400pt;}
.ws75{word-spacing:-4.288000pt;}
.ws26{word-spacing:-1.918400pt;}
.ws96{word-spacing:-1.913600pt;}
.ws58{word-spacing:-1.790933pt;}
.ws5f{word-spacing:-1.272000pt;}
.ws4d{word-spacing:-1.069867pt;}
.ws94{word-spacing:-0.762133pt;}
.ws36{word-spacing:-0.116800pt;}
.ws7e{word-spacing:0.066667pt;}
.ws76{word-spacing:0.384000pt;}
.ws3a{word-spacing:1.155200pt;}
.ws84{word-spacing:1.163200pt;}
.ws9c{word-spacing:1.287200pt;}
.ws14{word-spacing:3.392000pt;}
.ws92{word-spacing:3.465333pt;}
.ws13{word-spacing:3.840000pt;}
.ws2b{word-spacing:4.304800pt;}
.ws60{word-spacing:4.489600pt;}
.ws5e{word-spacing:5.306667pt;}
.ws80{word-spacing:6.912000pt;}
.ws3f{word-spacing:7.228267pt;}
.ws88{word-spacing:7.568800pt;}
.ws54{word-spacing:8.525600pt;}
.ws95{word-spacing:9.152000pt;}
.wse{word-spacing:10.880000pt;}
.wsf{word-spacing:11.018933pt;}
.ws9a{word-spacing:11.072000pt;}
.ws99{word-spacing:11.773067pt;}
.ws41{word-spacing:15.367200pt;}
.ws46{word-spacing:15.546667pt;}
.ws8f{word-spacing:15.882400pt;}
.ws87{word-spacing:16.007200pt;}
.ws6c{word-spacing:17.104800pt;}
.ws4c{word-spacing:17.798400pt;}
.ws11{word-spacing:21.134133pt;}
.ws10{word-spacing:21.313600pt;}
.ws79{word-spacing:21.953600pt;}
.ws8a{word-spacing:24.138400pt;}
.ws43{word-spacing:24.954667pt;}
.ws81{word-spacing:29.324800pt;}
.ws17{word-spacing:29.634400pt;}
.ws16{word-spacing:30.096800pt;}
.ws8b{word-spacing:37.957333pt;}
.ws1{word-spacing:922.208800pt;}
._21{margin-left:-2.030400pt;}
._2{margin-left:-1.028000pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._e{width:18.234667pt;}
._a{width:19.779200pt;}
._1b{width:20.787467pt;}
._15{width:22.133867pt;}
._5{width:23.406933pt;}
._b{width:25.005600pt;}
._d{width:26.368000pt;}
._25{width:27.443467pt;}
._1f{width:28.508000pt;}
._11{width:29.424000pt;}
._f{width:30.768000pt;}
._c{width:31.851200pt;}
._3{width:33.127200pt;}
._4{width:36.852800pt;}
._23{width:39.246667pt;}
._16{width:40.376000pt;}
._1e{width:41.429867pt;}
._20{width:42.369600pt;}
._24{width:43.584000pt;}
._10{width:44.480000pt;}
._9{width:46.144000pt;}
._2c{width:48.826667pt;}
._1d{width:49.728000pt;}
._13{width:50.911467pt;}
._14{width:51.833600pt;}
._8{width:54.400000pt;}
._22{width:55.424000pt;}
._18{width:57.978667pt;}
._17{width:58.948000pt;}
._2b{width:59.968000pt;}
._6{width:61.760000pt;}
._12{width:64.348000pt;}
._19{width:66.025600pt;}
._2a{width:66.952000pt;}
._1c{width:68.646400pt;}
._7{width:72.064000pt;}
._26{width:72.960000pt;}
._28{width:75.008000pt;}
._1a{width:76.262400pt;}
._27{width:80.064000pt;}
._29{width:88.576000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y87{bottom:89.666667pt;}
.y86{bottom:108.066667pt;}
.y51{bottom:108.388000pt;}
.y85{bottom:126.466667pt;}
.y50{bottom:126.788000pt;}
.y28{bottom:144.388000pt;}
.y73{bottom:144.708000pt;}
.y4f{bottom:145.188000pt;}
.y27{bottom:162.788000pt;}
.y72{bottom:163.108000pt;}
.y84{bottom:163.588000pt;}
.y26{bottom:181.188000pt;}
.y71{bottom:181.508000pt;}
.y83{bottom:181.988000pt;}
.y4e{bottom:182.308000pt;}
.y25{bottom:199.588000pt;}
.y82{bottom:200.388000pt;}
.y4d{bottom:200.706667pt;}
.y24{bottom:217.988000pt;}
.y70{bottom:218.466667pt;}
.y81{bottom:218.788000pt;}
.y4c{bottom:219.108000pt;}
.y80{bottom:237.188000pt;}
.y4b{bottom:237.508000pt;}
.y98{bottom:254.308000pt;}
.y23{bottom:254.946667pt;}
.y6f{bottom:255.588000pt;}
.y4a{bottom:255.908000pt;}
.y22{bottom:273.346667pt;}
.y6e{bottom:273.988000pt;}
.y7f{bottom:274.308000pt;}
.y97{bottom:291.266667pt;}
.y21{bottom:291.746667pt;}
.y6d{bottom:292.388000pt;}
.y7e{bottom:292.706667pt;}
.y49{bottom:292.866667pt;}
.y20{bottom:310.146667pt;}
.y6c{bottom:310.788000pt;}
.y7d{bottom:311.108000pt;}
.y48{bottom:311.266667pt;}
.y96{bottom:328.388000pt;}
.y1f{bottom:328.546667pt;}
.y7c{bottom:329.508000pt;}
.y47{bottom:329.666667pt;}
.y1e{bottom:346.946667pt;}
.y6b{bottom:347.908000pt;}
.y46{bottom:348.066667pt;}
.y95{bottom:365.508000pt;}
.y6a{bottom:366.308000pt;}
.y1d{bottom:384.066667pt;}
.y69{bottom:384.706667pt;}
.y7b{bottom:384.866667pt;}
.y45{bottom:385.188000pt;}
.y1c{bottom:402.466667pt;}
.y68{bottom:403.108000pt;}
.y7a{bottom:403.266667pt;}
.y44{bottom:403.588000pt;}
.y1b{bottom:420.866667pt;}
.y43{bottom:421.988000pt;}
.y1a{bottom:439.266667pt;}
.y94{bottom:439.588000pt;}
.y67{bottom:440.066667pt;}
.y79{bottom:440.388000pt;}
.y19{bottom:457.666667pt;}
.y66{bottom:458.466667pt;}
.y78{bottom:458.788000pt;}
.y42{bottom:459.108000pt;}
.y18{bottom:476.066667pt;}
.y93{bottom:476.708000pt;}
.y65{bottom:476.866667pt;}
.y77{bottom:477.188000pt;}
.y41{bottom:477.506667pt;}
.y17{bottom:494.466667pt;}
.y76{bottom:495.588000pt;}
.y40{bottom:495.908000pt;}
.y16{bottom:512.866667pt;}
.y92{bottom:513.666667pt;}
.y64{bottom:513.988000pt;}
.y3f{bottom:514.308000pt;}
.y15{bottom:531.266667pt;}
.y63{bottom:532.388000pt;}
.y14{bottom:549.666667pt;}
.y62{bottom:550.788000pt;}
.y75{bottom:551.108000pt;}
.y3e{bottom:551.266667pt;}
.y13{bottom:568.066667pt;}
.y74{bottom:569.506667pt;}
.y3d{bottom:569.666667pt;}
.y12{bottom:586.466667pt;}
.y61{bottom:587.908000pt;}
.y3c{bottom:588.066667pt;}
.y60{bottom:606.308000pt;}
.y3b{bottom:606.466667pt;}
.y11{bottom:623.588000pt;}
.y5f{bottom:624.706667pt;}
.y91{bottom:624.866667pt;}
.y10{bottom:641.988000pt;}
.y3a{bottom:643.588000pt;}
.yf{bottom:660.388000pt;}
.y5e{bottom:661.666667pt;}
.y39{bottom:661.988000pt;}
.ye{bottom:678.788000pt;}
.y5d{bottom:680.066667pt;}
.y38{bottom:680.388000pt;}
.yd{bottom:697.188000pt;}
.y5c{bottom:698.466667pt;}
.y90{bottom:698.788000pt;}
.y5b{bottom:716.866667pt;}
.y8f{bottom:717.188000pt;}
.y37{bottom:717.506667pt;}
.yc{bottom:734.146667pt;}
.y8e{bottom:735.588000pt;}
.y36{bottom:735.906667pt;}
.yb{bottom:752.546667pt;}
.y5a{bottom:753.988000pt;}
.y35{bottom:754.308000pt;}
.y59{bottom:772.388000pt;}
.y8d{bottom:772.706667pt;}
.y58{bottom:790.788000pt;}
.y8c{bottom:791.106667pt;}
.y34{bottom:791.266667pt;}
.y8b{bottom:809.506667pt;}
.y33{bottom:809.666667pt;}
.y57{bottom:827.906667pt;}
.y32{bottom:828.066667pt;}
.ya{bottom:845.506667pt;}
.y56{bottom:846.306667pt;}
.y55{bottom:864.706667pt;}
.y31{bottom:865.188000pt;}
.y9{bottom:882.466667pt;}
.y8a{bottom:883.266667pt;}
.y30{bottom:883.588000pt;}
.y54{bottom:901.666667pt;}
.y2f{bottom:901.988000pt;}
.y8{bottom:919.588000pt;}
.y53{bottom:920.066667pt;}
.y2e{bottom:920.388000pt;}
.y52{bottom:938.466667pt;}
.y2d{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y89{bottom:956.866667pt;}
.y2c{bottom:957.188000pt;}
.y88{bottom:975.266667pt;}
.y2b{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y2a{bottom:993.988000pt;}
.y29{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:56.406250pt;}
.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:127.200000pt;}
.xa{left:137.760000pt;}
.x2{left:142.720000pt;}
.x7{left:246.560000pt;}
.x5{left:308.800000pt;}
.x6{left:333.600000pt;}
.x9{left:349.600000pt;}
.x8{left:354.240000pt;}
.xb{left:359.520000pt;}
}




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