
    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_59b2d2b8e89df7264c7d8742.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_22e83480e9ba73d30177acc0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_7becb8bcd6dce65742fb0270.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974609;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_4f4b7894846a116179b86027.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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);}
.v1{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.160000px;}
.ls14{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.119520px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.059760px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.239040px;}
.ls5{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.358560px;}
.ls4{letter-spacing:0.657360px;}
.ls6{letter-spacing:1.584000px;}
.lsf{letter-spacing:2.304000px;}
.ls10{letter-spacing:3.024000px;}
.ls16{letter-spacing:10.224000px;}
.ls17{letter-spacing:10.944000px;}
.ls12{letter-spacing:12.384000px;}
.ls7{letter-spacing:13.104000px;}
.ls11{letter-spacing:21.744000px;}
.ls13{letter-spacing:23.904000px;}
.ls15{letter-spacing:31.104000px;}
.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;}
}
.ws6{word-spacing:-20.304000px;}
.ws0{word-spacing:-20.232000px;}
.ws23{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.872000px;}
.ws7{word-spacing:-19.584000px;}
.ws24{word-spacing:-19.224000px;}
.ws4{word-spacing:-16.971840px;}
.ws3{word-spacing:-16.673040px;}
.ws2{word-spacing:-16.493760px;}
.ws18{word-spacing:-5.184000px;}
.ws12{word-spacing:-4.464000px;}
.ws16{word-spacing:-3.744000px;}
.ws1d{word-spacing:-3.024000px;}
.ws29{word-spacing:-2.304000px;}
.ws2c{word-spacing:-1.584000px;}
.ws22{word-spacing:-0.864000px;}
.ws2f{word-spacing:-0.432000px;}
.ws27{word-spacing:-0.288000px;}
.ws17{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
.wsc{word-spacing:0.059760px;}
.ws9{word-spacing:0.144000px;}
.ws35{word-spacing:0.216000px;}
.wsa{word-spacing:0.288000px;}
.wsf{word-spacing:0.432000px;}
.ws20{word-spacing:0.576000px;}
.ws25{word-spacing:1.296000px;}
.ws11{word-spacing:2.016000px;}
.wse{word-spacing:2.736000px;}
.ws1a{word-spacing:3.456000px;}
.ws32{word-spacing:4.176000px;}
.ws19{word-spacing:4.896000px;}
.ws13{word-spacing:5.616000px;}
.wsd{word-spacing:6.336000px;}
.ws1f{word-spacing:7.056000px;}
.ws33{word-spacing:7.776000px;}
.ws31{word-spacing:9.936000px;}
.ws15{word-spacing:10.656000px;}
.ws10{word-spacing:11.376000px;}
.ws2e{word-spacing:12.096000px;}
.ws1b{word-spacing:12.240000px;}
.ws1c{word-spacing:12.816000px;}
.ws14{word-spacing:17.136000px;}
.ws26{word-spacing:18.576000px;}
.ws1e{word-spacing:19.296000px;}
.ws38{word-spacing:20.880000px;}
.ws2b{word-spacing:22.176000px;}
.ws2a{word-spacing:22.896000px;}
.ws21{word-spacing:24.336000px;}
.ws2d{word-spacing:27.216000px;}
.ws30{word-spacing:30.816000px;}
.ws28{word-spacing:32.976000px;}
.ws39{word-spacing:42.336000px;}
.ws37{word-spacing:55.296000px;}
.ws36{word-spacing:56.016000px;}
.ws34{word-spacing:102.096000px;}
.ws3a{word-spacing:215.856000px;}
._4{margin-left:-3.240000px;}
._1{margin-left:-1.440000px;}
._0{width:1.080000px;}
._2{width:2.880000px;}
._7{width:6.120000px;}
._6{width:7.632000px;}
._8{width:11.160000px;}
._3{width:22.896000px;}
._a{width:42.336000px;}
._5{width:79.704000px;}
._9{width:102.528000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:127.620000px;}
.y25{bottom:145.440000px;}
.y57{bottom:146.880000px;}
.y7a{bottom:153.720000px;}
.y5e{bottom:157.500000px;}
.y43{bottom:165.780000px;}
.y56{bottom:178.200000px;}
.y24{bottom:180.360000px;}
.y79{bottom:184.860000px;}
.y5d{bottom:188.640000px;}
.y42{bottom:196.920000px;}
.y23{bottom:202.860000px;}
.y55{bottom:209.340000px;}
.y78{bottom:216.180000px;}
.y5c{bottom:219.240000px;}
.y22{bottom:225.360000px;}
.y41{bottom:228.240000px;}
.y54{bottom:240.480000px;}
.y77{bottom:247.320000px;}
.y21{bottom:247.860000px;}
.y5b{bottom:250.560000px;}
.y40{bottom:259.380000px;}
.y20{bottom:270.360000px;}
.y53{bottom:271.800000px;}
.y76{bottom:278.460000px;}
.y5a{bottom:282.420000px;}
.y3f{bottom:290.520000px;}
.y1f{bottom:292.860000px;}
.y52{bottom:302.940000px;}
.y59{bottom:303.300000px;}
.y75{bottom:309.780000px;}
.y1e{bottom:315.360000px;}
.y3e{bottom:321.840000px;}
.y51{bottom:334.080000px;}
.y1d{bottom:337.860000px;}
.y74{bottom:344.160000px;}
.y3d{bottom:352.980000px;}
.y1c{bottom:360.360000px;}
.y50{bottom:365.400000px;}
.y73{bottom:366.660000px;}
.y1b{bottom:382.860000px;}
.y3c{bottom:384.120000px;}
.y72{bottom:389.160000px;}
.y4f{bottom:396.540000px;}
.y1a{bottom:405.360000px;}
.y3b{bottom:415.440000px;}
.y71{bottom:420.480000px;}
.y4e{bottom:427.680000px;}
.y19{bottom:427.860000px;}
.y3a{bottom:446.580000px;}
.y70{bottom:451.620000px;}
.y18{bottom:458.460000px;}
.y4d{bottom:459.000000px;}
.y39{bottom:477.720000px;}
.y6f{bottom:482.760000px;}
.y4c{bottom:490.140000px;}
.y17{bottom:507.600000px;}
.y38{bottom:509.040000px;}
.y6e{bottom:514.080000px;}
.y4b{bottom:521.280000px;}
.y37{bottom:540.180000px;}
.y16{bottom:542.700000px;}
.y6d{bottom:545.220000px;}
.y4a{bottom:552.600000px;}
.y15{bottom:565.200000px;}
.y36{bottom:570.780000px;}
.y6c{bottom:576.360000px;}
.y49{bottom:583.200000px;}
.y14{bottom:587.700000px;}
.y35{bottom:602.640000px;}
.y6b{bottom:607.680000px;}
.y13{bottom:610.200000px;}
.y48{bottom:614.520000px;}
.y12{bottom:632.700000px;}
.y34{bottom:633.780000px;}
.y47{bottom:635.940000px;}
.y6a{bottom:638.820000px;}
.y11{bottom:655.200000px;}
.y46{bottom:656.820000px;}
.y33{bottom:665.100000px;}
.y69{bottom:669.960000px;}
.y10{bottom:677.700000px;}
.y32{bottom:696.240000px;}
.yf{bottom:700.200000px;}
.y68{bottom:701.280000px;}
.ye{bottom:722.700000px;}
.y31{bottom:727.380000px;}
.y67{bottom:732.420000px;}
.yd{bottom:745.200000px;}
.y30{bottom:758.700000px;}
.y66{bottom:763.560000px;}
.yc{bottom:767.520000px;}
.y2f{bottom:789.840000px;}
.yb{bottom:790.020000px;}
.y65{bottom:794.880000px;}
.ya{bottom:820.800000px;}
.y2e{bottom:820.980000px;}
.y64{bottom:826.020000px;}
.y2d{bottom:852.300000px;}
.y63{bottom:857.160000px;}
.y9{bottom:871.380000px;}
.y2c{bottom:883.440000px;}
.y62{bottom:888.480000px;}
.y8{bottom:897.660000px;}
.y2b{bottom:914.580000px;}
.y61{bottom:919.080000px;}
.y2a{bottom:945.900000px;}
.y7{bottom:946.620000px;}
.y60{bottom:948.780000px;}
.y29{bottom:977.040000px;}
.y6{bottom:977.760000px;}
.y58{bottom:997.560000px;}
.y28{bottom:1008.180000px;}
.y5{bottom:1017.900000px;}
.y45{bottom:1018.440000px;}
.y27{bottom:1038.960000px;}
.y5f{bottom:1039.500000px;}
.y4{bottom:1049.040000px;}
.y26{bottom:1070.100000px;}
.y44{bottom:1070.640000px;}
.y2{bottom:1105.559280px;}
.y1{bottom:1140.120000px;}
.h3{height:35.991211px;}
.h5{height:43.565273px;}
.h2{height:44.149219px;}
.h6{height:52.488281px;}
.h4{height:65.003906px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.440000px;}
.x2{left:128.700000px;}
.x7{left:148.320000px;}
.x4{left:166.680000px;}
.x8{left:181.620000px;}
.x5{left:182.700000px;}
.xd{left:189.360000px;}
.x9{left:208.620000px;}
.x6{left:232.920000px;}
.x3{left:243.720000px;}
.xa{left:318.600000px;}
.xb{left:357.120000px;}
.xe{left:396.720000px;}
.xc{left:467.640000px;}
@media print{
.v1{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.920000pt;}
.ls14{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.106240pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.053120pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.212480pt;}
.ls5{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.318720pt;}
.ls4{letter-spacing:0.584320pt;}
.ls6{letter-spacing:1.408000pt;}
.lsf{letter-spacing:2.048000pt;}
.ls10{letter-spacing:2.688000pt;}
.ls16{letter-spacing:9.088000pt;}
.ls17{letter-spacing:9.728000pt;}
.ls12{letter-spacing:11.008000pt;}
.ls7{letter-spacing:11.648000pt;}
.ls11{letter-spacing:19.328000pt;}
.ls13{letter-spacing:21.248000pt;}
.ls15{letter-spacing:27.648000pt;}
.ws6{word-spacing:-18.048000pt;}
.ws0{word-spacing:-17.984000pt;}
.ws23{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.664000pt;}
.ws7{word-spacing:-17.408000pt;}
.ws24{word-spacing:-17.088000pt;}
.ws4{word-spacing:-15.086080pt;}
.ws3{word-spacing:-14.820480pt;}
.ws2{word-spacing:-14.661120pt;}
.ws18{word-spacing:-4.608000pt;}
.ws12{word-spacing:-3.968000pt;}
.ws16{word-spacing:-3.328000pt;}
.ws1d{word-spacing:-2.688000pt;}
.ws29{word-spacing:-2.048000pt;}
.ws2c{word-spacing:-1.408000pt;}
.ws22{word-spacing:-0.768000pt;}
.ws2f{word-spacing:-0.384000pt;}
.ws27{word-spacing:-0.256000pt;}
.ws17{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
.wsc{word-spacing:0.053120pt;}
.ws9{word-spacing:0.128000pt;}
.ws35{word-spacing:0.192000pt;}
.wsa{word-spacing:0.256000pt;}
.wsf{word-spacing:0.384000pt;}
.ws20{word-spacing:0.512000pt;}
.ws25{word-spacing:1.152000pt;}
.ws11{word-spacing:1.792000pt;}
.wse{word-spacing:2.432000pt;}
.ws1a{word-spacing:3.072000pt;}
.ws32{word-spacing:3.712000pt;}
.ws19{word-spacing:4.352000pt;}
.ws13{word-spacing:4.992000pt;}
.wsd{word-spacing:5.632000pt;}
.ws1f{word-spacing:6.272000pt;}
.ws33{word-spacing:6.912000pt;}
.ws31{word-spacing:8.832000pt;}
.ws15{word-spacing:9.472000pt;}
.ws10{word-spacing:10.112000pt;}
.ws2e{word-spacing:10.752000pt;}
.ws1b{word-spacing:10.880000pt;}
.ws1c{word-spacing:11.392000pt;}
.ws14{word-spacing:15.232000pt;}
.ws26{word-spacing:16.512000pt;}
.ws1e{word-spacing:17.152000pt;}
.ws38{word-spacing:18.560000pt;}
.ws2b{word-spacing:19.712000pt;}
.ws2a{word-spacing:20.352000pt;}
.ws21{word-spacing:21.632000pt;}
.ws2d{word-spacing:24.192000pt;}
.ws30{word-spacing:27.392000pt;}
.ws28{word-spacing:29.312000pt;}
.ws39{word-spacing:37.632000pt;}
.ws37{word-spacing:49.152000pt;}
.ws36{word-spacing:49.792000pt;}
.ws34{word-spacing:90.752000pt;}
.ws3a{word-spacing:191.872000pt;}
._4{margin-left:-2.880000pt;}
._1{margin-left:-1.280000pt;}
._0{width:0.960000pt;}
._2{width:2.560000pt;}
._7{width:5.440000pt;}
._6{width:6.784000pt;}
._8{width:9.920000pt;}
._3{width:20.352000pt;}
._a{width:37.632000pt;}
._5{width:70.848000pt;}
._9{width:91.136000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:113.440000pt;}
.y25{bottom:129.280000pt;}
.y57{bottom:130.560000pt;}
.y7a{bottom:136.640000pt;}
.y5e{bottom:140.000000pt;}
.y43{bottom:147.360000pt;}
.y56{bottom:158.400000pt;}
.y24{bottom:160.320000pt;}
.y79{bottom:164.320000pt;}
.y5d{bottom:167.680000pt;}
.y42{bottom:175.040000pt;}
.y23{bottom:180.320000pt;}
.y55{bottom:186.080000pt;}
.y78{bottom:192.160000pt;}
.y5c{bottom:194.880000pt;}
.y22{bottom:200.320000pt;}
.y41{bottom:202.880000pt;}
.y54{bottom:213.760000pt;}
.y77{bottom:219.840000pt;}
.y21{bottom:220.320000pt;}
.y5b{bottom:222.720000pt;}
.y40{bottom:230.560000pt;}
.y20{bottom:240.320000pt;}
.y53{bottom:241.600000pt;}
.y76{bottom:247.520000pt;}
.y5a{bottom:251.040000pt;}
.y3f{bottom:258.240000pt;}
.y1f{bottom:260.320000pt;}
.y52{bottom:269.280000pt;}
.y59{bottom:269.600000pt;}
.y75{bottom:275.360000pt;}
.y1e{bottom:280.320000pt;}
.y3e{bottom:286.080000pt;}
.y51{bottom:296.960000pt;}
.y1d{bottom:300.320000pt;}
.y74{bottom:305.920000pt;}
.y3d{bottom:313.760000pt;}
.y1c{bottom:320.320000pt;}
.y50{bottom:324.800000pt;}
.y73{bottom:325.920000pt;}
.y1b{bottom:340.320000pt;}
.y3c{bottom:341.440000pt;}
.y72{bottom:345.920000pt;}
.y4f{bottom:352.480000pt;}
.y1a{bottom:360.320000pt;}
.y3b{bottom:369.280000pt;}
.y71{bottom:373.760000pt;}
.y4e{bottom:380.160000pt;}
.y19{bottom:380.320000pt;}
.y3a{bottom:396.960000pt;}
.y70{bottom:401.440000pt;}
.y18{bottom:407.520000pt;}
.y4d{bottom:408.000000pt;}
.y39{bottom:424.640000pt;}
.y6f{bottom:429.120000pt;}
.y4c{bottom:435.680000pt;}
.y17{bottom:451.200000pt;}
.y38{bottom:452.480000pt;}
.y6e{bottom:456.960000pt;}
.y4b{bottom:463.360000pt;}
.y37{bottom:480.160000pt;}
.y16{bottom:482.400000pt;}
.y6d{bottom:484.640000pt;}
.y4a{bottom:491.200000pt;}
.y15{bottom:502.400000pt;}
.y36{bottom:507.360000pt;}
.y6c{bottom:512.320000pt;}
.y49{bottom:518.400000pt;}
.y14{bottom:522.400000pt;}
.y35{bottom:535.680000pt;}
.y6b{bottom:540.160000pt;}
.y13{bottom:542.400000pt;}
.y48{bottom:546.240000pt;}
.y12{bottom:562.400000pt;}
.y34{bottom:563.360000pt;}
.y47{bottom:565.280000pt;}
.y6a{bottom:567.840000pt;}
.y11{bottom:582.400000pt;}
.y46{bottom:583.840000pt;}
.y33{bottom:591.200000pt;}
.y69{bottom:595.520000pt;}
.y10{bottom:602.400000pt;}
.y32{bottom:618.880000pt;}
.yf{bottom:622.400000pt;}
.y68{bottom:623.360000pt;}
.ye{bottom:642.400000pt;}
.y31{bottom:646.560000pt;}
.y67{bottom:651.040000pt;}
.yd{bottom:662.400000pt;}
.y30{bottom:674.400000pt;}
.y66{bottom:678.720000pt;}
.yc{bottom:682.240000pt;}
.y2f{bottom:702.080000pt;}
.yb{bottom:702.240000pt;}
.y65{bottom:706.560000pt;}
.ya{bottom:729.600000pt;}
.y2e{bottom:729.760000pt;}
.y64{bottom:734.240000pt;}
.y2d{bottom:757.600000pt;}
.y63{bottom:761.920000pt;}
.y9{bottom:774.560000pt;}
.y2c{bottom:785.280000pt;}
.y62{bottom:789.760000pt;}
.y8{bottom:797.920000pt;}
.y2b{bottom:812.960000pt;}
.y61{bottom:816.960000pt;}
.y2a{bottom:840.800000pt;}
.y7{bottom:841.440000pt;}
.y60{bottom:843.360000pt;}
.y29{bottom:868.480000pt;}
.y6{bottom:869.120000pt;}
.y58{bottom:886.720000pt;}
.y28{bottom:896.160000pt;}
.y5{bottom:904.800000pt;}
.y45{bottom:905.280000pt;}
.y27{bottom:923.520000pt;}
.y5f{bottom:924.000000pt;}
.y4{bottom:932.480000pt;}
.y26{bottom:951.200000pt;}
.y44{bottom:951.680000pt;}
.y2{bottom:982.719360pt;}
.y1{bottom:1013.440000pt;}
.h3{height:31.992188pt;}
.h5{height:38.724688pt;}
.h2{height:39.243750pt;}
.h6{height:46.656250pt;}
.h4{height:57.781250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.280000pt;}
.x2{left:114.400000pt;}
.x7{left:131.840000pt;}
.x4{left:148.160000pt;}
.x8{left:161.440000pt;}
.x5{left:162.400000pt;}
.xd{left:168.320000pt;}
.x9{left:185.440000pt;}
.x6{left:207.040000pt;}
.x3{left:216.640000pt;}
.xa{left:283.200000pt;}
.xb{left:317.440000pt;}
.xe{left:352.640000pt;}
.xc{left:415.680000pt;}
}




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