
    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_9c50f0782298ac9d1e309f52.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_d0f10f5ec46b4d189be8fdbc.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_361198de3af3c2420f80fed5.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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;}
.v1{vertical-align:22.500000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.012000px;}
.ls5{letter-spacing:1.482000px;}
.ls1{letter-spacing:1.494000px;}
.ls9{letter-spacing:1.500000px;}
.ls8{letter-spacing:1.512000px;}
.ls2{letter-spacing:1.518000px;}
.ls6{letter-spacing:13.506000px;}
.ls0{letter-spacing:20.982000px;}
.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;}
}
.ws10{word-spacing:-17.160000px;}
.ws13{word-spacing:-17.094000px;}
.ws12{word-spacing:-17.040000px;}
.ws1f{word-spacing:-16.842000px;}
.ws19{word-spacing:-16.824000px;}
.wse{word-spacing:-16.752000px;}
.wsf{word-spacing:-16.716000px;}
.ws17{word-spacing:-16.674000px;}
.ws1e{word-spacing:-16.590000px;}
.ws0{word-spacing:-16.500000px;}
.ws20{word-spacing:-16.494000px;}
.ws15{word-spacing:-16.488000px;}
.ws16{word-spacing:-16.470000px;}
.ws8{word-spacing:-16.368000px;}
.ws18{word-spacing:-16.290000px;}
.ws14{word-spacing:-16.266000px;}
.ws1a{word-spacing:-16.188000px;}
.ws11{word-spacing:-16.182000px;}
.ws7{word-spacing:-16.170000px;}
.ws6{word-spacing:-15.984000px;}
.ws1b{word-spacing:-15.840000px;}
.ws1d{word-spacing:-15.624000px;}
.ws1c{word-spacing:-15.000000px;}
.ws22{word-spacing:-14.874000px;}
.ws21{word-spacing:-14.700000px;}
.ws3{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.416000px;}
.ws1{word-spacing:-13.230000px;}
.ws4{word-spacing:-13.014000px;}
.ws5{word-spacing:-12.294000px;}
.wsc{word-spacing:-11.994000px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:6.018000px;}
.wsb{word-spacing:9.000000px;}
._8{margin-left:-7.524000px;}
._4{margin-left:-5.622000px;}
._f{margin-left:-4.506000px;}
._3{margin-left:-3.036000px;}
._2{margin-left:-1.632000px;}
._1{width:1.488000px;}
._9{width:2.514000px;}
._6{width:3.552000px;}
._5{width:4.626000px;}
._12{width:5.772000px;}
._a{width:6.816000px;}
._d{width:8.058000px;}
._e{width:9.120000px;}
._c{width:10.812000px;}
._b{width:12.042000px;}
._15{width:13.902000px;}
._1c{width:14.994000px;}
._14{width:16.002000px;}
._18{width:18.000000px;}
._10{width:19.530000px;}
._16{width:21.408000px;}
._13{width:22.704000px;}
._1b{width:24.138000px;}
._19{width:25.548000px;}
._17{width:26.562000px;}
._1d{width:28.578000px;}
._7{width:48.048000px;}
._0{width:49.500000px;}
._1a{width:1056.132000px;}
._11{width:1207.464000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs4{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:19.234245px;}
.y51{bottom:21.859245px;}
.y5{bottom:33.484245px;}
.y50{bottom:39.109245px;}
.y5e{bottom:39.859245px;}
.y4{bottom:47.734245px;}
.y5d{bottom:55.609245px;}
.y4f{bottom:56.359245px;}
.y3{bottom:61.984245px;}
.y5c{bottom:71.359245px;}
.y4e{bottom:73.609245px;}
.y2{bottom:76.234245px;}
.y5b{bottom:87.109245px;}
.y1{bottom:90.484245px;}
.y4d{bottom:90.859245px;}
.y5a{bottom:102.859245px;}
.y4c{bottom:108.109245px;}
.y59{bottom:118.609245px;}
.y4b{bottom:125.359245px;}
.y58{bottom:134.359245px;}
.y24{bottom:136.609245px;}
.y4a{bottom:142.609245px;}
.y57{bottom:150.109245px;}
.y23{bottom:153.859245px;}
.y49{bottom:159.859245px;}
.y56{bottom:165.859245px;}
.y22{bottom:171.109245px;}
.y48{bottom:177.109245px;}
.y55{bottom:181.609245px;}
.y21{bottom:188.359245px;}
.y47{bottom:194.359245px;}
.y54{bottom:197.359245px;}
.y20{bottom:205.609245px;}
.y46{bottom:211.609245px;}
.y53{bottom:213.109245px;}
.y1f{bottom:222.859245px;}
.y45{bottom:228.859245px;}
.y52{bottom:237.484245px;}
.y1e{bottom:240.109245px;}
.y44{bottom:246.109245px;}
.y1d{bottom:257.359245px;}
.y43{bottom:263.359245px;}
.y1c{bottom:274.609245px;}
.y42{bottom:280.609245px;}
.y1b{bottom:291.859245px;}
.y41{bottom:297.859245px;}
.y1a{bottom:309.109245px;}
.y40{bottom:315.109245px;}
.y19{bottom:326.359245px;}
.y3f{bottom:332.359245px;}
.y18{bottom:343.609245px;}
.y3e{bottom:349.609245px;}
.y17{bottom:360.859245px;}
.y3d{bottom:366.859245px;}
.y16{bottom:378.109245px;}
.y3c{bottom:384.109245px;}
.y15{bottom:395.359245px;}
.y3b{bottom:401.359245px;}
.y14{bottom:412.609245px;}
.y3a{bottom:418.609245px;}
.y13{bottom:429.859245px;}
.y39{bottom:435.859245px;}
.y12{bottom:447.109245px;}
.y38{bottom:453.109245px;}
.y11{bottom:464.359245px;}
.y37{bottom:470.359245px;}
.y10{bottom:481.609245px;}
.y36{bottom:487.609245px;}
.yf{bottom:498.859245px;}
.y35{bottom:504.859245px;}
.ye{bottom:516.109245px;}
.y34{bottom:522.109245px;}
.yd{bottom:533.359245px;}
.y33{bottom:539.359245px;}
.yc{bottom:550.609245px;}
.y32{bottom:556.609245px;}
.y31{bottom:573.859245px;}
.y30{bottom:591.109245px;}
.y2f{bottom:608.359245px;}
.y2e{bottom:625.609245px;}
.y2d{bottom:642.859245px;}
.y2c{bottom:660.109245px;}
.y2b{bottom:677.359245px;}
.y2a{bottom:694.609245px;}
.yb{bottom:700.609245px;}
.y29{bottom:711.859245px;}
.ya{bottom:714.859245px;}
.y28{bottom:729.109245px;}
.y9{bottom:732.859245px;}
.y27{bottom:746.359245px;}
.y26{bottom:763.609245px;}
.y8{bottom:777.859245px;}
.y25{bottom:780.859245px;}
.y7{bottom:829.609245px;}
.h4{height:51.216000px;}
.h3{height:57.618000px;}
.h2{height:58.536000px;}
.ha{height:64.020000px;}
.h9{height:65.040000px;}
.h6{height:70.422000px;}
.h8{height:71.544000px;}
.h7{height:75.316500px;}
.h5{height:102.432000px;}
.h0{height:858.484245px;}
.h1{height:858.750000px;}
.w0{width:552.720480px;}
.w1{width:552.750000px;}
.x0{left:0.000000px;}
.x1{left:31.053825px;}
.x4{left:45.659325px;}
.x2{left:53.765325px;}
.x3{left:371.292825px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.010667pt;}
.ls5{letter-spacing:1.317333pt;}
.ls1{letter-spacing:1.328000pt;}
.ls9{letter-spacing:1.333333pt;}
.ls8{letter-spacing:1.344000pt;}
.ls2{letter-spacing:1.349333pt;}
.ls6{letter-spacing:12.005333pt;}
.ls0{letter-spacing:18.650667pt;}
.ws10{word-spacing:-15.253333pt;}
.ws13{word-spacing:-15.194667pt;}
.ws12{word-spacing:-15.146667pt;}
.ws1f{word-spacing:-14.970667pt;}
.ws19{word-spacing:-14.954667pt;}
.wse{word-spacing:-14.890667pt;}
.wsf{word-spacing:-14.858667pt;}
.ws17{word-spacing:-14.821333pt;}
.ws1e{word-spacing:-14.746667pt;}
.ws0{word-spacing:-14.666667pt;}
.ws20{word-spacing:-14.661333pt;}
.ws15{word-spacing:-14.656000pt;}
.ws16{word-spacing:-14.640000pt;}
.ws8{word-spacing:-14.549333pt;}
.ws18{word-spacing:-14.480000pt;}
.ws14{word-spacing:-14.458667pt;}
.ws1a{word-spacing:-14.389333pt;}
.ws11{word-spacing:-14.384000pt;}
.ws7{word-spacing:-14.373333pt;}
.ws6{word-spacing:-14.208000pt;}
.ws1b{word-spacing:-14.080000pt;}
.ws1d{word-spacing:-13.888000pt;}
.ws1c{word-spacing:-13.333333pt;}
.ws22{word-spacing:-13.221333pt;}
.ws21{word-spacing:-13.066667pt;}
.ws3{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.925333pt;}
.ws1{word-spacing:-11.760000pt;}
.ws4{word-spacing:-11.568000pt;}
.ws5{word-spacing:-10.928000pt;}
.wsc{word-spacing:-10.661333pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:5.349333pt;}
.wsb{word-spacing:8.000000pt;}
._8{margin-left:-6.688000pt;}
._4{margin-left:-4.997333pt;}
._f{margin-left:-4.005333pt;}
._3{margin-left:-2.698667pt;}
._2{margin-left:-1.450667pt;}
._1{width:1.322667pt;}
._9{width:2.234667pt;}
._6{width:3.157333pt;}
._5{width:4.112000pt;}
._12{width:5.130667pt;}
._a{width:6.058667pt;}
._d{width:7.162667pt;}
._e{width:8.106667pt;}
._c{width:9.610667pt;}
._b{width:10.704000pt;}
._15{width:12.357333pt;}
._1c{width:13.328000pt;}
._14{width:14.224000pt;}
._18{width:16.000000pt;}
._10{width:17.360000pt;}
._16{width:19.029333pt;}
._13{width:20.181333pt;}
._1b{width:21.456000pt;}
._19{width:22.709333pt;}
._17{width:23.610667pt;}
._1d{width:25.402667pt;}
._7{width:42.709333pt;}
._0{width:44.000000pt;}
._1a{width:938.784000pt;}
._11{width:1073.301333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:17.097107pt;}
.y51{bottom:19.430440pt;}
.y5{bottom:29.763773pt;}
.y50{bottom:34.763773pt;}
.y5e{bottom:35.430440pt;}
.y4{bottom:42.430440pt;}
.y5d{bottom:49.430440pt;}
.y4f{bottom:50.097107pt;}
.y3{bottom:55.097107pt;}
.y5c{bottom:63.430440pt;}
.y4e{bottom:65.430440pt;}
.y2{bottom:67.763773pt;}
.y5b{bottom:77.430440pt;}
.y1{bottom:80.430440pt;}
.y4d{bottom:80.763773pt;}
.y5a{bottom:91.430440pt;}
.y4c{bottom:96.097107pt;}
.y59{bottom:105.430440pt;}
.y4b{bottom:111.430440pt;}
.y58{bottom:119.430440pt;}
.y24{bottom:121.430440pt;}
.y4a{bottom:126.763773pt;}
.y57{bottom:133.430440pt;}
.y23{bottom:136.763773pt;}
.y49{bottom:142.097107pt;}
.y56{bottom:147.430440pt;}
.y22{bottom:152.097107pt;}
.y48{bottom:157.430440pt;}
.y55{bottom:161.430440pt;}
.y21{bottom:167.430440pt;}
.y47{bottom:172.763773pt;}
.y54{bottom:175.430440pt;}
.y20{bottom:182.763773pt;}
.y46{bottom:188.097107pt;}
.y53{bottom:189.430440pt;}
.y1f{bottom:198.097107pt;}
.y45{bottom:203.430440pt;}
.y52{bottom:211.097107pt;}
.y1e{bottom:213.430440pt;}
.y44{bottom:218.763773pt;}
.y1d{bottom:228.763773pt;}
.y43{bottom:234.097107pt;}
.y1c{bottom:244.097107pt;}
.y42{bottom:249.430440pt;}
.y1b{bottom:259.430440pt;}
.y41{bottom:264.763773pt;}
.y1a{bottom:274.763773pt;}
.y40{bottom:280.097107pt;}
.y19{bottom:290.097107pt;}
.y3f{bottom:295.430440pt;}
.y18{bottom:305.430440pt;}
.y3e{bottom:310.763773pt;}
.y17{bottom:320.763773pt;}
.y3d{bottom:326.097107pt;}
.y16{bottom:336.097107pt;}
.y3c{bottom:341.430440pt;}
.y15{bottom:351.430440pt;}
.y3b{bottom:356.763773pt;}
.y14{bottom:366.763773pt;}
.y3a{bottom:372.097107pt;}
.y13{bottom:382.097107pt;}
.y39{bottom:387.430440pt;}
.y12{bottom:397.430440pt;}
.y38{bottom:402.763773pt;}
.y11{bottom:412.763773pt;}
.y37{bottom:418.097107pt;}
.y10{bottom:428.097107pt;}
.y36{bottom:433.430440pt;}
.yf{bottom:443.430440pt;}
.y35{bottom:448.763773pt;}
.ye{bottom:458.763773pt;}
.y34{bottom:464.097107pt;}
.yd{bottom:474.097107pt;}
.y33{bottom:479.430440pt;}
.yc{bottom:489.430440pt;}
.y32{bottom:494.763773pt;}
.y31{bottom:510.097107pt;}
.y30{bottom:525.430440pt;}
.y2f{bottom:540.763773pt;}
.y2e{bottom:556.097107pt;}
.y2d{bottom:571.430440pt;}
.y2c{bottom:586.763773pt;}
.y2b{bottom:602.097107pt;}
.y2a{bottom:617.430440pt;}
.yb{bottom:622.763773pt;}
.y29{bottom:632.763773pt;}
.ya{bottom:635.430440pt;}
.y28{bottom:648.097107pt;}
.y9{bottom:651.430440pt;}
.y27{bottom:663.430440pt;}
.y26{bottom:678.763773pt;}
.y8{bottom:691.430440pt;}
.y25{bottom:694.097107pt;}
.y7{bottom:737.430440pt;}
.h4{height:45.525333pt;}
.h3{height:51.216000pt;}
.h2{height:52.032000pt;}
.ha{height:56.906667pt;}
.h9{height:57.813333pt;}
.h6{height:62.597333pt;}
.h8{height:63.594667pt;}
.h7{height:66.948000pt;}
.h5{height:91.050667pt;}
.h0{height:763.097107pt;}
.h1{height:763.333333pt;}
.w0{width:491.307093pt;}
.w1{width:491.333333pt;}
.x0{left:0.000000pt;}
.x1{left:27.603400pt;}
.x4{left:40.586067pt;}
.x2{left:47.791400pt;}
.x3{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; }
  