
    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_8e874a7fdfb5e685385c6e37.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_058cef9299321d0db5ed5bf5.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_2a065ece3b184ba00fd0bde2.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_cd7115d24a3caf074657f98a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e94584d143983da2bd69c28c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.766113;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;}
}
.ws14{word-spacing:-55.944000px;}
.ws30{word-spacing:-38.878200px;}
.ws21{word-spacing:-38.874600px;}
.ws45{word-spacing:-38.871000px;}
.ws39{word-spacing:-38.727900px;}
.ws56{word-spacing:-38.662200px;}
.ws52{word-spacing:-38.661300px;}
.ws6{word-spacing:-38.657700px;}
.ws57{word-spacing:-38.654100px;}
.ws5{word-spacing:-38.647800px;}
.ws58{word-spacing:-38.584800px;}
.ws3b{word-spacing:-38.524200px;}
.ws10{word-spacing:-38.441700px;}
.ws9{word-spacing:-38.440500px;}
.ws53{word-spacing:-38.437200px;}
.ws3{word-spacing:-38.374200px;}
.ws25{word-spacing:-38.370600px;}
.ws38{word-spacing:-38.367900px;}
.ws22{word-spacing:-38.310000px;}
.ws2e{word-spacing:-38.304000px;}
.ws47{word-spacing:-38.300400px;}
.ws3d{word-spacing:-38.298600px;}
.ws51{word-spacing:-38.295900px;}
.ws48{word-spacing:-38.294100px;}
.ws5b{word-spacing:-38.291400px;}
.ws46{word-spacing:-38.289600px;}
.ws3a{word-spacing:-38.160000px;}
.ws40{word-spacing:-38.158200px;}
.ws50{word-spacing:-38.154000px;}
.ws2d{word-spacing:-38.152500px;}
.ws4e{word-spacing:-38.149200px;}
.ws3f{word-spacing:-38.146500px;}
.wsa{word-spacing:-38.141100px;}
.ws1b{word-spacing:-37.948200px;}
.ws0{word-spacing:-37.944000px;}
.ws18{word-spacing:-37.940400px;}
.ws4{word-spacing:-37.938600px;}
.wsb{word-spacing:-37.937400px;}
.ws2{word-spacing:-37.931400px;}
.wsc{word-spacing:-37.930500px;}
.ws3c{word-spacing:-37.440000px;}
.ws2c{word-spacing:-37.435500px;}
.ws37{word-spacing:-35.784000px;}
.ws35{word-spacing:-35.064000px;}
.ws24{word-spacing:-34.705500px;}
.ws1e{word-spacing:-34.700400px;}
.ws1c{word-spacing:-34.408800px;}
.ws27{word-spacing:-34.344000px;}
.ws41{word-spacing:-33.983700px;}
.ws2b{word-spacing:-33.977700px;}
.ws1a{word-spacing:-33.620100px;}
.ws8{word-spacing:-33.547800px;}
.ws19{word-spacing:-33.110100px;}
.ws2f{word-spacing:-31.464000px;}
.ws59{word-spacing:-31.168800px;}
.ws15{word-spacing:-30.960000px;}
.wse{word-spacing:-30.383700px;}
.wsd{word-spacing:-30.240000px;}
.ws16{word-spacing:-29.943000px;}
.ws4a{word-spacing:-28.648800px;}
.ws5d{word-spacing:-28.584000px;}
.ws1f{word-spacing:-27.864000px;}
.wsf{word-spacing:-27.504000px;}
.ws32{word-spacing:-27.144000px;}
.ws5f{word-spacing:-25.698000px;}
.ws1d{word-spacing:-24.984000px;}
.ws55{word-spacing:-24.258000px;}
.ws49{word-spacing:-23.760600px;}
.ws60{word-spacing:-23.544000px;}
.ws43{word-spacing:-23.172300px;}
.ws33{word-spacing:-22.824000px;}
.ws54{word-spacing:-19.944000px;}
.ws44{word-spacing:-18.855000px;}
.ws34{word-spacing:-18.704100px;}
.ws7{word-spacing:-18.472500px;}
.ws20{word-spacing:-18.146400px;}
.ws17{word-spacing:-18.000000px;}
.ws5e{word-spacing:-17.784000px;}
.ws23{word-spacing:-15.846000px;}
.ws28{word-spacing:-13.464000px;}
.ws36{word-spacing:-12.744000px;}
.ws2a{word-spacing:-11.510100px;}
.ws4c{word-spacing:-10.071000px;}
.ws4d{word-spacing:-9.991800px;}
.ws4b{word-spacing:-8.770200px;}
.ws5a{word-spacing:-8.424000px;}
.ws4f{word-spacing:-2.728800px;}
.ws42{word-spacing:-2.664000px;}
.ws26{word-spacing:0.000000px;}
.ws31{word-spacing:1.302300px;}
.ws13{word-spacing:4.536000px;}
.ws29{word-spacing:7.795800px;}
.ws3e{word-spacing:31.549500px;}
.ws12{word-spacing:50.610000px;}
.ws11{word-spacing:51.120000px;}
.ws5c{word-spacing:83.345700px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._1b{width:17.506800px;}
._4{width:18.775800px;}
._f{width:20.367000px;}
._12{width:21.450000px;}
._9{width:22.624200px;}
._8{width:23.730300px;}
._1c{width:26.286000px;}
._5{width:27.303900px;}
._17{width:28.435200px;}
._6{width:29.592000px;}
._a{width:32.034000px;}
._16{width:33.544800px;}
._15{width:34.836300px;}
._1{width:36.000000px;}
._b{width:38.895600px;}
._c{width:41.472000px;}
._11{width:44.346000px;}
._e{width:45.926100px;}
._1a{width:47.016000px;}
._18{width:48.234000px;}
._14{width:54.315600px;}
._10{width:58.762500px;}
._d{width:64.852200px;}
._13{width:88.972500px;}
._19{width:92.427600px;}
._7{width:107.734800px;}
._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;}
.fs2{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y24{bottom:119.596500px;}
.y58{bottom:139.936500px;}
.y23{bottom:140.296500px;}
.y42{bottom:161.536500px;}
.y57{bottom:181.696500px;}
.y22{bottom:181.875000px;}
.y21{bottom:202.575000px;}
.y41{bottom:203.295000px;}
.y56{bottom:223.275000px;}
.y20{bottom:244.336500px;}
.y40{bottom:244.875000px;}
.y55{bottom:265.036500px;}
.y1f{bottom:286.096500px;}
.y3f{bottom:286.636500px;}
.y54{bottom:306.795000px;}
.y3e{bottom:307.336500px;}
.y1e{bottom:327.675000px;}
.y1d{bottom:348.375000px;}
.y3d{bottom:349.096500px;}
.y1c{bottom:369.075000px;}
.y53{bottom:390.136500px;}
.y3c{bottom:390.675000px;}
.y1b{bottom:410.836500px;}
.y1a{bottom:431.536500px;}
.y3b{bottom:432.436500px;}
.y19{bottom:452.236500px;}
.y6b{bottom:454.036500px;}
.y18{bottom:472.936500px;}
.y52{bottom:473.295000px;}
.y3a{bottom:474.196500px;}
.y6a{bottom:477.436500px;}
.y69{bottom:501.015000px;}
.y51{bottom:514.875000px;}
.y39{bottom:515.775000px;}
.y68{bottom:521.715000px;}
.y67{bottom:545.115000px;}
.y17{bottom:556.275000px;}
.y50{bottom:556.636500px;}
.y38{bottom:557.536500px;}
.y66{bottom:568.695000px;}
.y16{bottom:576.975000px;}
.y37{bottom:578.236500px;}
.y65{bottom:589.396500px;}
.y4f{bottom:598.396500px;}
.y36{bottom:598.936500px;}
.y64{bottom:612.795000px;}
.y15{bottom:618.736500px;}
.y35{bottom:619.636500px;}
.y63{bottom:633.496500px;}
.y14{bottom:639.436500px;}
.y4e{bottom:639.975000px;}
.y62{bottom:657.075000px;}
.y13{bottom:660.136500px;}
.y34{bottom:661.396500px;}
.y61{bottom:677.775000px;}
.y4d{bottom:681.736500px;}
.y33{bottom:682.096500px;}
.y12{bottom:701.896500px;}
.y4c{bottom:702.436500px;}
.y60{bottom:722.236500px;}
.y11{bottom:722.596500px;}
.y32{bottom:723.675000px;}
.y10{bottom:743.295000px;}
.y4b{bottom:744.195000px;}
.y31{bottom:744.375000px;}
.y5f{bottom:763.996500px;}
.y4a{bottom:764.895000px;}
.y30{bottom:765.075000px;}
.yf{bottom:784.875000px;}
.y49{bottom:785.596500px;}
.y2f{bottom:785.775000px;}
.ye{bottom:805.575000px;}
.y48{bottom:806.295000px;}
.y2e{bottom:806.475000px;}
.yd{bottom:826.275000px;}
.y47{bottom:826.996500px;}
.y5e{bottom:846.975000px;}
.y46{bottom:847.695000px;}
.y2d{bottom:848.236500px;}
.y2c{bottom:868.936500px;}
.y5d{bottom:888.736500px;}
.y45{bottom:889.275000px;}
.y2b{bottom:889.636500px;}
.yc{bottom:909.795000px;}
.y5c{bottom:930.495000px;}
.y44{bottom:931.036500px;}
.y2a{bottom:931.395000px;}
.yb{bottom:951.375000px;}
.y5b{bottom:972.075000px;}
.y43{bottom:972.795000px;}
.y29{bottom:972.975000px;}
.ya{bottom:993.136500px;}
.y28{bottom:993.675000px;}
.y5a{bottom:1013.836500px;}
.y27{bottom:1014.375000px;}
.y26{bottom:1035.075000px;}
.y59{bottom:1055.595000px;}
.y25{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h6{height:49.992188px;}
.h7{height:50.414063px;}
.h8{height:58.532520px;}
.h2{height:62.261719px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.xa{left:132.120000px;}
.x4{left:144.900000px;}
.x9{left:180.720000px;}
.x5{left:198.360000px;}
.x7{left:418.320000px;}
.x3{left:470.025000px;}
.x6{left:507.600000px;}
.x8{left:660.420000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws14{word-spacing:-49.728000pt;}
.ws30{word-spacing:-34.558400pt;}
.ws21{word-spacing:-34.555200pt;}
.ws45{word-spacing:-34.552000pt;}
.ws39{word-spacing:-34.424800pt;}
.ws56{word-spacing:-34.366400pt;}
.ws52{word-spacing:-34.365600pt;}
.ws6{word-spacing:-34.362400pt;}
.ws57{word-spacing:-34.359200pt;}
.ws5{word-spacing:-34.353600pt;}
.ws58{word-spacing:-34.297600pt;}
.ws3b{word-spacing:-34.243733pt;}
.ws10{word-spacing:-34.170400pt;}
.ws9{word-spacing:-34.169333pt;}
.ws53{word-spacing:-34.166400pt;}
.ws3{word-spacing:-34.110400pt;}
.ws25{word-spacing:-34.107200pt;}
.ws38{word-spacing:-34.104800pt;}
.ws22{word-spacing:-34.053333pt;}
.ws2e{word-spacing:-34.048000pt;}
.ws47{word-spacing:-34.044800pt;}
.ws3d{word-spacing:-34.043200pt;}
.ws51{word-spacing:-34.040800pt;}
.ws48{word-spacing:-34.039200pt;}
.ws5b{word-spacing:-34.036800pt;}
.ws46{word-spacing:-34.035200pt;}
.ws3a{word-spacing:-33.920000pt;}
.ws40{word-spacing:-33.918400pt;}
.ws50{word-spacing:-33.914667pt;}
.ws2d{word-spacing:-33.913333pt;}
.ws4e{word-spacing:-33.910400pt;}
.ws3f{word-spacing:-33.908000pt;}
.wsa{word-spacing:-33.903200pt;}
.ws1b{word-spacing:-33.731733pt;}
.ws0{word-spacing:-33.728000pt;}
.ws18{word-spacing:-33.724800pt;}
.ws4{word-spacing:-33.723200pt;}
.wsb{word-spacing:-33.722133pt;}
.ws2{word-spacing:-33.716800pt;}
.wsc{word-spacing:-33.716000pt;}
.ws3c{word-spacing:-33.280000pt;}
.ws2c{word-spacing:-33.276000pt;}
.ws37{word-spacing:-31.808000pt;}
.ws35{word-spacing:-31.168000pt;}
.ws24{word-spacing:-30.849333pt;}
.ws1e{word-spacing:-30.844800pt;}
.ws1c{word-spacing:-30.585600pt;}
.ws27{word-spacing:-30.528000pt;}
.ws41{word-spacing:-30.207733pt;}
.ws2b{word-spacing:-30.202400pt;}
.ws1a{word-spacing:-29.884533pt;}
.ws8{word-spacing:-29.820267pt;}
.ws19{word-spacing:-29.431200pt;}
.ws2f{word-spacing:-27.968000pt;}
.ws59{word-spacing:-27.705600pt;}
.ws15{word-spacing:-27.520000pt;}
.wse{word-spacing:-27.007733pt;}
.wsd{word-spacing:-26.880000pt;}
.ws16{word-spacing:-26.616000pt;}
.ws4a{word-spacing:-25.465600pt;}
.ws5d{word-spacing:-25.408000pt;}
.ws1f{word-spacing:-24.768000pt;}
.wsf{word-spacing:-24.448000pt;}
.ws32{word-spacing:-24.128000pt;}
.ws5f{word-spacing:-22.842667pt;}
.ws1d{word-spacing:-22.208000pt;}
.ws55{word-spacing:-21.562667pt;}
.ws49{word-spacing:-21.120533pt;}
.ws60{word-spacing:-20.928000pt;}
.ws43{word-spacing:-20.597600pt;}
.ws33{word-spacing:-20.288000pt;}
.ws54{word-spacing:-17.728000pt;}
.ws44{word-spacing:-16.760000pt;}
.ws34{word-spacing:-16.625867pt;}
.ws7{word-spacing:-16.420000pt;}
.ws20{word-spacing:-16.130133pt;}
.ws17{word-spacing:-16.000000pt;}
.ws5e{word-spacing:-15.808000pt;}
.ws23{word-spacing:-14.085333pt;}
.ws28{word-spacing:-11.968000pt;}
.ws36{word-spacing:-11.328000pt;}
.ws2a{word-spacing:-10.231200pt;}
.ws4c{word-spacing:-8.952000pt;}
.ws4d{word-spacing:-8.881600pt;}
.ws4b{word-spacing:-7.795733pt;}
.ws5a{word-spacing:-7.488000pt;}
.ws4f{word-spacing:-2.425600pt;}
.ws42{word-spacing:-2.368000pt;}
.ws26{word-spacing:0.000000pt;}
.ws31{word-spacing:1.157600pt;}
.ws13{word-spacing:4.032000pt;}
.ws29{word-spacing:6.929600pt;}
.ws3e{word-spacing:28.044000pt;}
.ws12{word-spacing:44.986667pt;}
.ws11{word-spacing:45.440000pt;}
.ws5c{word-spacing:74.085067pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._1b{width:15.561600pt;}
._4{width:16.689600pt;}
._f{width:18.104000pt;}
._12{width:19.066667pt;}
._9{width:20.110400pt;}
._8{width:21.093600pt;}
._1c{width:23.365333pt;}
._5{width:24.270133pt;}
._17{width:25.275733pt;}
._6{width:26.304000pt;}
._a{width:28.474667pt;}
._16{width:29.817600pt;}
._15{width:30.965600pt;}
._1{width:32.000000pt;}
._b{width:34.573867pt;}
._c{width:36.864000pt;}
._11{width:39.418667pt;}
._e{width:40.823200pt;}
._1a{width:41.792000pt;}
._18{width:42.874667pt;}
._14{width:48.280533pt;}
._10{width:52.233333pt;}
._d{width:57.646400pt;}
._13{width:79.086667pt;}
._19{width:82.157867pt;}
._7{width:95.764267pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y24{bottom:106.308000pt;}
.y58{bottom:124.388000pt;}
.y23{bottom:124.708000pt;}
.y42{bottom:143.588000pt;}
.y57{bottom:161.508000pt;}
.y22{bottom:161.666667pt;}
.y21{bottom:180.066667pt;}
.y41{bottom:180.706667pt;}
.y56{bottom:198.466667pt;}
.y20{bottom:217.188000pt;}
.y40{bottom:217.666667pt;}
.y55{bottom:235.588000pt;}
.y1f{bottom:254.308000pt;}
.y3f{bottom:254.788000pt;}
.y54{bottom:272.706667pt;}
.y3e{bottom:273.188000pt;}
.y1e{bottom:291.266667pt;}
.y1d{bottom:309.666667pt;}
.y3d{bottom:310.308000pt;}
.y1c{bottom:328.066667pt;}
.y53{bottom:346.788000pt;}
.y3c{bottom:347.266667pt;}
.y1b{bottom:365.188000pt;}
.y1a{bottom:383.588000pt;}
.y3b{bottom:384.388000pt;}
.y19{bottom:401.988000pt;}
.y6b{bottom:403.588000pt;}
.y18{bottom:420.388000pt;}
.y52{bottom:420.706667pt;}
.y3a{bottom:421.508000pt;}
.y6a{bottom:424.388000pt;}
.y69{bottom:445.346667pt;}
.y51{bottom:457.666667pt;}
.y39{bottom:458.466667pt;}
.y68{bottom:463.746667pt;}
.y67{bottom:484.546667pt;}
.y17{bottom:494.466667pt;}
.y50{bottom:494.788000pt;}
.y38{bottom:495.588000pt;}
.y66{bottom:505.506667pt;}
.y16{bottom:512.866667pt;}
.y37{bottom:513.988000pt;}
.y65{bottom:523.908000pt;}
.y4f{bottom:531.908000pt;}
.y36{bottom:532.388000pt;}
.y64{bottom:544.706667pt;}
.y15{bottom:549.988000pt;}
.y35{bottom:550.788000pt;}
.y63{bottom:563.108000pt;}
.y14{bottom:568.388000pt;}
.y4e{bottom:568.866667pt;}
.y62{bottom:584.066667pt;}
.y13{bottom:586.788000pt;}
.y34{bottom:587.908000pt;}
.y61{bottom:602.466667pt;}
.y4d{bottom:605.988000pt;}
.y33{bottom:606.308000pt;}
.y12{bottom:623.908000pt;}
.y4c{bottom:624.388000pt;}
.y60{bottom:641.988000pt;}
.y11{bottom:642.308000pt;}
.y32{bottom:643.266667pt;}
.y10{bottom:660.706667pt;}
.y4b{bottom:661.506667pt;}
.y31{bottom:661.666667pt;}
.y5f{bottom:679.108000pt;}
.y4a{bottom:679.906667pt;}
.y30{bottom:680.066667pt;}
.yf{bottom:697.666667pt;}
.y49{bottom:698.308000pt;}
.y2f{bottom:698.466667pt;}
.ye{bottom:716.066667pt;}
.y48{bottom:716.706667pt;}
.y2e{bottom:716.866667pt;}
.yd{bottom:734.466667pt;}
.y47{bottom:735.108000pt;}
.y5e{bottom:752.866667pt;}
.y46{bottom:753.506667pt;}
.y2d{bottom:753.988000pt;}
.y2c{bottom:772.388000pt;}
.y5d{bottom:789.988000pt;}
.y45{bottom:790.466667pt;}
.y2b{bottom:790.788000pt;}
.yc{bottom:808.706667pt;}
.y5c{bottom:827.106667pt;}
.y44{bottom:827.588000pt;}
.y2a{bottom:827.906667pt;}
.yb{bottom:845.666667pt;}
.y5b{bottom:864.066667pt;}
.y43{bottom:864.706667pt;}
.y29{bottom:864.866667pt;}
.ya{bottom:882.788000pt;}
.y28{bottom:883.266667pt;}
.y5a{bottom:901.188000pt;}
.y27{bottom:901.666667pt;}
.y26{bottom:920.066667pt;}
.y59{bottom:938.306667pt;}
.y25{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h6{height:44.437500pt;}
.h7{height:44.812500pt;}
.h8{height:52.028906pt;}
.h2{height:55.343750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.xa{left:117.440000pt;}
.x4{left:128.800000pt;}
.x9{left:160.640000pt;}
.x5{left:176.320000pt;}
.x7{left:371.840000pt;}
.x3{left:417.800000pt;}
.x6{left:451.200000pt;}
.x8{left:587.040000pt;}
.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; }
  