
    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_497d4e4011f7d9fc2408250d.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_dbfa95b940fcf12833be84fd.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_cd89088dec97760e925f9a32.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);}
.v2{vertical-align:-20.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:17.940000px;}
.ls3{letter-spacing:21.246000px;}
.ls2{letter-spacing:45.720000px;}
.ls1{letter-spacing:47.304000px;}
.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;}
}
.ws11{word-spacing:-55.944000px;}
.ws7{word-spacing:-38.781900px;}
.wsc{word-spacing:-38.726100px;}
.wsb{word-spacing:-38.662800px;}
.ws7c{word-spacing:-38.651400px;}
.ws23{word-spacing:-38.576700px;}
.ws7a{word-spacing:-38.514600px;}
.ws43{word-spacing:-38.435700px;}
.ws7b{word-spacing:-38.373900px;}
.ws3{word-spacing:-38.370300px;}
.ws2e{word-spacing:-38.296500px;}
.ws58{word-spacing:-38.294100px;}
.ws4{word-spacing:-38.293800px;}
.ws56{word-spacing:-38.293200px;}
.ws5{word-spacing:-38.160000px;}
.ws15{word-spacing:-38.149200px;}
.ws63{word-spacing:-38.147400px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws6{word-spacing:-37.941300px;}
.ws67{word-spacing:-37.939500px;}
.ws16{word-spacing:-37.939200px;}
.ws57{word-spacing:-37.937700px;}
.ws52{word-spacing:-37.936800px;}
.ws5a{word-spacing:-37.935900px;}
.ws70{word-spacing:-37.718100px;}
.ws7e{word-spacing:-37.649700px;}
.ws55{word-spacing:-37.640700px;}
.ws5b{word-spacing:-37.431900px;}
.ws18{word-spacing:-37.224000px;}
.ws59{word-spacing:-37.221000px;}
.ws5c{word-spacing:-37.212300px;}
.ws6e{word-spacing:-36.859500px;}
.ws2c{word-spacing:-36.711900px;}
.ws20{word-spacing:-35.281500px;}
.ws6b{word-spacing:-35.268300px;}
.ws2b{word-spacing:-34.841700px;}
.ws5d{word-spacing:-34.708200px;}
.ws73{word-spacing:-34.344000px;}
.ws54{word-spacing:-34.341300px;}
.ws53{word-spacing:-33.980400px;}
.ws6d{word-spacing:-33.260400px;}
.ws7f{word-spacing:-33.050400px;}
.ws31{word-spacing:-32.531400px;}
.ws13{word-spacing:-32.400000px;}
.ws1d{word-spacing:-32.393700px;}
.ws12{word-spacing:-32.391600px;}
.ws3a{word-spacing:-32.190000px;}
.ws42{word-spacing:-32.184000px;}
.ws2a{word-spacing:-31.822800px;}
.ws1f{word-spacing:-31.816500px;}
.ws78{word-spacing:-31.815000px;}
.ws77{word-spacing:-31.464000px;}
.ws19{word-spacing:-31.318200px;}
.ws1e{word-spacing:-31.102800px;}
.ws75{word-spacing:-30.744000px;}
.ws4c{word-spacing:-30.303000px;}
.ws3d{word-spacing:-30.231900px;}
.ws40{word-spacing:-29.653200px;}
.ws65{word-spacing:-29.302200px;}
.ws14{word-spacing:-29.290500px;}
.ws24{word-spacing:-28.222200px;}
.ws34{word-spacing:-27.864600px;}
.ws35{word-spacing:-27.144000px;}
.ws5f{word-spacing:-26.631000px;}
.ws39{word-spacing:-25.704000px;}
.ws74{word-spacing:-24.959700px;}
.ws51{word-spacing:-24.033600px;}
.ws48{word-spacing:-23.897700px;}
.ws60{word-spacing:-23.754600px;}
.ws45{word-spacing:-23.179500px;}
.ws26{word-spacing:-22.459200px;}
.ws1a{word-spacing:-22.453200px;}
.ws76{word-spacing:-22.104000px;}
.ws61{word-spacing:-21.742800px;}
.ws72{word-spacing:-21.384000px;}
.ws3e{word-spacing:-21.159000px;}
.ws3f{word-spacing:-20.868300px;}
.ws6a{word-spacing:-20.633700px;}
.ws6c{word-spacing:-19.944000px;}
.ws3b{word-spacing:-18.361500px;}
.ws66{word-spacing:-18.136800px;}
.ws47{word-spacing:-17.776800px;}
.ws4b{word-spacing:-17.635500px;}
.ws17{word-spacing:-15.262800px;}
.ws33{word-spacing:-15.261900px;}
.ws7d{word-spacing:-14.667600px;}
.ws9{word-spacing:-13.960800px;}
.ws8{word-spacing:-13.686000px;}
.ws4e{word-spacing:-13.095900px;}
.ws69{word-spacing:-12.948300px;}
.ws6f{word-spacing:-12.376800px;}
.ws68{word-spacing:-12.367800px;}
.ws4d{word-spacing:-12.240000px;}
.ws64{word-spacing:-12.157800px;}
.ws4a{word-spacing:-12.024000px;}
.ws46{word-spacing:-10.794600px;}
.ws49{word-spacing:-10.590000px;}
.ws2d{word-spacing:-10.584000px;}
.ws29{word-spacing:-9.496800px;}
.ws32{word-spacing:-9.490500px;}
.ws2f{word-spacing:-9.144000px;}
.ws28{word-spacing:-8.781900px;}
.ws22{word-spacing:-8.050500px;}
.ws62{word-spacing:-8.049600px;}
.ws10{word-spacing:-7.330500px;}
.ws44{word-spacing:-6.971400px;}
.ws30{word-spacing:-6.620100px;}
.ws38{word-spacing:-6.611400px;}
.ws41{word-spacing:-5.037900px;}
.ws71{word-spacing:-4.457700px;}
.ws5e{word-spacing:-4.104000px;}
.ws21{word-spacing:-3.024600px;}
.ws4f{word-spacing:-3.016800px;}
.wsa{word-spacing:-1.569900px;}
.ws36{word-spacing:-1.425600px;}
.ws50{word-spacing:0.000000px;}
.ws79{word-spacing:0.936000px;}
.wse{word-spacing:3.615900px;}
.wsd{word-spacing:4.314000px;}
.ws37{word-spacing:9.576000px;}
.ws1c{word-spacing:10.666800px;}
.ws25{word-spacing:12.456000px;}
.wsf{word-spacing:17.496000px;}
.ws3c{word-spacing:19.451700px;}
.ws27{word-spacing:23.779800px;}
.ws1b{word-spacing:30.456000px;}
.ws1{word-spacing:1037.484900px;}
._3{margin-left:-1.443600px;}
._0{width:1.076400px;}
._a{width:2.113800px;}
._1{width:18.968400px;}
._15{width:20.448000px;}
._e{width:21.744000px;}
._22{width:23.541600px;}
._8{width:24.831600px;}
._d{width:25.848000px;}
._9{width:27.844500px;}
._11{width:29.253300px;}
._27{width:30.297900px;}
._1a{width:31.323600px;}
._20{width:33.401700px;}
._b{width:34.560000px;}
._1d{width:35.850000px;}
._1b{width:38.742600px;}
._1f{width:39.870600px;}
._18{width:41.904000px;}
._2{width:43.918800px;}
._24{width:45.151200px;}
._16{width:46.807200px;}
._17{width:47.880000px;}
._10{width:49.032000px;}
._7{width:50.256000px;}
._1e{width:51.974400px;}
._26{width:53.142300px;}
._f{width:54.148800px;}
._4{width:55.463100px;}
._28{width:58.266000px;}
._23{width:59.711400px;}
._5{width:60.733500px;}
._19{width:67.046400px;}
._c{width:68.311200px;}
._12{width:69.696000px;}
._29{width:73.440000px;}
._6{width:74.448000px;}
._1c{width:76.455900px;}
._21{width:78.185400px;}
._13{width:81.511200px;}
._25{width:88.128000px;}
._14{width:134.066400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs2{font-size:39.000000px;}
.fs1{font-size:46.800000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:3.900000px;}
.y4{bottom:12.240000px;}
.y56{bottom:24.750000px;}
.y60{bottom:24.780000px;}
.y5e{bottom:24.811500px;}
.y5c{bottom:24.840000px;}
.y6d{bottom:24.855000px;}
.y5a{bottom:24.870000px;}
.y64{bottom:24.871500px;}
.y58{bottom:24.900000px;}
.y72{bottom:24.915000px;}
.y74{bottom:25.636500px;}
.y3{bottom:63.975000px;}
.y27{bottom:120.496500px;}
.y52{bottom:121.575000px;}
.y9a{bottom:140.475000px;}
.y26{bottom:141.196500px;}
.y51{bottom:142.275000px;}
.y70{bottom:147.315000px;}
.y25{bottom:161.896500px;}
.y50{bottom:168.015000px;}
.y99{bottom:182.055000px;}
.y24{bottom:182.596500px;}
.y6f{bottom:184.036500px;}
.y6e{bottom:209.775000px;}
.y98{bottom:223.815000px;}
.y23{bottom:224.175000px;}
.y97{bottom:244.515000px;}
.y22{bottom:244.875000px;}
.y6c{bottom:245.400000px;}
.y4f{bottom:247.575000px;}
.y96{bottom:265.215000px;}
.y21{bottom:265.575000px;}
.y4e{bottom:268.275000px;}
.y95{bottom:285.915000px;}
.y20{bottom:286.275000px;}
.y6b{bottom:287.925000px;}
.y4d{bottom:288.975000px;}
.y94{bottom:306.615000px;}
.y1f{bottom:306.975000px;}
.y4c{bottom:309.675000px;}
.y93{bottom:327.315000px;}
.y1e{bottom:327.675000px;}
.y4b{bottom:330.375000px;}
.y92{bottom:348.015000px;}
.y1d{bottom:348.375000px;}
.y4a{bottom:351.075000px;}
.y91{bottom:368.715000px;}
.y1c{bottom:369.075000px;}
.y49{bottom:371.775000px;}
.y6a{bottom:372.825000px;}
.y90{bottom:389.415000px;}
.y1b{bottom:389.775000px;}
.y48{bottom:392.475000px;}
.y8f{bottom:410.115000px;}
.y1a{bottom:410.475000px;}
.y47{bottom:413.175000px;}
.y69{bottom:415.275000px;}
.y8e{bottom:430.815000px;}
.y19{bottom:431.175000px;}
.y8d{bottom:451.515000px;}
.y18{bottom:451.875000px;}
.y46{bottom:454.936500px;}
.y68{bottom:457.725000px;}
.y8c{bottom:472.215000px;}
.y17{bottom:472.575000px;}
.y45{bottom:475.636500px;}
.y44{bottom:496.336500px;}
.y67{bottom:500.175000px;}
.y8b{bottom:513.975000px;}
.y43{bottom:517.036500px;}
.y8a{bottom:534.675000px;}
.y42{bottom:537.736500px;}
.y66{bottom:542.625000px;}
.y89{bottom:555.375000px;}
.y16{bottom:556.096500px;}
.y41{bottom:558.436500px;}
.y88{bottom:576.075000px;}
.y40{bottom:579.136500px;}
.y65{bottom:585.075000px;}
.y87{bottom:596.775000px;}
.y15{bottom:597.675000px;}
.y3f{bottom:599.836500px;}
.y86{bottom:617.475000px;}
.y14{bottom:618.375000px;}
.y3e{bottom:620.536500px;}
.y63{bottom:627.525000px;}
.y85{bottom:638.175000px;}
.y13{bottom:639.075000px;}
.y3d{bottom:641.236500px;}
.y84{bottom:658.875000px;}
.y62{bottom:669.975000px;}
.y12{bottom:680.836500px;}
.y3c{bottom:682.996500px;}
.y83{bottom:700.455000px;}
.y3b{bottom:703.695000px;}
.y61{bottom:712.425000px;}
.y82{bottom:721.155000px;}
.y11{bottom:722.596500px;}
.y3a{bottom:724.396500px;}
.y81{bottom:741.855000px;}
.y10{bottom:743.295000px;}
.y39{bottom:745.096500px;}
.y5f{bottom:754.875000px;}
.y80{bottom:762.555000px;}
.yf{bottom:763.996500px;}
.y38{bottom:765.795000px;}
.y7f{bottom:783.255000px;}
.ye{bottom:784.695000px;}
.y37{bottom:786.496500px;}
.y5d{bottom:797.325000px;}
.y7e{bottom:803.955000px;}
.y36{bottom:807.195000px;}
.y7d{bottom:824.655000px;}
.yd{bottom:826.275000px;}
.y35{bottom:827.895000px;}
.y5b{bottom:839.775000px;}
.y34{bottom:848.596500px;}
.y7c{bottom:866.415000px;}
.yc{bottom:868.036500px;}
.y33{bottom:869.295000px;}
.y59{bottom:882.225000px;}
.y7b{bottom:887.115000px;}
.yb{bottom:888.736500px;}
.y32{bottom:889.995000px;}
.y7a{bottom:907.815000px;}
.ya{bottom:909.436500px;}
.y31{bottom:910.695000px;}
.y57{bottom:924.675000px;}
.y79{bottom:928.515000px;}
.y30{bottom:931.395000px;}
.y78{bottom:949.215000px;}
.y9{bottom:951.195000px;}
.y55{bottom:967.125000px;}
.y77{bottom:969.915000px;}
.y2f{bottom:972.975000px;}
.y76{bottom:990.615000px;}
.y2e{bottom:993.675000px;}
.y53{bottom:1009.575000px;}
.y75{bottom:1011.315000px;}
.y2d{bottom:1014.375000px;}
.y8{bottom:1034.536500px;}
.y2c{bottom:1035.075000px;}
.y2b{bottom:1055.775000px;}
.y7{bottom:1076.295000px;}
.y9b{bottom:1076.836500px;}
.y73{bottom:1090.800000px;}
.y2a{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y29{bottom:1118.236500px;}
.y71{bottom:1134.000000px;}
.y28{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h9{height:21.375000px;}
.h3{height:32.700000px;}
.ha{height:42.375000px;}
.hb{height:42.450000px;}
.hd{height:43.200000px;}
.h7{height:43.297031px;}
.hc{height:43.303031px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:63.457031px;}
.h8{height:65.721070px;}
.h6{height:65.727070px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w4{width:106.425000px;}
.w5{width:298.050000px;}
.w6{width:308.700000px;}
.w3{width:500.100000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.xb{left:53.910000px;}
.xe{left:80.130000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x13{left:156.960000px;}
.x2{left:160.560000px;}
.xd{left:165.600000px;}
.xc{left:170.100000px;}
.x12{left:174.600000px;}
.x11{left:179.100000px;}
.x7{left:212.038500px;}
.xf{left:230.700000px;}
.x5{left:287.820000px;}
.x6{left:301.320000px;}
.x9{left:342.900000px;}
.x8{left:361.080000px;}
.xa{left:392.850000px;}
.x10{left:528.675000px;}
@media print{
.v2{vertical-align:-17.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:15.946667pt;}
.ls3{letter-spacing:18.885333pt;}
.ls2{letter-spacing:40.640000pt;}
.ls1{letter-spacing:42.048000pt;}
.ws11{word-spacing:-49.728000pt;}
.ws7{word-spacing:-34.472800pt;}
.wsc{word-spacing:-34.423200pt;}
.wsb{word-spacing:-34.366933pt;}
.ws7c{word-spacing:-34.356800pt;}
.ws23{word-spacing:-34.290400pt;}
.ws7a{word-spacing:-34.235200pt;}
.ws43{word-spacing:-34.165067pt;}
.ws7b{word-spacing:-34.110133pt;}
.ws3{word-spacing:-34.106933pt;}
.ws2e{word-spacing:-34.041333pt;}
.ws58{word-spacing:-34.039200pt;}
.ws4{word-spacing:-34.038933pt;}
.ws56{word-spacing:-34.038400pt;}
.ws5{word-spacing:-33.920000pt;}
.ws15{word-spacing:-33.910400pt;}
.ws63{word-spacing:-33.908800pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws6{word-spacing:-33.725600pt;}
.ws67{word-spacing:-33.724000pt;}
.ws16{word-spacing:-33.723733pt;}
.ws57{word-spacing:-33.722400pt;}
.ws52{word-spacing:-33.721600pt;}
.ws5a{word-spacing:-33.720800pt;}
.ws70{word-spacing:-33.527200pt;}
.ws7e{word-spacing:-33.466400pt;}
.ws55{word-spacing:-33.458400pt;}
.ws5b{word-spacing:-33.272800pt;}
.ws18{word-spacing:-33.088000pt;}
.ws59{word-spacing:-33.085333pt;}
.ws5c{word-spacing:-33.077600pt;}
.ws6e{word-spacing:-32.764000pt;}
.ws2c{word-spacing:-32.632800pt;}
.ws20{word-spacing:-31.361333pt;}
.ws6b{word-spacing:-31.349600pt;}
.ws2b{word-spacing:-30.970400pt;}
.ws5d{word-spacing:-30.851733pt;}
.ws73{word-spacing:-30.528000pt;}
.ws54{word-spacing:-30.525600pt;}
.ws53{word-spacing:-30.204800pt;}
.ws6d{word-spacing:-29.564800pt;}
.ws7f{word-spacing:-29.378133pt;}
.ws31{word-spacing:-28.916800pt;}
.ws13{word-spacing:-28.800000pt;}
.ws1d{word-spacing:-28.794400pt;}
.ws12{word-spacing:-28.792533pt;}
.ws3a{word-spacing:-28.613333pt;}
.ws42{word-spacing:-28.608000pt;}
.ws2a{word-spacing:-28.286933pt;}
.ws1f{word-spacing:-28.281333pt;}
.ws78{word-spacing:-28.280000pt;}
.ws77{word-spacing:-27.968000pt;}
.ws19{word-spacing:-27.838400pt;}
.ws1e{word-spacing:-27.646933pt;}
.ws75{word-spacing:-27.328000pt;}
.ws4c{word-spacing:-26.936000pt;}
.ws3d{word-spacing:-26.872800pt;}
.ws40{word-spacing:-26.358400pt;}
.ws65{word-spacing:-26.046400pt;}
.ws14{word-spacing:-26.036000pt;}
.ws24{word-spacing:-25.086400pt;}
.ws34{word-spacing:-24.768533pt;}
.ws35{word-spacing:-24.128000pt;}
.ws5f{word-spacing:-23.672000pt;}
.ws39{word-spacing:-22.848000pt;}
.ws74{word-spacing:-22.186400pt;}
.ws51{word-spacing:-21.363200pt;}
.ws48{word-spacing:-21.242400pt;}
.ws60{word-spacing:-21.115200pt;}
.ws45{word-spacing:-20.604000pt;}
.ws26{word-spacing:-19.963733pt;}
.ws1a{word-spacing:-19.958400pt;}
.ws76{word-spacing:-19.648000pt;}
.ws61{word-spacing:-19.326933pt;}
.ws72{word-spacing:-19.008000pt;}
.ws3e{word-spacing:-18.808000pt;}
.ws3f{word-spacing:-18.549600pt;}
.ws6a{word-spacing:-18.341067pt;}
.ws6c{word-spacing:-17.728000pt;}
.ws3b{word-spacing:-16.321333pt;}
.ws66{word-spacing:-16.121600pt;}
.ws47{word-spacing:-15.801600pt;}
.ws4b{word-spacing:-15.676000pt;}
.ws17{word-spacing:-13.566933pt;}
.ws33{word-spacing:-13.566133pt;}
.ws7d{word-spacing:-13.037867pt;}
.ws9{word-spacing:-12.409600pt;}
.ws8{word-spacing:-12.165333pt;}
.ws4e{word-spacing:-11.640800pt;}
.ws69{word-spacing:-11.509600pt;}
.ws6f{word-spacing:-11.001600pt;}
.ws68{word-spacing:-10.993600pt;}
.ws4d{word-spacing:-10.880000pt;}
.ws64{word-spacing:-10.806933pt;}
.ws4a{word-spacing:-10.688000pt;}
.ws46{word-spacing:-9.595200pt;}
.ws49{word-spacing:-9.413333pt;}
.ws2d{word-spacing:-9.408000pt;}
.ws29{word-spacing:-8.441600pt;}
.ws32{word-spacing:-8.436000pt;}
.ws2f{word-spacing:-8.128000pt;}
.ws28{word-spacing:-7.806133pt;}
.ws22{word-spacing:-7.156000pt;}
.ws62{word-spacing:-7.155200pt;}
.ws10{word-spacing:-6.516000pt;}
.ws44{word-spacing:-6.196800pt;}
.ws30{word-spacing:-5.884533pt;}
.ws38{word-spacing:-5.876800pt;}
.ws41{word-spacing:-4.478133pt;}
.ws71{word-spacing:-3.962400pt;}
.ws5e{word-spacing:-3.648000pt;}
.ws21{word-spacing:-2.688533pt;}
.ws4f{word-spacing:-2.681600pt;}
.wsa{word-spacing:-1.395467pt;}
.ws36{word-spacing:-1.267200pt;}
.ws50{word-spacing:0.000000pt;}
.ws79{word-spacing:0.832000pt;}
.wse{word-spacing:3.214133pt;}
.wsd{word-spacing:3.834667pt;}
.ws37{word-spacing:8.512000pt;}
.ws1c{word-spacing:9.481600pt;}
.ws25{word-spacing:11.072000pt;}
.wsf{word-spacing:15.552000pt;}
.ws3c{word-spacing:17.290400pt;}
.ws27{word-spacing:21.137600pt;}
.ws1b{word-spacing:27.072000pt;}
.ws1{word-spacing:922.208800pt;}
._3{margin-left:-1.283200pt;}
._0{width:0.956800pt;}
._a{width:1.878933pt;}
._1{width:16.860800pt;}
._15{width:18.176000pt;}
._e{width:19.328000pt;}
._22{width:20.925867pt;}
._8{width:22.072533pt;}
._d{width:22.976000pt;}
._9{width:24.750667pt;}
._11{width:26.002933pt;}
._27{width:26.931467pt;}
._1a{width:27.843200pt;}
._20{width:29.690400pt;}
._b{width:30.720000pt;}
._1d{width:31.866667pt;}
._1b{width:34.437867pt;}
._1f{width:35.440533pt;}
._18{width:37.248000pt;}
._2{width:39.038933pt;}
._24{width:40.134400pt;}
._16{width:41.606400pt;}
._17{width:42.560000pt;}
._10{width:43.584000pt;}
._7{width:44.672000pt;}
._1e{width:46.199467pt;}
._26{width:47.237600pt;}
._f{width:48.132267pt;}
._4{width:49.300533pt;}
._28{width:51.792000pt;}
._23{width:53.076800pt;}
._5{width:53.985333pt;}
._19{width:59.596800pt;}
._c{width:60.721067pt;}
._12{width:61.952000pt;}
._29{width:65.280000pt;}
._6{width:66.176000pt;}
._1c{width:67.960800pt;}
._21{width:69.498133pt;}
._13{width:72.454400pt;}
._25{width:78.336000pt;}
._14{width:119.170133pt;}
.fs2{font-size:34.666667pt;}
.fs1{font-size:41.600000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:3.466667pt;}
.y4{bottom:10.880000pt;}
.y56{bottom:22.000000pt;}
.y60{bottom:22.026667pt;}
.y5e{bottom:22.054667pt;}
.y5c{bottom:22.080000pt;}
.y6d{bottom:22.093333pt;}
.y5a{bottom:22.106667pt;}
.y64{bottom:22.108000pt;}
.y58{bottom:22.133333pt;}
.y72{bottom:22.146667pt;}
.y74{bottom:22.788000pt;}
.y3{bottom:56.866667pt;}
.y27{bottom:107.108000pt;}
.y52{bottom:108.066667pt;}
.y9a{bottom:124.866667pt;}
.y26{bottom:125.508000pt;}
.y51{bottom:126.466667pt;}
.y70{bottom:130.946667pt;}
.y25{bottom:143.908000pt;}
.y50{bottom:149.346667pt;}
.y99{bottom:161.826667pt;}
.y24{bottom:162.308000pt;}
.y6f{bottom:163.588000pt;}
.y6e{bottom:186.466667pt;}
.y98{bottom:198.946667pt;}
.y23{bottom:199.266667pt;}
.y97{bottom:217.346667pt;}
.y22{bottom:217.666667pt;}
.y6c{bottom:218.133333pt;}
.y4f{bottom:220.066667pt;}
.y96{bottom:235.746667pt;}
.y21{bottom:236.066667pt;}
.y4e{bottom:238.466667pt;}
.y95{bottom:254.146667pt;}
.y20{bottom:254.466667pt;}
.y6b{bottom:255.933333pt;}
.y4d{bottom:256.866667pt;}
.y94{bottom:272.546667pt;}
.y1f{bottom:272.866667pt;}
.y4c{bottom:275.266667pt;}
.y93{bottom:290.946667pt;}
.y1e{bottom:291.266667pt;}
.y4b{bottom:293.666667pt;}
.y92{bottom:309.346667pt;}
.y1d{bottom:309.666667pt;}
.y4a{bottom:312.066667pt;}
.y91{bottom:327.746667pt;}
.y1c{bottom:328.066667pt;}
.y49{bottom:330.466667pt;}
.y6a{bottom:331.400000pt;}
.y90{bottom:346.146667pt;}
.y1b{bottom:346.466667pt;}
.y48{bottom:348.866667pt;}
.y8f{bottom:364.546667pt;}
.y1a{bottom:364.866667pt;}
.y47{bottom:367.266667pt;}
.y69{bottom:369.133333pt;}
.y8e{bottom:382.946667pt;}
.y19{bottom:383.266667pt;}
.y8d{bottom:401.346667pt;}
.y18{bottom:401.666667pt;}
.y46{bottom:404.388000pt;}
.y68{bottom:406.866667pt;}
.y8c{bottom:419.746667pt;}
.y17{bottom:420.066667pt;}
.y45{bottom:422.788000pt;}
.y44{bottom:441.188000pt;}
.y67{bottom:444.600000pt;}
.y8b{bottom:456.866667pt;}
.y43{bottom:459.588000pt;}
.y8a{bottom:475.266667pt;}
.y42{bottom:477.988000pt;}
.y66{bottom:482.333333pt;}
.y89{bottom:493.666667pt;}
.y16{bottom:494.308000pt;}
.y41{bottom:496.388000pt;}
.y88{bottom:512.066667pt;}
.y40{bottom:514.788000pt;}
.y65{bottom:520.066667pt;}
.y87{bottom:530.466667pt;}
.y15{bottom:531.266667pt;}
.y3f{bottom:533.188000pt;}
.y86{bottom:548.866667pt;}
.y14{bottom:549.666667pt;}
.y3e{bottom:551.588000pt;}
.y63{bottom:557.800000pt;}
.y85{bottom:567.266667pt;}
.y13{bottom:568.066667pt;}
.y3d{bottom:569.988000pt;}
.y84{bottom:585.666667pt;}
.y62{bottom:595.533333pt;}
.y12{bottom:605.188000pt;}
.y3c{bottom:607.108000pt;}
.y83{bottom:622.626667pt;}
.y3b{bottom:625.506667pt;}
.y61{bottom:633.266667pt;}
.y82{bottom:641.026667pt;}
.y11{bottom:642.308000pt;}
.y3a{bottom:643.908000pt;}
.y81{bottom:659.426667pt;}
.y10{bottom:660.706667pt;}
.y39{bottom:662.308000pt;}
.y5f{bottom:671.000000pt;}
.y80{bottom:677.826667pt;}
.yf{bottom:679.108000pt;}
.y38{bottom:680.706667pt;}
.y7f{bottom:696.226667pt;}
.ye{bottom:697.506667pt;}
.y37{bottom:699.108000pt;}
.y5d{bottom:708.733333pt;}
.y7e{bottom:714.626667pt;}
.y36{bottom:717.506667pt;}
.y7d{bottom:733.026667pt;}
.yd{bottom:734.466667pt;}
.y35{bottom:735.906667pt;}
.y5b{bottom:746.466667pt;}
.y34{bottom:754.308000pt;}
.y7c{bottom:770.146667pt;}
.yc{bottom:771.588000pt;}
.y33{bottom:772.706667pt;}
.y59{bottom:784.200000pt;}
.y7b{bottom:788.546667pt;}
.yb{bottom:789.988000pt;}
.y32{bottom:791.106667pt;}
.y7a{bottom:806.946667pt;}
.ya{bottom:808.388000pt;}
.y31{bottom:809.506667pt;}
.y57{bottom:821.933333pt;}
.y79{bottom:825.346667pt;}
.y30{bottom:827.906667pt;}
.y78{bottom:843.746667pt;}
.y9{bottom:845.506667pt;}
.y55{bottom:859.666667pt;}
.y77{bottom:862.146667pt;}
.y2f{bottom:864.866667pt;}
.y76{bottom:880.546667pt;}
.y2e{bottom:883.266667pt;}
.y53{bottom:897.400000pt;}
.y75{bottom:898.946667pt;}
.y2d{bottom:901.666667pt;}
.y8{bottom:919.588000pt;}
.y2c{bottom:920.066667pt;}
.y2b{bottom:938.466667pt;}
.y7{bottom:956.706667pt;}
.y9b{bottom:957.188000pt;}
.y73{bottom:969.600000pt;}
.y2a{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y29{bottom:993.988000pt;}
.y71{bottom:1008.000000pt;}
.y28{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h9{height:19.000000pt;}
.h3{height:29.066667pt;}
.ha{height:37.666667pt;}
.hb{height:37.733333pt;}
.hd{height:38.400000pt;}
.h7{height:38.486250pt;}
.hc{height:38.491583pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:56.406250pt;}
.h8{height:58.418729pt;}
.h6{height:58.424062pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w4{width:94.600000pt;}
.w5{width:264.933333pt;}
.w6{width:274.400000pt;}
.w3{width:444.533333pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.xb{left:47.920000pt;}
.xe{left:71.226667pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x13{left:139.520000pt;}
.x2{left:142.720000pt;}
.xd{left:147.200000pt;}
.xc{left:151.200000pt;}
.x12{left:155.200000pt;}
.x11{left:159.200000pt;}
.x7{left:188.478667pt;}
.xf{left:205.066667pt;}
.x5{left:255.840000pt;}
.x6{left:267.840000pt;}
.x9{left:304.800000pt;}
.x8{left:320.960000pt;}
.xa{left:349.200000pt;}
.x10{left:469.933333pt;}
}




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