
    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_53fccb12ebc96054a9a79609.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_1af05b780eb393afe2e5b07a.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_8b5f00f544a54408e830d977.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6436ad44bfd7cb954f292721.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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;}
.ls2{letter-spacing:32.400000px;}
.ls1{letter-spacing:109.397700px;}
.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;}
}
.ws10{word-spacing:-55.944000px;}
.wsc{word-spacing:-38.880600px;}
.ws3d{word-spacing:-38.664000px;}
.ws57{word-spacing:-38.658600px;}
.ws41{word-spacing:-38.655600px;}
.ws69{word-spacing:-38.653200px;}
.ws2a{word-spacing:-38.650200px;}
.ws5a{word-spacing:-38.647800px;}
.ws4{word-spacing:-38.439900px;}
.ws63{word-spacing:-38.437200px;}
.ws28{word-spacing:-38.435400px;}
.ws54{word-spacing:-38.433000px;}
.ws59{word-spacing:-38.430900px;}
.ws3a{word-spacing:-38.410200px;}
.ws53{word-spacing:-38.370600px;}
.ws32{word-spacing:-38.367000px;}
.ws33{word-spacing:-38.166000px;}
.ws37{word-spacing:-38.157000px;}
.ws24{word-spacing:-38.151000px;}
.ws3f{word-spacing:-38.149200px;}
.ws30{word-spacing:-38.148000px;}
.ws2{word-spacing:-38.081700px;}
.ws5{word-spacing:-38.075400px;}
.ws5c{word-spacing:-37.947300px;}
.ws0{word-spacing:-37.944000px;}
.ws2c{word-spacing:-37.942200px;}
.ws66{word-spacing:-37.939500px;}
.ws3{word-spacing:-37.938600px;}
.ws55{word-spacing:-37.933800px;}
.ws58{word-spacing:-37.932600px;}
.ws67{word-spacing:-37.928700px;}
.ws4d{word-spacing:-37.926000px;}
.ws2d{word-spacing:-37.923300px;}
.ws6a{word-spacing:-37.921800px;}
.ws4e{word-spacing:-37.734000px;}
.ws65{word-spacing:-37.722600px;}
.ws52{word-spacing:-37.720800px;}
.ws56{word-spacing:-37.711800px;}
.ws3e{word-spacing:-37.656600px;}
.ws40{word-spacing:-37.652100px;}
.ws2b{word-spacing:-37.645200px;}
.ws68{word-spacing:-37.440000px;}
.ws6e{word-spacing:-37.429200px;}
.ws23{word-spacing:-37.425600px;}
.ws70{word-spacing:-37.351800px;}
.ws4f{word-spacing:-37.222200px;}
.wsf{word-spacing:-37.003200px;}
.ws1f{word-spacing:-36.493200px;}
.ws13{word-spacing:-34.560000px;}
.ws42{word-spacing:-34.125000px;}
.ws43{word-spacing:-33.332400px;}
.ws4b{word-spacing:-32.891400px;}
.ws15{word-spacing:-32.614200px;}
.ws14{word-spacing:-32.406000px;}
.ws16{word-spacing:-32.373000px;}
.ws8{word-spacing:-31.462200px;}
.ws1a{word-spacing:-31.461300px;}
.ws1b{word-spacing:-31.236300px;}
.ws18{word-spacing:-30.956400px;}
.ws19{word-spacing:-30.655800px;}
.ws49{word-spacing:-29.304000px;}
.ws4a{word-spacing:-29.072700px;}
.wsa{word-spacing:-28.569600px;}
.ws50{word-spacing:-28.360800px;}
.ws21{word-spacing:-27.847800px;}
.ws35{word-spacing:-27.366000px;}
.ws5b{word-spacing:-26.917800px;}
.ws34{word-spacing:-26.857500px;}
.ws71{word-spacing:-25.184100px;}
.ws27{word-spacing:-24.984000px;}
.ws9{word-spacing:-24.967800px;}
.ws26{word-spacing:-24.678000px;}
.ws64{word-spacing:-24.465000px;}
.ws5d{word-spacing:-24.031800px;}
.ws5f{word-spacing:-23.966400px;}
.ws60{word-spacing:-23.760000px;}
.ws5e{word-spacing:-23.534100px;}
.ws2e{word-spacing:-23.310900px;}
.ws2f{word-spacing:-22.965300px;}
.ws72{word-spacing:-20.082600px;}
.ws20{word-spacing:-19.942200px;}
.ws29{word-spacing:-19.647000px;}
.wse{word-spacing:-17.782200px;}
.ws1e{word-spacing:-17.282400px;}
.ws1c{word-spacing:-16.560000px;}
.ws22{word-spacing:-16.554600px;}
.wsd{word-spacing:-16.551900px;}
.ws1d{word-spacing:-16.534800px;}
.ws45{word-spacing:-15.832800px;}
.ws44{word-spacing:-15.830100px;}
.ws46{word-spacing:-15.608700px;}
.wsb{word-spacing:-14.382600px;}
.ws51{word-spacing:-14.179200px;}
.ws12{word-spacing:-12.729600px;}
.ws11{word-spacing:-11.511000px;}
.ws31{word-spacing:-9.858600px;}
.ws61{word-spacing:-7.702200px;}
.ws62{word-spacing:-3.594600px;}
.ws4c{word-spacing:-0.714600px;}
.ws6f{word-spacing:0.000000px;}
.ws3b{word-spacing:0.447300px;}
.ws39{word-spacing:0.725400px;}
.ws3c{word-spacing:0.943200px;}
.ws38{word-spacing:0.959400px;}
.ws36{word-spacing:1.658700px;}
.ws17{word-spacing:8.650800px;}
.ws6c{word-spacing:12.247200px;}
.ws7{word-spacing:13.178700px;}
.ws6b{word-spacing:13.179600px;}
.ws6d{word-spacing:13.185000px;}
.ws6{word-spacing:13.698900px;}
.ws25{word-spacing:26.856000px;}
.ws47{word-spacing:585.584400px;}
.ws48{word-spacing:587.534400px;}
.ws1{word-spacing:1037.484900px;}
._3{margin-left:-1.164600px;}
._0{width:1.076400px;}
._18{width:17.469000px;}
._1{width:18.968400px;}
._e{width:21.016800px;}
._b{width:22.464000px;}
._c{width:23.720400px;}
._d{width:25.512600px;}
._4{width:26.652600px;}
._6{width:28.843200px;}
._10{width:29.903400px;}
._17{width:31.015800px;}
._5{width:32.328000px;}
._11{width:34.375500px;}
._f{width:37.578000px;}
._8{width:40.012200px;}
._15{width:41.281500px;}
._7{width:42.606600px;}
._a{width:44.413200px;}
._9{width:46.265400px;}
._16{width:56.419200px;}
._14{width:57.528000px;}
._12{width:58.810800px;}
._2{width:70.538400px;}
._13{width:71.679600px;}
._1b{width:82.800000px;}
._1a{width:109.584000px;}
._19{width:110.952000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:59.700000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y2a{bottom:143.175000px;}
.y29{bottom:184.575000px;}
.y53{bottom:207.615000px;}
.y28{bottom:225.975000px;}
.y52{bottom:228.315000px;}
.y27{bottom:246.675000px;}
.y51{bottom:249.015000px;}
.y26{bottom:267.375000px;}
.y50{bottom:269.715000px;}
.y25{bottom:288.075000px;}
.y4f{bottom:290.236500px;}
.y24{bottom:308.775000px;}
.y4e{bottom:310.936500px;}
.y23{bottom:329.475000px;}
.y4d{bottom:331.636500px;}
.y22{bottom:350.175000px;}
.y4c{bottom:352.336500px;}
.y21{bottom:370.875000px;}
.y4b{bottom:373.036500px;}
.y20{bottom:391.575000px;}
.y4a{bottom:393.736500px;}
.y1f{bottom:412.275000px;}
.y49{bottom:414.436500px;}
.y1e{bottom:432.975000px;}
.y48{bottom:435.136500px;}
.y1d{bottom:474.375000px;}
.y47{bottom:476.536500px;}
.y1c{bottom:516.136500px;}
.y46{bottom:517.936500px;}
.y1b{bottom:536.836500px;}
.y45{bottom:538.636500px;}
.y1a{bottom:557.536500px;}
.y44{bottom:559.336500px;}
.y19{bottom:578.236500px;}
.y43{bottom:580.036500px;}
.y18{bottom:598.936500px;}
.y42{bottom:600.736500px;}
.y17{bottom:619.636500px;}
.y41{bottom:621.436500px;}
.y16{bottom:640.336500px;}
.y40{bottom:642.136500px;}
.y15{bottom:661.036500px;}
.y3f{bottom:662.836500px;}
.y14{bottom:681.736500px;}
.y3e{bottom:683.536500px;}
.y13{bottom:702.436500px;}
.y3d{bottom:704.236500px;}
.y12{bottom:723.136500px;}
.y3c{bottom:724.936500px;}
.y11{bottom:743.836500px;}
.y3b{bottom:745.636500px;}
.y3a{bottom:766.336500px;}
.y10{bottom:806.295000px;}
.y39{bottom:807.736500px;}
.yf{bottom:847.875000px;}
.y38{bottom:849.136500px;}
.ye{bottom:868.575000px;}
.y37{bottom:869.836500px;}
.y36{bottom:890.536500px;}
.yd{bottom:910.336500px;}
.y35{bottom:911.236500px;}
.yc{bottom:931.036500px;}
.y34{bottom:931.936500px;}
.yb{bottom:951.736500px;}
.y33{bottom:952.636500px;}
.ya{bottom:972.436500px;}
.y32{bottom:973.336500px;}
.y9{bottom:993.136500px;}
.y31{bottom:994.036500px;}
.y8{bottom:1013.836500px;}
.y59{bottom:1014.375000px;}
.y30{bottom:1014.736500px;}
.y58{bottom:1035.075000px;}
.y2f{bottom:1035.436500px;}
.y7{bottom:1055.595000px;}
.y57{bottom:1055.775000px;}
.y2e{bottom:1056.136500px;}
.y56{bottom:1076.475000px;}
.y2d{bottom:1076.836500px;}
.y55{bottom:1097.175000px;}
.y2c{bottom:1097.536500px;}
.y54{bottom:1117.875000px;}
.y2b{bottom:1118.236500px;}
.y6{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:50.027344px;}
.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;}
.x8{left:129.600000px;}
.x7{left:154.800000px;}
.x2{left:160.560000px;}
.x6{left:234.900000px;}
.x5{left:364.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:28.800000pt;}
.ls1{letter-spacing:97.242400pt;}
.ws10{word-spacing:-49.728000pt;}
.wsc{word-spacing:-34.560533pt;}
.ws3d{word-spacing:-34.368000pt;}
.ws57{word-spacing:-34.363200pt;}
.ws41{word-spacing:-34.360533pt;}
.ws69{word-spacing:-34.358400pt;}
.ws2a{word-spacing:-34.355733pt;}
.ws5a{word-spacing:-34.353600pt;}
.ws4{word-spacing:-34.168800pt;}
.ws63{word-spacing:-34.166400pt;}
.ws28{word-spacing:-34.164800pt;}
.ws54{word-spacing:-34.162667pt;}
.ws59{word-spacing:-34.160800pt;}
.ws3a{word-spacing:-34.142400pt;}
.ws53{word-spacing:-34.107200pt;}
.ws32{word-spacing:-34.104000pt;}
.ws33{word-spacing:-33.925333pt;}
.ws37{word-spacing:-33.917333pt;}
.ws24{word-spacing:-33.912000pt;}
.ws3f{word-spacing:-33.910400pt;}
.ws30{word-spacing:-33.909333pt;}
.ws2{word-spacing:-33.850400pt;}
.ws5{word-spacing:-33.844800pt;}
.ws5c{word-spacing:-33.730933pt;}
.ws0{word-spacing:-33.728000pt;}
.ws2c{word-spacing:-33.726400pt;}
.ws66{word-spacing:-33.724000pt;}
.ws3{word-spacing:-33.723200pt;}
.ws55{word-spacing:-33.718933pt;}
.ws58{word-spacing:-33.717867pt;}
.ws67{word-spacing:-33.714400pt;}
.ws4d{word-spacing:-33.712000pt;}
.ws2d{word-spacing:-33.709600pt;}
.ws6a{word-spacing:-33.708267pt;}
.ws4e{word-spacing:-33.541333pt;}
.ws65{word-spacing:-33.531200pt;}
.ws52{word-spacing:-33.529600pt;}
.ws56{word-spacing:-33.521600pt;}
.ws3e{word-spacing:-33.472533pt;}
.ws40{word-spacing:-33.468533pt;}
.ws2b{word-spacing:-33.462400pt;}
.ws68{word-spacing:-33.280000pt;}
.ws6e{word-spacing:-33.270400pt;}
.ws23{word-spacing:-33.267200pt;}
.ws70{word-spacing:-33.201600pt;}
.ws4f{word-spacing:-33.086400pt;}
.wsf{word-spacing:-32.891733pt;}
.ws1f{word-spacing:-32.438400pt;}
.ws13{word-spacing:-30.720000pt;}
.ws42{word-spacing:-30.333333pt;}
.ws43{word-spacing:-29.628800pt;}
.ws4b{word-spacing:-29.236800pt;}
.ws15{word-spacing:-28.990400pt;}
.ws14{word-spacing:-28.805333pt;}
.ws16{word-spacing:-28.776000pt;}
.ws8{word-spacing:-27.966400pt;}
.ws1a{word-spacing:-27.965600pt;}
.ws1b{word-spacing:-27.765600pt;}
.ws18{word-spacing:-27.516800pt;}
.ws19{word-spacing:-27.249600pt;}
.ws49{word-spacing:-26.048000pt;}
.ws4a{word-spacing:-25.842400pt;}
.wsa{word-spacing:-25.395200pt;}
.ws50{word-spacing:-25.209600pt;}
.ws21{word-spacing:-24.753600pt;}
.ws35{word-spacing:-24.325333pt;}
.ws5b{word-spacing:-23.926933pt;}
.ws34{word-spacing:-23.873333pt;}
.ws71{word-spacing:-22.385867pt;}
.ws27{word-spacing:-22.208000pt;}
.ws9{word-spacing:-22.193600pt;}
.ws26{word-spacing:-21.936000pt;}
.ws64{word-spacing:-21.746667pt;}
.ws5d{word-spacing:-21.361600pt;}
.ws5f{word-spacing:-21.303467pt;}
.ws60{word-spacing:-21.120000pt;}
.ws5e{word-spacing:-20.919200pt;}
.ws2e{word-spacing:-20.720800pt;}
.ws2f{word-spacing:-20.413600pt;}
.ws72{word-spacing:-17.851200pt;}
.ws20{word-spacing:-17.726400pt;}
.ws29{word-spacing:-17.464000pt;}
.wse{word-spacing:-15.806400pt;}
.ws1e{word-spacing:-15.362133pt;}
.ws1c{word-spacing:-14.720000pt;}
.ws22{word-spacing:-14.715200pt;}
.wsd{word-spacing:-14.712800pt;}
.ws1d{word-spacing:-14.697600pt;}
.ws45{word-spacing:-14.073600pt;}
.ws44{word-spacing:-14.071200pt;}
.ws46{word-spacing:-13.874400pt;}
.wsb{word-spacing:-12.784533pt;}
.ws51{word-spacing:-12.603733pt;}
.ws12{word-spacing:-11.315200pt;}
.ws11{word-spacing:-10.232000pt;}
.ws31{word-spacing:-8.763200pt;}
.ws61{word-spacing:-6.846400pt;}
.ws62{word-spacing:-3.195200pt;}
.ws4c{word-spacing:-0.635200pt;}
.ws6f{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.397600pt;}
.ws39{word-spacing:0.644800pt;}
.ws3c{word-spacing:0.838400pt;}
.ws38{word-spacing:0.852800pt;}
.ws36{word-spacing:1.474400pt;}
.ws17{word-spacing:7.689600pt;}
.ws6c{word-spacing:10.886400pt;}
.ws7{word-spacing:11.714400pt;}
.ws6b{word-spacing:11.715200pt;}
.ws6d{word-spacing:11.720000pt;}
.ws6{word-spacing:12.176800pt;}
.ws25{word-spacing:23.872000pt;}
.ws47{word-spacing:520.519467pt;}
.ws48{word-spacing:522.252800pt;}
.ws1{word-spacing:922.208800pt;}
._3{margin-left:-1.035200pt;}
._0{width:0.956800pt;}
._18{width:15.528000pt;}
._1{width:16.860800pt;}
._e{width:18.681600pt;}
._b{width:19.968000pt;}
._c{width:21.084800pt;}
._d{width:22.677867pt;}
._4{width:23.691200pt;}
._6{width:25.638400pt;}
._10{width:26.580800pt;}
._17{width:27.569600pt;}
._5{width:28.736000pt;}
._11{width:30.556000pt;}
._f{width:33.402667pt;}
._8{width:35.566400pt;}
._15{width:36.694667pt;}
._7{width:37.872533pt;}
._a{width:39.478400pt;}
._9{width:41.124800pt;}
._16{width:50.150400pt;}
._14{width:51.136000pt;}
._12{width:52.276267pt;}
._2{width:62.700800pt;}
._13{width:63.715200pt;}
._1b{width:73.600000pt;}
._1a{width:97.408000pt;}
._19{width:98.624000pt;}
.fs1{font-size:53.066667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y2a{bottom:127.266667pt;}
.y29{bottom:164.066667pt;}
.y53{bottom:184.546667pt;}
.y28{bottom:200.866667pt;}
.y52{bottom:202.946667pt;}
.y27{bottom:219.266667pt;}
.y51{bottom:221.346667pt;}
.y26{bottom:237.666667pt;}
.y50{bottom:239.746667pt;}
.y25{bottom:256.066667pt;}
.y4f{bottom:257.988000pt;}
.y24{bottom:274.466667pt;}
.y4e{bottom:276.388000pt;}
.y23{bottom:292.866667pt;}
.y4d{bottom:294.788000pt;}
.y22{bottom:311.266667pt;}
.y4c{bottom:313.188000pt;}
.y21{bottom:329.666667pt;}
.y4b{bottom:331.588000pt;}
.y20{bottom:348.066667pt;}
.y4a{bottom:349.988000pt;}
.y1f{bottom:366.466667pt;}
.y49{bottom:368.388000pt;}
.y1e{bottom:384.866667pt;}
.y48{bottom:386.788000pt;}
.y1d{bottom:421.666667pt;}
.y47{bottom:423.588000pt;}
.y1c{bottom:458.788000pt;}
.y46{bottom:460.388000pt;}
.y1b{bottom:477.188000pt;}
.y45{bottom:478.788000pt;}
.y1a{bottom:495.588000pt;}
.y44{bottom:497.188000pt;}
.y19{bottom:513.988000pt;}
.y43{bottom:515.588000pt;}
.y18{bottom:532.388000pt;}
.y42{bottom:533.988000pt;}
.y17{bottom:550.788000pt;}
.y41{bottom:552.388000pt;}
.y16{bottom:569.188000pt;}
.y40{bottom:570.788000pt;}
.y15{bottom:587.588000pt;}
.y3f{bottom:589.188000pt;}
.y14{bottom:605.988000pt;}
.y3e{bottom:607.588000pt;}
.y13{bottom:624.388000pt;}
.y3d{bottom:625.988000pt;}
.y12{bottom:642.788000pt;}
.y3c{bottom:644.388000pt;}
.y11{bottom:661.188000pt;}
.y3b{bottom:662.788000pt;}
.y3a{bottom:681.188000pt;}
.y10{bottom:716.706667pt;}
.y39{bottom:717.988000pt;}
.yf{bottom:753.666667pt;}
.y38{bottom:754.788000pt;}
.ye{bottom:772.066667pt;}
.y37{bottom:773.188000pt;}
.y36{bottom:791.588000pt;}
.yd{bottom:809.188000pt;}
.y35{bottom:809.988000pt;}
.yc{bottom:827.588000pt;}
.y34{bottom:828.388000pt;}
.yb{bottom:845.988000pt;}
.y33{bottom:846.788000pt;}
.ya{bottom:864.388000pt;}
.y32{bottom:865.188000pt;}
.y9{bottom:882.788000pt;}
.y31{bottom:883.588000pt;}
.y8{bottom:901.188000pt;}
.y59{bottom:901.666667pt;}
.y30{bottom:901.988000pt;}
.y58{bottom:920.066667pt;}
.y2f{bottom:920.388000pt;}
.y7{bottom:938.306667pt;}
.y57{bottom:938.466667pt;}
.y2e{bottom:938.788000pt;}
.y56{bottom:956.866667pt;}
.y2d{bottom:957.188000pt;}
.y55{bottom:975.266667pt;}
.y2c{bottom:975.588000pt;}
.y54{bottom:993.666667pt;}
.y2b{bottom:993.988000pt;}
.y6{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:44.468750pt;}
.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;}
.x8{left:115.200000pt;}
.x7{left:137.600000pt;}
.x2{left:142.720000pt;}
.x6{left:208.800000pt;}
.x5{left:324.000000pt;}
}




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