
    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_9e39ee55775b13e6fda32d22.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c004f5e28ed4d035ac834ecc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_05a6357e03d0a2da4857efd7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_a7e7e2d9a337d77b7dbe90be.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;}
.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);}
.v1{vertical-align:-66.240000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.106800px;}
.ls3{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.666720px;}
.ls7{letter-spacing:1.338000px;}
.ls0{letter-spacing:1480.889280px;}
.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;}
}
.ws5{word-spacing:-17.951280px;}
.ws4{word-spacing:-16.973280px;}
.ws6{word-spacing:-16.873080px;}
.ws2{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws7{word-spacing:-13.410720px;}
.ws1{word-spacing:-0.059760px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-2.204640px;}
._1{margin-left:-1.095120px;}
._4{width:1.010880px;}
._2{width:2.038320px;}
._a{width:3.079680px;}
._d{width:4.660800px;}
._11{width:5.742480px;}
._f{width:6.790080px;}
._e{width:8.579520px;}
._9{width:9.606960px;}
._7{width:10.671120px;}
._8{width:11.787840px;}
._5{width:13.027680px;}
._6{width:14.581440px;}
._c{width:17.748720px;}
._b{width:19.123200px;}
._10{width:20.203920px;}
._16{width:22.833360px;}
._15{width:23.963760px;}
._12{width:29.043360px;}
._13{width:30.186720px;}
._14{width:31.226160px;}
._0{width:410.201280px;}
.fc5{color:rgb(255,1,1);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(170,170,170);}
.fc0{color:rgb(130,130,130);}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y39{bottom:3.405000px;}
.yd{bottom:4.140000px;}
.y5b{bottom:6.825000px;}
.y7{bottom:6.840000px;}
.y60{bottom:9.705000px;}
.y63{bottom:12.060000px;}
.y58{bottom:20.505000px;}
.y38{bottom:20.685000px;}
.yc{bottom:24.840000px;}
.y5f{bottom:30.405000px;}
.y37{bottom:37.785000px;}
.yb{bottom:46.080000px;}
.y5e{bottom:51.105000px;}
.y36{bottom:55.065000px;}
.y61{bottom:68.925000px;}
.ya{bottom:70.200000px;}
.y5d{bottom:71.985000px;}
.y35{bottom:72.345000px;}
.y5{bottom:74.340000px;}
.y34{bottom:89.625000px;}
.y57{bottom:89.670000px;}
.y4{bottom:90.900000px;}
.y33{bottom:106.905000px;}
.y56{bottom:106.950000px;}
.y3{bottom:107.640000px;}
.y55{bottom:124.050000px;}
.y32{bottom:124.185000px;}
.y2{bottom:140.040000px;}
.y31{bottom:141.285000px;}
.y54{bottom:141.330000px;}
.y30{bottom:158.565000px;}
.y53{bottom:158.610000px;}
.y5c{bottom:170.865000px;}
.y2f{bottom:175.845000px;}
.y52{bottom:175.890000px;}
.y10{bottom:184.725000px;}
.y2e{bottom:193.125000px;}
.y51{bottom:193.170000px;}
.y50{bottom:210.270000px;}
.y2d{bottom:210.405000px;}
.y2c{bottom:227.550000px;}
.y2b{bottom:244.830000px;}
.y5a{bottom:253.665000px;}
.y2a{bottom:262.110000px;}
.y29{bottom:279.390000px;}
.y59{bottom:287.145000px;}
.y28{bottom:296.670000px;}
.y4f{bottom:313.770000px;}
.y27{bottom:313.950000px;}
.y3a{bottom:317.205000px;}
.y26{bottom:331.050000px;}
.y25{bottom:348.330000px;}
.y4e{bottom:348.360000px;}
.y4d{bottom:365.640000px;}
.y24{bottom:365.790000px;}
.y23{bottom:382.890000px;}
.y4c{bottom:382.920000px;}
.y22{bottom:400.170000px;}
.y4b{bottom:400.200000px;}
.y4a{bottom:417.300000px;}
.y21{bottom:417.450000px;}
.y20{bottom:434.550000px;}
.y49{bottom:434.580000px;}
.y1f{bottom:451.830000px;}
.y48{bottom:451.860000px;}
.y1e{bottom:469.140000px;}
.y1d{bottom:486.420000px;}
.y47{bottom:503.520000px;}
.y1c{bottom:503.700000px;}
.y46{bottom:520.800000px;}
.y1b{bottom:520.980000px;}
.y1a{bottom:538.080000px;}
.y19{bottom:555.360000px;}
.y18{bottom:572.640000px;}
.y17{bottom:589.920000px;}
.y45{bottom:589.965000px;}
.y44{bottom:607.065000px;}
.y16{bottom:607.200000px;}
.y15{bottom:624.300000px;}
.y43{bottom:624.345000px;}
.y14{bottom:641.580000px;}
.y42{bottom:641.625000px;}
.y13{bottom:658.860000px;}
.y41{bottom:658.905000px;}
.y12{bottom:676.140000px;}
.y40{bottom:676.185000px;}
.y3f{bottom:693.465000px;}
.y11{bottom:694.140000px;}
.y3e{bottom:710.565000px;}
.y3d{bottom:727.845000px;}
.y3c{bottom:745.125000px;}
.y3b{bottom:762.405000px;}
.yf{bottom:896.190000px;}
.ye{bottom:929.670000px;}
.y9{bottom:954.690000px;}
.y8{bottom:1052.790000px;}
.y64{bottom:1054.410000px;}
.y62{bottom:1068.270000px;}
.y6{bottom:1073.490000px;}
.y1{bottom:1099.050000px;}
.hb{height:17.265000px;}
.h5{height:20.685000px;}
.hd{height:25.905000px;}
.h4{height:50.312812px;}
.h9{height:53.573906px;}
.h3{height:62.327813px;}
.h7{height:75.093750px;}
.hc{height:82.785000px;}
.h2{height:87.859687px;}
.h6{height:89.625000px;}
.h8{height:710.730000px;}
.ha{height:776.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:370.693500px;}
.w4{width:378.795000px;}
.w2{width:757.575000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.098500px;}
.xa{left:10.078500px;}
.xc{left:18.720000px;}
.x7{left:34.378500px;}
.x4{left:63.901500px;}
.x3{left:72.000000px;}
.x8{left:86.428500px;}
.x1{left:282.630000px;}
.x9{left:378.793500px;}
.xb{left:442.695000px;}
.x2{left:499.785000px;}
.x5{left:543.523500px;}
@media print{
.v1{vertical-align:-58.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.592640pt;}
.ls7{letter-spacing:1.189333pt;}
.ls0{letter-spacing:1316.346027pt;}
.ws5{word-spacing:-15.956693pt;}
.ws4{word-spacing:-15.087360pt;}
.ws6{word-spacing:-14.998293pt;}
.ws2{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws7{word-spacing:-11.920640pt;}
.ws1{word-spacing:-0.053120pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-1.959680pt;}
._1{margin-left:-0.973440pt;}
._4{width:0.898560pt;}
._2{width:1.811840pt;}
._a{width:2.737493pt;}
._d{width:4.142933pt;}
._11{width:5.104427pt;}
._f{width:6.035627pt;}
._e{width:7.626240pt;}
._9{width:8.539520pt;}
._7{width:9.485440pt;}
._8{width:10.478080pt;}
._5{width:11.580160pt;}
._6{width:12.961280pt;}
._c{width:15.776640pt;}
._b{width:16.998400pt;}
._10{width:17.959040pt;}
._16{width:20.296320pt;}
._15{width:21.301120pt;}
._12{width:25.816320pt;}
._13{width:26.832640pt;}
._14{width:27.756587pt;}
._0{width:364.623360pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:3.026667pt;}
.yd{bottom:3.680000pt;}
.y5b{bottom:6.066667pt;}
.y7{bottom:6.080000pt;}
.y60{bottom:8.626667pt;}
.y63{bottom:10.720000pt;}
.y58{bottom:18.226667pt;}
.y38{bottom:18.386667pt;}
.yc{bottom:22.080000pt;}
.y5f{bottom:27.026667pt;}
.y37{bottom:33.586667pt;}
.yb{bottom:40.960000pt;}
.y5e{bottom:45.426667pt;}
.y36{bottom:48.946667pt;}
.y61{bottom:61.266667pt;}
.ya{bottom:62.400000pt;}
.y5d{bottom:63.986667pt;}
.y35{bottom:64.306667pt;}
.y5{bottom:66.080000pt;}
.y34{bottom:79.666667pt;}
.y57{bottom:79.706667pt;}
.y4{bottom:80.800000pt;}
.y33{bottom:95.026667pt;}
.y56{bottom:95.066667pt;}
.y3{bottom:95.680000pt;}
.y55{bottom:110.266667pt;}
.y32{bottom:110.386667pt;}
.y2{bottom:124.480000pt;}
.y31{bottom:125.586667pt;}
.y54{bottom:125.626667pt;}
.y30{bottom:140.946667pt;}
.y53{bottom:140.986667pt;}
.y5c{bottom:151.880000pt;}
.y2f{bottom:156.306667pt;}
.y52{bottom:156.346667pt;}
.y10{bottom:164.200000pt;}
.y2e{bottom:171.666667pt;}
.y51{bottom:171.706667pt;}
.y50{bottom:186.906667pt;}
.y2d{bottom:187.026667pt;}
.y2c{bottom:202.266667pt;}
.y2b{bottom:217.626667pt;}
.y5a{bottom:225.480000pt;}
.y2a{bottom:232.986667pt;}
.y29{bottom:248.346667pt;}
.y59{bottom:255.240000pt;}
.y28{bottom:263.706667pt;}
.y4f{bottom:278.906667pt;}
.y27{bottom:279.066667pt;}
.y3a{bottom:281.960000pt;}
.y26{bottom:294.266667pt;}
.y25{bottom:309.626667pt;}
.y4e{bottom:309.653333pt;}
.y4d{bottom:325.013333pt;}
.y24{bottom:325.146667pt;}
.y23{bottom:340.346667pt;}
.y4c{bottom:340.373333pt;}
.y22{bottom:355.706667pt;}
.y4b{bottom:355.733333pt;}
.y4a{bottom:370.933333pt;}
.y21{bottom:371.066667pt;}
.y20{bottom:386.266667pt;}
.y49{bottom:386.293333pt;}
.y1f{bottom:401.626667pt;}
.y48{bottom:401.653333pt;}
.y1e{bottom:417.013333pt;}
.y1d{bottom:432.373333pt;}
.y47{bottom:447.573333pt;}
.y1c{bottom:447.733333pt;}
.y46{bottom:462.933333pt;}
.y1b{bottom:463.093333pt;}
.y1a{bottom:478.293333pt;}
.y19{bottom:493.653333pt;}
.y18{bottom:509.013333pt;}
.y17{bottom:524.373333pt;}
.y45{bottom:524.413333pt;}
.y44{bottom:539.613333pt;}
.y16{bottom:539.733333pt;}
.y15{bottom:554.933333pt;}
.y43{bottom:554.973333pt;}
.y14{bottom:570.293333pt;}
.y42{bottom:570.333333pt;}
.y13{bottom:585.653333pt;}
.y41{bottom:585.693333pt;}
.y12{bottom:601.013333pt;}
.y40{bottom:601.053333pt;}
.y3f{bottom:616.413333pt;}
.y11{bottom:617.013333pt;}
.y3e{bottom:631.613333pt;}
.y3d{bottom:646.973333pt;}
.y3c{bottom:662.333333pt;}
.y3b{bottom:677.693333pt;}
.yf{bottom:796.613333pt;}
.ye{bottom:826.373333pt;}
.y9{bottom:848.613333pt;}
.y8{bottom:935.813333pt;}
.y64{bottom:937.253333pt;}
.y62{bottom:949.573333pt;}
.y6{bottom:954.213333pt;}
.y1{bottom:976.933333pt;}
.hb{height:15.346667pt;}
.h5{height:18.386667pt;}
.hd{height:23.026667pt;}
.h4{height:44.722500pt;}
.h9{height:47.621250pt;}
.h3{height:55.402500pt;}
.h7{height:66.750000pt;}
.hc{height:73.586667pt;}
.h2{height:78.097500pt;}
.h6{height:79.666667pt;}
.h8{height:631.760000pt;}
.ha{height:690.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:329.505333pt;}
.w4{width:336.706667pt;}
.w2{width:673.400000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.198667pt;}
.xa{left:8.958667pt;}
.xc{left:16.640000pt;}
.x7{left:30.558667pt;}
.x4{left:56.801333pt;}
.x3{left:64.000000pt;}
.x8{left:76.825333pt;}
.x1{left:251.226667pt;}
.x9{left:336.705333pt;}
.xb{left:393.506667pt;}
.x2{left:444.253333pt;}
.x5{left:483.132000pt;}
}




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