
    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_1e4e8ddebb28bf05eecc991c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_22358082e81f66d4720402a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_b8490394081fdfbd1f4ac93b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:1.518000px;}
.ls0{letter-spacing:13.500000px;}
.ls5{letter-spacing:63.006000px;}
.ls6{letter-spacing:64.500000px;}
.ls4{letter-spacing:64.506000px;}
.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;}
}
.wse{word-spacing:-17.064000px;}
.wsd{word-spacing:-16.920000px;}
.ws4{word-spacing:-16.914000px;}
.ws12{word-spacing:-16.872000px;}
.wsc{word-spacing:-16.800000px;}
.ws7{word-spacing:-16.758000px;}
.ws19{word-spacing:-16.548000px;}
.ws0{word-spacing:-16.500000px;}
.ws17{word-spacing:-16.494000px;}
.ws9{word-spacing:-16.416000px;}
.ws11{word-spacing:-16.356000px;}
.ws10{word-spacing:-16.326000px;}
.ws8{word-spacing:-16.224000px;}
.ws5{word-spacing:-16.212000px;}
.ws6{word-spacing:-16.188000px;}
.ws3{word-spacing:-16.170000px;}
.ws13{word-spacing:-16.038000px;}
.wsf{word-spacing:-15.516000px;}
.ws14{word-spacing:-15.000000px;}
.ws16{word-spacing:-14.700000px;}
.ws2{word-spacing:-12.294000px;}
.ws18{word-spacing:-12.046500px;}
.wsb{word-spacing:-11.994000px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:10.500000px;}
.ws15{word-spacing:47.982000px;}
._3{margin-left:-9.168000px;}
._e{margin-left:-7.440000px;}
._7{margin-left:-6.030000px;}
._8{margin-left:-4.440000px;}
._5{margin-left:-2.970000px;}
._1{margin-left:-1.488000px;}
._0{width:1.488000px;}
._4{width:3.456000px;}
._6{width:4.578000px;}
._d{width:6.036000px;}
._18{width:7.536000px;}
._11{width:9.006000px;}
._12{width:10.536000px;}
._10{width:11.832000px;}
._f{width:13.608000px;}
._16{width:15.030000px;}
._15{width:16.530000px;}
._a{width:18.018000px;}
._9{width:19.752000px;}
._13{width:25.386000px;}
._2{width:47.904000px;}
._b{width:49.428000px;}
._17{width:64.482000px;}
._14{width:919.284000px;}
._c{width:1243.392000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.000000px;}
.fs5{font-size:49.500000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:19.984245px;}
.y4f{bottom:27.859245px;}
.y23{bottom:37.234245px;}
.y69{bottom:43.609245px;}
.y4e{bottom:45.109245px;}
.y22{bottom:54.484245px;}
.y68{bottom:60.859245px;}
.y4d{bottom:62.359245px;}
.y21{bottom:71.734245px;}
.y67{bottom:78.109245px;}
.y4c{bottom:79.609245px;}
.y20{bottom:88.984245px;}
.y4b{bottom:96.859245px;}
.y1f{bottom:106.234245px;}
.y66{bottom:112.609245px;}
.y4a{bottom:114.109245px;}
.y1e{bottom:123.484245px;}
.y49{bottom:131.359245px;}
.y1d{bottom:140.734245px;}
.y65{bottom:147.109245px;}
.y48{bottom:148.609245px;}
.y1c{bottom:157.984245px;}
.y47{bottom:165.859245px;}
.y1b{bottom:175.234245px;}
.y64{bottom:181.609245px;}
.y46{bottom:183.109245px;}
.y1a{bottom:192.484245px;}
.y63{bottom:198.859245px;}
.y45{bottom:200.359245px;}
.y19{bottom:209.734245px;}
.y62{bottom:216.109245px;}
.y44{bottom:217.609245px;}
.y18{bottom:226.984245px;}
.y43{bottom:234.859245px;}
.y17{bottom:244.234245px;}
.y61{bottom:250.609245px;}
.y42{bottom:252.109245px;}
.y16{bottom:261.484245px;}
.y60{bottom:267.859245px;}
.y41{bottom:269.359245px;}
.y15{bottom:278.734245px;}
.y5f{bottom:285.109245px;}
.y40{bottom:286.609245px;}
.y14{bottom:295.984245px;}
.y5e{bottom:302.359245px;}
.y3f{bottom:303.859245px;}
.y13{bottom:313.234245px;}
.y3e{bottom:321.109245px;}
.y12{bottom:330.484245px;}
.y5d{bottom:336.859245px;}
.y3d{bottom:338.359245px;}
.y11{bottom:347.734245px;}
.y5c{bottom:354.109245px;}
.y3c{bottom:355.609245px;}
.y10{bottom:364.984245px;}
.y5b{bottom:371.359245px;}
.y3b{bottom:372.859245px;}
.yf{bottom:382.234245px;}
.y5a{bottom:388.609245px;}
.y3a{bottom:390.109245px;}
.ye{bottom:399.484245px;}
.y39{bottom:407.359245px;}
.y59{bottom:414.484245px;}
.yd{bottom:416.734245px;}
.y38{bottom:424.609245px;}
.yc{bottom:433.984245px;}
.y37{bottom:441.859245px;}
.yb{bottom:451.234245px;}
.y58{bottom:457.609245px;}
.y36{bottom:459.109245px;}
.ya{bottom:468.484245px;}
.y57{bottom:474.859245px;}
.y35{bottom:476.359245px;}
.y9{bottom:485.734245px;}
.y56{bottom:492.109245px;}
.y34{bottom:493.609245px;}
.y8{bottom:502.984245px;}
.y55{bottom:509.359245px;}
.y33{bottom:510.859245px;}
.y7{bottom:520.234245px;}
.y54{bottom:526.609245px;}
.y32{bottom:528.109245px;}
.y6{bottom:537.484245px;}
.y53{bottom:543.859245px;}
.y31{bottom:545.359245px;}
.y52{bottom:561.109245px;}
.y30{bottom:562.609245px;}
.y51{bottom:578.359245px;}
.y2f{bottom:579.859245px;}
.y50{bottom:595.609245px;}
.y2e{bottom:614.359245px;}
.y2d{bottom:630.109245px;}
.y2c{bottom:645.859245px;}
.y2b{bottom:661.609245px;}
.y2a{bottom:694.609245px;}
.y5{bottom:700.609245px;}
.y29{bottom:711.859245px;}
.y4{bottom:714.859245px;}
.y28{bottom:729.109245px;}
.y3{bottom:732.859245px;}
.y27{bottom:746.359245px;}
.y26{bottom:763.609245px;}
.y2{bottom:777.859245px;}
.y25{bottom:780.859245px;}
.y1{bottom:829.609245px;}
.h2{height:51.216000px;}
.h5{height:57.618000px;}
.h7{height:64.020000px;}
.h8{height:65.040000px;}
.h4{height:70.422000px;}
.h6{height:71.544000px;}
.h3{height:102.432000px;}
.h0{height:858.484245px;}
.h1{height:858.750000px;}
.w0{width:552.720480px;}
.w1{width:552.750000px;}
.x0{left:0.000000px;}
.x2{left:31.239825px;}
.x3{left:53.766825px;}
.x1{left:371.292825px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:1.349333pt;}
.ls0{letter-spacing:12.000000pt;}
.ls5{letter-spacing:56.005333pt;}
.ls6{letter-spacing:57.333333pt;}
.ls4{letter-spacing:57.338667pt;}
.wse{word-spacing:-15.168000pt;}
.wsd{word-spacing:-15.040000pt;}
.ws4{word-spacing:-15.034667pt;}
.ws12{word-spacing:-14.997333pt;}
.wsc{word-spacing:-14.933333pt;}
.ws7{word-spacing:-14.896000pt;}
.ws19{word-spacing:-14.709333pt;}
.ws0{word-spacing:-14.666667pt;}
.ws17{word-spacing:-14.661333pt;}
.ws9{word-spacing:-14.592000pt;}
.ws11{word-spacing:-14.538667pt;}
.ws10{word-spacing:-14.512000pt;}
.ws8{word-spacing:-14.421333pt;}
.ws5{word-spacing:-14.410667pt;}
.ws6{word-spacing:-14.389333pt;}
.ws3{word-spacing:-14.373333pt;}
.ws13{word-spacing:-14.256000pt;}
.wsf{word-spacing:-13.792000pt;}
.ws14{word-spacing:-13.333333pt;}
.ws16{word-spacing:-13.066667pt;}
.ws2{word-spacing:-10.928000pt;}
.ws18{word-spacing:-10.708000pt;}
.wsb{word-spacing:-10.661333pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:9.333333pt;}
.ws15{word-spacing:42.650667pt;}
._3{margin-left:-8.149333pt;}
._e{margin-left:-6.613333pt;}
._7{margin-left:-5.360000pt;}
._8{margin-left:-3.946667pt;}
._5{margin-left:-2.640000pt;}
._1{margin-left:-1.322667pt;}
._0{width:1.322667pt;}
._4{width:3.072000pt;}
._6{width:4.069333pt;}
._d{width:5.365333pt;}
._18{width:6.698667pt;}
._11{width:8.005333pt;}
._12{width:9.365333pt;}
._10{width:10.517333pt;}
._f{width:12.096000pt;}
._16{width:13.360000pt;}
._15{width:14.693333pt;}
._a{width:16.016000pt;}
._9{width:17.557333pt;}
._13{width:22.565333pt;}
._2{width:42.581333pt;}
._b{width:43.936000pt;}
._17{width:57.317333pt;}
._14{width:817.141333pt;}
._c{width:1105.237333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:44.000000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:17.763773pt;}
.y4f{bottom:24.763773pt;}
.y23{bottom:33.097107pt;}
.y69{bottom:38.763773pt;}
.y4e{bottom:40.097107pt;}
.y22{bottom:48.430440pt;}
.y68{bottom:54.097107pt;}
.y4d{bottom:55.430440pt;}
.y21{bottom:63.763773pt;}
.y67{bottom:69.430440pt;}
.y4c{bottom:70.763773pt;}
.y20{bottom:79.097107pt;}
.y4b{bottom:86.097107pt;}
.y1f{bottom:94.430440pt;}
.y66{bottom:100.097107pt;}
.y4a{bottom:101.430440pt;}
.y1e{bottom:109.763773pt;}
.y49{bottom:116.763773pt;}
.y1d{bottom:125.097107pt;}
.y65{bottom:130.763773pt;}
.y48{bottom:132.097107pt;}
.y1c{bottom:140.430440pt;}
.y47{bottom:147.430440pt;}
.y1b{bottom:155.763773pt;}
.y64{bottom:161.430440pt;}
.y46{bottom:162.763773pt;}
.y1a{bottom:171.097107pt;}
.y63{bottom:176.763773pt;}
.y45{bottom:178.097107pt;}
.y19{bottom:186.430440pt;}
.y62{bottom:192.097107pt;}
.y44{bottom:193.430440pt;}
.y18{bottom:201.763773pt;}
.y43{bottom:208.763773pt;}
.y17{bottom:217.097107pt;}
.y61{bottom:222.763773pt;}
.y42{bottom:224.097107pt;}
.y16{bottom:232.430440pt;}
.y60{bottom:238.097107pt;}
.y41{bottom:239.430440pt;}
.y15{bottom:247.763773pt;}
.y5f{bottom:253.430440pt;}
.y40{bottom:254.763773pt;}
.y14{bottom:263.097107pt;}
.y5e{bottom:268.763773pt;}
.y3f{bottom:270.097107pt;}
.y13{bottom:278.430440pt;}
.y3e{bottom:285.430440pt;}
.y12{bottom:293.763773pt;}
.y5d{bottom:299.430440pt;}
.y3d{bottom:300.763773pt;}
.y11{bottom:309.097107pt;}
.y5c{bottom:314.763773pt;}
.y3c{bottom:316.097107pt;}
.y10{bottom:324.430440pt;}
.y5b{bottom:330.097107pt;}
.y3b{bottom:331.430440pt;}
.yf{bottom:339.763773pt;}
.y5a{bottom:345.430440pt;}
.y3a{bottom:346.763773pt;}
.ye{bottom:355.097107pt;}
.y39{bottom:362.097107pt;}
.y59{bottom:368.430440pt;}
.yd{bottom:370.430440pt;}
.y38{bottom:377.430440pt;}
.yc{bottom:385.763773pt;}
.y37{bottom:392.763773pt;}
.yb{bottom:401.097107pt;}
.y58{bottom:406.763773pt;}
.y36{bottom:408.097107pt;}
.ya{bottom:416.430440pt;}
.y57{bottom:422.097107pt;}
.y35{bottom:423.430440pt;}
.y9{bottom:431.763773pt;}
.y56{bottom:437.430440pt;}
.y34{bottom:438.763773pt;}
.y8{bottom:447.097107pt;}
.y55{bottom:452.763773pt;}
.y33{bottom:454.097107pt;}
.y7{bottom:462.430440pt;}
.y54{bottom:468.097107pt;}
.y32{bottom:469.430440pt;}
.y6{bottom:477.763773pt;}
.y53{bottom:483.430440pt;}
.y31{bottom:484.763773pt;}
.y52{bottom:498.763773pt;}
.y30{bottom:500.097107pt;}
.y51{bottom:514.097107pt;}
.y2f{bottom:515.430440pt;}
.y50{bottom:529.430440pt;}
.y2e{bottom:546.097107pt;}
.y2d{bottom:560.097107pt;}
.y2c{bottom:574.097107pt;}
.y2b{bottom:588.097107pt;}
.y2a{bottom:617.430440pt;}
.y5{bottom:622.763773pt;}
.y29{bottom:632.763773pt;}
.y4{bottom:635.430440pt;}
.y28{bottom:648.097107pt;}
.y3{bottom:651.430440pt;}
.y27{bottom:663.430440pt;}
.y26{bottom:678.763773pt;}
.y2{bottom:691.430440pt;}
.y25{bottom:694.097107pt;}
.y1{bottom:737.430440pt;}
.h2{height:45.525333pt;}
.h5{height:51.216000pt;}
.h7{height:56.906667pt;}
.h8{height:57.813333pt;}
.h4{height:62.597333pt;}
.h6{height:63.594667pt;}
.h3{height:91.050667pt;}
.h0{height:763.097107pt;}
.h1{height:763.333333pt;}
.w0{width:491.307093pt;}
.w1{width:491.333333pt;}
.x0{left:0.000000pt;}
.x2{left:27.768733pt;}
.x3{left:47.792733pt;}
.x1{left:330.038067pt;}
}




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