
    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_a8982752d3cd6bcfc11d5e57.woff')format("woff");}.ff1{font-family:ff1;line-height:1.123047;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_296ea7855288823c23dc2d48.woff')format("woff");}.ff2{font-family:ff2;line-height:0.923340;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_ab237d7f8474c1934700b55a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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);}
.v1{vertical-align:-77.039978px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.049631px;}
.ls0{letter-spacing:0.053947px;}
.ls3{letter-spacing:68.416317px;}
.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:-17.982338px;}
.ws3{word-spacing:-16.543688px;}
.ws2{word-spacing:-14.206050px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-5.248952px;}
._1{margin-left:-4.123703px;}
._0{margin-left:-2.945502px;}
._2{margin-left:-1.514830px;}
._3{width:1.156307px;}
._4{width:2.284319px;}
._5{width:3.329528px;}
._9{width:5.284908px;}
._8{width:6.481486px;}
._7{width:7.571407px;}
._6{width:8.721996px;}
._11{width:9.730411px;}
._c{width:11.114208px;}
._a{width:12.444059px;}
._f{width:13.451631px;}
._e{width:15.126236px;}
._d{width:16.327962px;}
._15{width:18.141710px;}
._12{width:19.367539px;}
._10{width:21.741208px;}
._14{width:22.783903px;}
._16{width:23.833459px;}
._13{width:28.214849px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:56.824200px;}
.fs3{font-size:66.174750px;}
.fs0{font-size:71.929350px;}
.fs1{font-size:84.157196px;}
.y0{bottom:0.000000px;}
.y3{bottom:30.960022px;}
.y2{bottom:51.120002px;}
.y64{bottom:94.139992px;}
.y5a{bottom:95.759994px;}
.y8a{bottom:98.639992px;}
.y24{bottom:98.820030px;}
.y47{bottom:100.259994px;}
.y63{bottom:112.139992px;}
.y59{bottom:115.379998px;}
.y89{bottom:116.639992px;}
.y23{bottom:118.259994px;}
.y46{bottom:119.879998px;}
.y62{bottom:130.139992px;}
.y88{bottom:134.639992px;}
.y58{bottom:134.820030px;}
.y22{bottom:137.879998px;}
.y45{bottom:139.320030px;}
.y61{bottom:148.139992px;}
.y87{bottom:152.639992px;}
.y57{bottom:154.259994px;}
.y21{bottom:157.320030px;}
.y44{bottom:158.759994px;}
.y60{bottom:166.139992px;}
.y86{bottom:170.639992px;}
.y56{bottom:173.879998px;}
.y20{bottom:176.759994px;}
.y43{bottom:178.379998px;}
.y5f{bottom:184.139992px;}
.y85{bottom:188.639992px;}
.y55{bottom:193.320030px;}
.y1f{bottom:196.379998px;}
.y42{bottom:197.820030px;}
.y5e{bottom:202.139992px;}
.y84{bottom:206.639992px;}
.y54{bottom:212.759994px;}
.y1e{bottom:215.820030px;}
.y41{bottom:217.259994px;}
.y5d{bottom:220.139992px;}
.y83{bottom:224.639992px;}
.y53{bottom:232.379998px;}
.y1d{bottom:235.259994px;}
.y40{bottom:236.879998px;}
.y5c{bottom:238.320030px;}
.y82{bottom:242.639992px;}
.y52{bottom:251.820030px;}
.y1c{bottom:254.879998px;}
.y3f{bottom:256.320030px;}
.y5b{bottom:257.580025px;}
.y81{bottom:260.639992px;}
.y51{bottom:271.259994px;}
.y1b{bottom:274.320030px;}
.y3e{bottom:275.759994px;}
.y80{bottom:278.639992px;}
.y50{bottom:290.879998px;}
.y1a{bottom:293.759994px;}
.y3d{bottom:295.379998px;}
.y7f{bottom:296.639992px;}
.y4f{bottom:310.319995px;}
.y19{bottom:313.379998px;}
.y7e{bottom:314.639992px;}
.y3c{bottom:314.819995px;}
.y4e{bottom:329.759994px;}
.y7d{bottom:332.639992px;}
.y18{bottom:332.819995px;}
.y3b{bottom:334.259994px;}
.y4d{bottom:349.379998px;}
.y7c{bottom:350.639992px;}
.y17{bottom:352.259994px;}
.y3a{bottom:353.879998px;}
.y7b{bottom:368.639992px;}
.y4c{bottom:368.819995px;}
.y16{bottom:371.879998px;}
.y39{bottom:373.319995px;}
.y7a{bottom:386.639992px;}
.y90{bottom:388.079990px;}
.y4b{bottom:388.259994px;}
.y15{bottom:391.319995px;}
.y38{bottom:392.759994px;}
.y79{bottom:404.639992px;}
.y4a{bottom:407.879998px;}
.y14{bottom:410.759994px;}
.y37{bottom:412.379998px;}
.y78{bottom:422.639992px;}
.y49{bottom:427.319995px;}
.y8f{bottom:430.019989px;}
.y13{bottom:430.379998px;}
.y36{bottom:431.819995px;}
.y77{bottom:440.639992px;}
.y48{bottom:446.939999px;}
.y8e{bottom:448.019989px;}
.y12{bottom:449.819995px;}
.y35{bottom:451.259994px;}
.y76{bottom:458.639992px;}
.y8d{bottom:466.019989px;}
.y11{bottom:469.259994px;}
.y34{bottom:470.879998px;}
.y75{bottom:476.639992px;}
.y8c{bottom:488.519989px;}
.y10{bottom:488.879998px;}
.y33{bottom:490.319995px;}
.y74{bottom:494.639992px;}
.yf{bottom:508.319995px;}
.y32{bottom:509.759994px;}
.y8b{bottom:511.379998px;}
.y73{bottom:512.639992px;}
.ye{bottom:527.759994px;}
.y31{bottom:529.379998px;}
.y72{bottom:530.639992px;}
.yd{bottom:547.379998px;}
.y71{bottom:548.639992px;}
.y30{bottom:548.819996px;}
.y70{bottom:566.639992px;}
.yc{bottom:566.819996px;}
.y2f{bottom:568.259994px;}
.y6f{bottom:584.639992px;}
.yb{bottom:586.259994px;}
.y2e{bottom:587.879998px;}
.y6e{bottom:602.639992px;}
.ya{bottom:605.879998px;}
.y2d{bottom:607.319996px;}
.y6d{bottom:620.639992px;}
.y9{bottom:625.319996px;}
.y2c{bottom:626.759994px;}
.y6c{bottom:638.639992px;}
.y8{bottom:644.759994px;}
.y2b{bottom:646.379998px;}
.y6b{bottom:656.639992px;}
.y7{bottom:664.379998px;}
.y2a{bottom:665.819996px;}
.y6a{bottom:674.639992px;}
.y6{bottom:684.180004px;}
.y29{bottom:685.259994px;}
.y69{bottom:692.639992px;}
.y28{bottom:704.879998px;}
.y5{bottom:705.060001px;}
.y68{bottom:710.639992px;}
.y27{bottom:724.319996px;}
.y4{bottom:726.120002px;}
.y67{bottom:728.640000px;}
.y26{bottom:743.760003px;}
.y66{bottom:746.640000px;}
.y25{bottom:763.379998px;}
.y65{bottom:764.640000px;}
.y1{bottom:805.860000px;}
.h4{height:44.816591px;}
.h3{height:48.713871px;}
.h5{height:56.901238px;}
.h2{height:56.995132px;}
.h1{height:61.849407px;}
.h0{height:864.000000px;}
.w0{width:540.000000px;}
.x0{left:0.000000px;}
.xb{left:63.899999px;}
.x7{left:85.140000px;}
.x6{left:106.379998px;}
.x4{left:160.379998px;}
.xc{left:163.080008px;}
.x8{left:195.840002px;}
.x5{left:237.780001px;}
.x9{left:263.699993px;}
.xa{left:276.479994px;}
.x2{left:284.939999px;}
.x1{left:287.099997px;}
.x3{left:297.720017px;}
@media print{
.v1{vertical-align:-68.479980pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.044117pt;}
.ls0{letter-spacing:0.047953pt;}
.ls3{letter-spacing:60.814504pt;}
.ws1{word-spacing:-15.984300pt;}
.ws3{word-spacing:-14.705500pt;}
.ws2{word-spacing:-12.627600pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-4.665735pt;}
._1{margin-left:-3.665513pt;}
._0{margin-left:-2.618224pt;}
._2{margin-left:-1.346515pt;}
._3{width:1.027828pt;}
._4{width:2.030506pt;}
._5{width:2.959580pt;}
._9{width:4.697696pt;}
._8{width:5.761321pt;}
._7{width:6.730140pt;}
._6{width:7.752885pt;}
._11{width:8.649254pt;}
._c{width:9.879296pt;}
._a{width:11.061385pt;}
._f{width:11.957006pt;}
._e{width:13.445543pt;}
._d{width:14.513744pt;}
._15{width:16.125964pt;}
._12{width:17.215591pt;}
._10{width:19.325518pt;}
._14{width:20.252358pt;}
._16{width:21.185297pt;}
._13{width:25.079866pt;}
.fs2{font-size:50.510400pt;}
.fs3{font-size:58.822000pt;}
.fs0{font-size:63.937200pt;}
.fs1{font-size:74.806396pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:27.520020pt;}
.y2{bottom:45.440002pt;}
.y64{bottom:83.679993pt;}
.y5a{bottom:85.119995pt;}
.y8a{bottom:87.679993pt;}
.y24{bottom:87.840027pt;}
.y47{bottom:89.119995pt;}
.y63{bottom:99.679993pt;}
.y59{bottom:102.559998pt;}
.y89{bottom:103.679993pt;}
.y23{bottom:105.119995pt;}
.y46{bottom:106.559998pt;}
.y62{bottom:115.679993pt;}
.y88{bottom:119.679993pt;}
.y58{bottom:119.840027pt;}
.y22{bottom:122.559998pt;}
.y45{bottom:123.840027pt;}
.y61{bottom:131.679993pt;}
.y87{bottom:135.679993pt;}
.y57{bottom:137.119995pt;}
.y21{bottom:139.840027pt;}
.y44{bottom:141.119995pt;}
.y60{bottom:147.679993pt;}
.y86{bottom:151.679993pt;}
.y56{bottom:154.559998pt;}
.y20{bottom:157.119995pt;}
.y43{bottom:158.559998pt;}
.y5f{bottom:163.679993pt;}
.y85{bottom:167.679993pt;}
.y55{bottom:171.840027pt;}
.y1f{bottom:174.559998pt;}
.y42{bottom:175.840027pt;}
.y5e{bottom:179.679993pt;}
.y84{bottom:183.679993pt;}
.y54{bottom:189.119995pt;}
.y1e{bottom:191.840027pt;}
.y41{bottom:193.119995pt;}
.y5d{bottom:195.679993pt;}
.y83{bottom:199.679993pt;}
.y53{bottom:206.559998pt;}
.y1d{bottom:209.119995pt;}
.y40{bottom:210.559998pt;}
.y5c{bottom:211.840027pt;}
.y82{bottom:215.679993pt;}
.y52{bottom:223.840027pt;}
.y1c{bottom:226.559998pt;}
.y3f{bottom:227.840027pt;}
.y5b{bottom:228.960022pt;}
.y81{bottom:231.679993pt;}
.y51{bottom:241.119995pt;}
.y1b{bottom:243.840027pt;}
.y3e{bottom:245.119995pt;}
.y80{bottom:247.679993pt;}
.y50{bottom:258.559998pt;}
.y1a{bottom:261.119995pt;}
.y3d{bottom:262.559998pt;}
.y7f{bottom:263.679993pt;}
.y4f{bottom:275.839996pt;}
.y19{bottom:278.559998pt;}
.y7e{bottom:279.679993pt;}
.y3c{bottom:279.839996pt;}
.y4e{bottom:293.119995pt;}
.y7d{bottom:295.679993pt;}
.y18{bottom:295.839996pt;}
.y3b{bottom:297.119995pt;}
.y4d{bottom:310.559998pt;}
.y7c{bottom:311.679993pt;}
.y17{bottom:313.119995pt;}
.y3a{bottom:314.559998pt;}
.y7b{bottom:327.679993pt;}
.y4c{bottom:327.839996pt;}
.y16{bottom:330.559998pt;}
.y39{bottom:331.839996pt;}
.y7a{bottom:343.679993pt;}
.y90{bottom:344.959991pt;}
.y4b{bottom:345.119995pt;}
.y15{bottom:347.839996pt;}
.y38{bottom:349.119995pt;}
.y79{bottom:359.679993pt;}
.y4a{bottom:362.559998pt;}
.y14{bottom:365.119995pt;}
.y37{bottom:366.559998pt;}
.y78{bottom:375.679993pt;}
.y49{bottom:379.839996pt;}
.y8f{bottom:382.239990pt;}
.y13{bottom:382.559998pt;}
.y36{bottom:383.839996pt;}
.y77{bottom:391.679993pt;}
.y48{bottom:397.279999pt;}
.y8e{bottom:398.239990pt;}
.y12{bottom:399.839996pt;}
.y35{bottom:401.119995pt;}
.y76{bottom:407.679993pt;}
.y8d{bottom:414.239990pt;}
.y11{bottom:417.119995pt;}
.y34{bottom:418.559998pt;}
.y75{bottom:423.679993pt;}
.y8c{bottom:434.239990pt;}
.y10{bottom:434.559998pt;}
.y33{bottom:435.839996pt;}
.y74{bottom:439.679993pt;}
.yf{bottom:451.839996pt;}
.y32{bottom:453.119995pt;}
.y8b{bottom:454.559998pt;}
.y73{bottom:455.679993pt;}
.ye{bottom:469.119995pt;}
.y31{bottom:470.559998pt;}
.y72{bottom:471.679993pt;}
.yd{bottom:486.559998pt;}
.y71{bottom:487.679993pt;}
.y30{bottom:487.839996pt;}
.y70{bottom:503.679993pt;}
.yc{bottom:503.839996pt;}
.y2f{bottom:505.119995pt;}
.y6f{bottom:519.679993pt;}
.yb{bottom:521.119995pt;}
.y2e{bottom:522.559998pt;}
.y6e{bottom:535.679993pt;}
.ya{bottom:538.559998pt;}
.y2d{bottom:539.839996pt;}
.y6d{bottom:551.679993pt;}
.y9{bottom:555.839996pt;}
.y2c{bottom:557.119995pt;}
.y6c{bottom:567.679993pt;}
.y8{bottom:573.119995pt;}
.y2b{bottom:574.559998pt;}
.y6b{bottom:583.679993pt;}
.y7{bottom:590.559998pt;}
.y2a{bottom:591.839996pt;}
.y6a{bottom:599.679993pt;}
.y6{bottom:608.160004pt;}
.y29{bottom:609.119995pt;}
.y69{bottom:615.679993pt;}
.y28{bottom:626.559998pt;}
.y5{bottom:626.720001pt;}
.y68{bottom:631.679993pt;}
.y27{bottom:643.839996pt;}
.y4{bottom:645.440002pt;}
.y67{bottom:647.680000pt;}
.y26{bottom:661.120003pt;}
.y66{bottom:663.680000pt;}
.y25{bottom:678.559998pt;}
.y65{bottom:679.680000pt;}
.y1{bottom:716.320000pt;}
.h4{height:39.836970pt;}
.h3{height:43.301219pt;}
.h5{height:50.578878pt;}
.h2{height:50.662339pt;}
.h1{height:54.977251pt;}
.h0{height:768.000000pt;}
.w0{width:480.000000pt;}
.x0{left:0.000000pt;}
.xb{left:56.799999pt;}
.x7{left:75.680000pt;}
.x6{left:94.559998pt;}
.x4{left:142.559998pt;}
.xc{left:144.960007pt;}
.x8{left:174.080002pt;}
.x5{left:211.360001pt;}
.x9{left:234.399994pt;}
.xa{left:245.759995pt;}
.x2{left:253.279999pt;}
.x1{left:255.199997pt;}
.x3{left:264.640015pt;}
}




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