
    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_b657579131950c5152504693.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002441;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_58826d8e394fc6f14e0a7177.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_60687f402aac7580d47536a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_67b2fe2912464d4cc8e0146f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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:47.520000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws0{word-spacing:-20.016000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.368000px;}
._1{width:1.080000px;}
._2{width:2.088000px;}
._14{width:4.536000px;}
._13{width:5.616000px;}
._15{width:6.624000px;}
._17{width:21.384000px;}
._16{width:22.896000px;}
._11{width:29.808000px;}
._10{width:30.816000px;}
._12{width:31.824000px;}
._a{width:81.144000px;}
._6{width:121.176000px;}
._7{width:157.032000px;}
._b{width:173.088000px;}
._f{width:282.528000px;}
._c{width:330.624000px;}
._3{width:333.432000px;}
._d{width:397.440000px;}
._e{width:429.120000px;}
._4{width:554.688000px;}
._9{width:583.848000px;}
._8{width:597.168000px;}
._5{width:626.328000px;}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y81{bottom:22.501800px;}
.y2{bottom:57.728160px;}
.y83{bottom:60.658920px;}
.y1{bottom:77.898240px;}
.y24{bottom:118.746000px;}
.y43{bottom:124.515000px;}
.y4b{bottom:128.646000px;}
.y23{bottom:142.506000px;}
.y44{bottom:149.031000px;}
.y4a{bottom:149.346000px;}
.y72{bottom:150.786000px;}
.y49{bottom:170.046000px;}
.y71{bottom:174.726000px;}
.y22{bottom:181.386000px;}
.y48{bottom:190.746000px;}
.y21{bottom:205.146000px;}
.y47{bottom:211.446000px;}
.y70{bottom:213.426000px;}
.y20{bottom:228.906000px;}
.y46{bottom:232.146000px;}
.y1f{bottom:252.666000px;}
.y45{bottom:252.846000px;}
.y6f{bottom:253.026000px;}
.y1e{bottom:276.606000px;}
.y6e{bottom:276.786000px;}
.y1d{bottom:300.366000px;}
.y6d{bottom:301.446000px;}
.y42{bottom:312.966000px;}
.y6c{bottom:323.046000px;}
.y1c{bottom:324.126000px;}
.y4d{bottom:335.331000px;}
.y41{bottom:352.566000px;}
.y6b{bottom:361.566000px;}
.y1b{bottom:363.006000px;}
.y6a{bottom:385.506000px;}
.y40{bottom:391.266000px;}
.y1a{bottom:402.606000px;}
.y3f{bottom:415.026000px;}
.y69{bottom:424.206000px;}
.y19{bottom:426.366000px;}
.y86{bottom:440.766000px;}
.y68{bottom:447.966000px;}
.y18{bottom:450.126000px;}
.y3e{bottom:453.906000px;}
.y85{bottom:458.235000px;}
.y67{bottom:471.906000px;}
.y3d{bottom:477.666000px;}
.y17{bottom:489.726000px;}
.y82{bottom:497.115000px;}
.y3c{bottom:501.606000px;}
.y66{bottom:510.606000px;}
.y16{bottom:514.206000px;}
.y84{bottom:519.619680px;}
.y3b{bottom:525.366000px;}
.y65{bottom:534.366000px;}
.y15{bottom:553.806000px;}
.y64{bottom:558.306000px;}
.y3a{bottom:564.066000px;}
.y80{bottom:574.155000px;}
.y14{bottom:577.566000px;}
.y39{bottom:588.006000px;}
.y63{bottom:597.006000px;}
.y38{bottom:611.766000px;}
.y13{bottom:617.166000px;}
.y7f{bottom:620.226000px;}
.y62{bottom:620.766000px;}
.y37{bottom:635.526000px;}
.y12{bottom:656.766000px;}
.y61{bottom:659.646000px;}
.y36{bottom:674.406000px;}
.y60{bottom:683.406000px;}
.y11{bottom:696.186000px;}
.y35{bottom:698.166000px;}
.y7e{bottom:698.526000px;}
.y10{bottom:720.846000px;}
.y5f{bottom:722.286000px;}
.y34{bottom:736.866000px;}
.y7d{bottom:746.046000px;}
.yf{bottom:760.266000px;}
.y33{bottom:760.806000px;}
.y5e{bottom:761.886000px;}
.y7c{bottom:769.986000px;}
.ye{bottom:784.206000px;}
.y5d{bottom:786.366000px;}
.y32{bottom:799.506000px;}
.y4c{bottom:803.835000px;}
.y5c{bottom:807.966000px;}
.y7b{bottom:808.686000px;}
.yd{bottom:823.626000px;}
.y5b{bottom:828.666000px;}
.y31{bottom:838.386000px;}
.y7a{bottom:848.286000px;}
.y5a{bottom:849.366000px;}
.y30{bottom:862.146000px;}
.yc{bottom:863.226000px;}
.y59{bottom:870.066000px;}
.y79{bottom:872.766000px;}
.y2f{bottom:885.906000px;}
.yb{bottom:886.986000px;}
.y58{bottom:890.766000px;}
.y57{bottom:911.466000px;}
.y78{bottom:912.366000px;}
.y2e{bottom:924.786000px;}
.ya{bottom:926.586000px;}
.y56{bottom:932.166000px;}
.y2d{bottom:948.546000px;}
.y77{bottom:951.246000px;}
.y55{bottom:952.866000px;}
.y9{bottom:966.186000px;}
.y2c{bottom:972.306000px;}
.y54{bottom:973.566000px;}
.y76{bottom:975.006000px;}
.y8{bottom:990.666000px;}
.y53{bottom:994.266000px;}
.y2b{bottom:996.246000px;}
.y75{bottom:1013.706000px;}
.y52{bottom:1014.966000px;}
.y2a{bottom:1020.006000px;}
.y7{bottom:1029.546000px;}
.y51{bottom:1035.666000px;}
.y29{bottom:1043.766000px;}
.y74{bottom:1052.586000px;}
.y6{bottom:1053.306000px;}
.y50{bottom:1056.366000px;}
.y28{bottom:1067.526000px;}
.y73{bottom:1076.346000px;}
.y5{bottom:1077.066000px;}
.y27{bottom:1091.466000px;}
.y4f{bottom:1097.766000px;}
.y4{bottom:1101.006000px;}
.y26{bottom:1115.226000px;}
.y4e{bottom:1118.466000px;}
.y25{bottom:1138.986000px;}
.y3{bottom:1139.706000px;}
.h8{height:38.160000px;}
.h2{height:54.628594px;}
.h3{height:64.546875px;}
.h4{height:65.003906px;}
.h9{height:76.320000px;}
.h5{height:112.066875px;}
.h6{height:165.600000px;}
.h7{height:351.900000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:723.240000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.637120px;}
.x7{left:62.640000px;}
.x6{left:84.960000px;}
.x3{left:93.600000px;}
.x9{left:95.760000px;}
.x2{left:106.381440px;}
.xa{left:120.600000px;}
.x8{left:147.600000px;}
.x4{left:210.960000px;}
.x1{left:442.267920px;}
.x5{left:508.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:42.240000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.216000pt;}
._1{width:0.960000pt;}
._2{width:1.856000pt;}
._14{width:4.032000pt;}
._13{width:4.992000pt;}
._15{width:5.888000pt;}
._17{width:19.008000pt;}
._16{width:20.352000pt;}
._11{width:26.496000pt;}
._10{width:27.392000pt;}
._12{width:28.288000pt;}
._a{width:72.128000pt;}
._6{width:107.712000pt;}
._7{width:139.584000pt;}
._b{width:153.856000pt;}
._f{width:251.136000pt;}
._c{width:293.888000pt;}
._3{width:296.384000pt;}
._d{width:353.280000pt;}
._e{width:381.440000pt;}
._4{width:493.056000pt;}
._9{width:518.976000pt;}
._8{width:530.816000pt;}
._5{width:556.736000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:20.001600pt;}
.y2{bottom:51.313920pt;}
.y83{bottom:53.919040pt;}
.y1{bottom:69.242880pt;}
.y24{bottom:105.552000pt;}
.y43{bottom:110.680000pt;}
.y4b{bottom:114.352000pt;}
.y23{bottom:126.672000pt;}
.y44{bottom:132.472000pt;}
.y4a{bottom:132.752000pt;}
.y72{bottom:134.032000pt;}
.y49{bottom:151.152000pt;}
.y71{bottom:155.312000pt;}
.y22{bottom:161.232000pt;}
.y48{bottom:169.552000pt;}
.y21{bottom:182.352000pt;}
.y47{bottom:187.952000pt;}
.y70{bottom:189.712000pt;}
.y20{bottom:203.472000pt;}
.y46{bottom:206.352000pt;}
.y1f{bottom:224.592000pt;}
.y45{bottom:224.752000pt;}
.y6f{bottom:224.912000pt;}
.y1e{bottom:245.872000pt;}
.y6e{bottom:246.032000pt;}
.y1d{bottom:266.992000pt;}
.y6d{bottom:267.952000pt;}
.y42{bottom:278.192000pt;}
.y6c{bottom:287.152000pt;}
.y1c{bottom:288.112000pt;}
.y4d{bottom:298.072000pt;}
.y41{bottom:313.392000pt;}
.y6b{bottom:321.392000pt;}
.y1b{bottom:322.672000pt;}
.y6a{bottom:342.672000pt;}
.y40{bottom:347.792000pt;}
.y1a{bottom:357.872000pt;}
.y3f{bottom:368.912000pt;}
.y69{bottom:377.072000pt;}
.y19{bottom:378.992000pt;}
.y86{bottom:391.792000pt;}
.y68{bottom:398.192000pt;}
.y18{bottom:400.112000pt;}
.y3e{bottom:403.472000pt;}
.y85{bottom:407.320000pt;}
.y67{bottom:419.472000pt;}
.y3d{bottom:424.592000pt;}
.y17{bottom:435.312000pt;}
.y82{bottom:441.880000pt;}
.y3c{bottom:445.872000pt;}
.y66{bottom:453.872000pt;}
.y16{bottom:457.072000pt;}
.y84{bottom:461.884160pt;}
.y3b{bottom:466.992000pt;}
.y65{bottom:474.992000pt;}
.y15{bottom:492.272000pt;}
.y64{bottom:496.272000pt;}
.y3a{bottom:501.392000pt;}
.y80{bottom:510.360000pt;}
.y14{bottom:513.392000pt;}
.y39{bottom:522.672000pt;}
.y63{bottom:530.672000pt;}
.y38{bottom:543.792000pt;}
.y13{bottom:548.592000pt;}
.y7f{bottom:551.312000pt;}
.y62{bottom:551.792000pt;}
.y37{bottom:564.912000pt;}
.y12{bottom:583.792000pt;}
.y61{bottom:586.352000pt;}
.y36{bottom:599.472000pt;}
.y60{bottom:607.472000pt;}
.y11{bottom:618.832000pt;}
.y35{bottom:620.592000pt;}
.y7e{bottom:620.912000pt;}
.y10{bottom:640.752000pt;}
.y5f{bottom:642.032000pt;}
.y34{bottom:654.992000pt;}
.y7d{bottom:663.152000pt;}
.yf{bottom:675.792000pt;}
.y33{bottom:676.272000pt;}
.y5e{bottom:677.232000pt;}
.y7c{bottom:684.432000pt;}
.ye{bottom:697.072000pt;}
.y5d{bottom:698.992000pt;}
.y32{bottom:710.672000pt;}
.y4c{bottom:714.520000pt;}
.y5c{bottom:718.192000pt;}
.y7b{bottom:718.832000pt;}
.yd{bottom:732.112000pt;}
.y5b{bottom:736.592000pt;}
.y31{bottom:745.232000pt;}
.y7a{bottom:754.032000pt;}
.y5a{bottom:754.992000pt;}
.y30{bottom:766.352000pt;}
.yc{bottom:767.312000pt;}
.y59{bottom:773.392000pt;}
.y79{bottom:775.792000pt;}
.y2f{bottom:787.472000pt;}
.yb{bottom:788.432000pt;}
.y58{bottom:791.792000pt;}
.y57{bottom:810.192000pt;}
.y78{bottom:810.992000pt;}
.y2e{bottom:822.032000pt;}
.ya{bottom:823.632000pt;}
.y56{bottom:828.592000pt;}
.y2d{bottom:843.152000pt;}
.y77{bottom:845.552000pt;}
.y55{bottom:846.992000pt;}
.y9{bottom:858.832000pt;}
.y2c{bottom:864.272000pt;}
.y54{bottom:865.392000pt;}
.y76{bottom:866.672000pt;}
.y8{bottom:880.592000pt;}
.y53{bottom:883.792000pt;}
.y2b{bottom:885.552000pt;}
.y75{bottom:901.072000pt;}
.y52{bottom:902.192000pt;}
.y2a{bottom:906.672000pt;}
.y7{bottom:915.152000pt;}
.y51{bottom:920.592000pt;}
.y29{bottom:927.792000pt;}
.y74{bottom:935.632000pt;}
.y6{bottom:936.272000pt;}
.y50{bottom:938.992000pt;}
.y28{bottom:948.912000pt;}
.y73{bottom:956.752000pt;}
.y5{bottom:957.392000pt;}
.y27{bottom:970.192000pt;}
.y4f{bottom:975.792000pt;}
.y4{bottom:978.672000pt;}
.y26{bottom:991.312000pt;}
.y4e{bottom:994.192000pt;}
.y25{bottom:1012.432000pt;}
.y3{bottom:1013.072000pt;}
.h8{height:33.920000pt;}
.h2{height:48.558750pt;}
.h3{height:57.375000pt;}
.h4{height:57.781250pt;}
.h9{height:67.840000pt;}
.h5{height:99.615000pt;}
.h6{height:147.200000pt;}
.h7{height:312.800000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:642.880000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.677440pt;}
.x7{left:55.680000pt;}
.x6{left:75.520000pt;}
.x3{left:83.200000pt;}
.x9{left:85.120000pt;}
.x2{left:94.561280pt;}
.xa{left:107.200000pt;}
.x8{left:131.200000pt;}
.x4{left:187.520000pt;}
.x1{left:393.127040pt;}
.x5{left:452.160000pt;}
}




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