
    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_1919fdcd57e227cfb936af68.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_cb07137e8176ee9a202f44b8.woff2')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_cadc5ce332a4a432e705457c.woff2')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;}
.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;}
}
.ws5{word-spacing:-55.944000px;}
.ws1e{word-spacing:-38.660400px;}
.ws51{word-spacing:-38.656500px;}
.ws6{word-spacing:-38.649600px;}
.ws18{word-spacing:-38.578800px;}
.ws40{word-spacing:-38.442600px;}
.ws1c{word-spacing:-38.435400px;}
.ws7{word-spacing:-38.363700px;}
.ws1a{word-spacing:-38.166000px;}
.ws4{word-spacing:-38.160000px;}
.ws30{word-spacing:-38.156400px;}
.ws53{word-spacing:-38.153700px;}
.ws12{word-spacing:-38.149200px;}
.ws21{word-spacing:-38.147400px;}
.ws2{word-spacing:-38.081700px;}
.ws50{word-spacing:-37.947300px;}
.ws13{word-spacing:-37.944600px;}
.ws0{word-spacing:-37.944000px;}
.ws2f{word-spacing:-37.942200px;}
.ws11{word-spacing:-37.938600px;}
.ws39{word-spacing:-37.929600px;}
.ws28{word-spacing:-37.920600px;}
.wsa{word-spacing:-37.848600px;}
.ws42{word-spacing:-37.841400px;}
.ws1f{word-spacing:-37.440000px;}
.ws27{word-spacing:-37.436400px;}
.ws25{word-spacing:-37.432800px;}
.ws52{word-spacing:-37.430100px;}
.ws49{word-spacing:-37.218600px;}
.ws3{word-spacing:-37.213200px;}
.wsb{word-spacing:-36.716400px;}
.ws3e{word-spacing:-36.502200px;}
.ws45{word-spacing:-36.500400px;}
.ws43{word-spacing:-36.492600px;}
.ws20{word-spacing:-36.491400px;}
.ws8{word-spacing:-36.000000px;}
.ws35{word-spacing:-35.996400px;}
.ws44{word-spacing:-35.778600px;}
.ws47{word-spacing:-35.568600px;}
.ws2b{word-spacing:-35.280000px;}
.ws41{word-spacing:-35.274600px;}
.wse{word-spacing:-34.566000px;}
.ws17{word-spacing:-34.560000px;}
.ws23{word-spacing:-34.329600px;}
.ws31{word-spacing:-33.618600px;}
.ws26{word-spacing:-33.120000px;}
.ws4f{word-spacing:-33.116400px;}
.ws48{word-spacing:-32.900400px;}
.ws14{word-spacing:-32.591700px;}
.ws3a{word-spacing:-32.406000px;}
.ws15{word-spacing:-32.400000px;}
.ws4d{word-spacing:-31.449600px;}
.ws33{word-spacing:-31.235400px;}
.wsc{word-spacing:-30.956400px;}
.ws22{word-spacing:-30.744000px;}
.ws10{word-spacing:-30.731400px;}
.ws36{word-spacing:-30.017400px;}
.ws16{word-spacing:-29.516400px;}
.ws2d{word-spacing:-27.351000px;}
.ws32{word-spacing:-27.142200px;}
.ws4b{word-spacing:-27.140400px;}
.ws4e{word-spacing:-26.922600px;}
.wsd{word-spacing:-26.420400px;}
.ws3c{word-spacing:-25.702200px;}
.ws34{word-spacing:-25.196400px;}
.ws4c{word-spacing:-24.980400px;}
.ws2a{word-spacing:-24.973200px;}
.ws3b{word-spacing:-24.969600px;}
.ws9{word-spacing:-24.474600px;}
.ws1b{word-spacing:-24.188400px;}
.ws3d{word-spacing:-23.741100px;}
.ws4a{word-spacing:-23.032800px;}
.ws29{word-spacing:-22.322400px;}
.ws19{word-spacing:-21.600000px;}
.ws2c{word-spacing:-21.594000px;}
.ws2e{word-spacing:-19.939200px;}
.wsf{word-spacing:-16.562400px;}
.ws3f{word-spacing:-16.560000px;}
.ws37{word-spacing:-15.622200px;}
.ws24{word-spacing:-14.900400px;}
.ws38{word-spacing:-13.460400px;}
.ws46{word-spacing:-12.950400px;}
.ws1d{word-spacing:47.091600px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.019100px;}
._0{width:1.076400px;}
._c{width:17.962200px;}
._1{width:18.968400px;}
._13{width:20.016000px;}
._3{width:21.024000px;}
._4{width:22.338300px;}
._10{width:23.490600px;}
._7{width:24.815700px;}
._6{width:26.424000px;}
._8{width:27.566400px;}
._e{width:29.707200px;}
._d{width:32.042700px;}
._a{width:33.250800px;}
._14{width:34.346700px;}
._9{width:35.647200px;}
._f{width:37.137600px;}
._5{width:41.330400px;}
._11{width:43.538400px;}
._12{width:44.689200px;}
._15{width:82.800000px;}
._b{width:104.468400px;}
.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;}
.y4e{bottom:101.596500px;}
.y4d{bottom:122.296500px;}
.y4c{bottom:142.996500px;}
.y4b{bottom:163.696500px;}
.y23{bottom:182.236500px;}
.y4a{bottom:184.396500px;}
.y22{bottom:223.996500px;}
.y49{bottom:225.975000px;}
.y21{bottom:244.696500px;}
.y48{bottom:246.675000px;}
.y20{bottom:286.275000px;}
.y47{bottom:288.436500px;}
.y1f{bottom:306.975000px;}
.y46{bottom:309.136500px;}
.y45{bottom:329.836500px;}
.y1e{bottom:348.736500px;}
.y44{bottom:350.536500px;}
.y1d{bottom:369.436500px;}
.y43{bottom:371.236500px;}
.y1c{bottom:390.136500px;}
.y42{bottom:391.936500px;}
.y41{bottom:412.636500px;}
.y1b{bottom:431.896500px;}
.y40{bottom:433.336500px;}
.y1a{bottom:452.596500px;}
.y19{bottom:473.295000px;}
.y3f{bottom:475.096500px;}
.y18{bottom:493.996500px;}
.y3e{bottom:495.796500px;}
.y3d{bottom:516.496500px;}
.y17{bottom:535.575000px;}
.y3c{bottom:537.195000px;}
.y3b{bottom:557.896500px;}
.y16{bottom:577.336500px;}
.y3a{bottom:578.596500px;}
.y15{bottom:598.036500px;}
.y39{bottom:599.295000px;}
.y14{bottom:618.736500px;}
.y38{bottom:619.996500px;}
.y13{bottom:639.436500px;}
.y37{bottom:640.695000px;}
.y36{bottom:661.396500px;}
.y12{bottom:681.195000px;}
.y11{bottom:701.896500px;}
.y35{bottom:702.975000px;}
.y10{bottom:722.596500px;}
.y34{bottom:723.675000px;}
.yf{bottom:743.295000px;}
.y57{bottom:744.375000px;}
.y56{bottom:765.075000px;}
.y33{bottom:765.436500px;}
.ye{bottom:784.875000px;}
.y32{bottom:786.136500px;}
.yd{bottom:805.575000px;}
.y31{bottom:806.836500px;}
.yc{bottom:826.275000px;}
.y30{bottom:827.536500px;}
.yb{bottom:846.975000px;}
.y2f{bottom:848.236500px;}
.y55{bottom:848.596500px;}
.y2e{bottom:868.936500px;}
.y54{bottom:869.295000px;}
.y2d{bottom:889.636500px;}
.y53{bottom:889.995000px;}
.y52{bottom:910.695000px;}
.ya{bottom:930.495000px;}
.y2c{bottom:931.395000px;}
.y9{bottom:951.195000px;}
.y2b{bottom:952.095000px;}
.y2a{bottom:972.795000px;}
.y51{bottom:972.975000px;}
.y50{bottom:993.675000px;}
.y29{bottom:1014.375000px;}
.y8{bottom:1034.536500px;}
.y28{bottom:1035.075000px;}
.y27{bottom:1055.775000px;}
.y7{bottom:1076.295000px;}
.y26{bottom:1076.475000px;}
.y4f{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y25{bottom:1118.236500px;}
.y24{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;}
.xc{left:129.600000px;}
.xb{left:134.100000px;}
.x2{left:160.560000px;}
.x9{left:176.760000px;}
.x6{left:302.938500px;}
.x7{left:333.900000px;}
.x8{left:368.638500px;}
.x5{left:370.800000px;}
.xa{left:406.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-49.728000pt;}
.ws1e{word-spacing:-34.364800pt;}
.ws51{word-spacing:-34.361333pt;}
.ws6{word-spacing:-34.355200pt;}
.ws18{word-spacing:-34.292267pt;}
.ws40{word-spacing:-34.171200pt;}
.ws1c{word-spacing:-34.164800pt;}
.ws7{word-spacing:-34.101067pt;}
.ws1a{word-spacing:-33.925333pt;}
.ws4{word-spacing:-33.920000pt;}
.ws30{word-spacing:-33.916800pt;}
.ws53{word-spacing:-33.914400pt;}
.ws12{word-spacing:-33.910400pt;}
.ws21{word-spacing:-33.908800pt;}
.ws2{word-spacing:-33.850400pt;}
.ws50{word-spacing:-33.730933pt;}
.ws13{word-spacing:-33.728533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws2f{word-spacing:-33.726400pt;}
.ws11{word-spacing:-33.723200pt;}
.ws39{word-spacing:-33.715200pt;}
.ws28{word-spacing:-33.707200pt;}
.wsa{word-spacing:-33.643200pt;}
.ws42{word-spacing:-33.636800pt;}
.ws1f{word-spacing:-33.280000pt;}
.ws27{word-spacing:-33.276800pt;}
.ws25{word-spacing:-33.273600pt;}
.ws52{word-spacing:-33.271200pt;}
.ws49{word-spacing:-33.083200pt;}
.ws3{word-spacing:-33.078400pt;}
.wsb{word-spacing:-32.636800pt;}
.ws3e{word-spacing:-32.446400pt;}
.ws45{word-spacing:-32.444800pt;}
.ws43{word-spacing:-32.437867pt;}
.ws20{word-spacing:-32.436800pt;}
.ws8{word-spacing:-32.000000pt;}
.ws35{word-spacing:-31.996800pt;}
.ws44{word-spacing:-31.803200pt;}
.ws47{word-spacing:-31.616533pt;}
.ws2b{word-spacing:-31.360000pt;}
.ws41{word-spacing:-31.355200pt;}
.wse{word-spacing:-30.725333pt;}
.ws17{word-spacing:-30.720000pt;}
.ws23{word-spacing:-30.515200pt;}
.ws31{word-spacing:-29.883200pt;}
.ws26{word-spacing:-29.440000pt;}
.ws4f{word-spacing:-29.436800pt;}
.ws48{word-spacing:-29.244800pt;}
.ws14{word-spacing:-28.970400pt;}
.ws3a{word-spacing:-28.805333pt;}
.ws15{word-spacing:-28.800000pt;}
.ws4d{word-spacing:-27.955200pt;}
.ws33{word-spacing:-27.764800pt;}
.wsc{word-spacing:-27.516800pt;}
.ws22{word-spacing:-27.328000pt;}
.ws10{word-spacing:-27.316800pt;}
.ws36{word-spacing:-26.682133pt;}
.ws16{word-spacing:-26.236800pt;}
.ws2d{word-spacing:-24.312000pt;}
.ws32{word-spacing:-24.126400pt;}
.ws4b{word-spacing:-24.124800pt;}
.ws4e{word-spacing:-23.931200pt;}
.wsd{word-spacing:-23.484800pt;}
.ws3c{word-spacing:-22.846400pt;}
.ws34{word-spacing:-22.396800pt;}
.ws4c{word-spacing:-22.204800pt;}
.ws2a{word-spacing:-22.198400pt;}
.ws3b{word-spacing:-22.195200pt;}
.ws9{word-spacing:-21.755200pt;}
.ws1b{word-spacing:-21.500800pt;}
.ws3d{word-spacing:-21.103200pt;}
.ws4a{word-spacing:-20.473600pt;}
.ws29{word-spacing:-19.842133pt;}
.ws19{word-spacing:-19.200000pt;}
.ws2c{word-spacing:-19.194667pt;}
.ws2e{word-spacing:-17.723733pt;}
.wsf{word-spacing:-14.722133pt;}
.ws3f{word-spacing:-14.720000pt;}
.ws37{word-spacing:-13.886400pt;}
.ws24{word-spacing:-13.244800pt;}
.ws38{word-spacing:-11.964800pt;}
.ws46{word-spacing:-11.511467pt;}
.ws1d{word-spacing:41.859200pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-0.905867pt;}
._0{width:0.956800pt;}
._c{width:15.966400pt;}
._1{width:16.860800pt;}
._13{width:17.792000pt;}
._3{width:18.688000pt;}
._4{width:19.856267pt;}
._10{width:20.880533pt;}
._7{width:22.058400pt;}
._6{width:23.488000pt;}
._8{width:24.503467pt;}
._e{width:26.406400pt;}
._d{width:28.482400pt;}
._a{width:29.556267pt;}
._14{width:30.530400pt;}
._9{width:31.686400pt;}
._f{width:33.011200pt;}
._5{width:36.738133pt;}
._11{width:38.700800pt;}
._12{width:39.723733pt;}
._15{width:73.600000pt;}
._b{width:92.860800pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y4e{bottom:90.308000pt;}
.y4d{bottom:108.708000pt;}
.y4c{bottom:127.108000pt;}
.y4b{bottom:145.508000pt;}
.y23{bottom:161.988000pt;}
.y4a{bottom:163.908000pt;}
.y22{bottom:199.108000pt;}
.y49{bottom:200.866667pt;}
.y21{bottom:217.508000pt;}
.y48{bottom:219.266667pt;}
.y20{bottom:254.466667pt;}
.y47{bottom:256.388000pt;}
.y1f{bottom:272.866667pt;}
.y46{bottom:274.788000pt;}
.y45{bottom:293.188000pt;}
.y1e{bottom:309.988000pt;}
.y44{bottom:311.588000pt;}
.y1d{bottom:328.388000pt;}
.y43{bottom:329.988000pt;}
.y1c{bottom:346.788000pt;}
.y42{bottom:348.388000pt;}
.y41{bottom:366.788000pt;}
.y1b{bottom:383.908000pt;}
.y40{bottom:385.188000pt;}
.y1a{bottom:402.308000pt;}
.y19{bottom:420.706667pt;}
.y3f{bottom:422.308000pt;}
.y18{bottom:439.108000pt;}
.y3e{bottom:440.708000pt;}
.y3d{bottom:459.108000pt;}
.y17{bottom:476.066667pt;}
.y3c{bottom:477.506667pt;}
.y3b{bottom:495.908000pt;}
.y16{bottom:513.188000pt;}
.y3a{bottom:514.308000pt;}
.y15{bottom:531.588000pt;}
.y39{bottom:532.706667pt;}
.y14{bottom:549.988000pt;}
.y38{bottom:551.108000pt;}
.y13{bottom:568.388000pt;}
.y37{bottom:569.506667pt;}
.y36{bottom:587.908000pt;}
.y12{bottom:605.506667pt;}
.y11{bottom:623.908000pt;}
.y35{bottom:624.866667pt;}
.y10{bottom:642.308000pt;}
.y34{bottom:643.266667pt;}
.yf{bottom:660.706667pt;}
.y57{bottom:661.666667pt;}
.y56{bottom:680.066667pt;}
.y33{bottom:680.388000pt;}
.ye{bottom:697.666667pt;}
.y32{bottom:698.788000pt;}
.yd{bottom:716.066667pt;}
.y31{bottom:717.188000pt;}
.yc{bottom:734.466667pt;}
.y30{bottom:735.588000pt;}
.yb{bottom:752.866667pt;}
.y2f{bottom:753.988000pt;}
.y55{bottom:754.308000pt;}
.y2e{bottom:772.388000pt;}
.y54{bottom:772.706667pt;}
.y2d{bottom:790.788000pt;}
.y53{bottom:791.106667pt;}
.y52{bottom:809.506667pt;}
.ya{bottom:827.106667pt;}
.y2c{bottom:827.906667pt;}
.y9{bottom:845.506667pt;}
.y2b{bottom:846.306667pt;}
.y2a{bottom:864.706667pt;}
.y51{bottom:864.866667pt;}
.y50{bottom:883.266667pt;}
.y29{bottom:901.666667pt;}
.y8{bottom:919.588000pt;}
.y28{bottom:920.066667pt;}
.y27{bottom:938.466667pt;}
.y7{bottom:956.706667pt;}
.y26{bottom:956.866667pt;}
.y4f{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y25{bottom:993.988000pt;}
.y24{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;}
.xc{left:115.200000pt;}
.xb{left:119.200000pt;}
.x2{left:142.720000pt;}
.x9{left:157.120000pt;}
.x6{left:269.278667pt;}
.x7{left:296.800000pt;}
.x8{left:327.678667pt;}
.x5{left:329.600000pt;}
.xa{left:361.440000pt;}
}




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