
    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_1c5f535ae79f286775d14b55.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_79027c0aa0861680f2e64cea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_3a15f6587fdfd360d77d6616.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_65b751c6b2ddae4d3e27b8bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_a4300618ccb6bbf1fe4f8483.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_0c9ef82d38720b5abbe8ede4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_079d1f1de776db44b28059fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_a3ba1f7ff5c6dafabb699282.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_83e585aa3ebd8643c34ccbc1.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.lsd{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.094800px;}
.lsc{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.054720px;}
.ls2{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.245400px;}
.ls5{letter-spacing:0.245520px;}
.lsb{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.666720px;}
.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:-18.984000px;}
.ws6{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws3{word-spacing:-13.870680px;}
.ws2{word-spacing:-13.734480px;}
.ws4{word-spacing:-13.680000px;}
.ws5{word-spacing:-0.072000px;}
.ws9{word-spacing:-0.059760px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._19{margin-left:-3.168000px;}
._1{margin-left:-1.996800px;}
._6{width:1.015920px;}
._7{width:2.328000px;}
._15{width:4.060800px;}
._0{width:5.587200px;}
._f{width:6.904080px;}
._e{width:8.116800px;}
._10{width:9.936000px;}
._1e{width:10.975200px;}
._1a{width:11.976000px;}
._9{width:13.584000px;}
._14{width:16.128000px;}
._22{width:19.368000px;}
._a{width:22.896000px;}
._b{width:24.624000px;}
._18{width:26.112000px;}
._23{width:27.360000px;}
._24{width:28.488000px;}
._1d{width:29.928000px;}
._13{width:31.536000px;}
._20{width:32.664000px;}
._21{width:34.116000px;}
._11{width:42.336000px;}
._12{width:43.776000px;}
._16{width:44.928000px;}
._17{width:46.072080px;}
._1f{width:47.592000px;}
._d{width:49.824000px;}
._c{width:56.664000px;}
._1b{width:72.648000px;}
._1c{width:73.728000px;}
._8{width:114.660000px;}
._5{width:677.466720px;}
._4{width:1539.582720px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(19,138,196);}
.fc2{color:rgb(54,54,54);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:3.240000px;}
.yc{bottom:8.040000px;}
.y1a{bottom:56.196000px;}
.y4a{bottom:56.376000px;}
.y49{bottom:73.476000px;}
.y19{bottom:88.236000px;}
.y1b{bottom:91.836000px;}
.y13{bottom:99.795000px;}
.y16{bottom:135.750000px;}
.y45{bottom:149.976000px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y15{bottom:157.830000px;}
.y44{bottom:170.670000px;}
.y43{bottom:191.370000px;}
.y71{bottom:198.750000px;}
.y42{bottom:212.070000px;}
.y70{bottom:219.450000px;}
.y41{bottom:250.770000px;}
.y6f{bottom:258.150000px;}
.y40{bottom:271.470000px;}
.y6e{bottom:278.895000px;}
.y3f{bottom:292.215000px;}
.y3e{bottom:312.915000px;}
.y6d{bottom:317.595000px;}
.y3d{bottom:333.615000px;}
.ya{bottom:344.680500px;}
.y3c{bottom:354.315000px;}
.y6c{bottom:356.295000px;}
.y3b{bottom:375.015000px;}
.yd{bottom:386.490000px;}
.y6b{bottom:394.995000px;}
.y9{bottom:395.689500px;}
.y3a{bottom:395.715000px;}
.y6a{bottom:415.695000px;}
.y39{bottom:434.415000px;}
.yb{bottom:434.850000px;}
.y69{bottom:436.395000px;}
.y8{bottom:446.698500px;}
.y38{bottom:455.115000px;}
.y68{bottom:475.095000px;}
.y37{bottom:475.815000px;}
.y10{bottom:488.055000px;}
.y67{bottom:495.795000px;}
.y36{bottom:496.515000px;}
.y7{bottom:497.707500px;}
.y66{bottom:516.495000px;}
.y35{bottom:517.215000px;}
.y65{bottom:537.195000px;}
.y34{bottom:537.915000px;}
.y11{bottom:538.230000px;}
.y6{bottom:548.716500px;}
.y64{bottom:557.895000px;}
.y33{bottom:576.645000px;}
.y63{bottom:578.445000px;}
.y17{bottom:589.605000px;}
.y32{bottom:597.345000px;}
.y62{bottom:599.145000px;}
.y5{bottom:599.725500px;}
.y31{bottom:618.045000px;}
.y61{bottom:619.845000px;}
.ye{bottom:631.920000px;}
.y30{bottom:638.745000px;}
.y60{bottom:640.545000px;}
.y2f{bottom:659.445000px;}
.y5f{bottom:679.245000px;}
.y2e{bottom:680.145000px;}
.y5e{bottom:699.945000px;}
.y2d{bottom:700.845000px;}
.y5d{bottom:720.645000px;}
.y2c{bottom:721.545000px;}
.y5c{bottom:741.345000px;}
.y2b{bottom:761.145000px;}
.y5b{bottom:762.045000px;}
.y4{bottom:778.225500px;}
.y5a{bottom:782.745000px;}
.y59{bottom:803.445000px;}
.y2a{bottom:813.165000px;}
.y12{bottom:815.670000px;}
.y58{bottom:824.145000px;}
.y57{bottom:844.845000px;}
.y29{bottom:860.910000px;}
.y56{bottom:865.590000px;}
.y55{bottom:886.290000px;}
.y3{bottom:905.716500px;}
.y54{bottom:906.990000px;}
.y28{bottom:919.230000px;}
.y53{bottom:927.690000px;}
.y52{bottom:948.390000px;}
.y2{bottom:964.228500px;}
.y27{bottom:985.290000px;}
.y51{bottom:987.090000px;}
.y1{bottom:989.716500px;}
.y50{bottom:1007.790000px;}
.y24{bottom:1018.590000px;}
.y4f{bottom:1028.490000px;}
.y23{bottom:1035.870000px;}
.y26{bottom:1043.790000px;}
.y4e{bottom:1049.190000px;}
.y22{bottom:1053.150000px;}
.y4d{bottom:1069.890000px;}
.y21{bottom:1070.250000px;}
.y25{bottom:1078.710000px;}
.y20{bottom:1087.530000px;}
.y4c{bottom:1090.590000px;}
.y1f{bottom:1104.810000px;}
.y4b{bottom:1111.290000px;}
.y1e{bottom:1121.910000px;}
.y1d{bottom:1139.760000px;}
.y48{bottom:1161.180000px;}
.y47{bottom:1178.460000px;}
.y18{bottom:1184.040000px;}
.y46{bottom:1195.740000px;}
.h4{height:33.000000px;}
.hf{height:43.506914px;}
.hc{height:44.280000px;}
.he{height:52.453125px;}
.h3{height:58.406250px;}
.hd{height:58.651172px;}
.hb{height:62.327813px;}
.h10{height:65.566406px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.ha{height:70.664062px;}
.h12{height:72.562500px;}
.h11{height:78.679688px;}
.h13{height:88.330078px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h9{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:4.140000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.wa{width:892.979987px;}
.w9{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:108.035987px;}
.xd{left:116.495987px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xb{left:129.275987px;}
.x10{left:134.855987px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x12{left:443.594987px;}
.xf{left:550.364987px;}
.x11{left:750.029987px;}
.xc{left:754.170000px;}
.xe{left:784.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.084267pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.048640pt;}
.ls2{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.218133pt;}
.ls5{letter-spacing:0.218240pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.592640pt;}
.ws0{word-spacing:-16.874667pt;}
.ws6{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws3{word-spacing:-12.329493pt;}
.ws2{word-spacing:-12.208427pt;}
.ws4{word-spacing:-12.160000pt;}
.ws5{word-spacing:-0.064000pt;}
.ws9{word-spacing:-0.053120pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._19{margin-left:-2.816000pt;}
._1{margin-left:-1.774933pt;}
._6{width:0.903040pt;}
._7{width:2.069333pt;}
._15{width:3.609600pt;}
._0{width:4.966400pt;}
._f{width:6.136960pt;}
._e{width:7.214933pt;}
._10{width:8.832000pt;}
._1e{width:9.755733pt;}
._1a{width:10.645333pt;}
._9{width:12.074667pt;}
._14{width:14.336000pt;}
._22{width:17.216000pt;}
._a{width:20.352000pt;}
._b{width:21.888000pt;}
._18{width:23.210667pt;}
._23{width:24.320000pt;}
._24{width:25.322667pt;}
._1d{width:26.602667pt;}
._13{width:28.032000pt;}
._20{width:29.034667pt;}
._21{width:30.325333pt;}
._11{width:37.632000pt;}
._12{width:38.912000pt;}
._16{width:39.936000pt;}
._17{width:40.952960pt;}
._1f{width:42.304000pt;}
._d{width:44.288000pt;}
._c{width:50.368000pt;}
._1b{width:64.576000pt;}
._1c{width:65.536000pt;}
._8{width:101.920000pt;}
._5{width:602.192640pt;}
._4{width:1368.517973pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:2.880000pt;}
.yc{bottom:7.146667pt;}
.y1a{bottom:49.952000pt;}
.y4a{bottom:50.112000pt;}
.y49{bottom:65.312000pt;}
.y19{bottom:78.432000pt;}
.y1b{bottom:81.632000pt;}
.y13{bottom:88.706667pt;}
.y16{bottom:120.666667pt;}
.y45{bottom:133.312000pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y15{bottom:140.293333pt;}
.y44{bottom:151.706667pt;}
.y43{bottom:170.106667pt;}
.y71{bottom:176.666667pt;}
.y42{bottom:188.506667pt;}
.y70{bottom:195.066667pt;}
.y41{bottom:222.906667pt;}
.y6f{bottom:229.466667pt;}
.y40{bottom:241.306667pt;}
.y6e{bottom:247.906667pt;}
.y3f{bottom:259.746667pt;}
.y3e{bottom:278.146667pt;}
.y6d{bottom:282.306667pt;}
.y3d{bottom:296.546667pt;}
.ya{bottom:306.382667pt;}
.y3c{bottom:314.946667pt;}
.y6c{bottom:316.706667pt;}
.y3b{bottom:333.346667pt;}
.yd{bottom:343.546667pt;}
.y6b{bottom:351.106667pt;}
.y9{bottom:351.724000pt;}
.y3a{bottom:351.746667pt;}
.y6a{bottom:369.506667pt;}
.y39{bottom:386.146667pt;}
.yb{bottom:386.533333pt;}
.y69{bottom:387.906667pt;}
.y8{bottom:397.065333pt;}
.y38{bottom:404.546667pt;}
.y68{bottom:422.306667pt;}
.y37{bottom:422.946667pt;}
.y10{bottom:433.826667pt;}
.y67{bottom:440.706667pt;}
.y36{bottom:441.346667pt;}
.y7{bottom:442.406667pt;}
.y66{bottom:459.106667pt;}
.y35{bottom:459.746667pt;}
.y65{bottom:477.506667pt;}
.y34{bottom:478.146667pt;}
.y11{bottom:478.426667pt;}
.y6{bottom:487.748000pt;}
.y64{bottom:495.906667pt;}
.y33{bottom:512.573333pt;}
.y63{bottom:514.173333pt;}
.y17{bottom:524.093333pt;}
.y32{bottom:530.973333pt;}
.y62{bottom:532.573333pt;}
.y5{bottom:533.089333pt;}
.y31{bottom:549.373333pt;}
.y61{bottom:550.973333pt;}
.ye{bottom:561.706667pt;}
.y30{bottom:567.773333pt;}
.y60{bottom:569.373333pt;}
.y2f{bottom:586.173333pt;}
.y5f{bottom:603.773333pt;}
.y2e{bottom:604.573333pt;}
.y5e{bottom:622.173333pt;}
.y2d{bottom:622.973333pt;}
.y5d{bottom:640.573333pt;}
.y2c{bottom:641.373333pt;}
.y5c{bottom:658.973333pt;}
.y2b{bottom:676.573333pt;}
.y5b{bottom:677.373333pt;}
.y4{bottom:691.756000pt;}
.y5a{bottom:695.773333pt;}
.y59{bottom:714.173333pt;}
.y2a{bottom:722.813333pt;}
.y12{bottom:725.040000pt;}
.y58{bottom:732.573333pt;}
.y57{bottom:750.973333pt;}
.y29{bottom:765.253333pt;}
.y56{bottom:769.413333pt;}
.y55{bottom:787.813333pt;}
.y3{bottom:805.081333pt;}
.y54{bottom:806.213333pt;}
.y28{bottom:817.093333pt;}
.y53{bottom:824.613333pt;}
.y52{bottom:843.013333pt;}
.y2{bottom:857.092000pt;}
.y27{bottom:875.813333pt;}
.y51{bottom:877.413333pt;}
.y1{bottom:879.748000pt;}
.y50{bottom:895.813333pt;}
.y24{bottom:905.413333pt;}
.y4f{bottom:914.213333pt;}
.y23{bottom:920.773333pt;}
.y26{bottom:927.813333pt;}
.y4e{bottom:932.613333pt;}
.y22{bottom:936.133333pt;}
.y4d{bottom:951.013333pt;}
.y21{bottom:951.333333pt;}
.y25{bottom:958.853333pt;}
.y20{bottom:966.693333pt;}
.y4c{bottom:969.413333pt;}
.y1f{bottom:982.053333pt;}
.y4b{bottom:987.813333pt;}
.y1e{bottom:997.253333pt;}
.y1d{bottom:1013.120000pt;}
.y48{bottom:1032.160000pt;}
.y47{bottom:1047.520000pt;}
.y18{bottom:1052.480000pt;}
.y46{bottom:1062.880000pt;}
.h4{height:29.333333pt;}
.hf{height:38.672812pt;}
.hc{height:39.360000pt;}
.he{height:46.625000pt;}
.h3{height:51.916667pt;}
.hd{height:52.134375pt;}
.hb{height:55.402500pt;}
.h10{height:58.281250pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.ha{height:62.812500pt;}
.h12{height:64.500000pt;}
.h11{height:69.937500pt;}
.h13{height:78.515625pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:3.680000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.wa{width:793.759988pt;}
.w9{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:96.031988pt;}
.xd{left:103.551988pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xb{left:114.911988pt;}
.x10{left:119.871988pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x12{left:394.306655pt;}
.xf{left:489.213322pt;}
.x11{left:666.693322pt;}
.xc{left:670.373333pt;}
.xe{left:697.253322pt;}
}




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