
    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_5660762ba31be8fcaf927e23.woff2')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_60db39831528c724d6ca24fe.woff2')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_5bd7f76e77ad2305239fbe24.woff2')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_dcd8ba03b61489d554e56003.woff2')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;}
}
.ws13{word-spacing:-55.944000px;}
.ws6{word-spacing:-38.657700px;}
.ws26{word-spacing:-38.653200px;}
.ws51{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.ws3d{word-spacing:-38.644200px;}
.ws2b{word-spacing:-38.643000px;}
.ws4c{word-spacing:-38.439000px;}
.ws39{word-spacing:-38.431800px;}
.wsd{word-spacing:-38.429100px;}
.ws3{word-spacing:-38.374200px;}
.wsa{word-spacing:-38.368800px;}
.ws60{word-spacing:-38.359800px;}
.ws66{word-spacing:-38.301300px;}
.ws20{word-spacing:-38.160000px;}
.ws22{word-spacing:-38.158200px;}
.ws55{word-spacing:-38.154600px;}
.wsc{word-spacing:-38.154000px;}
.ws59{word-spacing:-38.152800px;}
.ws14{word-spacing:-38.151900px;}
.ws33{word-spacing:-38.142000px;}
.ws9{word-spacing:-38.086200px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws45{word-spacing:-37.936800px;}
.ws15{word-spacing:-37.935000px;}
.ws1a{word-spacing:-37.934100px;}
.ws2{word-spacing:-37.931400px;}
.wsb{word-spacing:-37.928700px;}
.ws48{word-spacing:-37.706400px;}
.ws53{word-spacing:-37.440000px;}
.ws24{word-spacing:-37.222200px;}
.ws63{word-spacing:-35.998200px;}
.ws12{word-spacing:-35.773200px;}
.ws5a{word-spacing:-35.767800px;}
.ws29{word-spacing:-34.566000px;}
.ws2c{word-spacing:-34.336800px;}
.ws21{word-spacing:-33.621000px;}
.ws41{word-spacing:-33.608400px;}
.ws8{word-spacing:-33.547800px;}
.ws5b{word-spacing:-33.120000px;}
.ws1e{word-spacing:-32.904000px;}
.ws35{word-spacing:-32.899200px;}
.ws49{word-spacing:-32.178600px;}
.ws37{word-spacing:-31.966800px;}
.wsf{word-spacing:-31.667400px;}
.wse{word-spacing:-31.667100px;}
.ws1f{word-spacing:-30.956400px;}
.ws3f{word-spacing:-30.517200px;}
.ws47{word-spacing:-30.223800px;}
.ws5f{word-spacing:-29.793600px;}
.ws3b{word-spacing:-29.512800px;}
.ws44{word-spacing:-29.304600px;}
.ws36{word-spacing:-29.304000px;}
.ws62{word-spacing:-28.584000px;}
.ws11{word-spacing:-28.573200px;}
.ws1b{word-spacing:-28.080000px;}
.ws1c{word-spacing:-27.864000px;}
.ws58{word-spacing:-27.648000px;}
.ws31{word-spacing:-27.639900px;}
.ws4a{word-spacing:-25.926000px;}
.ws61{word-spacing:-25.342200px;}
.ws2f{word-spacing:-24.972000px;}
.ws65{word-spacing:-23.893200px;}
.ws56{word-spacing:-23.756400px;}
.ws28{word-spacing:-23.526000px;}
.ws4e{word-spacing:-22.602600px;}
.ws57{word-spacing:-22.599000px;}
.ws18{word-spacing:-22.098000px;}
.ws5e{word-spacing:-21.589200px;}
.ws4b{word-spacing:-21.380400px;}
.ws50{word-spacing:-21.375000px;}
.ws3e{word-spacing:-21.371400px;}
.ws3c{word-spacing:-21.159000px;}
.ws43{word-spacing:-20.440800px;}
.ws67{word-spacing:-19.944000px;}
.ws23{word-spacing:-19.935000px;}
.ws27{word-spacing:-19.218600px;}
.ws25{word-spacing:-19.215000px;}
.ws34{word-spacing:-19.213200px;}
.ws7{word-spacing:-18.472500px;}
.ws5d{word-spacing:-17.055000px;}
.ws3a{word-spacing:-16.335000px;}
.ws1d{word-spacing:-14.400000px;}
.ws4d{word-spacing:-14.173200px;}
.ws2d{word-spacing:-10.796400px;}
.ws46{word-spacing:-9.132300px;}
.ws4f{word-spacing:-7.918200px;}
.ws30{word-spacing:-7.914600px;}
.ws42{word-spacing:-7.699200px;}
.ws17{word-spacing:-6.607800px;}
.ws52{word-spacing:-6.255600px;}
.ws2e{word-spacing:-4.093200px;}
.ws10{word-spacing:-2.874000px;}
.ws32{word-spacing:-2.656800px;}
.ws5c{word-spacing:-2.435400px;}
.ws54{word-spacing:-1.933200px;}
.ws64{word-spacing:0.000000px;}
.ws19{word-spacing:1.310400px;}
.ws2a{word-spacing:1.665000px;}
.ws38{word-spacing:5.985000px;}
.ws40{word-spacing:20.385300px;}
.ws16{word-spacing:25.423500px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._f{width:19.798200px;}
._8{width:21.434400px;}
._13{width:22.902000px;}
._d{width:24.363600px;}
._5{width:25.600500px;}
._e{width:26.664300px;}
._7{width:28.429200px;}
._18{width:29.569800px;}
._12{width:30.859200px;}
._16{width:32.277600px;}
._20{width:33.411000px;}
._1d{width:34.819800px;}
._1{width:36.000000px;}
._10{width:37.434000px;}
._11{width:38.439000px;}
._21{width:40.021800px;}
._1b{width:41.227200px;}
._c{width:43.216800px;}
._17{width:49.386600px;}
._a{width:50.630400px;}
._6{width:51.997200px;}
._15{width:53.773200px;}
._19{width:54.884400px;}
._1f{width:56.011200px;}
._b{width:58.305600px;}
._1a{width:63.639000px;}
._1c{width:77.953200px;}
._9{width:82.980000px;}
._14{width:91.142400px;}
._1e{width:109.976400px;}
._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;}
.y5f{bottom:27.240000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y4f{bottom:101.236500px;}
.y5d{bottom:119.775000px;}
.y27{bottom:120.136500px;}
.y4e{bottom:121.936500px;}
.y5c{bottom:140.475000px;}
.y26{bottom:140.836500px;}
.y4d{bottom:142.636500px;}
.y5b{bottom:161.175000px;}
.y25{bottom:161.536500px;}
.y4c{bottom:184.396500px;}
.y5a{bottom:202.936500px;}
.y24{bottom:203.295000px;}
.y4b{bottom:205.096500px;}
.y59{bottom:223.636500px;}
.y23{bottom:223.996500px;}
.y4a{bottom:225.795000px;}
.y22{bottom:244.696500px;}
.y49{bottom:246.496500px;}
.y21{bottom:265.396500px;}
.y20{bottom:286.096500px;}
.y48{bottom:288.075000px;}
.y1f{bottom:306.795000px;}
.y58{bottom:306.975000px;}
.y47{bottom:308.775000px;}
.y57{bottom:327.675000px;}
.y46{bottom:329.475000px;}
.y1e{bottom:348.375000px;}
.y45{bottom:350.175000px;}
.y56{bottom:369.075000px;}
.y44{bottom:370.875000px;}
.y55{bottom:389.775000px;}
.y1d{bottom:390.136500px;}
.y43{bottom:391.575000px;}
.y54{bottom:410.475000px;}
.y1c{bottom:410.836500px;}
.y42{bottom:412.275000px;}
.y53{bottom:431.175000px;}
.y1b{bottom:431.536500px;}
.y41{bottom:432.975000px;}
.y52{bottom:451.875000px;}
.y1a{bottom:452.236500px;}
.y40{bottom:453.675000px;}
.y51{bottom:493.636500px;}
.y19{bottom:493.996500px;}
.y3f{bottom:495.436500px;}
.y18{bottom:514.695000px;}
.y3e{bottom:516.136500px;}
.y3d{bottom:536.836500px;}
.y5e{bottom:543.073500px;}
.y17{bottom:556.275000px;}
.y3c{bottom:557.536500px;}
.y16{bottom:576.975000px;}
.y3b{bottom:578.236500px;}
.y15{bottom:597.675000px;}
.y3a{bottom:598.936500px;}
.y14{bottom:618.375000px;}
.y39{bottom:619.636500px;}
.y13{bottom:639.075000px;}
.y38{bottom:661.396500px;}
.y12{bottom:680.836500px;}
.y37{bottom:682.096500px;}
.y36{bottom:702.795000px;}
.y11{bottom:722.596500px;}
.y10{bottom:743.295000px;}
.y35{bottom:744.375000px;}
.yf{bottom:763.996500px;}
.y34{bottom:765.075000px;}
.ye{bottom:784.695000px;}
.y33{bottom:785.775000px;}
.yd{bottom:805.395000px;}
.y32{bottom:806.475000px;}
.y31{bottom:848.236500px;}
.y30{bottom:868.936500px;}
.yc{bottom:888.736500px;}
.y2f{bottom:889.636500px;}
.y2e{bottom:910.336500px;}
.yb{bottom:930.495000px;}
.y50{bottom:931.036500px;}
.y2d{bottom:952.095000px;}
.ya{bottom:972.075000px;}
.y2c{bottom:972.795000px;}
.y60{bottom:993.136500px;}
.y2b{bottom:993.495000px;}
.y2a{bottom:1014.195000px;}
.y29{bottom:1034.895000px;}
.y9{bottom:1055.595000px;}
.y28{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;}
.h6{height:44.475000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h7{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w3{width:32.775000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:10.725000px;}
.x1{left:127.620000px;}
.x8{left:180.720000px;}
.x4{left:251.820000px;}
.x6{left:324.360000px;}
.x9{left:349.305000px;}
.x3{left:465.825000px;}
.x5{left:511.200000px;}
.xb{left:562.785000px;}
.x7{left:599.760000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws13{word-spacing:-49.728000pt;}
.ws6{word-spacing:-34.362400pt;}
.ws26{word-spacing:-34.358400pt;}
.ws51{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.ws3d{word-spacing:-34.350400pt;}
.ws2b{word-spacing:-34.349333pt;}
.ws4c{word-spacing:-34.168000pt;}
.ws39{word-spacing:-34.161600pt;}
.wsd{word-spacing:-34.159200pt;}
.ws3{word-spacing:-34.110400pt;}
.wsa{word-spacing:-34.105600pt;}
.ws60{word-spacing:-34.097600pt;}
.ws66{word-spacing:-34.045600pt;}
.ws20{word-spacing:-33.920000pt;}
.ws22{word-spacing:-33.918400pt;}
.ws55{word-spacing:-33.915200pt;}
.wsc{word-spacing:-33.914667pt;}
.ws59{word-spacing:-33.913600pt;}
.ws14{word-spacing:-33.912800pt;}
.ws33{word-spacing:-33.904000pt;}
.ws9{word-spacing:-33.854400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws45{word-spacing:-33.721600pt;}
.ws15{word-spacing:-33.720000pt;}
.ws1a{word-spacing:-33.719200pt;}
.ws2{word-spacing:-33.716800pt;}
.wsb{word-spacing:-33.714400pt;}
.ws48{word-spacing:-33.516800pt;}
.ws53{word-spacing:-33.280000pt;}
.ws24{word-spacing:-33.086400pt;}
.ws63{word-spacing:-31.998400pt;}
.ws12{word-spacing:-31.798400pt;}
.ws5a{word-spacing:-31.793600pt;}
.ws29{word-spacing:-30.725333pt;}
.ws2c{word-spacing:-30.521600pt;}
.ws21{word-spacing:-29.885333pt;}
.ws41{word-spacing:-29.874133pt;}
.ws8{word-spacing:-29.820267pt;}
.ws5b{word-spacing:-29.440000pt;}
.ws1e{word-spacing:-29.248000pt;}
.ws35{word-spacing:-29.243733pt;}
.ws49{word-spacing:-28.603200pt;}
.ws37{word-spacing:-28.414933pt;}
.wsf{word-spacing:-28.148800pt;}
.wse{word-spacing:-28.148533pt;}
.ws1f{word-spacing:-27.516800pt;}
.ws3f{word-spacing:-27.126400pt;}
.ws47{word-spacing:-26.865600pt;}
.ws5f{word-spacing:-26.483200pt;}
.ws3b{word-spacing:-26.233600pt;}
.ws44{word-spacing:-26.048533pt;}
.ws36{word-spacing:-26.048000pt;}
.ws62{word-spacing:-25.408000pt;}
.ws11{word-spacing:-25.398400pt;}
.ws1b{word-spacing:-24.960000pt;}
.ws1c{word-spacing:-24.768000pt;}
.ws58{word-spacing:-24.576000pt;}
.ws31{word-spacing:-24.568800pt;}
.ws4a{word-spacing:-23.045333pt;}
.ws61{word-spacing:-22.526400pt;}
.ws2f{word-spacing:-22.197333pt;}
.ws65{word-spacing:-21.238400pt;}
.ws56{word-spacing:-21.116800pt;}
.ws28{word-spacing:-20.912000pt;}
.ws4e{word-spacing:-20.091200pt;}
.ws57{word-spacing:-20.088000pt;}
.ws18{word-spacing:-19.642667pt;}
.ws5e{word-spacing:-19.190400pt;}
.ws4b{word-spacing:-19.004800pt;}
.ws50{word-spacing:-19.000000pt;}
.ws3e{word-spacing:-18.996800pt;}
.ws3c{word-spacing:-18.808000pt;}
.ws43{word-spacing:-18.169600pt;}
.ws67{word-spacing:-17.728000pt;}
.ws23{word-spacing:-17.720000pt;}
.ws27{word-spacing:-17.083200pt;}
.ws25{word-spacing:-17.080000pt;}
.ws34{word-spacing:-17.078400pt;}
.ws7{word-spacing:-16.420000pt;}
.ws5d{word-spacing:-15.160000pt;}
.ws3a{word-spacing:-14.520000pt;}
.ws1d{word-spacing:-12.800000pt;}
.ws4d{word-spacing:-12.598400pt;}
.ws2d{word-spacing:-9.596800pt;}
.ws46{word-spacing:-8.117600pt;}
.ws4f{word-spacing:-7.038400pt;}
.ws30{word-spacing:-7.035200pt;}
.ws42{word-spacing:-6.843733pt;}
.ws17{word-spacing:-5.873600pt;}
.ws52{word-spacing:-5.560533pt;}
.ws2e{word-spacing:-3.638400pt;}
.ws10{word-spacing:-2.554667pt;}
.ws32{word-spacing:-2.361600pt;}
.ws5c{word-spacing:-2.164800pt;}
.ws54{word-spacing:-1.718400pt;}
.ws64{word-spacing:0.000000pt;}
.ws19{word-spacing:1.164800pt;}
.ws2a{word-spacing:1.480000pt;}
.ws38{word-spacing:5.320000pt;}
.ws40{word-spacing:18.120267pt;}
.ws16{word-spacing:22.598667pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._f{width:17.598400pt;}
._8{width:19.052800pt;}
._13{width:20.357333pt;}
._d{width:21.656533pt;}
._5{width:22.756000pt;}
._e{width:23.701600pt;}
._7{width:25.270400pt;}
._18{width:26.284267pt;}
._12{width:27.430400pt;}
._16{width:28.691200pt;}
._20{width:29.698667pt;}
._1d{width:30.950933pt;}
._1{width:32.000000pt;}
._10{width:33.274667pt;}
._11{width:34.168000pt;}
._21{width:35.574933pt;}
._1b{width:36.646400pt;}
._c{width:38.414933pt;}
._17{width:43.899200pt;}
._a{width:45.004800pt;}
._6{width:46.219733pt;}
._15{width:47.798400pt;}
._19{width:48.786133pt;}
._1f{width:49.787733pt;}
._b{width:51.827200pt;}
._1a{width:56.568000pt;}
._1c{width:69.291733pt;}
._9{width:73.760000pt;}
._14{width:81.015467pt;}
._1e{width:97.756800pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y5f{bottom:24.213333pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y4f{bottom:89.988000pt;}
.y5d{bottom:106.466667pt;}
.y27{bottom:106.788000pt;}
.y4e{bottom:108.388000pt;}
.y5c{bottom:124.866667pt;}
.y26{bottom:125.188000pt;}
.y4d{bottom:126.788000pt;}
.y5b{bottom:143.266667pt;}
.y25{bottom:143.588000pt;}
.y4c{bottom:163.908000pt;}
.y5a{bottom:180.388000pt;}
.y24{bottom:180.706667pt;}
.y4b{bottom:182.308000pt;}
.y59{bottom:198.788000pt;}
.y23{bottom:199.108000pt;}
.y4a{bottom:200.706667pt;}
.y22{bottom:217.508000pt;}
.y49{bottom:219.108000pt;}
.y21{bottom:235.908000pt;}
.y20{bottom:254.308000pt;}
.y48{bottom:256.066667pt;}
.y1f{bottom:272.706667pt;}
.y58{bottom:272.866667pt;}
.y47{bottom:274.466667pt;}
.y57{bottom:291.266667pt;}
.y46{bottom:292.866667pt;}
.y1e{bottom:309.666667pt;}
.y45{bottom:311.266667pt;}
.y56{bottom:328.066667pt;}
.y44{bottom:329.666667pt;}
.y55{bottom:346.466667pt;}
.y1d{bottom:346.788000pt;}
.y43{bottom:348.066667pt;}
.y54{bottom:364.866667pt;}
.y1c{bottom:365.188000pt;}
.y42{bottom:366.466667pt;}
.y53{bottom:383.266667pt;}
.y1b{bottom:383.588000pt;}
.y41{bottom:384.866667pt;}
.y52{bottom:401.666667pt;}
.y1a{bottom:401.988000pt;}
.y40{bottom:403.266667pt;}
.y51{bottom:438.788000pt;}
.y19{bottom:439.108000pt;}
.y3f{bottom:440.388000pt;}
.y18{bottom:457.506667pt;}
.y3e{bottom:458.788000pt;}
.y3d{bottom:477.188000pt;}
.y5e{bottom:482.732000pt;}
.y17{bottom:494.466667pt;}
.y3c{bottom:495.588000pt;}
.y16{bottom:512.866667pt;}
.y3b{bottom:513.988000pt;}
.y15{bottom:531.266667pt;}
.y3a{bottom:532.388000pt;}
.y14{bottom:549.666667pt;}
.y39{bottom:550.788000pt;}
.y13{bottom:568.066667pt;}
.y38{bottom:587.908000pt;}
.y12{bottom:605.188000pt;}
.y37{bottom:606.308000pt;}
.y36{bottom:624.706667pt;}
.y11{bottom:642.308000pt;}
.y10{bottom:660.706667pt;}
.y35{bottom:661.666667pt;}
.yf{bottom:679.108000pt;}
.y34{bottom:680.066667pt;}
.ye{bottom:697.506667pt;}
.y33{bottom:698.466667pt;}
.yd{bottom:715.906667pt;}
.y32{bottom:716.866667pt;}
.y31{bottom:753.988000pt;}
.y30{bottom:772.388000pt;}
.yc{bottom:789.988000pt;}
.y2f{bottom:790.788000pt;}
.y2e{bottom:809.188000pt;}
.yb{bottom:827.106667pt;}
.y50{bottom:827.588000pt;}
.y2d{bottom:846.306667pt;}
.ya{bottom:864.066667pt;}
.y2c{bottom:864.706667pt;}
.y60{bottom:882.788000pt;}
.y2b{bottom:883.106667pt;}
.y2a{bottom:901.506667pt;}
.y29{bottom:919.906667pt;}
.y9{bottom:938.306667pt;}
.y28{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;}
.h6{height:39.533333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h7{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w3{width:29.133333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:9.533333pt;}
.x1{left:113.440000pt;}
.x8{left:160.640000pt;}
.x4{left:223.840000pt;}
.x6{left:288.320000pt;}
.x9{left:310.493333pt;}
.x3{left:414.066667pt;}
.x5{left:454.400000pt;}
.xb{left:500.253333pt;}
.x7{left:533.120000pt;}
.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; }
  