
    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_0b20a567dfa7ade4796c38ee.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_48a65c38ba0fd951aa4a8f20.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_196e0e603b3930da6d995ad2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_040a5d54d032c4053d183b89.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
}
.ws26{word-spacing:-55.944000px;}
.ws2c{word-spacing:-38.661300px;}
.ws6{word-spacing:-38.657700px;}
.ws55{word-spacing:-38.656800px;}
.ws68{word-spacing:-38.656500px;}
.ws14{word-spacing:-38.653200px;}
.ws43{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.ws87{word-spacing:-38.647200px;}
.ws39{word-spacing:-38.645100px;}
.ws7d{word-spacing:-38.638200px;}
.ws50{word-spacing:-38.444400px;}
.ws4c{word-spacing:-38.441700px;}
.ws41{word-spacing:-38.440800px;}
.wsb{word-spacing:-38.437200px;}
.ws9{word-spacing:-38.434500px;}
.ws3{word-spacing:-38.374200px;}
.ws84{word-spacing:-38.364300px;}
.ws82{word-spacing:-38.359800px;}
.ws1b{word-spacing:-38.298300px;}
.ws56{word-spacing:-38.164200px;}
.ws23{word-spacing:-38.160000px;}
.ws67{word-spacing:-38.154000px;}
.ws13{word-spacing:-38.151900px;}
.ws4b{word-spacing:-38.149200px;}
.ws0{word-spacing:-37.944000px;}
.ws3e{word-spacing:-37.940400px;}
.ws58{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.wsa{word-spacing:-37.935900px;}
.ws12{word-spacing:-37.933800px;}
.ws75{word-spacing:-37.932600px;}
.wsc{word-spacing:-37.932300px;}
.ws2{word-spacing:-37.931400px;}
.ws1a{word-spacing:-37.927800px;}
.ws86{word-spacing:-37.920600px;}
.ws1e{word-spacing:-37.851300px;}
.ws69{word-spacing:-37.440000px;}
.ws6e{word-spacing:-37.438200px;}
.ws65{word-spacing:-37.230000px;}
.ws66{word-spacing:-37.215000px;}
.ws28{word-spacing:-36.495000px;}
.ws79{word-spacing:-35.782200px;}
.ws6f{word-spacing:-35.561700px;}
.ws4f{word-spacing:-35.560800px;}
.ws46{word-spacing:-35.276400px;}
.ws7c{word-spacing:-35.058600px;}
.ws70{word-spacing:-35.056800px;}
.ws2d{word-spacing:-34.841700px;}
.ws6c{word-spacing:-34.344000px;}
.ws62{word-spacing:-34.329600px;}
.ws80{word-spacing:-34.121700px;}
.ws59{word-spacing:-34.117200px;}
.ws8{word-spacing:-33.547800px;}
.ws7a{word-spacing:-33.401400px;}
.ws21{word-spacing:-33.120000px;}
.ws22{word-spacing:-33.116400px;}
.ws7b{word-spacing:-32.904000px;}
.ws40{word-spacing:-32.184000px;}
.ws6b{word-spacing:-32.166000px;}
.ws10{word-spacing:-32.165100px;}
.wse{word-spacing:-31.458600px;}
.ws5b{word-spacing:-30.960000px;}
.ws61{word-spacing:-30.957000px;}
.ws6a{word-spacing:-30.945600px;}
.wsd{word-spacing:-30.941100px;}
.ws53{word-spacing:-30.744000px;}
.ws85{word-spacing:-30.743100px;}
.ws15{word-spacing:-30.240000px;}
.ws2e{word-spacing:-30.016800px;}
.ws4d{word-spacing:-29.801700px;}
.ws29{word-spacing:-29.800800px;}
.ws16{word-spacing:-29.448000px;}
.ws63{word-spacing:-29.298600px;}
.ws60{word-spacing:-29.295000px;}
.ws30{word-spacing:-29.285100px;}
.ws38{word-spacing:-29.079600px;}
.ws5a{word-spacing:-28.578600px;}
.ws73{word-spacing:-28.500300px;}
.ws4e{word-spacing:-27.859500px;}
.ws2a{word-spacing:-27.855600px;}
.ws3a{word-spacing:-27.641700px;}
.ws81{word-spacing:-27.138600px;}
.ws48{word-spacing:-26.425500px;}
.ws54{word-spacing:-26.422200px;}
.wsf{word-spacing:-26.411100px;}
.ws3c{word-spacing:-26.202600px;}
.ws37{word-spacing:-25.704600px;}
.ws36{word-spacing:-25.686000px;}
.ws77{word-spacing:-25.486800px;}
.ws78{word-spacing:-25.206000px;}
.ws2b{word-spacing:-24.755400px;}
.ws5f{word-spacing:-24.754800px;}
.ws20{word-spacing:-24.466800px;}
.ws1f{word-spacing:-24.463800px;}
.ws5e{word-spacing:-23.535000px;}
.ws3b{word-spacing:-23.526000px;}
.ws7e{word-spacing:-22.821000px;}
.ws49{word-spacing:-22.816800px;}
.ws4a{word-spacing:-22.101000px;}
.ws45{word-spacing:-21.384000px;}
.ws3f{word-spacing:-21.378600px;}
.ws6d{word-spacing:-21.308400px;}
.ws64{word-spacing:-21.166200px;}
.ws27{word-spacing:-20.441700px;}
.ws35{word-spacing:-19.935000px;}
.ws2f{word-spacing:-19.720800px;}
.ws71{word-spacing:-18.491400px;}
.ws7{word-spacing:-18.472500px;}
.ws33{word-spacing:-17.045100px;}
.ws3d{word-spacing:-16.566000px;}
.ws17{word-spacing:-15.980400px;}
.ws34{word-spacing:-15.840000px;}
.ws5c{word-spacing:-15.617400px;}
.ws42{word-spacing:-15.608400px;}
.ws32{word-spacing:-15.604200px;}
.ws7f{word-spacing:-15.551700px;}
.ws5d{word-spacing:-14.891400px;}
.ws31{word-spacing:-14.880600px;}
.ws57{word-spacing:-14.680800px;}
.ws52{word-spacing:-14.178600px;}
.ws76{word-spacing:-13.470000px;}
.ws72{word-spacing:-12.004200px;}
.ws47{word-spacing:-11.801700px;}
.ws18{word-spacing:-9.357000px;}
.ws25{word-spacing:-8.400600px;}
.ws24{word-spacing:-7.907400px;}
.ws74{word-spacing:-7.196400px;}
.ws51{word-spacing:-3.372300px;}
.ws83{word-spacing:-1.944000px;}
.ws44{word-spacing:0.216000px;}
.ws1d{word-spacing:8.856000px;}
.ws1c{word-spacing:9.360000px;}
.ws11{word-spacing:16.578000px;}
.ws19{word-spacing:26.512800px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._c{width:20.242800px;}
._10{width:21.661800px;}
._12{width:22.755900px;}
._e{width:24.186000px;}
._5{width:25.491900px;}
._6{width:26.856600px;}
._14{width:28.349100px;}
._11{width:29.376000px;}
._7{width:30.657000px;}
._1c{width:31.713000px;}
._d{width:32.737800px;}
._17{width:34.015800px;}
._1{width:36.000000px;}
._f{width:37.421400px;}
._13{width:38.430600px;}
._16{width:40.166100px;}
._9{width:41.193600px;}
._15{width:43.033200px;}
._19{width:45.220200px;}
._1a{width:46.551000px;}
._a{width:48.237000px;}
._1b{width:49.892400px;}
._18{width:54.936000px;}
._8{width:74.065200px;}
._b{width:83.773200px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2a{bottom:99.796500px;}
.y50{bottom:100.696500px;}
.y73{bottom:101.236500px;}
.y29{bottom:120.496500px;}
.y4f{bottom:121.396500px;}
.y72{bottom:121.936500px;}
.y28{bottom:141.196500px;}
.y4e{bottom:142.096500px;}
.y71{bottom:142.636500px;}
.y4d{bottom:162.796500px;}
.y70{bottom:163.336500px;}
.y27{bottom:182.775000px;}
.y4c{bottom:183.496500px;}
.y26{bottom:203.475000px;}
.y4b{bottom:204.196500px;}
.y6f{bottom:205.096500px;}
.y25{bottom:224.175000px;}
.y6e{bottom:225.795000px;}
.y24{bottom:244.875000px;}
.y4a{bottom:245.775000px;}
.y6d{bottom:246.496500px;}
.y23{bottom:265.575000px;}
.y6c{bottom:267.196500px;}
.y22{bottom:286.275000px;}
.y49{bottom:287.536500px;}
.y6b{bottom:287.896500px;}
.y48{bottom:308.236500px;}
.y6a{bottom:308.596500px;}
.y21{bottom:328.036500px;}
.y69{bottom:329.295000px;}
.y20{bottom:348.736500px;}
.y47{bottom:349.996500px;}
.y46{bottom:370.696500px;}
.y68{bottom:370.875000px;}
.y1f{bottom:390.496500px;}
.y45{bottom:391.396500px;}
.y67{bottom:391.575000px;}
.y1e{bottom:411.196500px;}
.y44{bottom:412.096500px;}
.y66{bottom:412.275000px;}
.y1d{bottom:431.896500px;}
.y43{bottom:432.795000px;}
.y65{bottom:432.975000px;}
.y1c{bottom:452.596500px;}
.y42{bottom:453.496500px;}
.y64{bottom:453.675000px;}
.y1b{bottom:473.295000px;}
.y63{bottom:474.375000px;}
.y41{bottom:495.075000px;}
.y1a{bottom:514.875000px;}
.y40{bottom:515.775000px;}
.y62{bottom:516.136500px;}
.y19{bottom:535.575000px;}
.y3f{bottom:557.536500px;}
.y61{bottom:557.896500px;}
.y18{bottom:577.336500px;}
.y3e{bottom:578.236500px;}
.y60{bottom:578.596500px;}
.y17{bottom:598.036500px;}
.y5f{bottom:599.295000px;}
.y16{bottom:618.736500px;}
.y3d{bottom:619.996500px;}
.y15{bottom:639.436500px;}
.y3c{bottom:640.695000px;}
.y14{bottom:660.136500px;}
.y3b{bottom:661.396500px;}
.y13{bottom:680.836500px;}
.y5e{bottom:682.096500px;}
.y7c{bottom:682.275000px;}
.y5d{bottom:702.795000px;}
.y3a{bottom:702.975000px;}
.y12{bottom:722.596500px;}
.y5c{bottom:723.496500px;}
.y7b{bottom:723.675000px;}
.y7a{bottom:744.375000px;}
.y39{bottom:744.736500px;}
.y11{bottom:764.175000px;}
.y5b{bottom:765.075000px;}
.y38{bottom:765.436500px;}
.y10{bottom:784.875000px;}
.y5a{bottom:785.775000px;}
.y37{bottom:786.136500px;}
.yf{bottom:805.575000px;}
.y59{bottom:806.475000px;}
.y36{bottom:806.836500px;}
.ye{bottom:826.275000px;}
.y58{bottom:827.175000px;}
.y35{bottom:827.536500px;}
.yd{bottom:846.975000px;}
.y57{bottom:847.875000px;}
.y56{bottom:868.575000px;}
.y79{bottom:868.936500px;}
.y34{bottom:869.295000px;}
.yc{bottom:888.736500px;}
.y55{bottom:889.275000px;}
.y54{bottom:909.975000px;}
.y78{bottom:910.695000px;}
.y33{bottom:910.875000px;}
.yb{bottom:930.495000px;}
.y77{bottom:931.395000px;}
.y32{bottom:931.575000px;}
.y53{bottom:951.736500px;}
.y76{bottom:952.095000px;}
.y31{bottom:952.275000px;}
.ya{bottom:972.075000px;}
.y52{bottom:972.436500px;}
.y75{bottom:972.795000px;}
.y30{bottom:972.975000px;}
.y74{bottom:993.495000px;}
.y2f{bottom:993.675000px;}
.y9{bottom:1013.836500px;}
.y51{bottom:1014.195000px;}
.y2e{bottom:1014.375000px;}
.y2d{bottom:1035.075000px;}
.y2c{bottom:1055.775000px;}
.y2b{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.xa{left:154.620000px;}
.x4{left:156.600000px;}
.x9{left:208.620000px;}
.x3{left:465.825000px;}
.x6{left:474.300000px;}
.x7{left:503.100000px;}
.x5{left:571.680000px;}
.x8{left:629.820000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws26{word-spacing:-49.728000pt;}
.ws2c{word-spacing:-34.365600pt;}
.ws6{word-spacing:-34.362400pt;}
.ws55{word-spacing:-34.361600pt;}
.ws68{word-spacing:-34.361333pt;}
.ws14{word-spacing:-34.358400pt;}
.ws43{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.ws87{word-spacing:-34.353067pt;}
.ws39{word-spacing:-34.351200pt;}
.ws7d{word-spacing:-34.345067pt;}
.ws50{word-spacing:-34.172800pt;}
.ws4c{word-spacing:-34.170400pt;}
.ws41{word-spacing:-34.169600pt;}
.wsb{word-spacing:-34.166400pt;}
.ws9{word-spacing:-34.164000pt;}
.ws3{word-spacing:-34.110400pt;}
.ws84{word-spacing:-34.101600pt;}
.ws82{word-spacing:-34.097600pt;}
.ws1b{word-spacing:-34.042933pt;}
.ws56{word-spacing:-33.923733pt;}
.ws23{word-spacing:-33.920000pt;}
.ws67{word-spacing:-33.914667pt;}
.ws13{word-spacing:-33.912800pt;}
.ws4b{word-spacing:-33.910400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws3e{word-spacing:-33.724800pt;}
.ws58{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.wsa{word-spacing:-33.720800pt;}
.ws12{word-spacing:-33.718933pt;}
.ws75{word-spacing:-33.717867pt;}
.wsc{word-spacing:-33.717600pt;}
.ws2{word-spacing:-33.716800pt;}
.ws1a{word-spacing:-33.713600pt;}
.ws86{word-spacing:-33.707200pt;}
.ws1e{word-spacing:-33.645600pt;}
.ws69{word-spacing:-33.280000pt;}
.ws6e{word-spacing:-33.278400pt;}
.ws65{word-spacing:-33.093333pt;}
.ws66{word-spacing:-33.080000pt;}
.ws28{word-spacing:-32.440000pt;}
.ws79{word-spacing:-31.806400pt;}
.ws6f{word-spacing:-31.610400pt;}
.ws4f{word-spacing:-31.609600pt;}
.ws46{word-spacing:-31.356800pt;}
.ws7c{word-spacing:-31.163200pt;}
.ws70{word-spacing:-31.161600pt;}
.ws2d{word-spacing:-30.970400pt;}
.ws6c{word-spacing:-30.528000pt;}
.ws62{word-spacing:-30.515200pt;}
.ws80{word-spacing:-30.330400pt;}
.ws59{word-spacing:-30.326400pt;}
.ws8{word-spacing:-29.820267pt;}
.ws7a{word-spacing:-29.690133pt;}
.ws21{word-spacing:-29.440000pt;}
.ws22{word-spacing:-29.436800pt;}
.ws7b{word-spacing:-29.248000pt;}
.ws40{word-spacing:-28.608000pt;}
.ws6b{word-spacing:-28.592000pt;}
.ws10{word-spacing:-28.591200pt;}
.wse{word-spacing:-27.963200pt;}
.ws5b{word-spacing:-27.520000pt;}
.ws61{word-spacing:-27.517333pt;}
.ws6a{word-spacing:-27.507200pt;}
.wsd{word-spacing:-27.503200pt;}
.ws53{word-spacing:-27.328000pt;}
.ws85{word-spacing:-27.327200pt;}
.ws15{word-spacing:-26.880000pt;}
.ws2e{word-spacing:-26.681600pt;}
.ws4d{word-spacing:-26.490400pt;}
.ws29{word-spacing:-26.489600pt;}
.ws16{word-spacing:-26.176000pt;}
.ws63{word-spacing:-26.043200pt;}
.ws60{word-spacing:-26.040000pt;}
.ws30{word-spacing:-26.031200pt;}
.ws38{word-spacing:-25.848533pt;}
.ws5a{word-spacing:-25.403200pt;}
.ws73{word-spacing:-25.333600pt;}
.ws4e{word-spacing:-24.764000pt;}
.ws2a{word-spacing:-24.760533pt;}
.ws3a{word-spacing:-24.570400pt;}
.ws81{word-spacing:-24.123200pt;}
.ws48{word-spacing:-23.489333pt;}
.ws54{word-spacing:-23.486400pt;}
.wsf{word-spacing:-23.476533pt;}
.ws3c{word-spacing:-23.291200pt;}
.ws37{word-spacing:-22.848533pt;}
.ws36{word-spacing:-22.832000pt;}
.ws77{word-spacing:-22.654933pt;}
.ws78{word-spacing:-22.405333pt;}
.ws2b{word-spacing:-22.004800pt;}
.ws5f{word-spacing:-22.004267pt;}
.ws20{word-spacing:-21.748267pt;}
.ws1f{word-spacing:-21.745600pt;}
.ws5e{word-spacing:-20.920000pt;}
.ws3b{word-spacing:-20.912000pt;}
.ws7e{word-spacing:-20.285333pt;}
.ws49{word-spacing:-20.281600pt;}
.ws4a{word-spacing:-19.645333pt;}
.ws45{word-spacing:-19.008000pt;}
.ws3f{word-spacing:-19.003200pt;}
.ws6d{word-spacing:-18.940800pt;}
.ws64{word-spacing:-18.814400pt;}
.ws27{word-spacing:-18.170400pt;}
.ws35{word-spacing:-17.720000pt;}
.ws2f{word-spacing:-17.529600pt;}
.ws71{word-spacing:-16.436800pt;}
.ws7{word-spacing:-16.420000pt;}
.ws33{word-spacing:-15.151200pt;}
.ws3d{word-spacing:-14.725333pt;}
.ws17{word-spacing:-14.204800pt;}
.ws34{word-spacing:-14.080000pt;}
.ws5c{word-spacing:-13.882133pt;}
.ws42{word-spacing:-13.874133pt;}
.ws32{word-spacing:-13.870400pt;}
.ws7f{word-spacing:-13.823733pt;}
.ws5d{word-spacing:-13.236800pt;}
.ws31{word-spacing:-13.227200pt;}
.ws57{word-spacing:-13.049600pt;}
.ws52{word-spacing:-12.603200pt;}
.ws76{word-spacing:-11.973333pt;}
.ws72{word-spacing:-10.670400pt;}
.ws47{word-spacing:-10.490400pt;}
.ws18{word-spacing:-8.317333pt;}
.ws25{word-spacing:-7.467200pt;}
.ws24{word-spacing:-7.028800pt;}
.ws74{word-spacing:-6.396800pt;}
.ws51{word-spacing:-2.997600pt;}
.ws83{word-spacing:-1.728000pt;}
.ws44{word-spacing:0.192000pt;}
.ws1d{word-spacing:7.872000pt;}
.ws1c{word-spacing:8.320000pt;}
.ws11{word-spacing:14.736000pt;}
.ws19{word-spacing:23.566933pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._c{width:17.993600pt;}
._10{width:19.254933pt;}
._12{width:20.227467pt;}
._e{width:21.498667pt;}
._5{width:22.659467pt;}
._6{width:23.872533pt;}
._14{width:25.199200pt;}
._11{width:26.112000pt;}
._7{width:27.250667pt;}
._1c{width:28.189333pt;}
._d{width:29.100267pt;}
._17{width:30.236267pt;}
._1{width:32.000000pt;}
._f{width:33.263467pt;}
._13{width:34.160533pt;}
._16{width:35.703200pt;}
._9{width:36.616533pt;}
._15{width:38.251733pt;}
._19{width:40.195733pt;}
._1a{width:41.378667pt;}
._a{width:42.877333pt;}
._1b{width:44.348800pt;}
._18{width:48.832000pt;}
._8{width:65.835733pt;}
._b{width:74.465067pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2a{bottom:88.708000pt;}
.y50{bottom:89.508000pt;}
.y73{bottom:89.988000pt;}
.y29{bottom:107.108000pt;}
.y4f{bottom:107.908000pt;}
.y72{bottom:108.388000pt;}
.y28{bottom:125.508000pt;}
.y4e{bottom:126.308000pt;}
.y71{bottom:126.788000pt;}
.y4d{bottom:144.708000pt;}
.y70{bottom:145.188000pt;}
.y27{bottom:162.466667pt;}
.y4c{bottom:163.108000pt;}
.y26{bottom:180.866667pt;}
.y4b{bottom:181.508000pt;}
.y6f{bottom:182.308000pt;}
.y25{bottom:199.266667pt;}
.y6e{bottom:200.706667pt;}
.y24{bottom:217.666667pt;}
.y4a{bottom:218.466667pt;}
.y6d{bottom:219.108000pt;}
.y23{bottom:236.066667pt;}
.y6c{bottom:237.508000pt;}
.y22{bottom:254.466667pt;}
.y49{bottom:255.588000pt;}
.y6b{bottom:255.908000pt;}
.y48{bottom:273.988000pt;}
.y6a{bottom:274.308000pt;}
.y21{bottom:291.588000pt;}
.y69{bottom:292.706667pt;}
.y20{bottom:309.988000pt;}
.y47{bottom:311.108000pt;}
.y46{bottom:329.508000pt;}
.y68{bottom:329.666667pt;}
.y1f{bottom:347.108000pt;}
.y45{bottom:347.908000pt;}
.y67{bottom:348.066667pt;}
.y1e{bottom:365.508000pt;}
.y44{bottom:366.308000pt;}
.y66{bottom:366.466667pt;}
.y1d{bottom:383.908000pt;}
.y43{bottom:384.706667pt;}
.y65{bottom:384.866667pt;}
.y1c{bottom:402.308000pt;}
.y42{bottom:403.108000pt;}
.y64{bottom:403.266667pt;}
.y1b{bottom:420.706667pt;}
.y63{bottom:421.666667pt;}
.y41{bottom:440.066667pt;}
.y1a{bottom:457.666667pt;}
.y40{bottom:458.466667pt;}
.y62{bottom:458.788000pt;}
.y19{bottom:476.066667pt;}
.y3f{bottom:495.588000pt;}
.y61{bottom:495.908000pt;}
.y18{bottom:513.188000pt;}
.y3e{bottom:513.988000pt;}
.y60{bottom:514.308000pt;}
.y17{bottom:531.588000pt;}
.y5f{bottom:532.706667pt;}
.y16{bottom:549.988000pt;}
.y3d{bottom:551.108000pt;}
.y15{bottom:568.388000pt;}
.y3c{bottom:569.506667pt;}
.y14{bottom:586.788000pt;}
.y3b{bottom:587.908000pt;}
.y13{bottom:605.188000pt;}
.y5e{bottom:606.308000pt;}
.y7c{bottom:606.466667pt;}
.y5d{bottom:624.706667pt;}
.y3a{bottom:624.866667pt;}
.y12{bottom:642.308000pt;}
.y5c{bottom:643.108000pt;}
.y7b{bottom:643.266667pt;}
.y7a{bottom:661.666667pt;}
.y39{bottom:661.988000pt;}
.y11{bottom:679.266667pt;}
.y5b{bottom:680.066667pt;}
.y38{bottom:680.388000pt;}
.y10{bottom:697.666667pt;}
.y5a{bottom:698.466667pt;}
.y37{bottom:698.788000pt;}
.yf{bottom:716.066667pt;}
.y59{bottom:716.866667pt;}
.y36{bottom:717.188000pt;}
.ye{bottom:734.466667pt;}
.y58{bottom:735.266667pt;}
.y35{bottom:735.588000pt;}
.yd{bottom:752.866667pt;}
.y57{bottom:753.666667pt;}
.y56{bottom:772.066667pt;}
.y79{bottom:772.388000pt;}
.y34{bottom:772.706667pt;}
.yc{bottom:789.988000pt;}
.y55{bottom:790.466667pt;}
.y54{bottom:808.866667pt;}
.y78{bottom:809.506667pt;}
.y33{bottom:809.666667pt;}
.yb{bottom:827.106667pt;}
.y77{bottom:827.906667pt;}
.y32{bottom:828.066667pt;}
.y53{bottom:845.988000pt;}
.y76{bottom:846.306667pt;}
.y31{bottom:846.466667pt;}
.ya{bottom:864.066667pt;}
.y52{bottom:864.388000pt;}
.y75{bottom:864.706667pt;}
.y30{bottom:864.866667pt;}
.y74{bottom:883.106667pt;}
.y2f{bottom:883.266667pt;}
.y9{bottom:901.188000pt;}
.y51{bottom:901.506667pt;}
.y2e{bottom:901.666667pt;}
.y2d{bottom:920.066667pt;}
.y2c{bottom:938.466667pt;}
.y2b{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.xa{left:137.440000pt;}
.x4{left:139.200000pt;}
.x9{left:185.440000pt;}
.x3{left:414.066667pt;}
.x6{left:421.600000pt;}
.x7{left:447.200000pt;}
.x5{left:508.160000pt;}
.x8{left:559.840000pt;}
.x2{left:649.920000pt;}
}




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