
    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_04a4749c82da4ac854e7d7e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_e39c089aebaf9e0919f7a40f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_29e5057218e32a1a6440302f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_e721d001fdf5b0a0b29e4449.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_799dcfce7710b6a63323d284.woff2')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;}
.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;}
}
.ws0{word-spacing:-63.071100px;}
.ws4{word-spacing:-55.944000px;}
.ws5{word-spacing:-38.876400px;}
.ws6c{word-spacing:-38.869800px;}
.ws48{word-spacing:-38.863800px;}
.ws2d{word-spacing:-38.666400px;}
.ws58{word-spacing:-38.656800px;}
.ws70{word-spacing:-38.644500px;}
.ws27{word-spacing:-38.431800px;}
.ws4a{word-spacing:-38.428500px;}
.ws36{word-spacing:-38.424000px;}
.ws65{word-spacing:-38.417400px;}
.ws7{word-spacing:-38.160000px;}
.ws49{word-spacing:-38.154600px;}
.ws6b{word-spacing:-38.154000px;}
.ws3{word-spacing:-38.151000px;}
.ws2f{word-spacing:-38.149200px;}
.ws4c{word-spacing:-38.147700px;}
.ws61{word-spacing:-38.141400px;}
.ws71{word-spacing:-38.088000px;}
.ws6e{word-spacing:-38.014200px;}
.ws21{word-spacing:-37.935000px;}
.ws44{word-spacing:-37.934100px;}
.ws52{word-spacing:-37.926000px;}
.ws18{word-spacing:-37.916100px;}
.ws1d{word-spacing:-37.914600px;}
.ws8{word-spacing:-37.719900px;}
.ws5c{word-spacing:-37.713000px;}
.ws4b{word-spacing:-37.712700px;}
.ws3e{word-spacing:-37.434600px;}
.ws6{word-spacing:-37.410600px;}
.ws11{word-spacing:-37.227300px;}
.ws23{word-spacing:-37.215000px;}
.ws3a{word-spacing:-37.209000px;}
.ws4e{word-spacing:-36.716400px;}
.ws26{word-spacing:-36.714600px;}
.ws19{word-spacing:-36.704700px;}
.ws5d{word-spacing:-36.702000px;}
.ws16{word-spacing:-36.500400px;}
.ws5a{word-spacing:-36.495000px;}
.ws30{word-spacing:-35.997900px;}
.ws39{word-spacing:-35.991000px;}
.ws15{word-spacing:-35.747400px;}
.ws20{word-spacing:-35.271000px;}
.ws31{word-spacing:-34.566000px;}
.ws3f{word-spacing:-34.114800px;}
.ws13{word-spacing:-33.842400px;}
.ws2{word-spacing:-33.547800px;}
.ws69{word-spacing:-33.118200px;}
.ws60{word-spacing:-32.901300px;}
.ws63{word-spacing:-32.899200px;}
.ws1e{word-spacing:-32.896800px;}
.ws57{word-spacing:-32.676900px;}
.ws14{word-spacing:-32.175000px;}
.ws34{word-spacing:-31.957200px;}
.wsd{word-spacing:-31.671900px;}
.ws5b{word-spacing:-31.461300px;}
.ws5f{word-spacing:-31.456800px;}
.wsf{word-spacing:-31.450500px;}
.wse{word-spacing:-30.952800px;}
.ws67{word-spacing:-30.945600px;}
.ws50{word-spacing:-30.741300px;}
.ws6a{word-spacing:-30.735300px;}
.ws47{word-spacing:-30.009600px;}
.wsc{word-spacing:-30.009300px;}
.ws9{word-spacing:-29.495100px;}
.wsa{word-spacing:-29.307300px;}
.ws2b{word-spacing:-29.301000px;}
.ws2a{word-spacing:-29.295000px;}
.ws3c{word-spacing:-29.290500px;}
.ws41{word-spacing:-28.787400px;}
.ws33{word-spacing:-27.635400px;}
.ws5e{word-spacing:-27.142200px;}
.ws17{word-spacing:-27.135000px;}
.ws37{word-spacing:-26.920800px;}
.ws10{word-spacing:-26.621100px;}
.ws2c{word-spacing:-26.427300px;}
.ws46{word-spacing:-26.413200px;}
.ws2e{word-spacing:-25.914600px;}
.ws1f{word-spacing:-25.696800px;}
.ws40{word-spacing:-25.684500px;}
.ws32{word-spacing:-24.981000px;}
.ws4f{word-spacing:-24.979200px;}
.ws68{word-spacing:-23.540400px;}
.ws12{word-spacing:-23.311200px;}
.ws35{word-spacing:-22.320000px;}
.ws22{word-spacing:-22.101300px;}
.ws54{word-spacing:-21.600000px;}
.ws64{word-spacing:-20.650500px;}
.ws28{word-spacing:-20.446800px;}
.ws62{word-spacing:-19.721400px;}
.ws1c{word-spacing:-18.267600px;}
.ws1b{word-spacing:-17.997000px;}
.ws24{word-spacing:-15.840000px;}
.ws29{word-spacing:-15.120000px;}
.ws38{word-spacing:-15.107700px;}
.ws45{word-spacing:-14.677200px;}
.ws43{word-spacing:-14.394600px;}
.ws25{word-spacing:-14.187300px;}
.wsb{word-spacing:-13.668000px;}
.ws1a{word-spacing:-13.469100px;}
.ws3d{word-spacing:-12.729600px;}
.ws4d{word-spacing:-12.011400px;}
.ws3b{word-spacing:-11.305500px;}
.ws55{word-spacing:-11.084400px;}
.ws53{word-spacing:-10.360800px;}
.ws59{word-spacing:-9.845400px;}
.ws66{word-spacing:-6.744000px;}
.ws56{word-spacing:-3.373200px;}
.ws51{word-spacing:-3.371400px;}
.ws72{word-spacing:0.000000px;}
.ws6f{word-spacing:3.828600px;}
.ws42{word-spacing:8.145000px;}
.ws6d{word-spacing:70.056000px;}
.ws1{word-spacing:1871.357400px;}
._2{margin-left:-1.305900px;}
._0{width:1.148400px;}
._14{width:17.722500px;}
._1{width:18.831600px;}
._9{width:20.385300px;}
._d{width:21.676800px;}
._b{width:23.706300px;}
._c{width:24.972000px;}
._6{width:26.979000px;}
._4{width:28.101300px;}
._11{width:29.447700px;}
._8{width:30.512700px;}
._7{width:31.623900px;}
._17{width:32.748600px;}
._a{width:34.176000px;}
._3{width:35.848800px;}
._10{width:37.006800px;}
._e{width:39.395700px;}
._f{width:41.409600px;}
._5{width:43.291500px;}
._13{width:44.941200px;}
._12{width:45.943500px;}
._19{width:47.201400px;}
._1a{width:48.443400px;}
._1b{width:50.208000px;}
._18{width:53.699400px;}
._1e{width:61.391400px;}
._15{width:62.763000px;}
._1f{width:121.896000px;}
._1d{width:127.027500px;}
._1c{width:158.400000px;}
._16{width:162.000000px;}
.fc3{color:rgb(0,102,204);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.471500px;}
.y3{bottom:72.825000px;}
.y51{bottom:113.115000px;}
.y2e{bottom:114.375000px;}
.y50{bottom:133.815000px;}
.y2d{bottom:135.075000px;}
.y2c{bottom:155.775000px;}
.y4f{bottom:175.396500px;}
.y2b{bottom:176.296500px;}
.y4e{bottom:196.096500px;}
.y2a{bottom:196.996500px;}
.y4d{bottom:216.795000px;}
.y29{bottom:217.696500px;}
.y4c{bottom:237.496500px;}
.y4b{bottom:258.196500px;}
.y28{bottom:259.455000px;}
.y4a{bottom:278.896500px;}
.y27{bottom:280.155000px;}
.y26{bottom:300.855000px;}
.y49{bottom:320.655000px;}
.y25{bottom:321.555000px;}
.y48{bottom:341.355000px;}
.y24{bottom:342.255000px;}
.y47{bottom:362.055000px;}
.y23{bottom:362.955000px;}
.y46{bottom:403.815000px;}
.y69{bottom:404.355000px;}
.y22{bottom:404.715000px;}
.y68{bottom:425.055000px;}
.y21{bottom:425.415000px;}
.y45{bottom:445.396500px;}
.y67{bottom:445.755000px;}
.y20{bottom:446.115000px;}
.y44{bottom:466.096500px;}
.y66{bottom:466.455000px;}
.y1f{bottom:466.815000px;}
.y43{bottom:486.795000px;}
.y65{bottom:487.155000px;}
.y42{bottom:507.496500px;}
.y64{bottom:507.855000px;}
.y1e{bottom:508.396500px;}
.y63{bottom:528.555000px;}
.y1d{bottom:529.096500px;}
.y41{bottom:549.255000px;}
.y1c{bottom:549.796500px;}
.y40{bottom:569.955000px;}
.y1b{bottom:570.496500px;}
.y3f{bottom:590.655000px;}
.y1a{bottom:591.195000px;}
.y3e{bottom:611.355000px;}
.y3d{bottom:632.055000px;}
.y19{bottom:632.955000px;}
.y62{bottom:652.755000px;}
.y18{bottom:653.655000px;}
.y61{bottom:673.455000px;}
.y3c{bottom:673.815000px;}
.y17{bottom:674.355000px;}
.y60{bottom:694.155000px;}
.y3b{bottom:694.515000px;}
.y16{bottom:695.055000px;}
.y5f{bottom:714.855000px;}
.y3a{bottom:715.215000px;}
.y15{bottom:715.755000px;}
.y5e{bottom:735.555000px;}
.y39{bottom:735.915000px;}
.y14{bottom:736.455000px;}
.y5d{bottom:756.255000px;}
.y38{bottom:756.615000px;}
.y13{bottom:757.155000px;}
.y37{bottom:777.315000px;}
.y12{bottom:777.855000px;}
.y5c{bottom:798.015000px;}
.y11{bottom:798.555000px;}
.y5b{bottom:818.715000px;}
.y36{bottom:818.895000px;}
.y5a{bottom:839.415000px;}
.y35{bottom:839.596500px;}
.y10{bottom:839.955000px;}
.y59{bottom:860.115000px;}
.y34{bottom:860.295000px;}
.yf{bottom:860.655000px;}
.y58{bottom:880.815000px;}
.y33{bottom:880.995000px;}
.y57{bottom:901.515000px;}
.y32{bottom:901.695000px;}
.ye{bottom:902.055000px;}
.y56{bottom:922.215000px;}
.y31{bottom:922.395000px;}
.yd{bottom:922.755000px;}
.y55{bottom:942.915000px;}
.yc{bottom:943.455000px;}
.y54{bottom:963.615000px;}
.yb{bottom:964.155000px;}
.y53{bottom:984.315000px;}
.ya{bottom:984.855000px;}
.y30{bottom:1005.555000px;}
.y52{bottom:1025.895000px;}
.y9{bottom:1026.255000px;}
.y8{bottom:1046.955000px;}
.y7{bottom:1067.655000px;}
.y2f{bottom:1088.355000px;}
.y6{bottom:1109.055000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h3{height:50.308594px;}
.h2{height:97.101563px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:138.238500px;}
.x2{left:150.120000px;}
.x1{left:153.000000px;}
.x4{left:181.260000px;}
.x8{left:427.860000px;}
.x5{left:429.120000px;}
.x3{left:471.150000px;}
.x6{left:579.600000px;}
.x7{left:582.300000px;}
.x9{left:677.520000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-56.063200pt;}
.ws4{word-spacing:-49.728000pt;}
.ws5{word-spacing:-34.556800pt;}
.ws6c{word-spacing:-34.550933pt;}
.ws48{word-spacing:-34.545600pt;}
.ws2d{word-spacing:-34.370133pt;}
.ws58{word-spacing:-34.361600pt;}
.ws70{word-spacing:-34.350667pt;}
.ws27{word-spacing:-34.161600pt;}
.ws4a{word-spacing:-34.158667pt;}
.ws36{word-spacing:-34.154667pt;}
.ws65{word-spacing:-34.148800pt;}
.ws7{word-spacing:-33.920000pt;}
.ws49{word-spacing:-33.915200pt;}
.ws6b{word-spacing:-33.914667pt;}
.ws3{word-spacing:-33.912000pt;}
.ws2f{word-spacing:-33.910400pt;}
.ws4c{word-spacing:-33.909067pt;}
.ws61{word-spacing:-33.903467pt;}
.ws71{word-spacing:-33.856000pt;}
.ws6e{word-spacing:-33.790400pt;}
.ws21{word-spacing:-33.720000pt;}
.ws44{word-spacing:-33.719200pt;}
.ws52{word-spacing:-33.712000pt;}
.ws18{word-spacing:-33.703200pt;}
.ws1d{word-spacing:-33.701867pt;}
.ws8{word-spacing:-33.528800pt;}
.ws5c{word-spacing:-33.522667pt;}
.ws4b{word-spacing:-33.522400pt;}
.ws3e{word-spacing:-33.275200pt;}
.ws6{word-spacing:-33.253867pt;}
.ws11{word-spacing:-33.090933pt;}
.ws23{word-spacing:-33.080000pt;}
.ws3a{word-spacing:-33.074667pt;}
.ws4e{word-spacing:-32.636800pt;}
.ws26{word-spacing:-32.635200pt;}
.ws19{word-spacing:-32.626400pt;}
.ws5d{word-spacing:-32.624000pt;}
.ws16{word-spacing:-32.444800pt;}
.ws5a{word-spacing:-32.440000pt;}
.ws30{word-spacing:-31.998133pt;}
.ws39{word-spacing:-31.992000pt;}
.ws15{word-spacing:-31.775467pt;}
.ws20{word-spacing:-31.352000pt;}
.ws31{word-spacing:-30.725333pt;}
.ws3f{word-spacing:-30.324267pt;}
.ws13{word-spacing:-30.082133pt;}
.ws2{word-spacing:-29.820267pt;}
.ws69{word-spacing:-29.438400pt;}
.ws60{word-spacing:-29.245600pt;}
.ws63{word-spacing:-29.243733pt;}
.ws1e{word-spacing:-29.241600pt;}
.ws57{word-spacing:-29.046133pt;}
.ws14{word-spacing:-28.600000pt;}
.ws34{word-spacing:-28.406400pt;}
.wsd{word-spacing:-28.152800pt;}
.ws5b{word-spacing:-27.965600pt;}
.ws5f{word-spacing:-27.961600pt;}
.wsf{word-spacing:-27.956000pt;}
.wse{word-spacing:-27.513600pt;}
.ws67{word-spacing:-27.507200pt;}
.ws50{word-spacing:-27.325600pt;}
.ws6a{word-spacing:-27.320267pt;}
.ws47{word-spacing:-26.675200pt;}
.wsc{word-spacing:-26.674933pt;}
.ws9{word-spacing:-26.217867pt;}
.wsa{word-spacing:-26.050933pt;}
.ws2b{word-spacing:-26.045333pt;}
.ws2a{word-spacing:-26.040000pt;}
.ws3c{word-spacing:-26.036000pt;}
.ws41{word-spacing:-25.588800pt;}
.ws33{word-spacing:-24.564800pt;}
.ws5e{word-spacing:-24.126400pt;}
.ws17{word-spacing:-24.120000pt;}
.ws37{word-spacing:-23.929600pt;}
.ws10{word-spacing:-23.663200pt;}
.ws2c{word-spacing:-23.490933pt;}
.ws46{word-spacing:-23.478400pt;}
.ws2e{word-spacing:-23.035200pt;}
.ws1f{word-spacing:-22.841600pt;}
.ws40{word-spacing:-22.830667pt;}
.ws32{word-spacing:-22.205333pt;}
.ws4f{word-spacing:-22.203733pt;}
.ws68{word-spacing:-20.924800pt;}
.ws12{word-spacing:-20.721067pt;}
.ws35{word-spacing:-19.840000pt;}
.ws22{word-spacing:-19.645600pt;}
.ws54{word-spacing:-19.200000pt;}
.ws64{word-spacing:-18.356000pt;}
.ws28{word-spacing:-18.174933pt;}
.ws62{word-spacing:-17.530133pt;}
.ws1c{word-spacing:-16.237867pt;}
.ws1b{word-spacing:-15.997333pt;}
.ws24{word-spacing:-14.080000pt;}
.ws29{word-spacing:-13.440000pt;}
.ws38{word-spacing:-13.429067pt;}
.ws45{word-spacing:-13.046400pt;}
.ws43{word-spacing:-12.795200pt;}
.ws25{word-spacing:-12.610933pt;}
.wsb{word-spacing:-12.149333pt;}
.ws1a{word-spacing:-11.972533pt;}
.ws3d{word-spacing:-11.315200pt;}
.ws4d{word-spacing:-10.676800pt;}
.ws3b{word-spacing:-10.049333pt;}
.ws55{word-spacing:-9.852800pt;}
.ws53{word-spacing:-9.209600pt;}
.ws59{word-spacing:-8.751467pt;}
.ws66{word-spacing:-5.994667pt;}
.ws56{word-spacing:-2.998400pt;}
.ws51{word-spacing:-2.996800pt;}
.ws72{word-spacing:0.000000pt;}
.ws6f{word-spacing:3.403200pt;}
.ws42{word-spacing:7.240000pt;}
.ws6d{word-spacing:62.272000pt;}
.ws1{word-spacing:1663.428800pt;}
._2{margin-left:-1.160800pt;}
._0{width:1.020800pt;}
._14{width:15.753333pt;}
._1{width:16.739200pt;}
._9{width:18.120267pt;}
._d{width:19.268267pt;}
._b{width:21.072267pt;}
._c{width:22.197333pt;}
._6{width:23.981333pt;}
._4{width:24.978933pt;}
._11{width:26.175733pt;}
._8{width:27.122400pt;}
._7{width:28.110133pt;}
._17{width:29.109867pt;}
._a{width:30.378667pt;}
._3{width:31.865600pt;}
._10{width:32.894933pt;}
._e{width:35.018400pt;}
._f{width:36.808533pt;}
._5{width:38.481333pt;}
._13{width:39.947733pt;}
._12{width:40.838667pt;}
._19{width:41.956800pt;}
._1a{width:43.060800pt;}
._1b{width:44.629333pt;}
._18{width:47.732800pt;}
._1e{width:54.570133pt;}
._15{width:55.789333pt;}
._1f{width:108.352000pt;}
._1d{width:112.913333pt;}
._1c{width:140.800000pt;}
._16{width:144.000000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.974667pt;}
.y3{bottom:64.733333pt;}
.y51{bottom:100.546667pt;}
.y2e{bottom:101.666667pt;}
.y50{bottom:118.946667pt;}
.y2d{bottom:120.066667pt;}
.y2c{bottom:138.466667pt;}
.y4f{bottom:155.908000pt;}
.y2b{bottom:156.708000pt;}
.y4e{bottom:174.308000pt;}
.y2a{bottom:175.108000pt;}
.y4d{bottom:192.706667pt;}
.y29{bottom:193.508000pt;}
.y4c{bottom:211.108000pt;}
.y4b{bottom:229.508000pt;}
.y28{bottom:230.626667pt;}
.y4a{bottom:247.908000pt;}
.y27{bottom:249.026667pt;}
.y26{bottom:267.426667pt;}
.y49{bottom:285.026667pt;}
.y25{bottom:285.826667pt;}
.y48{bottom:303.426667pt;}
.y24{bottom:304.226667pt;}
.y47{bottom:321.826667pt;}
.y23{bottom:322.626667pt;}
.y46{bottom:358.946667pt;}
.y69{bottom:359.426667pt;}
.y22{bottom:359.746667pt;}
.y68{bottom:377.826667pt;}
.y21{bottom:378.146667pt;}
.y45{bottom:395.908000pt;}
.y67{bottom:396.226667pt;}
.y20{bottom:396.546667pt;}
.y44{bottom:414.308000pt;}
.y66{bottom:414.626667pt;}
.y1f{bottom:414.946667pt;}
.y43{bottom:432.706667pt;}
.y65{bottom:433.026667pt;}
.y42{bottom:451.108000pt;}
.y64{bottom:451.426667pt;}
.y1e{bottom:451.908000pt;}
.y63{bottom:469.826667pt;}
.y1d{bottom:470.308000pt;}
.y41{bottom:488.226667pt;}
.y1c{bottom:488.708000pt;}
.y40{bottom:506.626667pt;}
.y1b{bottom:507.108000pt;}
.y3f{bottom:525.026667pt;}
.y1a{bottom:525.506667pt;}
.y3e{bottom:543.426667pt;}
.y3d{bottom:561.826667pt;}
.y19{bottom:562.626667pt;}
.y62{bottom:580.226667pt;}
.y18{bottom:581.026667pt;}
.y61{bottom:598.626667pt;}
.y3c{bottom:598.946667pt;}
.y17{bottom:599.426667pt;}
.y60{bottom:617.026667pt;}
.y3b{bottom:617.346667pt;}
.y16{bottom:617.826667pt;}
.y5f{bottom:635.426667pt;}
.y3a{bottom:635.746667pt;}
.y15{bottom:636.226667pt;}
.y5e{bottom:653.826667pt;}
.y39{bottom:654.146667pt;}
.y14{bottom:654.626667pt;}
.y5d{bottom:672.226667pt;}
.y38{bottom:672.546667pt;}
.y13{bottom:673.026667pt;}
.y37{bottom:690.946667pt;}
.y12{bottom:691.426667pt;}
.y5c{bottom:709.346667pt;}
.y11{bottom:709.826667pt;}
.y5b{bottom:727.746667pt;}
.y36{bottom:727.906667pt;}
.y5a{bottom:746.146667pt;}
.y35{bottom:746.308000pt;}
.y10{bottom:746.626667pt;}
.y59{bottom:764.546667pt;}
.y34{bottom:764.706667pt;}
.yf{bottom:765.026667pt;}
.y58{bottom:782.946667pt;}
.y33{bottom:783.106667pt;}
.y57{bottom:801.346667pt;}
.y32{bottom:801.506667pt;}
.ye{bottom:801.826667pt;}
.y56{bottom:819.746667pt;}
.y31{bottom:819.906667pt;}
.yd{bottom:820.226667pt;}
.y55{bottom:838.146667pt;}
.yc{bottom:838.626667pt;}
.y54{bottom:856.546667pt;}
.yb{bottom:857.026667pt;}
.y53{bottom:874.946667pt;}
.ya{bottom:875.426667pt;}
.y30{bottom:893.826667pt;}
.y52{bottom:911.906667pt;}
.y9{bottom:912.226667pt;}
.y8{bottom:930.626667pt;}
.y7{bottom:949.026667pt;}
.y2f{bottom:967.426667pt;}
.y6{bottom:985.826667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h3{height:44.718750pt;}
.h2{height:86.312500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:122.878667pt;}
.x2{left:133.440000pt;}
.x1{left:136.000000pt;}
.x4{left:161.120000pt;}
.x8{left:380.320000pt;}
.x5{left:381.440000pt;}
.x3{left:418.800000pt;}
.x6{left:515.200000pt;}
.x7{left:517.600000pt;}
.x9{left:602.240000pt;}
}




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