
    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_28cf245d1edc4379d545c370.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_991342e51c3661e4b9e78a31.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949219;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_4d0b16d8076dda397d07c94b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_95cf0eeaadcd7100484b4154.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_5d3d3aae7eaec6e77bdd4c35.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_c149b953186155dd8bd374d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_b467bb5b586b844ec4c6c57f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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:ffa;src:url('chunks/assets/font_2b25b1f75b72215046c6e953.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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;}
.ls8{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.378000px;}
.ls0{letter-spacing:57.029760px;}
.ls1{letter-spacing:201.209760px;}
.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;}
}
.ws8{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:-12.240000px;}
.ws3{word-spacing:-12.204000px;}
.ws2{word-spacing:-9.437760px;}
.ws1{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-1.158000px;}
._0{width:1.340640px;}
._2{width:2.538000px;}
._b{width:4.248000px;}
._6{width:5.472000px;}
._7{width:6.474720px;}
._5{width:7.488000px;}
._e{width:8.501280px;}
._12{width:9.709440px;}
._13{width:10.800000px;}
._14{width:11.808000px;}
._f{width:12.822000px;}
._4{width:13.968000px;}
._18{width:15.288720px;}
._1a{width:16.534560px;}
._8{width:19.206720px;}
._9{width:20.376000px;}
._a{width:21.600000px;}
._15{width:22.680000px;}
._16{width:24.552000px;}
._17{width:25.704000px;}
._1d{width:27.720000px;}
._1e{width:28.800000px;}
._1f{width:29.835360px;}
._20{width:31.940640px;}
._19{width:33.846000px;}
._c{width:34.920000px;}
._d{width:35.955360px;}
._21{width:44.424000px;}
._22{width:45.576000px;}
._1b{width:51.768000px;}
._1c{width:53.004000px;}
._10{width:54.984000px;}
._3{width:66.096000px;}
._11{width:846.156000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.y8{bottom:7.200000px;}
.y7{bottom:28.290000px;}
.y4{bottom:35.670000px;}
.y6{bottom:49.350000px;}
.yd{bottom:57.420000px;}
.y3{bottom:61.950000px;}
.y5{bottom:70.410000px;}
.yc{bottom:74.016000px;}
.yb{bottom:89.496000px;}
.ya{bottom:104.976000px;}
.y67{bottom:131.076000px;}
.y71{bottom:151.950000px;}
.y44{bottom:160.050000px;}
.y66{bottom:162.030000px;}
.y70{bottom:183.090000px;}
.y43{bottom:191.010000px;}
.y65{bottom:193.170000px;}
.y53{bottom:195.150000px;}
.y6f{bottom:214.050000px;}
.y29{bottom:219.810000px;}
.y42{bottom:222.150000px;}
.y86{bottom:224.130000px;}
.y52{bottom:226.110000px;}
.y64{bottom:245.190000px;}
.y41{bottom:253.110000px;}
.y85{bottom:255.270000px;}
.y51{bottom:257.250000px;}
.y28{bottom:265.890000px;}
.y6e{bottom:276.150000px;}
.y40{bottom:284.250000px;}
.y84{bottom:286.230000px;}
.y50{bottom:288.210000px;}
.y27{bottom:296.850000px;}
.y63{bottom:297.210000px;}
.y3f{bottom:315.255000px;}
.y4f{bottom:319.395000px;}
.y62{bottom:328.395000px;}
.y83{bottom:338.295000px;}
.y26{bottom:342.975000px;}
.y3e{bottom:346.395000px;}
.y61{bottom:359.355000px;}
.y82{bottom:369.435000px;}
.y4e{bottom:371.415000px;}
.y25{bottom:374.115000px;}
.y3d{bottom:377.355000px;}
.y60{bottom:390.495000px;}
.y81{bottom:400.395000px;}
.y24{bottom:405.075000px;}
.y3c{bottom:408.495000px;}
.y5f{bottom:421.455000px;}
.y4d{bottom:423.435000px;}
.y80{bottom:431.535000px;}
.y23{bottom:436.215000px;}
.y6d{bottom:452.595000px;}
.y3b{bottom:454.395000px;}
.y7f{bottom:462.495000px;}
.y22{bottom:467.175000px;}
.y5e{bottom:473.475000px;}
.y87{bottom:483.555000px;}
.y3a{bottom:485.535000px;}
.y21{bottom:498.315000px;}
.y5d{bottom:504.615000px;}
.y7e{bottom:514.515000px;}
.y39{bottom:516.495000px;}
.y20{bottom:529.275000px;}
.y5c{bottom:535.575000px;}
.y7d{bottom:545.655000px;}
.y38{bottom:547.635000px;}
.y8b{bottom:556.635000px;}
.y1f{bottom:560.415000px;}
.y5b{bottom:566.745000px;}
.y7c{bottom:576.645000px;}
.y37{bottom:578.625000px;}
.y8a{bottom:587.625000px;}
.y1e{bottom:591.405000px;}
.y5a{bottom:597.705000px;}
.y7b{bottom:607.785000px;}
.y36{bottom:609.765000px;}
.y89{bottom:618.765000px;}
.y1d{bottom:622.545000px;}
.y4c{bottom:624.705000px;}
.y6c{bottom:628.845000px;}
.y7a{bottom:638.745000px;}
.y35{bottom:640.725000px;}
.y59{bottom:649.725000px;}
.y1c{bottom:653.505000px;}
.y4b{bottom:655.845000px;}
.y6b{bottom:659.805000px;}
.y34{bottom:671.865000px;}
.y58{bottom:680.865000px;}
.y1b{bottom:684.645000px;}
.y4a{bottom:686.805000px;}
.y79{bottom:690.945000px;}
.y57{bottom:711.825000px;}
.y1a{bottom:715.605000px;}
.y33{bottom:717.945000px;}
.y78{bottom:721.905000px;}
.y56{bottom:742.965000px;}
.y19{bottom:746.745000px;}
.y32{bottom:748.905000px;}
.y77{bottom:753.045000px;}
.y55{bottom:773.925000px;}
.y18{bottom:777.705000px;}
.y31{bottom:780.045000px;}
.y76{bottom:784.005000px;}
.y6a{bottom:805.065000px;}
.y17{bottom:808.845000px;}
.y30{bottom:811.005000px;}
.y75{bottom:815.145000px;}
.y54{bottom:825.990000px;}
.y69{bottom:836.070000px;}
.y16{bottom:839.850000px;}
.y2f{bottom:842.190000px;}
.y49{bottom:857.130000px;}
.y15{bottom:860.550000px;}
.y68{bottom:867.210000px;}
.y2e{bottom:873.150000px;}
.y14{bottom:881.250000px;}
.y48{bottom:888.090000px;}
.y74{bottom:898.170000px;}
.y13{bottom:901.950000px;}
.y2d{bottom:904.110000px;}
.y47{bottom:919.230000px;}
.y12{bottom:922.650000px;}
.y73{bottom:929.310000px;}
.y2c{bottom:935.250000px;}
.y11{bottom:943.350000px;}
.y46{bottom:950.190000px;}
.y72{bottom:960.270000px;}
.y10{bottom:964.050000px;}
.y2b{bottom:966.210000px;}
.y45{bottom:981.330000px;}
.yf{bottom:985.290000px;}
.ye{bottom:1009.410000px;}
.y2a{bottom:1012.290000px;}
.y88{bottom:1012.470000px;}
.y9{bottom:1033.530000px;}
.y1{bottom:1049.190000px;}
.h6{height:40.579102px;}
.h7{height:50.273438px;}
.ha{height:50.800781px;}
.hb{height:52.628906px;}
.h8{height:53.709961px;}
.h9{height:59.436914px;}
.h5{height:59.439023px;}
.h2{height:65.884219px;}
.h4{height:67.824844px;}
.h1{height:84.816000px;}
.h3{height:95.245664px;}
.h0{height:1188.000000px;}
.w1{width:124.200000px;}
.w3{width:159.690000px;}
.w2{width:385.995000px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x6{left:39.420000px;}
.x8{left:54.720000px;}
.x7{left:56.520000px;}
.x2{left:98.094000px;}
.x1{left:99.936000px;}
.x9{left:108.035986px;}
.x12{left:150.509986px;}
.xa{left:154.109986px;}
.xf{left:168.689986px;}
.x3{left:224.130000px;}
.xe{left:299.234986px;}
.x11{left:315.074986px;}
.x10{left:338.294986px;}
.xb{left:400.754986px;}
.xd{left:403.994986px;}
.xc{left:459.074986px;}
.x5{left:610.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.336000pt;}
.ls0{letter-spacing:50.693120pt;}
.ls1{letter-spacing:178.853120pt;}
.ws8{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws2{word-spacing:-8.389120pt;}
.ws1{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-1.029333pt;}
._0{width:1.191680pt;}
._2{width:2.256000pt;}
._b{width:3.776000pt;}
._6{width:4.864000pt;}
._7{width:5.755307pt;}
._5{width:6.656000pt;}
._e{width:7.556693pt;}
._12{width:8.630613pt;}
._13{width:9.600000pt;}
._14{width:10.496000pt;}
._f{width:11.397333pt;}
._4{width:12.416000pt;}
._18{width:13.589973pt;}
._1a{width:14.697387pt;}
._8{width:17.072640pt;}
._9{width:18.112000pt;}
._a{width:19.200000pt;}
._15{width:20.160000pt;}
._16{width:21.824000pt;}
._17{width:22.848000pt;}
._1d{width:24.640000pt;}
._1e{width:25.600000pt;}
._1f{width:26.520320pt;}
._20{width:28.391680pt;}
._19{width:30.085333pt;}
._c{width:31.040000pt;}
._d{width:31.960320pt;}
._21{width:39.488000pt;}
._22{width:40.512000pt;}
._1b{width:46.016000pt;}
._1c{width:47.114667pt;}
._10{width:48.874667pt;}
._3{width:58.752000pt;}
._11{width:752.138667pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.y8{bottom:6.400000pt;}
.y7{bottom:25.146667pt;}
.y4{bottom:31.706667pt;}
.y6{bottom:43.866667pt;}
.yd{bottom:51.040000pt;}
.y3{bottom:55.066667pt;}
.y5{bottom:62.586667pt;}
.yc{bottom:65.792000pt;}
.yb{bottom:79.552000pt;}
.ya{bottom:93.312000pt;}
.y67{bottom:116.512000pt;}
.y71{bottom:135.066667pt;}
.y44{bottom:142.266667pt;}
.y66{bottom:144.026667pt;}
.y70{bottom:162.746667pt;}
.y43{bottom:169.786667pt;}
.y65{bottom:171.706667pt;}
.y53{bottom:173.466667pt;}
.y6f{bottom:190.266667pt;}
.y29{bottom:195.386667pt;}
.y42{bottom:197.466667pt;}
.y86{bottom:199.226667pt;}
.y52{bottom:200.986667pt;}
.y64{bottom:217.946667pt;}
.y41{bottom:224.986667pt;}
.y85{bottom:226.906667pt;}
.y51{bottom:228.666667pt;}
.y28{bottom:236.346667pt;}
.y6e{bottom:245.466667pt;}
.y40{bottom:252.666667pt;}
.y84{bottom:254.426667pt;}
.y50{bottom:256.186667pt;}
.y27{bottom:263.866667pt;}
.y63{bottom:264.186667pt;}
.y3f{bottom:280.226667pt;}
.y4f{bottom:283.906667pt;}
.y62{bottom:291.906667pt;}
.y83{bottom:300.706667pt;}
.y26{bottom:304.866667pt;}
.y3e{bottom:307.906667pt;}
.y61{bottom:319.426667pt;}
.y82{bottom:328.386667pt;}
.y4e{bottom:330.146667pt;}
.y25{bottom:332.546667pt;}
.y3d{bottom:335.426667pt;}
.y60{bottom:347.106667pt;}
.y81{bottom:355.906667pt;}
.y24{bottom:360.066667pt;}
.y3c{bottom:363.106667pt;}
.y5f{bottom:374.626667pt;}
.y4d{bottom:376.386667pt;}
.y80{bottom:383.586667pt;}
.y23{bottom:387.746667pt;}
.y6d{bottom:402.306667pt;}
.y3b{bottom:403.906667pt;}
.y7f{bottom:411.106667pt;}
.y22{bottom:415.266667pt;}
.y5e{bottom:420.866667pt;}
.y87{bottom:429.826667pt;}
.y3a{bottom:431.586667pt;}
.y21{bottom:442.946667pt;}
.y5d{bottom:448.546667pt;}
.y7e{bottom:457.346667pt;}
.y39{bottom:459.106667pt;}
.y20{bottom:470.466667pt;}
.y5c{bottom:476.066667pt;}
.y7d{bottom:485.026667pt;}
.y38{bottom:486.786667pt;}
.y8b{bottom:494.786667pt;}
.y1f{bottom:498.146667pt;}
.y5b{bottom:503.773333pt;}
.y7c{bottom:512.573333pt;}
.y37{bottom:514.333333pt;}
.y8a{bottom:522.333333pt;}
.y1e{bottom:525.693333pt;}
.y5a{bottom:531.293333pt;}
.y7b{bottom:540.253333pt;}
.y36{bottom:542.013333pt;}
.y89{bottom:550.013333pt;}
.y1d{bottom:553.373333pt;}
.y4c{bottom:555.293333pt;}
.y6c{bottom:558.973333pt;}
.y7a{bottom:567.773333pt;}
.y35{bottom:569.533333pt;}
.y59{bottom:577.533333pt;}
.y1c{bottom:580.893333pt;}
.y4b{bottom:582.973333pt;}
.y6b{bottom:586.493333pt;}
.y34{bottom:597.213333pt;}
.y58{bottom:605.213333pt;}
.y1b{bottom:608.573333pt;}
.y4a{bottom:610.493333pt;}
.y79{bottom:614.173333pt;}
.y57{bottom:632.733333pt;}
.y1a{bottom:636.093333pt;}
.y33{bottom:638.173333pt;}
.y78{bottom:641.693333pt;}
.y56{bottom:660.413333pt;}
.y19{bottom:663.773333pt;}
.y32{bottom:665.693333pt;}
.y77{bottom:669.373333pt;}
.y55{bottom:687.933333pt;}
.y18{bottom:691.293333pt;}
.y31{bottom:693.373333pt;}
.y76{bottom:696.893333pt;}
.y6a{bottom:715.613333pt;}
.y17{bottom:718.973333pt;}
.y30{bottom:720.893333pt;}
.y75{bottom:724.573333pt;}
.y54{bottom:734.213333pt;}
.y69{bottom:743.173333pt;}
.y16{bottom:746.533333pt;}
.y2f{bottom:748.613333pt;}
.y49{bottom:761.893333pt;}
.y15{bottom:764.933333pt;}
.y68{bottom:770.853333pt;}
.y2e{bottom:776.133333pt;}
.y14{bottom:783.333333pt;}
.y48{bottom:789.413333pt;}
.y74{bottom:798.373333pt;}
.y13{bottom:801.733333pt;}
.y2d{bottom:803.653333pt;}
.y47{bottom:817.093333pt;}
.y12{bottom:820.133333pt;}
.y73{bottom:826.053333pt;}
.y2c{bottom:831.333333pt;}
.y11{bottom:838.533333pt;}
.y46{bottom:844.613333pt;}
.y72{bottom:853.573333pt;}
.y10{bottom:856.933333pt;}
.y2b{bottom:858.853333pt;}
.y45{bottom:872.293333pt;}
.yf{bottom:875.813333pt;}
.ye{bottom:897.253333pt;}
.y2a{bottom:899.813333pt;}
.y88{bottom:899.973333pt;}
.y9{bottom:918.693333pt;}
.y1{bottom:932.613333pt;}
.h6{height:36.070312pt;}
.h7{height:44.687500pt;}
.ha{height:45.156250pt;}
.hb{height:46.781250pt;}
.h8{height:47.742188pt;}
.h9{height:52.832812pt;}
.h5{height:52.834688pt;}
.h2{height:58.563750pt;}
.h4{height:60.288750pt;}
.h1{height:75.392000pt;}
.h3{height:84.662813pt;}
.h0{height:1056.000000pt;}
.w1{width:110.400000pt;}
.w3{width:141.946667pt;}
.w2{width:343.106667pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x6{left:35.040000pt;}
.x8{left:48.640000pt;}
.x7{left:50.240000pt;}
.x2{left:87.194667pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x12{left:133.786655pt;}
.xa{left:136.986655pt;}
.xf{left:149.946655pt;}
.x3{left:199.226667pt;}
.xe{left:265.986655pt;}
.x11{left:280.066655pt;}
.x10{left:300.706655pt;}
.xb{left:356.226655pt;}
.xd{left:359.106655pt;}
.xc{left:408.066655pt;}
.x5{left:542.333333pt;}
}




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