
    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_8052a8f2e238ad016d604596.woff')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_94cf904bb9d32a628de73b7a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.836000;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_bb05fd9a6cacb3b0a1f5233b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.051000;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_2b2a706ba125965a1be68f66.woff')format("woff");}.ff4{font-family:ff4;line-height:0.965000;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_8052a8f2e238ad016d604596.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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:ff6;src:url('chunks/assets/font_49e17fdd42c8dd77c5dd8b47.woff')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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:ff7;src:url('chunks/assets/font_7c842e5eec21bb5b65407588.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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:ff8;src:url('chunks/assets/font_4d4166bdf8a44856c751b54e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.939000;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:ff9;src:url('chunks/assets/font_92a74250627e2daf2a2510ad.woff')format("woff");}.ff9{font-family:ff9;line-height:0.728000;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;}
.m2{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{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;}
.v1{vertical-align:12.046800px;}
.ls5{letter-spacing:-1.056000px;}
.ls6{letter-spacing:-0.594000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.320000px;}
.ls1{letter-spacing:6.210000px;}
.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;}
}
.ws2{word-spacing:-14.982000px;}
.ws3{word-spacing:-13.926000px;}
.ws29{word-spacing:-8.448000px;}
.ws1e{word-spacing:-6.930000px;}
.ws17{word-spacing:-5.940000px;}
.ws5{word-spacing:-5.412000px;}
.ws1a{word-spacing:-4.884000px;}
.ws1f{word-spacing:-1.518000px;}
.ws15{word-spacing:-1.452000px;}
.ws11{word-spacing:-0.594000px;}
.ws2f{word-spacing:-0.264000px;}
.ws1{word-spacing:-0.090000px;}
.ws4{word-spacing:0.000000px;}
.ws35{word-spacing:0.264000px;}
.ws1b{word-spacing:0.330000px;}
.ws27{word-spacing:0.594000px;}
.ws20{word-spacing:0.792000px;}
.ws10{word-spacing:1.914000px;}
.ws30{word-spacing:2.178000px;}
.ws18{word-spacing:3.168000px;}
.wse{word-spacing:3.300000px;}
.ws16{word-spacing:3.432000px;}
.ws14{word-spacing:3.498000px;}
.ws6{word-spacing:3.894000px;}
.wsb{word-spacing:4.620000px;}
.ws13{word-spacing:6.732000px;}
.ws2d{word-spacing:8.052000px;}
.wsc{word-spacing:8.118000px;}
.ws2c{word-spacing:8.580000px;}
.ws24{word-spacing:8.910000px;}
.ws2a{word-spacing:10.692000px;}
.ws2b{word-spacing:10.824000px;}
.ws32{word-spacing:11.088000px;}
.ws3c{word-spacing:12.540000px;}
.ws19{word-spacing:13.794000px;}
.wsd{word-spacing:14.784000px;}
.ws1c{word-spacing:15.114000px;}
.wsa{word-spacing:15.642000px;}
.ws23{word-spacing:16.038000px;}
.ws3a{word-spacing:17.028000px;}
.ws36{word-spacing:17.292000px;}
.ws34{word-spacing:17.556000px;}
.wsf{word-spacing:18.216000px;}
.ws28{word-spacing:18.348000px;}
.ws3b{word-spacing:19.140000px;}
.ws12{word-spacing:20.262000px;}
.ws26{word-spacing:20.328000px;}
.ws2e{word-spacing:20.856000px;}
.ws3d{word-spacing:21.318000px;}
.ws3e{word-spacing:21.516000px;}
.ws8{word-spacing:23.232000px;}
.ws9{word-spacing:23.496000px;}
.ws22{word-spacing:25.608000px;}
.ws3f{word-spacing:27.588000px;}
.ws21{word-spacing:28.050000px;}
.ws33{word-spacing:28.182000px;}
.ws42{word-spacing:28.314000px;}
.ws25{word-spacing:29.106000px;}
.ws31{word-spacing:29.172000px;}
.ws38{word-spacing:32.142000px;}
.ws40{word-spacing:35.376000px;}
.ws39{word-spacing:38.808000px;}
.ws41{word-spacing:39.534000px;}
.ws7{word-spacing:39.996000px;}
.ws1d{word-spacing:40.260000px;}
.ws37{word-spacing:40.920000px;}
.ws0{word-spacing:409.628400px;}
._4{margin-left:-16.767000px;}
._6{margin-left:-7.385400px;}
._3{margin-left:-6.210000px;}
._1{margin-left:-4.194000px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.159200px;}
._5{width:1.031400px;}
._7{width:2.040600px;}
.fc2{color:rgb(229,25,55);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:67.500000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs4{font-size:207.000000px;}
.fs7{font-size:1500.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:33.624600px;}
.y1{bottom:37.771800px;}
.y2{bottom:44.424600px;}
.y43{bottom:201.000150px;}
.y1f{bottom:201.940650px;}
.y42{bottom:222.004650px;}
.y1e{bottom:222.945150px;}
.y41{bottom:243.009150px;}
.y1d{bottom:243.949650px;}
.y40{bottom:264.013650px;}
.y1c{bottom:264.954150px;}
.y3f{bottom:285.018150px;}
.y1b{bottom:285.958650px;}
.y3e{bottom:306.022650px;}
.y1a{bottom:306.963150px;}
.y3d{bottom:327.027150px;}
.y19{bottom:327.967650px;}
.y3c{bottom:348.031650px;}
.y18{bottom:348.972150px;}
.y3b{bottom:369.036150px;}
.y17{bottom:369.976650px;}
.y3a{bottom:390.040650px;}
.y16{bottom:390.981150px;}
.y39{bottom:411.045150px;}
.y15{bottom:411.985650px;}
.y38{bottom:432.049650px;}
.y14{bottom:432.990150px;}
.y37{bottom:453.054150px;}
.y13{bottom:453.994650px;}
.y36{bottom:474.058650px;}
.y12{bottom:474.999150px;}
.y35{bottom:495.063150px;}
.y11{bottom:496.003650px;}
.y34{bottom:516.067650px;}
.y10{bottom:517.008150px;}
.y33{bottom:537.072150px;}
.yf{bottom:538.012650px;}
.y32{bottom:558.076650px;}
.ye{bottom:559.017150px;}
.y31{bottom:579.081150px;}
.yd{bottom:580.021650px;}
.y30{bottom:600.085650px;}
.yc{bottom:601.026150px;}
.y2f{bottom:621.090150px;}
.yb{bottom:622.030650px;}
.y2e{bottom:642.094650px;}
.ya{bottom:643.035150px;}
.y51{bottom:662.934150px;}
.y2d{bottom:663.099150px;}
.y9{bottom:675.633000px;}
.y50{bottom:683.938650px;}
.y2c{bottom:684.103650px;}
.y4f{bottom:704.943150px;}
.y2b{bottom:705.108150px;}
.y4e{bottom:725.947650px;}
.y2a{bottom:726.112650px;}
.y4d{bottom:746.952150px;}
.y29{bottom:747.117150px;}
.y4c{bottom:767.956650px;}
.y28{bottom:768.121650px;}
.y4b{bottom:788.961150px;}
.y27{bottom:789.126150px;}
.y4a{bottom:809.965650px;}
.y26{bottom:810.130650px;}
.y49{bottom:830.970150px;}
.y25{bottom:831.135150px;}
.y48{bottom:851.974650px;}
.y24{bottom:852.139650px;}
.y47{bottom:872.979150px;}
.y23{bottom:873.144150px;}
.y46{bottom:893.983650px;}
.y22{bottom:894.148650px;}
.y45{bottom:914.988150px;}
.y21{bottom:915.153150px;}
.y44{bottom:935.992650px;}
.y20{bottom:936.157650px;}
.y8{bottom:977.309100px;}
.y7{bottom:1037.580750px;}
.y6{bottom:1061.437500px;}
.y5{bottom:1116.913500px;}
.y4{bottom:1194.936000px;}
.h3{height:28.584000px;}
.h8{height:49.566000px;}
.h2{height:51.772500px;}
.ha{height:52.404000px;}
.h7{height:54.000000px;}
.h4{height:58.066800px;}
.h5{height:67.500000px;}
.h6{height:158.769000px;}
.h9{height:1191.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:80.787450px;}
.x8{left:81.850350px;}
.x7{left:85.039350px;}
.x9{left:103.102350px;}
.xc{left:214.724850px;}
.xd{left:235.976850px;}
.x3{left:320.507700px;}
.x6{left:324.531450px;}
.x2{left:351.827700px;}
.xa{left:455.987850px;}
.xb{left:477.239850px;}
.x1{left:694.843950px;}
.x4{left:749.884050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.708267pt;}
.ls5{letter-spacing:-0.938667pt;}
.ls6{letter-spacing:-0.528000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.173333pt;}
.ls1{letter-spacing:5.520000pt;}
.ws2{word-spacing:-13.317333pt;}
.ws3{word-spacing:-12.378667pt;}
.ws29{word-spacing:-7.509333pt;}
.ws1e{word-spacing:-6.160000pt;}
.ws17{word-spacing:-5.280000pt;}
.ws5{word-spacing:-4.810667pt;}
.ws1a{word-spacing:-4.341333pt;}
.ws1f{word-spacing:-1.349333pt;}
.ws15{word-spacing:-1.290667pt;}
.ws11{word-spacing:-0.528000pt;}
.ws2f{word-spacing:-0.234667pt;}
.ws1{word-spacing:-0.080000pt;}
.ws4{word-spacing:0.000000pt;}
.ws35{word-spacing:0.234667pt;}
.ws1b{word-spacing:0.293333pt;}
.ws27{word-spacing:0.528000pt;}
.ws20{word-spacing:0.704000pt;}
.ws10{word-spacing:1.701333pt;}
.ws30{word-spacing:1.936000pt;}
.ws18{word-spacing:2.816000pt;}
.wse{word-spacing:2.933333pt;}
.ws16{word-spacing:3.050667pt;}
.ws14{word-spacing:3.109333pt;}
.ws6{word-spacing:3.461333pt;}
.wsb{word-spacing:4.106667pt;}
.ws13{word-spacing:5.984000pt;}
.ws2d{word-spacing:7.157333pt;}
.wsc{word-spacing:7.216000pt;}
.ws2c{word-spacing:7.626667pt;}
.ws24{word-spacing:7.920000pt;}
.ws2a{word-spacing:9.504000pt;}
.ws2b{word-spacing:9.621333pt;}
.ws32{word-spacing:9.856000pt;}
.ws3c{word-spacing:11.146667pt;}
.ws19{word-spacing:12.261333pt;}
.wsd{word-spacing:13.141333pt;}
.ws1c{word-spacing:13.434667pt;}
.wsa{word-spacing:13.904000pt;}
.ws23{word-spacing:14.256000pt;}
.ws3a{word-spacing:15.136000pt;}
.ws36{word-spacing:15.370667pt;}
.ws34{word-spacing:15.605333pt;}
.wsf{word-spacing:16.192000pt;}
.ws28{word-spacing:16.309333pt;}
.ws3b{word-spacing:17.013333pt;}
.ws12{word-spacing:18.010667pt;}
.ws26{word-spacing:18.069333pt;}
.ws2e{word-spacing:18.538667pt;}
.ws3d{word-spacing:18.949333pt;}
.ws3e{word-spacing:19.125333pt;}
.ws8{word-spacing:20.650667pt;}
.ws9{word-spacing:20.885333pt;}
.ws22{word-spacing:22.762667pt;}
.ws3f{word-spacing:24.522667pt;}
.ws21{word-spacing:24.933333pt;}
.ws33{word-spacing:25.050667pt;}
.ws42{word-spacing:25.168000pt;}
.ws25{word-spacing:25.872000pt;}
.ws31{word-spacing:25.930667pt;}
.ws38{word-spacing:28.570667pt;}
.ws40{word-spacing:31.445333pt;}
.ws39{word-spacing:34.496000pt;}
.ws41{word-spacing:35.141333pt;}
.ws7{word-spacing:35.552000pt;}
.ws1d{word-spacing:35.786667pt;}
.ws37{word-spacing:36.373333pt;}
.ws0{word-spacing:364.114133pt;}
._4{margin-left:-14.904000pt;}
._6{margin-left:-6.564800pt;}
._3{margin-left:-5.520000pt;}
._1{margin-left:-3.728000pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-1.030400pt;}
._5{width:0.916800pt;}
._7{width:1.813867pt;}
.fs1{font-size:32.000000pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:60.000000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs4{font-size:184.000000pt;}
.fs7{font-size:1333.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:29.888533pt;}
.y1{bottom:33.574933pt;}
.y2{bottom:39.488533pt;}
.y43{bottom:178.666800pt;}
.y1f{bottom:179.502800pt;}
.y42{bottom:197.337467pt;}
.y1e{bottom:198.173467pt;}
.y41{bottom:216.008133pt;}
.y1d{bottom:216.844133pt;}
.y40{bottom:234.678800pt;}
.y1c{bottom:235.514800pt;}
.y3f{bottom:253.349467pt;}
.y1b{bottom:254.185467pt;}
.y3e{bottom:272.020133pt;}
.y1a{bottom:272.856133pt;}
.y3d{bottom:290.690800pt;}
.y19{bottom:291.526800pt;}
.y3c{bottom:309.361467pt;}
.y18{bottom:310.197467pt;}
.y3b{bottom:328.032133pt;}
.y17{bottom:328.868133pt;}
.y3a{bottom:346.702800pt;}
.y16{bottom:347.538800pt;}
.y39{bottom:365.373467pt;}
.y15{bottom:366.209467pt;}
.y38{bottom:384.044133pt;}
.y14{bottom:384.880133pt;}
.y37{bottom:402.714800pt;}
.y13{bottom:403.550800pt;}
.y36{bottom:421.385467pt;}
.y12{bottom:422.221467pt;}
.y35{bottom:440.056133pt;}
.y11{bottom:440.892133pt;}
.y34{bottom:458.726800pt;}
.y10{bottom:459.562800pt;}
.y33{bottom:477.397467pt;}
.yf{bottom:478.233467pt;}
.y32{bottom:496.068133pt;}
.ye{bottom:496.904133pt;}
.y31{bottom:514.738800pt;}
.yd{bottom:515.574800pt;}
.y30{bottom:533.409467pt;}
.yc{bottom:534.245467pt;}
.y2f{bottom:552.080133pt;}
.yb{bottom:552.916133pt;}
.y2e{bottom:570.750800pt;}
.ya{bottom:571.586800pt;}
.y51{bottom:589.274800pt;}
.y2d{bottom:589.421467pt;}
.y9{bottom:600.562667pt;}
.y50{bottom:607.945467pt;}
.y2c{bottom:608.092133pt;}
.y4f{bottom:626.616133pt;}
.y2b{bottom:626.762800pt;}
.y4e{bottom:645.286800pt;}
.y2a{bottom:645.433467pt;}
.y4d{bottom:663.957467pt;}
.y29{bottom:664.104133pt;}
.y4c{bottom:682.628133pt;}
.y28{bottom:682.774800pt;}
.y4b{bottom:701.298800pt;}
.y27{bottom:701.445467pt;}
.y4a{bottom:719.969467pt;}
.y26{bottom:720.116133pt;}
.y49{bottom:738.640133pt;}
.y25{bottom:738.786800pt;}
.y48{bottom:757.310800pt;}
.y24{bottom:757.457467pt;}
.y47{bottom:775.981467pt;}
.y23{bottom:776.128133pt;}
.y46{bottom:794.652133pt;}
.y22{bottom:794.798800pt;}
.y45{bottom:813.322800pt;}
.y21{bottom:813.469467pt;}
.y44{bottom:831.993467pt;}
.y20{bottom:832.140133pt;}
.y8{bottom:868.719200pt;}
.y7{bottom:922.294000pt;}
.y6{bottom:943.500000pt;}
.y5{bottom:992.812000pt;}
.y4{bottom:1062.165333pt;}
.h3{height:25.408000pt;}
.h8{height:44.058667pt;}
.h2{height:46.020000pt;}
.ha{height:46.581333pt;}
.h7{height:48.000000pt;}
.h4{height:51.614933pt;}
.h5{height:60.000000pt;}
.h6{height:141.128000pt;}
.h9{height:1058.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:71.811067pt;}
.x8{left:72.755867pt;}
.x7{left:75.590533pt;}
.x9{left:91.646533pt;}
.xc{left:190.866533pt;}
.xd{left:209.757200pt;}
.x3{left:284.895733pt;}
.x6{left:288.472400pt;}
.x2{left:312.735733pt;}
.xa{left:405.322533pt;}
.xb{left:424.213200pt;}
.x1{left:617.639067pt;}
.x4{left:666.563600pt;}
}




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