
    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_6ab5cdc52fe927862ac8dfd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_4d893df57c91571cd57ed3eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_862aa632f0500e0759ed1532.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_66a5e905c527a053f2719faf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_16cc335f489a4bfc5b868975.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.697754;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_3b029629d1f08aaa405b6b4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895508;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);}
.v2{vertical-align:-46.092000px;}
.v3{vertical-align:-28.740000px;}
.v1{vertical-align:-9.012000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:29.256000px;}
.v5{vertical-align:36.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.416310px;}
.ls3{letter-spacing:82.951350px;}
.ls2{letter-spacing:84.470400px;}
.ls1{letter-spacing:1511.196672px;}
.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:-73.118028px;}
.ws1{word-spacing:-29.916000px;}
.ws5{word-spacing:-24.921690px;}
.ws7{word-spacing:-23.272986px;}
.ws4{word-spacing:-14.462724px;}
.ws6{word-spacing:-0.108000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:3033.246000px;}
._4{margin-left:-13.462164px;}
._8{margin-left:-11.521080px;}
._6{margin-left:-7.776000px;}
._1{margin-left:-6.588000px;}
._e{margin-left:-5.465442px;}
._7{margin-left:-4.223424px;}
._d{margin-left:-2.436558px;}
._2{margin-left:-1.296000px;}
._3{width:1.055856px;}
._c{width:2.860422px;}
._9{width:10.370334px;}
._b{width:12.439644px;}
._a{width:13.585470px;}
._5{width:900.378000px;}
._0{width:2113.657500px;}
.fc4{color:rgb(191,0,65);}
.fc3{color:rgb(42,96,153);}
.fc1{color:transparent;}
.fc2{color:rgb(178,178,178);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:52.212000px;}
.fs4{font-size:62.418000px;}
.fs3{font-size:65.988000px;}
.fsb{font-size:71.946000px;}
.fs0{font-size:84.018000px;}
.fs5{font-size:86.400000px;}
.fs9{font-size:89.970000px;}
.fs2{font-size:108.000000px;}
.fs7{font-size:126.030000px;}
.fs8{font-size:168.036000px;}
.fs6{font-size:192.018000px;}
.fs1{font-size:263.964000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.ye{bottom:23.130000px;}
.y17{bottom:35.886000px;}
.y2{bottom:40.861500px;}
.y25{bottom:43.710000px;}
.y18{bottom:43.837500px;}
.yd{bottom:46.855500px;}
.y15{bottom:48.046500px;}
.y3f{bottom:59.739000px;}
.y33{bottom:60.802500px;}
.y5{bottom:63.778500px;}
.y4a{bottom:68.158500px;}
.y58{bottom:69.178500px;}
.y4f{bottom:70.411500px;}
.y3e{bottom:84.655500px;}
.y32{bottom:85.677000px;}
.y12{bottom:90.183000px;}
.y19{bottom:90.481500px;}
.y4{bottom:94.095000px;}
.y49{bottom:98.305500px;}
.y26{bottom:98.901000px;}
.y57{bottom:99.495000px;}
.y4e{bottom:100.558500px;}
.y11{bottom:120.330000px;}
.y56{bottom:127.855500px;}
.y4d{bottom:130.833000px;}
.yb{bottom:131.428500px;}
.y3d{bottom:134.745000px;}
.y31{bottom:135.807000px;}
.y10{bottom:150.646500px;}
.y48{bottom:158.725500px;}
.y3c{bottom:159.661500px;}
.y30{bottom:160.681500px;}
.y41{bottom:160.978500px;}
.ya{bottom:161.745000px;}
.y2d{bottom:177.646500px;}
.yf{bottom:180.793500px;}
.y2f{bottom:185.725500px;}
.y55{bottom:188.277000px;}
.y21{bottom:207.495000px;}
.y2e{bottom:210.811500px;}
.y4c{bottom:219.189000px;}
.y40{bottom:233.433000px;}
.y3b{bottom:234.622500px;}
.y20{bottom:237.811500px;}
.y2c{bottom:246.783000px;}
.y54{bottom:248.739000px;}
.y5f{bottom:261.921000px;}
.y1f{bottom:267.958500px;}
.y16{bottom:270.211500px;}
.y47{bottom:279.651000px;}
.y3a{bottom:281.011500px;}
.yc{bottom:281.437500px;}
.y69{bottom:290.578500px;}
.y1e{bottom:298.233000px;}
.y53{bottom:309.202500px;}
.y46{bottom:309.925500px;}
.y2b{bottom:310.690500px;}
.y39{bottom:312.349500px;}
.y68{bottom:314.305500px;}
.y5e{bottom:322.383000px;}
.y67{bottom:337.861500px;}
.y4b{bottom:340.072500px;}
.y38{bottom:344.749500px;}
.y5d{bottom:352.530000px;}
.y9{bottom:356.272500px;}
.y1d{bottom:358.695000px;}
.y66{bottom:361.374000px;}
.y28{bottom:367.710000px;}
.y52{bottom:369.622500px;}
.y45{bottom:370.389000px;}
.y37{bottom:374.598000px;}
.y2a{bottom:380.295000px;}
.y5c{bottom:382.846500px;}
.y65{bottom:384.930000px;}
.y8{bottom:386.589000px;}
.y1c{bottom:388.842000px;}
.y27{bottom:397.855500px;}
.y51{bottom:399.939000px;}
.y44{bottom:400.705500px;}
.y64{bottom:408.655500px;}
.y5b{bottom:413.121000px;}
.y7{bottom:416.905500px;}
.y1b{bottom:419.158500px;}
.y36{bottom:429.022500px;}
.y50{bottom:430.086000px;}
.y43{bottom:430.851000px;}
.y63{bottom:432.211500px;}
.y14{bottom:433.402500px;}
.y24{bottom:435.954000px;}
.y5a{bottom:443.310000px;}
.y1a{bottom:449.305500px;}
.y29{bottom:455.428500px;}
.y62{bottom:455.725500px;}
.y35{bottom:457.086000px;}
.y13{bottom:463.549500px;}
.y23{bottom:466.101000px;}
.y59{bottom:473.583000px;}
.y61{bottom:479.451000px;}
.y34{bottom:485.149500px;}
.y42{bottom:490.549500px;}
.y22{bottom:496.374000px;}
.y60{bottom:503.007000px;}
.y3{bottom:551.437500px;}
.y6{bottom:564.193500px;}
.h6{height:47.815523px;}
.hd{height:52.132746px;}
.h3{height:55.998325px;}
.h10{height:60.880230px;}
.hc{height:65.193105px;}
.hb{height:67.089305px;}
.h5{height:78.257812px;}
.hf{height:81.114668px;}
.he{height:81.282668px;}
.h8{height:92.878043px;}
.h9{height:93.020461px;}
.h7{height:93.046043px;}
.ha{height:93.530461px;}
.h4{height:191.270789px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x1{left:59.569500px;}
.x7{left:61.653000px;}
.x27{left:64.035000px;}
.x1c{left:72.283500px;}
.x29{left:76.068000px;}
.x1a{left:77.386500px;}
.x26{left:78.916500px;}
.x1b{left:88.653000px;}
.x11{left:91.800000px;}
.x32{left:98.986500px;}
.x2a{left:118.035000px;}
.x1d{left:123.307500px;}
.x20{left:131.386500px;}
.x2d{left:132.916500px;}
.x16{left:133.936500px;}
.x17{left:155.112000px;}
.xb{left:156.430500px;}
.x5{left:165.613500px;}
.x28{left:172.035000px;}
.x10{left:174.586500px;}
.xd{left:175.648500px;}
.x25{left:187.341000px;}
.x1e{left:200.268000px;}
.x2c{left:207.751500px;}
.x1f{left:218.848500px;}
.x13{left:231.604500px;}
.x15{left:287.263500px;}
.x2{left:290.707500px;}
.x30{left:306.736500px;}
.x31{left:426.303000px;}
.x3{left:456.747000px;}
.xe{left:478.219500px;}
.x8{left:485.404500px;}
.x4{left:526.648500px;}
.x6{left:550.630500px;}
.x12{left:567.468000px;}
.x2b{left:580.351500px;}
.xa{left:587.835000px;}
.xc{left:591.916500px;}
.x19{left:605.863500px;}
.x22{left:626.230500px;}
.x14{left:634.648500px;}
.x23{left:680.230500px;}
.x2f{left:859.492500px;}
.x21{left:860.556000px;}
.x2e{left:868.336500px;}
.x24{left:964.219500px;}
.x9{left:1032.463500px;}
.x18{left:1060.780500px;}
.xf{left:1077.916500px;}
@media print{
.v2{vertical-align:-40.970667pt;}
.v3{vertical-align:-25.546667pt;}
.v1{vertical-align:-8.010667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.005333pt;}
.v5{vertical-align:32.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.370053pt;}
.ls3{letter-spacing:73.734533pt;}
.ls2{letter-spacing:75.084800pt;}
.ls1{letter-spacing:1343.285931pt;}
.ws0{word-spacing:-64.993803pt;}
.ws1{word-spacing:-26.592000pt;}
.ws5{word-spacing:-22.152613pt;}
.ws7{word-spacing:-20.687099pt;}
.ws4{word-spacing:-12.855755pt;}
.ws6{word-spacing:-0.096000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:2696.218667pt;}
._4{margin-left:-11.966368pt;}
._8{margin-left:-10.240960pt;}
._6{margin-left:-6.912000pt;}
._1{margin-left:-5.856000pt;}
._e{margin-left:-4.858171pt;}
._7{margin-left:-3.754155pt;}
._d{margin-left:-2.165829pt;}
._2{margin-left:-1.152000pt;}
._3{width:0.938539pt;}
._c{width:2.542597pt;}
._9{width:9.218075pt;}
._b{width:11.057461pt;}
._a{width:12.075973pt;}
._5{width:800.336000pt;}
._0{width:1878.806667pt;}
.fsa{font-size:46.410667pt;}
.fs4{font-size:55.482667pt;}
.fs3{font-size:58.656000pt;}
.fsb{font-size:63.952000pt;}
.fs0{font-size:74.682667pt;}
.fs5{font-size:76.800000pt;}
.fs9{font-size:79.973333pt;}
.fs2{font-size:96.000000pt;}
.fs7{font-size:112.026667pt;}
.fs8{font-size:149.365333pt;}
.fs6{font-size:170.682667pt;}
.fs1{font-size:234.634667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.ye{bottom:20.560000pt;}
.y17{bottom:31.898667pt;}
.y2{bottom:36.321333pt;}
.y25{bottom:38.853333pt;}
.y18{bottom:38.966667pt;}
.yd{bottom:41.649333pt;}
.y15{bottom:42.708000pt;}
.y3f{bottom:53.101333pt;}
.y33{bottom:54.046667pt;}
.y5{bottom:56.692000pt;}
.y4a{bottom:60.585333pt;}
.y58{bottom:61.492000pt;}
.y4f{bottom:62.588000pt;}
.y3e{bottom:75.249333pt;}
.y32{bottom:76.157333pt;}
.y12{bottom:80.162667pt;}
.y19{bottom:80.428000pt;}
.y4{bottom:83.640000pt;}
.y49{bottom:87.382667pt;}
.y26{bottom:87.912000pt;}
.y57{bottom:88.440000pt;}
.y4e{bottom:89.385333pt;}
.y11{bottom:106.960000pt;}
.y56{bottom:113.649333pt;}
.y4d{bottom:116.296000pt;}
.yb{bottom:116.825333pt;}
.y3d{bottom:119.773333pt;}
.y31{bottom:120.717333pt;}
.y10{bottom:133.908000pt;}
.y48{bottom:141.089333pt;}
.y3c{bottom:141.921333pt;}
.y30{bottom:142.828000pt;}
.y41{bottom:143.092000pt;}
.ya{bottom:143.773333pt;}
.y2d{bottom:157.908000pt;}
.yf{bottom:160.705333pt;}
.y2f{bottom:165.089333pt;}
.y55{bottom:167.357333pt;}
.y21{bottom:184.440000pt;}
.y2e{bottom:187.388000pt;}
.y4c{bottom:194.834667pt;}
.y40{bottom:207.496000pt;}
.y3b{bottom:208.553333pt;}
.y20{bottom:211.388000pt;}
.y2c{bottom:219.362667pt;}
.y54{bottom:221.101333pt;}
.y5f{bottom:232.818667pt;}
.y1f{bottom:238.185333pt;}
.y16{bottom:240.188000pt;}
.y47{bottom:248.578667pt;}
.y3a{bottom:249.788000pt;}
.yc{bottom:250.166667pt;}
.y69{bottom:258.292000pt;}
.y1e{bottom:265.096000pt;}
.y53{bottom:274.846667pt;}
.y46{bottom:275.489333pt;}
.y2b{bottom:276.169333pt;}
.y39{bottom:277.644000pt;}
.y68{bottom:279.382667pt;}
.y5e{bottom:286.562667pt;}
.y67{bottom:300.321333pt;}
.y4b{bottom:302.286667pt;}
.y38{bottom:306.444000pt;}
.y5d{bottom:313.360000pt;}
.y9{bottom:316.686667pt;}
.y1d{bottom:318.840000pt;}
.y66{bottom:321.221333pt;}
.y28{bottom:326.853333pt;}
.y52{bottom:328.553333pt;}
.y45{bottom:329.234667pt;}
.y37{bottom:332.976000pt;}
.y2a{bottom:338.040000pt;}
.y5c{bottom:340.308000pt;}
.y65{bottom:342.160000pt;}
.y8{bottom:343.634667pt;}
.y1c{bottom:345.637333pt;}
.y27{bottom:353.649333pt;}
.y51{bottom:355.501333pt;}
.y44{bottom:356.182667pt;}
.y64{bottom:363.249333pt;}
.y5b{bottom:367.218667pt;}
.y7{bottom:370.582667pt;}
.y1b{bottom:372.585333pt;}
.y36{bottom:381.353333pt;}
.y50{bottom:382.298667pt;}
.y43{bottom:382.978667pt;}
.y63{bottom:384.188000pt;}
.y14{bottom:385.246667pt;}
.y24{bottom:387.514667pt;}
.y5a{bottom:394.053333pt;}
.y1a{bottom:399.382667pt;}
.y29{bottom:404.825333pt;}
.y62{bottom:405.089333pt;}
.y35{bottom:406.298667pt;}
.y13{bottom:412.044000pt;}
.y23{bottom:414.312000pt;}
.y59{bottom:420.962667pt;}
.y61{bottom:426.178667pt;}
.y34{bottom:431.244000pt;}
.y42{bottom:436.044000pt;}
.y22{bottom:441.221333pt;}
.y60{bottom:447.117333pt;}
.y3{bottom:490.166667pt;}
.y6{bottom:501.505333pt;}
.h6{height:42.502687pt;}
.hd{height:46.340219pt;}
.h3{height:49.776289pt;}
.h10{height:54.115760pt;}
.hc{height:57.949427pt;}
.hb{height:59.634937pt;}
.h5{height:69.562500pt;}
.hf{height:72.101927pt;}
.he{height:72.251260pt;}
.h8{height:82.558260pt;}
.h9{height:82.684854pt;}
.h7{height:82.707594pt;}
.ha{height:83.138187pt;}
.h4{height:170.018479pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x1{left:52.950667pt;}
.x7{left:54.802667pt;}
.x27{left:56.920000pt;}
.x1c{left:64.252000pt;}
.x29{left:67.616000pt;}
.x1a{left:68.788000pt;}
.x26{left:70.148000pt;}
.x1b{left:78.802667pt;}
.x11{left:81.600000pt;}
.x32{left:87.988000pt;}
.x2a{left:104.920000pt;}
.x1d{left:109.606667pt;}
.x20{left:116.788000pt;}
.x2d{left:118.148000pt;}
.x16{left:119.054667pt;}
.x17{left:137.877333pt;}
.xb{left:139.049333pt;}
.x5{left:147.212000pt;}
.x28{left:152.920000pt;}
.x10{left:155.188000pt;}
.xd{left:156.132000pt;}
.x25{left:166.525333pt;}
.x1e{left:178.016000pt;}
.x2c{left:184.668000pt;}
.x1f{left:194.532000pt;}
.x13{left:205.870667pt;}
.x15{left:255.345333pt;}
.x2{left:258.406667pt;}
.x30{left:272.654667pt;}
.x31{left:378.936000pt;}
.x3{left:405.997333pt;}
.xe{left:425.084000pt;}
.x8{left:431.470667pt;}
.x4{left:468.132000pt;}
.x6{left:489.449333pt;}
.x12{left:504.416000pt;}
.x2b{left:515.868000pt;}
.xa{left:522.520000pt;}
.xc{left:526.148000pt;}
.x19{left:538.545333pt;}
.x22{left:556.649333pt;}
.x14{left:564.132000pt;}
.x23{left:604.649333pt;}
.x2f{left:763.993333pt;}
.x21{left:764.938667pt;}
.x2e{left:771.854667pt;}
.x24{left:857.084000pt;}
.x9{left:917.745333pt;}
.x18{left:942.916000pt;}
.xf{left:958.148000pt;}
}




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