
    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_0a1a5e4549fe705541b3d0dc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.073242;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_bbf5260528df0d931544ccf6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_9faec3f0a3a505bb1acbb937.woff')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v2{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsd{letter-spacing:-1.056000px;}
.ls11{letter-spacing:-0.696000px;}
.lsc{letter-spacing:-0.413400px;}
.ls12{letter-spacing:-0.220200px;}
.lsa{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.153600px;}
.ls13{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.053400px;}
.ls14{letter-spacing:-0.018600px;}
.ls9{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.013200px;}
.ls8{letter-spacing:0.018600px;}
.ls7{letter-spacing:0.053400px;}
.ls5{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.126000px;}
.ls4{letter-spacing:0.139800px;}
.ls3{letter-spacing:0.140040px;}
.ls10{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.255960px;}
.ls6{letter-spacing:1.170000px;}
.ls0{letter-spacing:1.530000px;}
.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:-15.210000px;}
.wsb{word-spacing:-15.183600px;}
.ws0{word-spacing:-15.169800px;}
.wsa{word-spacing:-15.083400px;}
.ws9{word-spacing:-15.043200px;}
.ws2{word-spacing:-15.030000px;}
.ws8{word-spacing:-14.976600px;}
.ws4{word-spacing:-14.876400px;}
.ws3{word-spacing:-14.850000px;}
.wsc{word-spacing:-14.809800px;}
.ws5{word-spacing:-14.616600px;}
.ws7{word-spacing:-13.974000px;}
.ws12{word-spacing:-13.626000px;}
.wse{word-spacing:-12.150000px;}
.wsd{word-spacing:-11.988600px;}
.wsf{word-spacing:-11.970000px;}
.ws10{word-spacing:-11.951400px;}
.ws1{word-spacing:-9.720000px;}
.ws11{word-spacing:0.000000px;}
._5{margin-left:-2.244719px;}
._4{margin-left:-1.002841px;}
._1{width:1.114560px;}
._2{width:2.239679px;}
._a{width:3.412679px;}
._9{width:4.449000px;}
._3{width:6.405960px;}
._0{width:8.263200px;}
._8{width:9.980880px;}
._7{width:11.723400px;}
._c{width:13.133639px;}
._6{width:16.436640px;}
._b{width:17.675400px;}
._e{width:19.303679px;}
._f{width:21.763200px;}
._10{width:23.057161px;}
._12{width:24.094077px;}
._d{width:26.910000px;}
._11{width:116.692740px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs2{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.y0{bottom:0.000000px;}
.y38{bottom:2.880000px;}
.y53{bottom:20.880000px;}
.y50{bottom:29.070000px;}
.y52{bottom:38.880000px;}
.y51{bottom:56.880000px;}
.y36{bottom:111.330000px;}
.y4d{bottom:124.110000px;}
.y35{bottom:129.330000px;}
.y4c{bottom:138.240000px;}
.y34{bottom:147.330000px;}
.y4b{bottom:152.370000px;}
.y33{bottom:165.360000px;}
.y4a{bottom:166.530000px;}
.y49{bottom:180.660000px;}
.y32{bottom:183.360000px;}
.y48{bottom:194.790000px;}
.y31{bottom:201.360000px;}
.y47{bottom:209.190000px;}
.y30{bottom:219.360000px;}
.y46{bottom:223.320000px;}
.y2f{bottom:237.360000px;}
.y45{bottom:237.450000px;}
.y44{bottom:252.390000px;}
.y2e{bottom:255.360000px;}
.y43{bottom:270.390000px;}
.y2d{bottom:273.360000px;}
.y42{bottom:288.390000px;}
.y2c{bottom:291.360000px;}
.y41{bottom:306.390000px;}
.y2b{bottom:309.360000px;}
.y40{bottom:324.390000px;}
.y2a{bottom:327.360000px;}
.y3f{bottom:342.390000px;}
.y29{bottom:345.360000px;}
.y3e{bottom:360.390000px;}
.y28{bottom:363.360000px;}
.y3d{bottom:378.390000px;}
.y27{bottom:381.360000px;}
.y3c{bottom:393.690000px;}
.y26{bottom:399.360000px;}
.y3b{bottom:408.540000px;}
.y25{bottom:417.360000px;}
.y3a{bottom:423.390000px;}
.y24{bottom:435.360000px;}
.y39{bottom:438.240000px;}
.y37{bottom:453.090000px;}
.y23{bottom:453.360000px;}
.y22{bottom:471.360000px;}
.y21{bottom:489.360000px;}
.y20{bottom:507.360000px;}
.y1f{bottom:525.360000px;}
.y1e{bottom:543.360000px;}
.y1d{bottom:561.360000px;}
.y1c{bottom:579.390000px;}
.y1b{bottom:597.390000px;}
.y1a{bottom:615.390000px;}
.y19{bottom:633.390000px;}
.y18{bottom:651.390000px;}
.y17{bottom:669.390000px;}
.y16{bottom:687.390000px;}
.y15{bottom:705.390000px;}
.y14{bottom:723.390000px;}
.y13{bottom:741.390000px;}
.y12{bottom:759.390000px;}
.y11{bottom:777.390000px;}
.y10{bottom:795.390000px;}
.yf{bottom:813.390000px;}
.ye{bottom:831.390000px;}
.yd{bottom:849.390000px;}
.yc{bottom:867.390000px;}
.yb{bottom:885.390000px;}
.ya{bottom:903.390000px;}
.y9{bottom:921.390000px;}
.y8{bottom:939.390000px;}
.y7{bottom:957.390000px;}
.y6{bottom:975.390000px;}
.y5{bottom:993.420000px;}
.y4{bottom:1011.420000px;}
.y3{bottom:1029.420000px;}
.y2{bottom:1047.420000px;}
.y4f{bottom:1054.620000px;}
.y1{bottom:1065.240000px;}
.y4e{bottom:1068.750000px;}
.h4{height:14.130000px;}
.h8{height:37.494141px;}
.h6{height:41.743477px;}
.h5{height:42.011895px;}
.h1{height:51.548203px;}
.h3{height:52.751777px;}
.h2{height:54.994922px;}
.h7{height:71.640000px;}
.h0{height:1188.000000px;}
.w8{width:40.800000px;}
.w6{width:42.210000px;}
.w7{width:46.530000px;}
.w5{width:51.120000px;}
.w1{width:56.070000px;}
.w4{width:88.050000px;}
.w3{width:89.460000px;}
.w2{width:94.140000px;}
.w9{width:697.770000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:8.460000px;}
.x12{left:10.620000px;}
.xe{left:12.960000px;}
.xb{left:15.300000px;}
.x11{left:16.560000px;}
.x5{left:28.080000px;}
.x9{left:29.970000px;}
.x7{left:32.220000px;}
.x1{left:108.000000px;}
.x13{left:115.830000px;}
.x2{left:129.600000px;}
.x3{left:477.060000px;}
.x4{left:498.660000px;}
.x6{left:534.300000px;}
.xc{left:586.140000px;}
.x8{left:629.160000px;}
.xf{left:676.410000px;}
.xa{left:719.340000px;}
.x10{left:766.590000px;}
@media print{
.v2{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-0.938667pt;}
.ls11{letter-spacing:-0.618667pt;}
.lsc{letter-spacing:-0.367467pt;}
.ls12{letter-spacing:-0.195733pt;}
.lsa{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.136533pt;}
.ls13{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.047467pt;}
.ls14{letter-spacing:-0.016533pt;}
.ls9{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011733pt;}
.ls8{letter-spacing:0.016533pt;}
.ls7{letter-spacing:0.047467pt;}
.ls5{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.112000pt;}
.ls4{letter-spacing:0.124267pt;}
.ls3{letter-spacing:0.124480pt;}
.ls10{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.227520pt;}
.ls6{letter-spacing:1.040000pt;}
.ls0{letter-spacing:1.360000pt;}
.ws6{word-spacing:-13.520000pt;}
.wsb{word-spacing:-13.496533pt;}
.ws0{word-spacing:-13.484267pt;}
.wsa{word-spacing:-13.407467pt;}
.ws9{word-spacing:-13.371733pt;}
.ws2{word-spacing:-13.360000pt;}
.ws8{word-spacing:-13.312533pt;}
.ws4{word-spacing:-13.223467pt;}
.ws3{word-spacing:-13.200000pt;}
.wsc{word-spacing:-13.164267pt;}
.ws5{word-spacing:-12.992533pt;}
.ws7{word-spacing:-12.421333pt;}
.ws12{word-spacing:-12.112000pt;}
.wse{word-spacing:-10.800000pt;}
.wsd{word-spacing:-10.656533pt;}
.wsf{word-spacing:-10.640000pt;}
.ws10{word-spacing:-10.623467pt;}
.ws1{word-spacing:-8.640000pt;}
.ws11{word-spacing:0.000000pt;}
._5{margin-left:-1.995306pt;}
._4{margin-left:-0.891414pt;}
._1{width:0.990720pt;}
._2{width:1.990826pt;}
._a{width:3.033492pt;}
._9{width:3.954667pt;}
._3{width:5.694187pt;}
._0{width:7.345067pt;}
._8{width:8.871893pt;}
._7{width:10.420800pt;}
._c{width:11.674346pt;}
._6{width:14.610347pt;}
._b{width:15.711467pt;}
._e{width:17.158826pt;}
._f{width:19.345066pt;}
._10{width:20.495254pt;}
._12{width:21.416957pt;}
._d{width:23.920000pt;}
._11{width:103.726880pt;}
.fs1{font-size:34.560000pt;}
.fs2{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:2.560000pt;}
.y53{bottom:18.560000pt;}
.y50{bottom:25.840000pt;}
.y52{bottom:34.560000pt;}
.y51{bottom:50.560000pt;}
.y36{bottom:98.960000pt;}
.y4d{bottom:110.320000pt;}
.y35{bottom:114.960000pt;}
.y4c{bottom:122.880000pt;}
.y34{bottom:130.960000pt;}
.y4b{bottom:135.440000pt;}
.y33{bottom:146.986667pt;}
.y4a{bottom:148.026667pt;}
.y49{bottom:160.586667pt;}
.y32{bottom:162.986667pt;}
.y48{bottom:173.146667pt;}
.y31{bottom:178.986667pt;}
.y47{bottom:185.946667pt;}
.y30{bottom:194.986667pt;}
.y46{bottom:198.506667pt;}
.y2f{bottom:210.986667pt;}
.y45{bottom:211.066667pt;}
.y44{bottom:224.346667pt;}
.y2e{bottom:226.986667pt;}
.y43{bottom:240.346667pt;}
.y2d{bottom:242.986667pt;}
.y42{bottom:256.346667pt;}
.y2c{bottom:258.986667pt;}
.y41{bottom:272.346667pt;}
.y2b{bottom:274.986667pt;}
.y40{bottom:288.346667pt;}
.y2a{bottom:290.986667pt;}
.y3f{bottom:304.346667pt;}
.y29{bottom:306.986667pt;}
.y3e{bottom:320.346667pt;}
.y28{bottom:322.986667pt;}
.y3d{bottom:336.346667pt;}
.y27{bottom:338.986667pt;}
.y3c{bottom:349.946667pt;}
.y26{bottom:354.986667pt;}
.y3b{bottom:363.146667pt;}
.y25{bottom:370.986667pt;}
.y3a{bottom:376.346667pt;}
.y24{bottom:386.986667pt;}
.y39{bottom:389.546667pt;}
.y37{bottom:402.746667pt;}
.y23{bottom:402.986667pt;}
.y22{bottom:418.986667pt;}
.y21{bottom:434.986667pt;}
.y20{bottom:450.986667pt;}
.y1f{bottom:466.986667pt;}
.y1e{bottom:482.986667pt;}
.y1d{bottom:498.986667pt;}
.y1c{bottom:515.013333pt;}
.y1b{bottom:531.013333pt;}
.y1a{bottom:547.013333pt;}
.y19{bottom:563.013333pt;}
.y18{bottom:579.013333pt;}
.y17{bottom:595.013333pt;}
.y16{bottom:611.013333pt;}
.y15{bottom:627.013333pt;}
.y14{bottom:643.013333pt;}
.y13{bottom:659.013333pt;}
.y12{bottom:675.013333pt;}
.y11{bottom:691.013333pt;}
.y10{bottom:707.013333pt;}
.yf{bottom:723.013333pt;}
.ye{bottom:739.013333pt;}
.yd{bottom:755.013333pt;}
.yc{bottom:771.013333pt;}
.yb{bottom:787.013333pt;}
.ya{bottom:803.013333pt;}
.y9{bottom:819.013333pt;}
.y8{bottom:835.013333pt;}
.y7{bottom:851.013333pt;}
.y6{bottom:867.013333pt;}
.y5{bottom:883.040000pt;}
.y4{bottom:899.040000pt;}
.y3{bottom:915.040000pt;}
.y2{bottom:931.040000pt;}
.y4f{bottom:937.440000pt;}
.y1{bottom:946.880000pt;}
.y4e{bottom:950.000000pt;}
.h4{height:12.560000pt;}
.h8{height:33.328125pt;}
.h6{height:37.105312pt;}
.h5{height:37.343906pt;}
.h1{height:45.820625pt;}
.h3{height:46.890469pt;}
.h2{height:48.884375pt;}
.h7{height:63.680000pt;}
.h0{height:1056.000000pt;}
.w8{width:36.266667pt;}
.w6{width:37.520000pt;}
.w7{width:41.360000pt;}
.w5{width:45.440000pt;}
.w1{width:49.840000pt;}
.w4{width:78.266667pt;}
.w3{width:79.520000pt;}
.w2{width:83.680000pt;}
.w9{width:620.240000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.520000pt;}
.x12{left:9.440000pt;}
.xe{left:11.520000pt;}
.xb{left:13.600000pt;}
.x11{left:14.720000pt;}
.x5{left:24.960000pt;}
.x9{left:26.640000pt;}
.x7{left:28.640000pt;}
.x1{left:96.000000pt;}
.x13{left:102.960000pt;}
.x2{left:115.200000pt;}
.x3{left:424.053333pt;}
.x4{left:443.253333pt;}
.x6{left:474.933333pt;}
.xc{left:521.013333pt;}
.x8{left:559.253333pt;}
.xf{left:601.253333pt;}
.xa{left:639.413333pt;}
.x10{left:681.413333pt;}
}




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