
    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_0bdc59f82f9f99f6e4072d05.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945801;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_a106cf576be199c612f19d29.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035647;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_d850aca0892312e6ed6a19c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936042;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_0dc817036466f0095505034d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936041;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_00d125c0fa34e3fb596a5426.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937990;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_e196e88ec6178dd9539988a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.882324;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_43380fc4eeec8d655f2d70da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.713379;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.352000px;}
.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:-13.500000px;}
.ws2{word-spacing:-12.000000px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-360.360000px;}
._c{margin-left:-53.640000px;}
._b{margin-left:-12.552000px;}
._5{margin-left:-1.584000px;}
._0{width:1.200000px;}
._2{width:2.592000px;}
._3{width:3.888000px;}
._7{width:5.064000px;}
._8{width:6.360000px;}
._6{width:8.064000px;}
._4{width:12.384000px;}
._d{width:29.376000px;}
._a{width:335.952000px;}
._1{width:652.260000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.042000px;}
.y2{bottom:3.375000px;}
.y22{bottom:91.441500px;}
.y25{bottom:157.783500px;}
.y46{bottom:161.491500px;}
.y5e{bottom:177.091500px;}
.y24{bottom:182.683500px;}
.y45{bottom:186.241500px;}
.y23{bottom:198.133500px;}
.y5d{bottom:201.991500px;}
.y44{bottom:224.641500px;}
.y5c{bottom:226.741500px;}
.y21{bottom:242.941500px;}
.y43{bottom:249.391500px;}
.y5b{bottom:251.641500px;}
.y20{bottom:267.691500px;}
.y42{bottom:274.291500px;}
.y5a{bottom:276.391500px;}
.y1f{bottom:292.591500px;}
.y41{bottom:299.041500px;}
.y59{bottom:301.291500px;}
.y1e{bottom:317.341500px;}
.y40{bottom:323.941500px;}
.y58{bottom:326.041500px;}
.y1d{bottom:342.241500px;}
.y3f{bottom:348.691500px;}
.y57{bottom:350.941500px;}
.y1c{bottom:366.991500px;}
.y56{bottom:375.691500px;}
.y3e{bottom:387.091500px;}
.y55{bottom:400.591500px;}
.y1b{bottom:405.391500px;}
.y3d{bottom:411.841500px;}
.y54{bottom:425.341500px;}
.y1a{bottom:430.141500px;}
.y3c{bottom:436.741500px;}
.y53{bottom:450.241500px;}
.y19{bottom:455.041500px;}
.y3b{bottom:461.491500px;}
.y52{bottom:474.991500px;}
.y18{bottom:479.791500px;}
.y3a{bottom:486.391500px;}
.y51{bottom:499.891500px;}
.y17{bottom:504.691500px;}
.y39{bottom:511.141500px;}
.y50{bottom:524.641500px;}
.y16{bottom:529.441500px;}
.y38{bottom:536.041500px;}
.y4f{bottom:549.541500px;}
.y15{bottom:554.341500px;}
.y37{bottom:560.791500px;}
.y6c{bottom:573.283500px;}
.y4e{bottom:574.291500px;}
.y14{bottom:579.091500px;}
.y36{bottom:585.691500px;}
.y4d{bottom:599.191500px;}
.y6b{bottom:600.433500px;}
.y13{bottom:603.991500px;}
.y35{bottom:610.441500px;}
.y6a{bottom:614.083500px;}
.y4c{bottom:623.941500px;}
.y69{bottom:627.733500px;}
.y12{bottom:628.741500px;}
.y34{bottom:648.841500px;}
.y68{bottom:650.383500px;}
.y11{bottom:653.641500px;}
.y67{bottom:664.033500px;}
.y33{bottom:673.591500px;}
.y66{bottom:678.133500px;}
.y10{bottom:678.391500px;}
.y32{bottom:698.491500px;}
.yf{bottom:703.291500px;}
.y65{bottom:705.883500px;}
.y31{bottom:723.241500px;}
.ye{bottom:728.041500px;}
.y4b{bottom:736.741500px;}
.y30{bottom:748.141500px;}
.yd{bottom:752.941500px;}
.y4a{bottom:761.641500px;}
.y2f{bottom:772.891500px;}
.yc{bottom:777.691500px;}
.y49{bottom:786.391500px;}
.y2e{bottom:797.791500px;}
.yb{bottom:802.591500px;}
.y48{bottom:811.291500px;}
.y2d{bottom:822.541500px;}
.y47{bottom:836.041500px;}
.y2c{bottom:860.941500px;}
.ya{bottom:864.241500px;}
.y2b{bottom:885.691500px;}
.y9{bottom:894.841500px;}
.y2a{bottom:910.591500px;}
.y64{bottom:924.091500px;}
.y29{bottom:935.341500px;}
.y63{bottom:948.841500px;}
.y28{bottom:960.241500px;}
.y8{bottom:971.491500px;}
.y62{bottom:973.741500px;}
.y27{bottom:984.991500px;}
.y61{bottom:998.491500px;}
.y7{bottom:1009.891500px;}
.y60{bottom:1023.391500px;}
.y6{bottom:1034.641500px;}
.y5f{bottom:1048.141500px;}
.y5{bottom:1073.041500px;}
.y4{bottom:1097.791500px;}
.y1{bottom:1158.808500px;}
.y26{bottom:1164.241500px;}
.h2{height:16.875000px;}
.hd{height:33.609375px;}
.hc{height:38.296991px;}
.h7{height:41.894531px;}
.hb{height:42.480469px;}
.ha{height:43.084115px;}
.h3{height:47.871239px;}
.h6{height:50.273438px;}
.h5{height:50.976562px;}
.h9{height:52.658363px;}
.h8{height:57.445487px;}
.h4{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.875000px;}
.w3{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.800000px;}
.x1{left:129.900000px;}
.xb{left:151.050000px;}
.x6{left:161.850000px;}
.x8{left:198.000000px;}
.x2{left:245.550000px;}
.xa{left:289.050000px;}
.xc{left:325.650000px;}
.x4{left:462.150000px;}
.x3{left:653.100000px;}
.x9{left:680.700000px;}
.x7{left:757.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.090667pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-320.320000pt;}
._c{margin-left:-47.680000pt;}
._b{margin-left:-11.157333pt;}
._5{margin-left:-1.408000pt;}
._0{width:1.066667pt;}
._2{width:2.304000pt;}
._3{width:3.456000pt;}
._7{width:4.501333pt;}
._8{width:5.653333pt;}
._6{width:7.168000pt;}
._4{width:11.008000pt;}
._d{width:26.112000pt;}
._a{width:298.624000pt;}
._1{width:579.786667pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.037333pt;}
.y2{bottom:3.000000pt;}
.y22{bottom:81.281333pt;}
.y25{bottom:140.252000pt;}
.y46{bottom:143.548000pt;}
.y5e{bottom:157.414667pt;}
.y24{bottom:162.385333pt;}
.y45{bottom:165.548000pt;}
.y23{bottom:176.118667pt;}
.y5d{bottom:179.548000pt;}
.y44{bottom:199.681333pt;}
.y5c{bottom:201.548000pt;}
.y21{bottom:215.948000pt;}
.y43{bottom:221.681333pt;}
.y5b{bottom:223.681333pt;}
.y20{bottom:237.948000pt;}
.y42{bottom:243.814667pt;}
.y5a{bottom:245.681333pt;}
.y1f{bottom:260.081333pt;}
.y41{bottom:265.814667pt;}
.y59{bottom:267.814667pt;}
.y1e{bottom:282.081333pt;}
.y40{bottom:287.948000pt;}
.y58{bottom:289.814667pt;}
.y1d{bottom:304.214667pt;}
.y3f{bottom:309.948000pt;}
.y57{bottom:311.948000pt;}
.y1c{bottom:326.214667pt;}
.y56{bottom:333.948000pt;}
.y3e{bottom:344.081333pt;}
.y55{bottom:356.081333pt;}
.y1b{bottom:360.348000pt;}
.y3d{bottom:366.081333pt;}
.y54{bottom:378.081333pt;}
.y1a{bottom:382.348000pt;}
.y3c{bottom:388.214667pt;}
.y53{bottom:400.214667pt;}
.y19{bottom:404.481333pt;}
.y3b{bottom:410.214667pt;}
.y52{bottom:422.214667pt;}
.y18{bottom:426.481333pt;}
.y3a{bottom:432.348000pt;}
.y51{bottom:444.348000pt;}
.y17{bottom:448.614667pt;}
.y39{bottom:454.348000pt;}
.y50{bottom:466.348000pt;}
.y16{bottom:470.614667pt;}
.y38{bottom:476.481333pt;}
.y4f{bottom:488.481333pt;}
.y15{bottom:492.748000pt;}
.y37{bottom:498.481333pt;}
.y6c{bottom:509.585333pt;}
.y4e{bottom:510.481333pt;}
.y14{bottom:514.748000pt;}
.y36{bottom:520.614667pt;}
.y4d{bottom:532.614667pt;}
.y6b{bottom:533.718667pt;}
.y13{bottom:536.881333pt;}
.y35{bottom:542.614667pt;}
.y6a{bottom:545.852000pt;}
.y4c{bottom:554.614667pt;}
.y69{bottom:557.985333pt;}
.y12{bottom:558.881333pt;}
.y34{bottom:576.748000pt;}
.y68{bottom:578.118667pt;}
.y11{bottom:581.014667pt;}
.y67{bottom:590.252000pt;}
.y33{bottom:598.748000pt;}
.y66{bottom:602.785333pt;}
.y10{bottom:603.014667pt;}
.y32{bottom:620.881333pt;}
.yf{bottom:625.148000pt;}
.y65{bottom:627.452000pt;}
.y31{bottom:642.881333pt;}
.ye{bottom:647.148000pt;}
.y4b{bottom:654.881333pt;}
.y30{bottom:665.014667pt;}
.yd{bottom:669.281333pt;}
.y4a{bottom:677.014667pt;}
.y2f{bottom:687.014667pt;}
.yc{bottom:691.281333pt;}
.y49{bottom:699.014667pt;}
.y2e{bottom:709.148000pt;}
.yb{bottom:713.414667pt;}
.y48{bottom:721.148000pt;}
.y2d{bottom:731.148000pt;}
.y47{bottom:743.148000pt;}
.y2c{bottom:765.281333pt;}
.ya{bottom:768.214667pt;}
.y2b{bottom:787.281333pt;}
.y9{bottom:795.414667pt;}
.y2a{bottom:809.414667pt;}
.y64{bottom:821.414667pt;}
.y29{bottom:831.414667pt;}
.y63{bottom:843.414667pt;}
.y28{bottom:853.548000pt;}
.y8{bottom:863.548000pt;}
.y62{bottom:865.548000pt;}
.y27{bottom:875.548000pt;}
.y61{bottom:887.548000pt;}
.y7{bottom:897.681333pt;}
.y60{bottom:909.681333pt;}
.y6{bottom:919.681333pt;}
.y5f{bottom:931.681333pt;}
.y5{bottom:953.814667pt;}
.y4{bottom:975.814667pt;}
.y1{bottom:1030.052000pt;}
.y26{bottom:1034.881333pt;}
.h2{height:15.000000pt;}
.hd{height:29.875000pt;}
.hc{height:34.041770pt;}
.h7{height:37.239583pt;}
.hb{height:37.760417pt;}
.ha{height:38.296991pt;}
.h3{height:42.552212pt;}
.h6{height:44.687500pt;}
.h5{height:45.312500pt;}
.h9{height:46.807433pt;}
.h8{height:51.062655pt;}
.h4{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.666667pt;}
.w3{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.600000pt;}
.x1{left:115.466667pt;}
.xb{left:134.266667pt;}
.x6{left:143.866667pt;}
.x8{left:176.000000pt;}
.x2{left:218.266667pt;}
.xa{left:256.933333pt;}
.xc{left:289.466667pt;}
.x4{left:410.800000pt;}
.x3{left:580.533333pt;}
.x9{left:605.066667pt;}
.x7{left:673.733333pt;}
}




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