
    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_ea489d2af4a5c01fb3c47a59.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_a2f71d0b8796fe1eeb9c9da8.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_67885dcc28b94a84922a67c8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_52e84ec3a13d24aeeeaed71d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.908203;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;}
}
.ws7{word-spacing:-55.944000px;}
.ws3{word-spacing:-38.862900px;}
.ws6{word-spacing:-38.790600px;}
.ws17{word-spacing:-38.662200px;}
.ws18{word-spacing:-38.661900px;}
.ws42{word-spacing:-38.656800px;}
.ws30{word-spacing:-38.589300px;}
.ws39{word-spacing:-38.580300px;}
.wsf{word-spacing:-38.430300px;}
.ws5{word-spacing:-38.430000px;}
.ws65{word-spacing:-38.426400px;}
.ws24{word-spacing:-38.360700px;}
.ws50{word-spacing:-38.310000px;}
.wsb{word-spacing:-38.304000px;}
.ws62{word-spacing:-38.296500px;}
.ws29{word-spacing:-38.294400px;}
.ws59{word-spacing:-38.293200px;}
.ws4{word-spacing:-38.289000px;}
.ws6b{word-spacing:-38.284200px;}
.ws6d{word-spacing:-38.166000px;}
.ws4b{word-spacing:-38.158200px;}
.ws27{word-spacing:-38.152800px;}
.ws4c{word-spacing:-38.149200px;}
.ws3f{word-spacing:-38.145600px;}
.ws46{word-spacing:-38.141100px;}
.ws69{word-spacing:-38.094000px;}
.ws2{word-spacing:-38.081700px;}
.ws49{word-spacing:-38.077200px;}
.ws3a{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws2d{word-spacing:-37.941000px;}
.ws13{word-spacing:-37.940400px;}
.ws3c{word-spacing:-37.935900px;}
.ws5f{word-spacing:-37.859400px;}
.ws1f{word-spacing:-37.723200px;}
.ws45{word-spacing:-37.662000px;}
.ws5c{word-spacing:-37.584000px;}
.ws1c{word-spacing:-37.565100px;}
.ws61{word-spacing:-37.139400px;}
.ws2b{word-spacing:-36.636300px;}
.ws60{word-spacing:-36.504000px;}
.ws67{word-spacing:-35.999700px;}
.ws36{word-spacing:-35.843400px;}
.ws35{word-spacing:-35.834400px;}
.ws37{word-spacing:-35.496000px;}
.ws38{word-spacing:-35.261400px;}
.ws16{word-spacing:-34.045200px;}
.ws48{word-spacing:-33.978000px;}
.ws4f{word-spacing:-32.894100px;}
.ws5a{word-spacing:-31.662000px;}
.ws5b{word-spacing:-31.536600px;}
.ws6c{word-spacing:-31.464000px;}
.ws8{word-spacing:-31.101900px;}
.ws52{word-spacing:-30.741900px;}
.ws51{word-spacing:-30.024000px;}
.ws40{word-spacing:-28.584000px;}
.ws41{word-spacing:-28.494000px;}
.ws66{word-spacing:-28.000800px;}
.wsa{word-spacing:-27.352200px;}
.ws55{word-spacing:-26.474400px;}
.ws6e{word-spacing:-26.418000px;}
.ws56{word-spacing:-26.340300px;}
.ws34{word-spacing:-24.761700px;}
.ws33{word-spacing:-24.270000px;}
.ws28{word-spacing:-24.256800px;}
.ws1d{word-spacing:-23.969700px;}
.ws44{word-spacing:-23.603400px;}
.ws1e{word-spacing:-23.460000px;}
.ws32{word-spacing:-23.328000px;}
.ws31{word-spacing:-23.247900px;}
.ws43{word-spacing:-22.880400px;}
.ws14{word-spacing:-22.816800px;}
.ws3d{word-spacing:-22.086300px;}
.ws3e{word-spacing:-21.744000px;}
.ws3b{word-spacing:-21.577500px;}
.ws12{word-spacing:-20.670000px;}
.ws2c{word-spacing:-19.350000px;}
.ws10{word-spacing:-19.222200px;}
.ws47{word-spacing:-18.499200px;}
.ws53{word-spacing:-18.498000px;}
.ws58{word-spacing:-17.697600px;}
.ws2f{word-spacing:-16.566000px;}
.ws2e{word-spacing:-16.543800px;}
.ws11{word-spacing:-14.250300px;}
.ws4a{word-spacing:-14.176800px;}
.ws26{word-spacing:-11.302200px;}
.ws6a{word-spacing:-10.354500px;}
.ws22{word-spacing:-9.864000px;}
.ws23{word-spacing:-9.497700px;}
.wse{word-spacing:-9.271800px;}
.ws5e{word-spacing:-6.461100px;}
.ws5d{word-spacing:-6.270000px;}
.ws1b{word-spacing:-5.904000px;}
.ws1a{word-spacing:-5.760000px;}
.ws15{word-spacing:-5.542200px;}
.ws54{word-spacing:-3.731400px;}
.ws21{word-spacing:2.740500px;}
.ws57{word-spacing:2.749500px;}
.ws20{word-spacing:3.600000px;}
.ws9{word-spacing:7.417800px;}
.ws25{word-spacing:8.856000px;}
.ws68{word-spacing:10.671300px;}
.wsd{word-spacing:15.632100px;}
.wsc{word-spacing:15.840000px;}
.ws2a{word-spacing:25.221300px;}
.ws19{word-spacing:26.856000px;}
.ws64{word-spacing:31.896000px;}
.ws63{word-spacing:31.902000px;}
.ws4e{word-spacing:33.703200px;}
.ws4d{word-spacing:34.000200px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.350900px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._13{width:20.796300px;}
._16{width:22.169100px;}
._c{width:23.170500px;}
._d{width:24.318000px;}
._4{width:26.207400px;}
._18{width:28.541700px;}
._1e{width:31.119300px;}
._e{width:33.048000px;}
._b{width:35.111700px;}
._9{width:38.146500px;}
._19{width:39.314700px;}
._14{width:41.095800px;}
._a{width:43.686900px;}
._11{width:46.074000px;}
._7{width:47.808000px;}
._8{width:48.927600px;}
._3{width:51.480000px;}
._1d{width:54.131400px;}
._6{width:58.076400px;}
._f{width:59.754000px;}
._5{width:64.728000px;}
._10{width:66.099600px;}
._1f{width:67.968000px;}
._17{width:70.022700px;}
._1a{width:72.709200px;}
._15{width:79.755000px;}
._12{width:82.597500px;}
._1b{width:91.207800px;}
._1c{width:100.800000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y57{bottom:102.496500px;}
.y29{bottom:120.675000px;}
.y28{bottom:141.375000px;}
.y56{bottom:144.255000px;}
.y27{bottom:162.075000px;}
.y55{bottom:164.955000px;}
.y26{bottom:203.836500px;}
.y54{bottom:206.715000px;}
.y25{bottom:224.536500px;}
.y53{bottom:227.236500px;}
.y24{bottom:245.236500px;}
.y52{bottom:247.936500px;}
.y51{bottom:268.636500px;}
.y23{bottom:286.815000px;}
.y22{bottom:307.515000px;}
.y50{bottom:310.396500px;}
.y21{bottom:328.215000px;}
.y4f{bottom:331.096500px;}
.y20{bottom:348.915000px;}
.y4e{bottom:351.795000px;}
.y1f{bottom:369.615000px;}
.y4d{bottom:372.496500px;}
.y1e{bottom:390.315000px;}
.y1d{bottom:411.015000px;}
.y4c{bottom:414.075000px;}
.y1c{bottom:431.715000px;}
.y4b{bottom:434.775000px;}
.y4a{bottom:455.475000px;}
.y1b{bottom:473.475000px;}
.y49{bottom:497.236500px;}
.y1a{bottom:515.236500px;}
.y48{bottom:517.936500px;}
.y19{bottom:535.936500px;}
.y47{bottom:538.636500px;}
.y18{bottom:556.636500px;}
.y46{bottom:559.336500px;}
.y17{bottom:577.336500px;}
.y45{bottom:580.036500px;}
.y44{bottom:600.736500px;}
.y16{bottom:618.915000px;}
.y43{bottom:621.436500px;}
.y15{bottom:639.615000px;}
.y42{bottom:642.136500px;}
.y14{bottom:660.315000px;}
.y41{bottom:662.836500px;}
.y13{bottom:681.015000px;}
.y68{bottom:682.096500px;}
.y40{bottom:683.536500px;}
.y12{bottom:701.715000px;}
.y67{bottom:702.795000px;}
.y3f{bottom:704.236500px;}
.y11{bottom:722.415000px;}
.y66{bottom:723.496500px;}
.y3e{bottom:724.936500px;}
.y65{bottom:744.195000px;}
.y3d{bottom:745.636500px;}
.y10{bottom:764.175000px;}
.y64{bottom:764.895000px;}
.y3c{bottom:766.336500px;}
.yf{bottom:784.875000px;}
.y63{bottom:785.596500px;}
.y3b{bottom:787.036500px;}
.y62{bottom:806.295000px;}
.y3a{bottom:807.736500px;}
.ye{bottom:826.636500px;}
.y61{bottom:826.996500px;}
.y39{bottom:828.436500px;}
.yd{bottom:847.336500px;}
.y38{bottom:849.136500px;}
.yc{bottom:868.036500px;}
.y60{bottom:868.575000px;}
.y37{bottom:869.836500px;}
.yb{bottom:888.736500px;}
.y36{bottom:890.536500px;}
.y5f{bottom:910.336500px;}
.y35{bottom:911.236500px;}
.ya{bottom:930.315000px;}
.y5e{bottom:931.036500px;}
.y34{bottom:931.936500px;}
.y9{bottom:951.015000px;}
.y5d{bottom:951.736500px;}
.y33{bottom:952.636500px;}
.y8{bottom:971.715000px;}
.y5c{bottom:972.436500px;}
.y32{bottom:973.336500px;}
.y31{bottom:994.036500px;}
.y5b{bottom:1014.195000px;}
.y30{bottom:1014.736500px;}
.y5a{bottom:1034.895000px;}
.y2f{bottom:1035.436500px;}
.y2e{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y59{bottom:1076.475000px;}
.y2d{bottom:1076.836500px;}
.y58{bottom:1097.175000px;}
.y2c{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y2b{bottom:1118.236500px;}
.y2a{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h4{height:49.992188px;}
.h2{height:62.261719px;}
.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;}
.xb{left:129.600000px;}
.x8{left:143.100000px;}
.xd{left:156.600000px;}
.x2{left:160.560000px;}
.xc{left:170.100000px;}
.x9{left:177.300000px;}
.x7{left:357.480000px;}
.x6{left:396.720000px;}
.xa{left:410.400000px;}
.x5{left:420.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws3{word-spacing:-34.544800pt;}
.ws6{word-spacing:-34.480533pt;}
.ws17{word-spacing:-34.366400pt;}
.ws18{word-spacing:-34.366133pt;}
.ws42{word-spacing:-34.361600pt;}
.ws30{word-spacing:-34.301600pt;}
.ws39{word-spacing:-34.293600pt;}
.wsf{word-spacing:-34.160267pt;}
.ws5{word-spacing:-34.160000pt;}
.ws65{word-spacing:-34.156800pt;}
.ws24{word-spacing:-34.098400pt;}
.ws50{word-spacing:-34.053333pt;}
.wsb{word-spacing:-34.048000pt;}
.ws62{word-spacing:-34.041333pt;}
.ws29{word-spacing:-34.039467pt;}
.ws59{word-spacing:-34.038400pt;}
.ws4{word-spacing:-34.034667pt;}
.ws6b{word-spacing:-34.030400pt;}
.ws6d{word-spacing:-33.925333pt;}
.ws4b{word-spacing:-33.918400pt;}
.ws27{word-spacing:-33.913600pt;}
.ws4c{word-spacing:-33.910400pt;}
.ws3f{word-spacing:-33.907200pt;}
.ws46{word-spacing:-33.903200pt;}
.ws69{word-spacing:-33.861333pt;}
.ws2{word-spacing:-33.850400pt;}
.ws49{word-spacing:-33.846400pt;}
.ws3a{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws2d{word-spacing:-33.725333pt;}
.ws13{word-spacing:-33.724800pt;}
.ws3c{word-spacing:-33.720800pt;}
.ws5f{word-spacing:-33.652800pt;}
.ws1f{word-spacing:-33.531733pt;}
.ws45{word-spacing:-33.477333pt;}
.ws5c{word-spacing:-33.408000pt;}
.ws1c{word-spacing:-33.391200pt;}
.ws61{word-spacing:-33.012800pt;}
.ws2b{word-spacing:-32.565600pt;}
.ws60{word-spacing:-32.448000pt;}
.ws67{word-spacing:-31.999733pt;}
.ws36{word-spacing:-31.860800pt;}
.ws35{word-spacing:-31.852800pt;}
.ws37{word-spacing:-31.552000pt;}
.ws38{word-spacing:-31.343467pt;}
.ws16{word-spacing:-30.262400pt;}
.ws48{word-spacing:-30.202667pt;}
.ws4f{word-spacing:-29.239200pt;}
.ws5a{word-spacing:-28.144000pt;}
.ws5b{word-spacing:-28.032533pt;}
.ws6c{word-spacing:-27.968000pt;}
.ws8{word-spacing:-27.646133pt;}
.ws52{word-spacing:-27.326133pt;}
.ws51{word-spacing:-26.688000pt;}
.ws40{word-spacing:-25.408000pt;}
.ws41{word-spacing:-25.328000pt;}
.ws66{word-spacing:-24.889600pt;}
.wsa{word-spacing:-24.313067pt;}
.ws55{word-spacing:-23.532800pt;}
.ws6e{word-spacing:-23.482667pt;}
.ws56{word-spacing:-23.413600pt;}
.ws34{word-spacing:-22.010400pt;}
.ws33{word-spacing:-21.573333pt;}
.ws28{word-spacing:-21.561600pt;}
.ws1d{word-spacing:-21.306400pt;}
.ws44{word-spacing:-20.980800pt;}
.ws1e{word-spacing:-20.853333pt;}
.ws32{word-spacing:-20.736000pt;}
.ws31{word-spacing:-20.664800pt;}
.ws43{word-spacing:-20.338133pt;}
.ws14{word-spacing:-20.281600pt;}
.ws3d{word-spacing:-19.632267pt;}
.ws3e{word-spacing:-19.328000pt;}
.ws3b{word-spacing:-19.180000pt;}
.ws12{word-spacing:-18.373333pt;}
.ws2c{word-spacing:-17.200000pt;}
.ws10{word-spacing:-17.086400pt;}
.ws47{word-spacing:-16.443733pt;}
.ws53{word-spacing:-16.442667pt;}
.ws58{word-spacing:-15.731200pt;}
.ws2f{word-spacing:-14.725333pt;}
.ws2e{word-spacing:-14.705600pt;}
.ws11{word-spacing:-12.666933pt;}
.ws4a{word-spacing:-12.601600pt;}
.ws26{word-spacing:-10.046400pt;}
.ws6a{word-spacing:-9.204000pt;}
.ws22{word-spacing:-8.768000pt;}
.ws23{word-spacing:-8.442400pt;}
.wse{word-spacing:-8.241600pt;}
.ws5e{word-spacing:-5.743200pt;}
.ws5d{word-spacing:-5.573333pt;}
.ws1b{word-spacing:-5.248000pt;}
.ws1a{word-spacing:-5.120000pt;}
.ws15{word-spacing:-4.926400pt;}
.ws54{word-spacing:-3.316800pt;}
.ws21{word-spacing:2.436000pt;}
.ws57{word-spacing:2.444000pt;}
.ws20{word-spacing:3.200000pt;}
.ws9{word-spacing:6.593600pt;}
.ws25{word-spacing:7.872000pt;}
.ws68{word-spacing:9.485600pt;}
.wsd{word-spacing:13.895200pt;}
.wsc{word-spacing:14.080000pt;}
.ws2a{word-spacing:22.418933pt;}
.ws19{word-spacing:23.872000pt;}
.ws64{word-spacing:28.352000pt;}
.ws63{word-spacing:28.357333pt;}
.ws4e{word-spacing:29.958400pt;}
.ws4d{word-spacing:30.222400pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-1.200800pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._13{width:18.485600pt;}
._16{width:19.705867pt;}
._c{width:20.596000pt;}
._d{width:21.616000pt;}
._4{width:23.295467pt;}
._18{width:25.370400pt;}
._1e{width:27.661600pt;}
._e{width:29.376000pt;}
._b{width:31.210400pt;}
._9{width:33.908000pt;}
._19{width:34.946400pt;}
._14{width:36.529600pt;}
._a{width:38.832800pt;}
._11{width:40.954667pt;}
._7{width:42.496000pt;}
._8{width:43.491200pt;}
._3{width:45.760000pt;}
._1d{width:48.116800pt;}
._6{width:51.623467pt;}
._f{width:53.114667pt;}
._5{width:57.536000pt;}
._10{width:58.755200pt;}
._1f{width:60.416000pt;}
._17{width:62.242400pt;}
._1a{width:64.630400pt;}
._15{width:70.893333pt;}
._12{width:73.420000pt;}
._1b{width:81.073600pt;}
._1c{width:89.600000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y57{bottom:91.108000pt;}
.y29{bottom:107.266667pt;}
.y28{bottom:125.666667pt;}
.y56{bottom:128.226667pt;}
.y27{bottom:144.066667pt;}
.y55{bottom:146.626667pt;}
.y26{bottom:181.188000pt;}
.y54{bottom:183.746667pt;}
.y25{bottom:199.588000pt;}
.y53{bottom:201.988000pt;}
.y24{bottom:217.988000pt;}
.y52{bottom:220.388000pt;}
.y51{bottom:238.788000pt;}
.y23{bottom:254.946667pt;}
.y22{bottom:273.346667pt;}
.y50{bottom:275.908000pt;}
.y21{bottom:291.746667pt;}
.y4f{bottom:294.308000pt;}
.y20{bottom:310.146667pt;}
.y4e{bottom:312.706667pt;}
.y1f{bottom:328.546667pt;}
.y4d{bottom:331.108000pt;}
.y1e{bottom:346.946667pt;}
.y1d{bottom:365.346667pt;}
.y4c{bottom:368.066667pt;}
.y1c{bottom:383.746667pt;}
.y4b{bottom:386.466667pt;}
.y4a{bottom:404.866667pt;}
.y1b{bottom:420.866667pt;}
.y49{bottom:441.988000pt;}
.y1a{bottom:457.988000pt;}
.y48{bottom:460.388000pt;}
.y19{bottom:476.388000pt;}
.y47{bottom:478.788000pt;}
.y18{bottom:494.788000pt;}
.y46{bottom:497.188000pt;}
.y17{bottom:513.188000pt;}
.y45{bottom:515.588000pt;}
.y44{bottom:533.988000pt;}
.y16{bottom:550.146667pt;}
.y43{bottom:552.388000pt;}
.y15{bottom:568.546667pt;}
.y42{bottom:570.788000pt;}
.y14{bottom:586.946667pt;}
.y41{bottom:589.188000pt;}
.y13{bottom:605.346667pt;}
.y68{bottom:606.308000pt;}
.y40{bottom:607.588000pt;}
.y12{bottom:623.746667pt;}
.y67{bottom:624.706667pt;}
.y3f{bottom:625.988000pt;}
.y11{bottom:642.146667pt;}
.y66{bottom:643.108000pt;}
.y3e{bottom:644.388000pt;}
.y65{bottom:661.506667pt;}
.y3d{bottom:662.788000pt;}
.y10{bottom:679.266667pt;}
.y64{bottom:679.906667pt;}
.y3c{bottom:681.188000pt;}
.yf{bottom:697.666667pt;}
.y63{bottom:698.308000pt;}
.y3b{bottom:699.588000pt;}
.y62{bottom:716.706667pt;}
.y3a{bottom:717.988000pt;}
.ye{bottom:734.788000pt;}
.y61{bottom:735.108000pt;}
.y39{bottom:736.388000pt;}
.yd{bottom:753.188000pt;}
.y38{bottom:754.788000pt;}
.yc{bottom:771.588000pt;}
.y60{bottom:772.066667pt;}
.y37{bottom:773.188000pt;}
.yb{bottom:789.988000pt;}
.y36{bottom:791.588000pt;}
.y5f{bottom:809.188000pt;}
.y35{bottom:809.988000pt;}
.ya{bottom:826.946667pt;}
.y5e{bottom:827.588000pt;}
.y34{bottom:828.388000pt;}
.y9{bottom:845.346667pt;}
.y5d{bottom:845.988000pt;}
.y33{bottom:846.788000pt;}
.y8{bottom:863.746667pt;}
.y5c{bottom:864.388000pt;}
.y32{bottom:865.188000pt;}
.y31{bottom:883.588000pt;}
.y5b{bottom:901.506667pt;}
.y30{bottom:901.988000pt;}
.y5a{bottom:919.906667pt;}
.y2f{bottom:920.388000pt;}
.y2e{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y59{bottom:956.866667pt;}
.y2d{bottom:957.188000pt;}
.y58{bottom:975.266667pt;}
.y2c{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y2b{bottom:993.988000pt;}
.y2a{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h4{height:44.437500pt;}
.h2{height:55.343750pt;}
.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;}
.xb{left:115.200000pt;}
.x8{left:127.200000pt;}
.xd{left:139.200000pt;}
.x2{left:142.720000pt;}
.xc{left:151.200000pt;}
.x9{left:157.600000pt;}
.x7{left:317.760000pt;}
.x6{left:352.640000pt;}
.xa{left:364.800000pt;}
.x5{left:373.600000pt;}
}




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