
    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_613b33213196367c2722acee.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724609;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_6f181e850ef936adbd7d2148.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_f914948bafa24f9d65012e5e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_5412f414a8f4d2c9c3a24873.woff')format("woff");}.ff4{font-family:ff4;line-height:0.863281;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_1314df18d84447eab4e0d017.woff')format("woff");}.ff5{font-family:ff5;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;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-55.944000px;}
.ws6{word-spacing:-40.968000px;}
.ws16{word-spacing:-38.656800px;}
.ws18{word-spacing:-38.655600px;}
.wse{word-spacing:-38.649600px;}
.wsf{word-spacing:-38.442600px;}
.ws50{word-spacing:-38.434800px;}
.ws2e{word-spacing:-38.430900px;}
.ws51{word-spacing:-38.359800px;}
.ws57{word-spacing:-38.166000px;}
.ws20{word-spacing:-38.160000px;}
.wsd{word-spacing:-38.154000px;}
.ws17{word-spacing:-38.151900px;}
.ws0{word-spacing:-38.096400px;}
.ws9{word-spacing:-38.093100px;}
.wsa{word-spacing:-38.079900px;}
.ws1{word-spacing:-37.944000px;}
.ws55{word-spacing:-37.941300px;}
.ws1f{word-spacing:-37.936800px;}
.ws3{word-spacing:-37.931400px;}
.ws21{word-spacing:-37.929600px;}
.ws5a{word-spacing:-37.926900px;}
.wsc{word-spacing:-37.727700px;}
.ws53{word-spacing:-37.708800px;}
.ws1b{word-spacing:-37.440000px;}
.ws58{word-spacing:-37.224000px;}
.wsb{word-spacing:-37.221900px;}
.ws59{word-spacing:-36.501300px;}
.ws1c{word-spacing:-36.496800px;}
.ws36{word-spacing:-36.491100px;}
.ws15{word-spacing:-36.487800px;}
.ws3d{word-spacing:-35.987400px;}
.ws38{word-spacing:-35.767800px;}
.ws34{word-spacing:-35.280000px;}
.ws3e{word-spacing:-35.276400px;}
.ws25{word-spacing:-34.554000px;}
.ws29{word-spacing:-33.832800px;}
.ws56{word-spacing:-33.624000px;}
.ws30{word-spacing:-33.622200px;}
.ws2f{word-spacing:-33.621900px;}
.ws8{word-spacing:-33.547800px;}
.ws4f{word-spacing:-32.406000px;}
.ws3c{word-spacing:-31.676400px;}
.ws26{word-spacing:-31.662000px;}
.ws45{word-spacing:-30.744000px;}
.ws4a{word-spacing:-30.731400px;}
.ws54{word-spacing:-29.301300px;}
.ws27{word-spacing:-29.081400px;}
.ws3f{word-spacing:-29.076300px;}
.ws43{word-spacing:-28.509000px;}
.ws23{word-spacing:-28.069200px;}
.ws40{word-spacing:-27.133200px;}
.ws11{word-spacing:-27.062100px;}
.ws49{word-spacing:-26.926800px;}
.ws13{word-spacing:-26.201400px;}
.ws10{word-spacing:-25.920000px;}
.ws1e{word-spacing:-25.684200px;}
.ws47{word-spacing:-24.766200px;}
.ws1d{word-spacing:-24.262200px;}
.ws5{word-spacing:-23.687700px;}
.ws2a{word-spacing:-23.544000px;}
.ws24{word-spacing:-23.530800px;}
.ws22{word-spacing:-23.317200px;}
.ws2c{word-spacing:-23.040600px;}
.ws33{word-spacing:-22.822200px;}
.ws12{word-spacing:-22.809600px;}
.ws52{word-spacing:-21.382200px;}
.ws37{word-spacing:-20.875200px;}
.ws19{word-spacing:-20.160000px;}
.ws1a{word-spacing:-19.935000px;}
.ws48{word-spacing:-19.440000px;}
.ws31{word-spacing:-17.781000px;}
.ws2d{word-spacing:-17.773200px;}
.ws32{word-spacing:-16.336800px;}
.ws46{word-spacing:-16.327200px;}
.ws4e{word-spacing:-15.823800px;}
.ws44{word-spacing:-13.959000px;}
.ws14{word-spacing:-13.680000px;}
.ws4c{word-spacing:-13.444800px;}
.ws4d{word-spacing:-12.022200px;}
.ws28{word-spacing:-9.135000px;}
.ws4b{word-spacing:-8.424000px;}
.ws35{word-spacing:-6.971400px;}
.ws42{word-spacing:-6.261000px;}
.ws39{word-spacing:-5.536800px;}
.ws4{word-spacing:-5.177700px;}
.ws3b{word-spacing:-1.429200px;}
.ws3a{word-spacing:0.942300px;}
.ws2b{word-spacing:0.945000px;}
.ws41{word-spacing:7.217400px;}
.ws2{word-spacing:537.269400px;}
._1c{margin-left:-2.349300px;}
._0{margin-left:-1.228800px;}
._3{width:1.089900px;}
._b{width:17.130000px;}
._4{width:18.775200px;}
._1d{width:19.899000px;}
._9{width:20.929800px;}
._17{width:22.093200px;}
._11{width:23.433300px;}
._e{width:25.470000px;}
._1a{width:26.627400px;}
._f{width:28.145400px;}
._d{width:29.168100px;}
._5{width:30.349200px;}
._7{width:31.492200px;}
._c{width:33.367200px;}
._6{width:35.048700px;}
._a{width:36.063900px;}
._13{width:39.928500px;}
._14{width:41.248800px;}
._19{width:43.010700px;}
._8{width:44.136000px;}
._1b{width:45.358200px;}
._10{width:48.285000px;}
._15{width:51.760800px;}
._16{width:57.947700px;}
._12{width:59.044800px;}
._18{width:64.233900px;}
._1{width:71.928000px;}
._2{width:432.072000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y8{bottom:34.725000px;}
.y9{bottom:42.571500px;}
.y32{bottom:117.436500px;}
.y31{bottom:138.136500px;}
.y30{bottom:158.836500px;}
.y2f{bottom:179.536500px;}
.y2e{bottom:200.236500px;}
.y2d{bottom:220.936500px;}
.y2c{bottom:241.636500px;}
.y58{bottom:243.075000px;}
.y2b{bottom:262.336500px;}
.y57{bottom:263.775000px;}
.y2a{bottom:283.036500px;}
.y56{bottom:284.475000px;}
.y29{bottom:303.736500px;}
.y55{bottom:305.175000px;}
.y28{bottom:324.436500px;}
.y54{bottom:325.875000px;}
.y27{bottom:345.136500px;}
.y53{bottom:346.575000px;}
.y26{bottom:365.836500px;}
.y52{bottom:367.275000px;}
.y25{bottom:386.536500px;}
.y51{bottom:387.975000px;}
.y24{bottom:407.236500px;}
.y50{bottom:408.675000px;}
.y23{bottom:427.936500px;}
.y4f{bottom:429.375000px;}
.y22{bottom:448.636500px;}
.y4e{bottom:450.075000px;}
.y21{bottom:469.336500px;}
.y4d{bottom:485.715000px;}
.y20{bottom:490.036500px;}
.y4c{bottom:506.415000px;}
.y1f{bottom:525.675000px;}
.y4b{bottom:527.115000px;}
.y4a{bottom:547.815000px;}
.y1e{bottom:561.315000px;}
.y49{bottom:568.515000px;}
.y1d{bottom:582.015000px;}
.y48{bottom:589.215000px;}
.y1c{bottom:602.715000px;}
.y47{bottom:609.915000px;}
.y1b{bottom:623.415000px;}
.y46{bottom:630.615000px;}
.y1a{bottom:644.115000px;}
.y45{bottom:651.315000px;}
.y19{bottom:664.815000px;}
.y44{bottom:672.015000px;}
.y43{bottom:692.715000px;}
.y18{bottom:700.636500px;}
.y42{bottom:713.415000px;}
.y41{bottom:734.115000px;}
.y17{bottom:736.275000px;}
.y40{bottom:754.815000px;}
.y16{bottom:756.975000px;}
.y3f{bottom:775.515000px;}
.y15{bottom:777.675000px;}
.y3e{bottom:796.215000px;}
.y14{bottom:798.375000px;}
.y3d{bottom:816.915000px;}
.y13{bottom:819.075000px;}
.y3c{bottom:837.615000px;}
.y12{bottom:839.775000px;}
.y3b{bottom:858.315000px;}
.y11{bottom:875.415000px;}
.y3a{bottom:879.015000px;}
.y39{bottom:899.715000px;}
.y10{bottom:911.236500px;}
.y38{bottom:920.415000px;}
.y37{bottom:941.115000px;}
.yf{bottom:946.875000px;}
.y36{bottom:961.815000px;}
.ye{bottom:967.575000px;}
.y35{bottom:982.515000px;}
.yd{bottom:988.275000px;}
.y34{bottom:1003.215000px;}
.yc{bottom:1008.975000px;}
.y33{bottom:1023.915000px;}
.yb{bottom:1044.615000px;}
.ya{bottom:1065.315000px;}
.y7{bottom:1106.715000px;}
.y6{bottom:1127.415000px;}
.y5{bottom:1148.115000px;}
.y4{bottom:1168.815000px;}
.y3{bottom:1189.515000px;}
.y2{bottom:1210.215000px;}
.y1{bottom:1231.275000px;}
.h4{height:48.761719px;}
.h3{height:48.796875px;}
.h6{height:49.304150px;}
.h7{height:50.027344px;}
.h5{height:58.275000px;}
.h2{height:60.467139px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.xa{left:132.120000px;}
.x3{left:158.760000px;}
.x1{left:201.060000px;}
.x4{left:251.100000px;}
.x7{left:468.180000px;}
.x9{left:502.560000px;}
.x6{left:559.080000px;}
.x8{left:716.580000px;}
.x5{left:727.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws6{word-spacing:-36.416000pt;}
.ws16{word-spacing:-34.361600pt;}
.ws18{word-spacing:-34.360533pt;}
.wse{word-spacing:-34.355200pt;}
.wsf{word-spacing:-34.171200pt;}
.ws50{word-spacing:-34.164267pt;}
.ws2e{word-spacing:-34.160800pt;}
.ws51{word-spacing:-34.097600pt;}
.ws57{word-spacing:-33.925333pt;}
.ws20{word-spacing:-33.920000pt;}
.wsd{word-spacing:-33.914667pt;}
.ws17{word-spacing:-33.912800pt;}
.ws0{word-spacing:-33.863467pt;}
.ws9{word-spacing:-33.860533pt;}
.wsa{word-spacing:-33.848800pt;}
.ws1{word-spacing:-33.728000pt;}
.ws55{word-spacing:-33.725600pt;}
.ws1f{word-spacing:-33.721600pt;}
.ws3{word-spacing:-33.716800pt;}
.ws21{word-spacing:-33.715200pt;}
.ws5a{word-spacing:-33.712800pt;}
.wsc{word-spacing:-33.535733pt;}
.ws53{word-spacing:-33.518933pt;}
.ws1b{word-spacing:-33.280000pt;}
.ws58{word-spacing:-33.088000pt;}
.wsb{word-spacing:-33.086133pt;}
.ws59{word-spacing:-32.445600pt;}
.ws1c{word-spacing:-32.441600pt;}
.ws36{word-spacing:-32.436533pt;}
.ws15{word-spacing:-32.433600pt;}
.ws3d{word-spacing:-31.988800pt;}
.ws38{word-spacing:-31.793600pt;}
.ws34{word-spacing:-31.360000pt;}
.ws3e{word-spacing:-31.356800pt;}
.ws25{word-spacing:-30.714667pt;}
.ws29{word-spacing:-30.073600pt;}
.ws56{word-spacing:-29.888000pt;}
.ws30{word-spacing:-29.886400pt;}
.ws2f{word-spacing:-29.886133pt;}
.ws8{word-spacing:-29.820267pt;}
.ws4f{word-spacing:-28.805333pt;}
.ws3c{word-spacing:-28.156800pt;}
.ws26{word-spacing:-28.144000pt;}
.ws45{word-spacing:-27.328000pt;}
.ws4a{word-spacing:-27.316800pt;}
.ws54{word-spacing:-26.045600pt;}
.ws27{word-spacing:-25.850133pt;}
.ws3f{word-spacing:-25.845600pt;}
.ws43{word-spacing:-25.341333pt;}
.ws23{word-spacing:-24.950400pt;}
.ws40{word-spacing:-24.118400pt;}
.ws11{word-spacing:-24.055200pt;}
.ws49{word-spacing:-23.934933pt;}
.ws13{word-spacing:-23.290133pt;}
.ws10{word-spacing:-23.040000pt;}
.ws1e{word-spacing:-22.830400pt;}
.ws47{word-spacing:-22.014400pt;}
.ws1d{word-spacing:-21.566400pt;}
.ws5{word-spacing:-21.055733pt;}
.ws2a{word-spacing:-20.928000pt;}
.ws24{word-spacing:-20.916267pt;}
.ws22{word-spacing:-20.726400pt;}
.ws2c{word-spacing:-20.480533pt;}
.ws33{word-spacing:-20.286400pt;}
.ws12{word-spacing:-20.275200pt;}
.ws52{word-spacing:-19.006400pt;}
.ws37{word-spacing:-18.555733pt;}
.ws19{word-spacing:-17.920000pt;}
.ws1a{word-spacing:-17.720000pt;}
.ws48{word-spacing:-17.280000pt;}
.ws31{word-spacing:-15.805333pt;}
.ws2d{word-spacing:-15.798400pt;}
.ws32{word-spacing:-14.521600pt;}
.ws46{word-spacing:-14.513067pt;}
.ws4e{word-spacing:-14.065600pt;}
.ws44{word-spacing:-12.408000pt;}
.ws14{word-spacing:-12.160000pt;}
.ws4c{word-spacing:-11.950933pt;}
.ws4d{word-spacing:-10.686400pt;}
.ws28{word-spacing:-8.120000pt;}
.ws4b{word-spacing:-7.488000pt;}
.ws35{word-spacing:-6.196800pt;}
.ws42{word-spacing:-5.565333pt;}
.ws39{word-spacing:-4.921600pt;}
.ws4{word-spacing:-4.602400pt;}
.ws3b{word-spacing:-1.270400pt;}
.ws3a{word-spacing:0.837600pt;}
.ws2b{word-spacing:0.840000pt;}
.ws41{word-spacing:6.415467pt;}
.ws2{word-spacing:477.572800pt;}
._1c{margin-left:-2.088267pt;}
._0{margin-left:-1.092267pt;}
._3{width:0.968800pt;}
._b{width:15.226667pt;}
._4{width:16.689067pt;}
._1d{width:17.688000pt;}
._9{width:18.604267pt;}
._17{width:19.638400pt;}
._11{width:20.829600pt;}
._e{width:22.640000pt;}
._1a{width:23.668800pt;}
._f{width:25.018133pt;}
._d{width:25.927200pt;}
._5{width:26.977067pt;}
._7{width:27.993067pt;}
._c{width:29.659733pt;}
._6{width:31.154400pt;}
._a{width:32.056800pt;}
._13{width:35.492000pt;}
._14{width:36.665600pt;}
._19{width:38.231733pt;}
._8{width:39.232000pt;}
._1b{width:40.318400pt;}
._10{width:42.920000pt;}
._15{width:46.009600pt;}
._16{width:51.509067pt;}
._12{width:52.484267pt;}
._18{width:57.096800pt;}
._1{width:63.936000pt;}
._2{width:384.064000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:30.866667pt;}
.y9{bottom:37.841333pt;}
.y32{bottom:104.388000pt;}
.y31{bottom:122.788000pt;}
.y30{bottom:141.188000pt;}
.y2f{bottom:159.588000pt;}
.y2e{bottom:177.988000pt;}
.y2d{bottom:196.388000pt;}
.y2c{bottom:214.788000pt;}
.y58{bottom:216.066667pt;}
.y2b{bottom:233.188000pt;}
.y57{bottom:234.466667pt;}
.y2a{bottom:251.588000pt;}
.y56{bottom:252.866667pt;}
.y29{bottom:269.988000pt;}
.y55{bottom:271.266667pt;}
.y28{bottom:288.388000pt;}
.y54{bottom:289.666667pt;}
.y27{bottom:306.788000pt;}
.y53{bottom:308.066667pt;}
.y26{bottom:325.188000pt;}
.y52{bottom:326.466667pt;}
.y25{bottom:343.588000pt;}
.y51{bottom:344.866667pt;}
.y24{bottom:361.988000pt;}
.y50{bottom:363.266667pt;}
.y23{bottom:380.388000pt;}
.y4f{bottom:381.666667pt;}
.y22{bottom:398.788000pt;}
.y4e{bottom:400.066667pt;}
.y21{bottom:417.188000pt;}
.y4d{bottom:431.746667pt;}
.y20{bottom:435.588000pt;}
.y4c{bottom:450.146667pt;}
.y1f{bottom:467.266667pt;}
.y4b{bottom:468.546667pt;}
.y4a{bottom:486.946667pt;}
.y1e{bottom:498.946667pt;}
.y49{bottom:505.346667pt;}
.y1d{bottom:517.346667pt;}
.y48{bottom:523.746667pt;}
.y1c{bottom:535.746667pt;}
.y47{bottom:542.146667pt;}
.y1b{bottom:554.146667pt;}
.y46{bottom:560.546667pt;}
.y1a{bottom:572.546667pt;}
.y45{bottom:578.946667pt;}
.y19{bottom:590.946667pt;}
.y44{bottom:597.346667pt;}
.y43{bottom:615.746667pt;}
.y18{bottom:622.788000pt;}
.y42{bottom:634.146667pt;}
.y41{bottom:652.546667pt;}
.y17{bottom:654.466667pt;}
.y40{bottom:670.946667pt;}
.y16{bottom:672.866667pt;}
.y3f{bottom:689.346667pt;}
.y15{bottom:691.266667pt;}
.y3e{bottom:707.746667pt;}
.y14{bottom:709.666667pt;}
.y3d{bottom:726.146667pt;}
.y13{bottom:728.066667pt;}
.y3c{bottom:744.546667pt;}
.y12{bottom:746.466667pt;}
.y3b{bottom:762.946667pt;}
.y11{bottom:778.146667pt;}
.y3a{bottom:781.346667pt;}
.y39{bottom:799.746667pt;}
.y10{bottom:809.988000pt;}
.y38{bottom:818.146667pt;}
.y37{bottom:836.546667pt;}
.yf{bottom:841.666667pt;}
.y36{bottom:854.946667pt;}
.ye{bottom:860.066667pt;}
.y35{bottom:873.346667pt;}
.yd{bottom:878.466667pt;}
.y34{bottom:891.746667pt;}
.yc{bottom:896.866667pt;}
.y33{bottom:910.146667pt;}
.yb{bottom:928.546667pt;}
.ya{bottom:946.946667pt;}
.y7{bottom:983.746667pt;}
.y6{bottom:1002.146667pt;}
.y5{bottom:1020.546667pt;}
.y4{bottom:1038.946667pt;}
.y3{bottom:1057.346667pt;}
.y2{bottom:1075.746667pt;}
.y1{bottom:1094.466667pt;}
.h4{height:43.343750pt;}
.h3{height:43.375000pt;}
.h6{height:43.825911pt;}
.h7{height:44.468750pt;}
.h5{height:51.800000pt;}
.h2{height:53.748568pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.xa{left:117.440000pt;}
.x3{left:141.120000pt;}
.x1{left:178.720000pt;}
.x4{left:223.200000pt;}
.x7{left:416.160000pt;}
.x9{left:446.720000pt;}
.x6{left:496.960000pt;}
.x8{left:636.960000pt;}
.x5{left:646.720000pt;}
}




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