
    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_98ba35a8f56da499d653ada9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5cdc70dbde36a5bec6f5020c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.766602;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_153020e48d995b62839c1369.woff')format("woff");}.ff3{font-family:ff3;line-height:0.766602;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_01126c09712f477d219c1b4f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_435d69d9baeff9f2bb4f7b9d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.120605;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_d4812e64ebc7fb76f9da6158.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7bf3132a85a2cf1d860d4556.woff')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_d46633a5c98656c5ea9167e4.woff')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_5a5746f5713589b33b2eb6cc.woff')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_a868a37f956c6931c36c2ebc.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2a8e85f51d1791f7023a31ec.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.v1{vertical-align:-84.960000px;}
.v2{vertical-align:-83.520000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.944000px;}
.ls3{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.296000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:1.440000px;}
.ls6{letter-spacing:1.584000px;}
.ls9{letter-spacing:53.424000px;}
.ls8{letter-spacing:195.276000px;}
.ls0{letter-spacing:237.036000px;}
.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:-96.480000px;}
.ws8{word-spacing:-19.584000px;}
.ws9{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.704000px;}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.500000px;}
.ws3{word-spacing:-14.328000px;}
.ws5{word-spacing:-0.066000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-4.225920px;}
._1{margin-left:-3.029280px;}
._2{margin-left:-1.363680px;}
._0{width:1.002240px;}
._4{width:2.563680px;}
._6{width:4.171680px;}
._5{width:5.472000px;}
._17{width:6.495360px;}
._7{width:7.632000px;}
._8{width:8.996640px;}
._20{width:10.133280px;}
._1a{width:11.423520px;}
._1f{width:12.428160px;}
._c{width:13.464000px;}
._d{width:14.539680px;}
._e{width:15.543360px;}
._13{width:16.773120px;}
._11{width:19.013760px;}
._12{width:20.365920px;}
._10{width:21.384000px;}
._f{width:22.968000px;}
._16{width:25.032000px;}
._b{width:27.643680px;}
._9{width:29.376000px;}
._a{width:30.456960px;}
._22{width:31.500480px;}
._23{width:32.562240px;}
._19{width:33.687840px;}
._18{width:35.219040px;}
._15{width:36.571680px;}
._14{width:38.371680px;}
._1b{width:39.817440px;}
._1c{width:40.973760px;}
._21{width:42.737760px;}
._1d{width:44.659680px;}
._1e{width:46.115040px;}
._24{width:53.429280px;}
._25{width:56.185920px;}
.fc4{color:transparent;}
.fc3{color:rgb(111,47,159);}
.fc1{color:rgb(192,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:60.480000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.y8{bottom:5.400000px;}
.y7{bottom:26.310000px;}
.y3{bottom:31.350000px;}
.y6{bottom:47.190000px;}
.y2{bottom:62.670000px;}
.y9{bottom:100.836000px;}
.yc{bottom:104.076000px;}
.y34{bottom:164.955000px;}
.y33{bottom:188.715000px;}
.y32{bottom:212.835000px;}
.y31{bottom:236.595000px;}
.y30{bottom:260.385000px;}
.y2f{bottom:284.145000px;}
.y2e{bottom:307.905000px;}
.y2d{bottom:331.665000px;}
.y5f{bottom:345.705000px;}
.y4d{bottom:355.425000px;}
.y2c{bottom:355.785000px;}
.y5e{bottom:364.785000px;}
.y2b{bottom:379.545000px;}
.y5d{bottom:383.505000px;}
.y2a{bottom:403.350000px;}
.y5c{bottom:406.950000px;}
.y5b{bottom:426.030000px;}
.y29{bottom:427.110000px;}
.y5a{bottom:445.110000px;}
.y28{bottom:450.870000px;}
.y59{bottom:463.830000px;}
.y27{bottom:474.630000px;}
.y58{bottom:487.590000px;}
.y4c{bottom:498.390000px;}
.y26{bottom:498.750000px;}
.y57{bottom:506.310000px;}
.y4b{bottom:522.150000px;}
.y25{bottom:522.510000px;}
.y56{bottom:525.390000px;}
.y4a{bottom:545.940000px;}
.y24{bottom:546.300000px;}
.y55{bottom:549.180000px;}
.y54{bottom:569.700000px;}
.y23{bottom:570.060000px;}
.y22{bottom:593.820000px;}
.y53{bottom:614.340000px;}
.y21{bottom:617.580000px;}
.y49{bottom:641.340000px;}
.y20{bottom:641.700000px;}
.y48{bottom:665.130000px;}
.y1f{bottom:686.010000px;}
.y47{bottom:688.890000px;}
.y46{bottom:712.650000px;}
.y52{bottom:713.010000px;}
.y1e{bottom:714.939168px;}
.y45{bottom:736.410000px;}
.y51{bottom:736.770000px;}
.y1d{bottom:738.699168px;}
.y44{bottom:760.170000px;}
.y50{bottom:760.530000px;}
.y1c{bottom:762.459168px;}
.y43{bottom:784.290000px;}
.y1b{bottom:786.219168px;}
.y42{bottom:808.095000px;}
.y1a{bottom:810.024168px;}
.y41{bottom:831.855000px;}
.y19{bottom:833.784168px;}
.y40{bottom:855.615000px;}
.y4f{bottom:855.975000px;}
.y18{bottom:857.904168px;}
.y4e{bottom:879.015000px;}
.y3f{bottom:879.375000px;}
.y17{bottom:881.664168px;}
.y3e{bottom:903.135000px;}
.y16{bottom:905.424168px;}
.y3d{bottom:927.255000px;}
.y15{bottom:929.184168px;}
.y3c{bottom:951.045000px;}
.y14{bottom:952.974168px;}
.y3b{bottom:974.805000px;}
.y13{bottom:976.734168px;}
.y3a{bottom:998.565000px;}
.y12{bottom:1000.494168px;}
.y39{bottom:1022.325000px;}
.y11{bottom:1024.614168px;}
.y38{bottom:1046.085000px;}
.y10{bottom:1047.414768px;}
.yf{bottom:1069.530018px;}
.y37{bottom:1069.890000px;}
.ye{bottom:1093.290018px;}
.y36{bottom:1094.010000px;}
.yd{bottom:1117.050018px;}
.y35{bottom:1117.770000px;}
.y1{bottom:1167.810000px;}
.y5{bottom:1175.370000px;}
.yb{bottom:1262.520000px;}
.h8{height:20.880000px;}
.hd{height:52.628906px;}
.ha{height:59.357813px;}
.h6{height:64.476000px;}
.h5{height:64.978594px;}
.h10{height:65.010937px;}
.hb{height:66.515625px;}
.hc{height:70.628906px;}
.he{height:70.664062px;}
.h9{height:71.613281px;}
.h7{height:72.562500px;}
.h4{height:72.878203px;}
.hf{height:74.004654px;}
.h3{height:81.929531px;}
.h2{height:82.476000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:28.836000px;}
.w3{width:81.036000px;}
.w2{width:424.620000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:1.440000px;}
.x8{left:4.725000px;}
.x5{left:17.280000px;}
.x6{left:22.680000px;}
.x3{left:56.880000px;}
.x9{left:127.476000px;}
.xe{left:138.311997px;}
.xf{left:148.751987px;}
.x2{left:154.470000px;}
.x10{left:180.794987px;}
.xd{left:191.234997px;}
.xc{left:353.318997px;}
.xb{left:358.349997px;}
.x1{left:411.660000px;}
.xa{left:460.064997px;}
.x7{left:745.485000px;}
@media print{
.v1{vertical-align:-75.520000pt;}
.v2{vertical-align:-74.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.728000pt;}
.ls3{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-1.152000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls6{letter-spacing:1.408000pt;}
.ls9{letter-spacing:47.488000pt;}
.ls8{letter-spacing:173.578667pt;}
.ls0{letter-spacing:210.698667pt;}
.ws0{word-spacing:-85.760000pt;}
.ws8{word-spacing:-17.408000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.848000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws3{word-spacing:-12.736000pt;}
.ws5{word-spacing:-0.058667pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-3.756373pt;}
._1{margin-left:-2.692693pt;}
._2{margin-left:-1.212160pt;}
._0{width:0.890880pt;}
._4{width:2.278827pt;}
._6{width:3.708160pt;}
._5{width:4.864000pt;}
._17{width:5.773653pt;}
._7{width:6.784000pt;}
._8{width:7.997013pt;}
._20{width:9.007360pt;}
._1a{width:10.154240pt;}
._1f{width:11.047253pt;}
._c{width:11.968000pt;}
._d{width:12.924160pt;}
._e{width:13.816320pt;}
._13{width:14.909440pt;}
._11{width:16.901120pt;}
._12{width:18.103040pt;}
._10{width:19.008000pt;}
._f{width:20.416000pt;}
._16{width:22.250667pt;}
._b{width:24.572160pt;}
._9{width:26.112000pt;}
._a{width:27.072853pt;}
._22{width:28.000427pt;}
._23{width:28.944213pt;}
._19{width:29.944747pt;}
._18{width:31.305813pt;}
._15{width:32.508160pt;}
._14{width:34.108160pt;}
._1b{width:35.393280pt;}
._1c{width:36.421120pt;}
._21{width:37.989120pt;}
._1d{width:39.697493pt;}
._1e{width:40.991147pt;}
._24{width:47.492693pt;}
._25{width:49.943040pt;}
.fs4{font-size:53.760000pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.y8{bottom:4.800000pt;}
.y7{bottom:23.386667pt;}
.y3{bottom:27.866667pt;}
.y6{bottom:41.946667pt;}
.y2{bottom:55.706667pt;}
.y9{bottom:89.632000pt;}
.yc{bottom:92.512000pt;}
.y34{bottom:146.626667pt;}
.y33{bottom:167.746667pt;}
.y32{bottom:189.186667pt;}
.y31{bottom:210.306667pt;}
.y30{bottom:231.453333pt;}
.y2f{bottom:252.573333pt;}
.y2e{bottom:273.693333pt;}
.y2d{bottom:294.813333pt;}
.y5f{bottom:307.293333pt;}
.y4d{bottom:315.933333pt;}
.y2c{bottom:316.253333pt;}
.y5e{bottom:324.253333pt;}
.y2b{bottom:337.373333pt;}
.y5d{bottom:340.893333pt;}
.y2a{bottom:358.533333pt;}
.y5c{bottom:361.733333pt;}
.y5b{bottom:378.693333pt;}
.y29{bottom:379.653333pt;}
.y5a{bottom:395.653333pt;}
.y28{bottom:400.773333pt;}
.y59{bottom:412.293333pt;}
.y27{bottom:421.893333pt;}
.y58{bottom:433.413333pt;}
.y4c{bottom:443.013333pt;}
.y26{bottom:443.333333pt;}
.y57{bottom:450.053333pt;}
.y4b{bottom:464.133333pt;}
.y25{bottom:464.453333pt;}
.y56{bottom:467.013333pt;}
.y4a{bottom:485.280000pt;}
.y24{bottom:485.600000pt;}
.y55{bottom:488.160000pt;}
.y54{bottom:506.400000pt;}
.y23{bottom:506.720000pt;}
.y22{bottom:527.840000pt;}
.y53{bottom:546.080000pt;}
.y21{bottom:548.960000pt;}
.y49{bottom:570.080000pt;}
.y20{bottom:570.400000pt;}
.y48{bottom:591.226667pt;}
.y1f{bottom:609.786667pt;}
.y47{bottom:612.346667pt;}
.y46{bottom:633.466667pt;}
.y52{bottom:633.786667pt;}
.y1e{bottom:635.501483pt;}
.y45{bottom:654.586667pt;}
.y51{bottom:654.906667pt;}
.y1d{bottom:656.621483pt;}
.y44{bottom:675.706667pt;}
.y50{bottom:676.026667pt;}
.y1c{bottom:677.741483pt;}
.y43{bottom:697.146667pt;}
.y1b{bottom:698.861483pt;}
.y42{bottom:718.306667pt;}
.y1a{bottom:720.021483pt;}
.y41{bottom:739.426667pt;}
.y19{bottom:741.141483pt;}
.y40{bottom:760.546667pt;}
.y4f{bottom:760.866667pt;}
.y18{bottom:762.581483pt;}
.y4e{bottom:781.346667pt;}
.y3f{bottom:781.666667pt;}
.y17{bottom:783.701483pt;}
.y3e{bottom:802.786667pt;}
.y16{bottom:804.821483pt;}
.y3d{bottom:824.226667pt;}
.y15{bottom:825.941483pt;}
.y3c{bottom:845.373333pt;}
.y14{bottom:847.088149pt;}
.y3b{bottom:866.493333pt;}
.y13{bottom:868.208149pt;}
.y3a{bottom:887.613333pt;}
.y12{bottom:889.328149pt;}
.y39{bottom:908.733333pt;}
.y11{bottom:910.768149pt;}
.y38{bottom:929.853333pt;}
.y10{bottom:931.035349pt;}
.yf{bottom:950.693349pt;}
.y37{bottom:951.013333pt;}
.ye{bottom:971.813349pt;}
.y36{bottom:972.453333pt;}
.yd{bottom:992.933349pt;}
.y35{bottom:993.573333pt;}
.y1{bottom:1038.053333pt;}
.y5{bottom:1044.773333pt;}
.yb{bottom:1122.240000pt;}
.h8{height:18.560000pt;}
.hd{height:46.781250pt;}
.ha{height:52.762500pt;}
.h6{height:57.312000pt;}
.h5{height:57.758750pt;}
.h10{height:57.787500pt;}
.hb{height:59.125000pt;}
.hc{height:62.781250pt;}
.he{height:62.812500pt;}
.h9{height:63.656250pt;}
.h7{height:64.500000pt;}
.h4{height:64.780625pt;}
.hf{height:65.781915pt;}
.h3{height:72.826250pt;}
.h2{height:73.312000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:25.632000pt;}
.w3{width:72.032000pt;}
.w2{width:377.440000pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:1.280000pt;}
.x8{left:4.200000pt;}
.x5{left:15.360000pt;}
.x6{left:20.160000pt;}
.x3{left:50.560000pt;}
.x9{left:113.312000pt;}
.xe{left:122.943997pt;}
.xf{left:132.223988pt;}
.x2{left:137.306667pt;}
.x10{left:160.706655pt;}
.xd{left:169.986664pt;}
.xc{left:314.061331pt;}
.xb{left:318.533331pt;}
.x1{left:365.920000pt;}
.xa{left:408.946664pt;}
.x7{left:662.653333pt;}
}




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