
    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_a15a03159d3e43bd2a8c4aed.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_c6fd036741116e2790455ded.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_60d236f12e6ce3bbb0d3c288.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001953;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_971dd8d4755521d0cdc502ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_e2a7180ea430c2b5f52b7545.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_d564e10a4b59ff1970128c9d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_b51cc949a1892a5c794b4fab.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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:ff8;src:url('chunks/assets/font_789a5df5a1ac1d442b18028e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001953;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:ff9;src:url('chunks/assets/font_d5f6ee3f7f77c1d4d8050a34.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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;}
.ls9{letter-spacing:-3.240000px;}
.lsa{letter-spacing:-2.940000px;}
.lsb{letter-spacing:-1.200000px;}
.lsc{letter-spacing:-0.360000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls3{letter-spacing:1.080000px;}
.ls8{letter-spacing:3.792000px;}
.ls0{letter-spacing:9.600000px;}
.ls6{letter-spacing:15.876000px;}
.ls7{letter-spacing:62.076000px;}
.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;}
}
.ws2{word-spacing:-81.060000px;}
.ws1{word-spacing:-34.860000px;}
.ws5{word-spacing:-13.284000px;}
.ws0{word-spacing:-9.792000px;}
.wsa{word-spacing:-9.774000px;}
.ws4{word-spacing:-4.896000px;}
.ws3{word-spacing:-3.840000px;}
.wsc{word-spacing:-1.080000px;}
.ws7{word-spacing:-1.008000px;}
.ws9{word-spacing:-0.600000px;}
.wsd{word-spacing:-0.540000px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:1.200000px;}
.wsb{word-spacing:3.780000px;}
._4{margin-left:-6.144000px;}
._b{margin-left:-4.767600px;}
._3{margin-left:-3.049200px;}
._0{margin-left:-1.708800px;}
._1{width:1.112400px;}
._c{width:2.219400px;}
._2{width:3.258000px;}
._6{width:4.264200px;}
._8{width:5.810400px;}
._7{width:7.295400px;}
._a{width:8.502000px;}
._9{width:9.644400px;}
._5{width:12.487200px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:84.000000px;}
.fs7{font-size:90.000000px;}
.fs1{font-size:96.000000px;}
.fs5{font-size:120.000000px;}
.fs2{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:66.998100px;}
.y6{bottom:80.498100px;}
.y12{bottom:88.334700px;}
.y5{bottom:93.998100px;}
.y11{bottom:101.834700px;}
.y4{bottom:114.998100px;}
.y10{bottom:115.334700px;}
.y28{bottom:196.334700px;}
.y27{bottom:209.834700px;}
.y3d{bottom:223.334700px;}
.y26{bottom:236.834700px;}
.y25{bottom:250.334700px;}
.y24{bottom:263.834700px;}
.y23{bottom:277.334700px;}
.y22{bottom:290.834700px;}
.y21{bottom:304.334700px;}
.y3c{bottom:317.834700px;}
.y20{bottom:331.334700px;}
.y1f{bottom:344.834700px;}
.y1e{bottom:358.334700px;}
.y1d{bottom:371.834700px;}
.y3b{bottom:385.334700px;}
.y1c{bottom:398.834700px;}
.y1b{bottom:412.334700px;}
.y1a{bottom:425.834700px;}
.y19{bottom:439.334700px;}
.y3a{bottom:452.834700px;}
.y39{bottom:479.834700px;}
.y38{bottom:493.334700px;}
.y48{bottom:503.615250px;}
.y37{bottom:506.834700px;}
.y47{bottom:518.015250px;}
.y36{bottom:520.334700px;}
.y35{bottom:533.834700px;}
.y46{bottom:540.395250px;}
.y34{bottom:547.334700px;}
.y33{bottom:560.834700px;}
.y45{bottom:570.155250px;}
.y32{bottom:574.334700px;}
.y31{bottom:587.834700px;}
.y44{bottom:592.715250px;}
.y43{bottom:607.115250px;}
.y30{bottom:614.834700px;}
.y42{bottom:622.475250px;}
.y2f{bottom:628.334700px;}
.y41{bottom:636.875250px;}
.y2e{bottom:641.834700px;}
.y40{bottom:652.235250px;}
.y2d{bottom:655.334700px;}
.y3f{bottom:666.635250px;}
.y2c{bottom:668.834700px;}
.y2b{bottom:682.334700px;}
.y3e{bottom:689.015250px;}
.y2a{bottom:695.834700px;}
.y29{bottom:722.834700px;}
.y18{bottom:736.334700px;}
.y17{bottom:749.834700px;}
.y16{bottom:763.334700px;}
.y15{bottom:776.834700px;}
.yc{bottom:844.334550px;}
.yb{bottom:857.834550px;}
.ya{bottom:871.334550px;}
.y13{bottom:925.334700px;}
.y9{bottom:952.334700px;}
.y3{bottom:1113.094500px;}
.y14{bottom:1113.803250px;}
.yf{bottom:1146.590700px;}
.y2{bottom:1153.417350px;}
.ye{bottom:1154.087700px;}
.yd{bottom:1161.584700px;}
.y8{bottom:1193.182200px;}
.y1{bottom:1198.559100px;}
.h6{height:29.689453px;}
.h2{height:39.585938px;}
.ha{height:44.534180px;}
.h8{height:49.482422px;}
.h5{height:69.275391px;}
.h9{height:74.223633px;}
.h3{height:79.171875px;}
.h7{height:98.964844px;}
.h4{height:158.343750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.133850px;}
.x1{left:76.535400px;}
.xb{left:85.385400px;}
.x8{left:106.299150px;}
.x7{left:446.456700px;}
.x9{left:461.335650px;}
.xa{left:491.103150px;}
.x3{left:622.913400px;}
.x6{left:733.676850px;}
.x5{left:737.510850px;}
.x4{left:742.811850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.880000pt;}
.lsa{letter-spacing:-2.613333pt;}
.lsb{letter-spacing:-1.066667pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.960000pt;}
.ls8{letter-spacing:3.370667pt;}
.ls0{letter-spacing:8.533333pt;}
.ls6{letter-spacing:14.112000pt;}
.ls7{letter-spacing:55.178667pt;}
.ws2{word-spacing:-72.053333pt;}
.ws1{word-spacing:-30.986667pt;}
.ws5{word-spacing:-11.808000pt;}
.ws0{word-spacing:-8.704000pt;}
.wsa{word-spacing:-8.688000pt;}
.ws4{word-spacing:-4.352000pt;}
.ws3{word-spacing:-3.413333pt;}
.wsc{word-spacing:-0.960000pt;}
.ws7{word-spacing:-0.896000pt;}
.ws9{word-spacing:-0.533333pt;}
.wsd{word-spacing:-0.480000pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:1.066667pt;}
.wsb{word-spacing:3.360000pt;}
._4{margin-left:-5.461333pt;}
._b{margin-left:-4.237867pt;}
._3{margin-left:-2.710400pt;}
._0{margin-left:-1.518933pt;}
._1{width:0.988800pt;}
._c{width:1.972800pt;}
._2{width:2.896000pt;}
._6{width:3.790400pt;}
._8{width:5.164800pt;}
._7{width:6.484800pt;}
._a{width:7.557333pt;}
._9{width:8.572800pt;}
._5{width:11.099733pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:74.666667pt;}
.fs7{font-size:80.000000pt;}
.fs1{font-size:85.333333pt;}
.fs5{font-size:106.666667pt;}
.fs2{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:59.553867pt;}
.y6{bottom:71.553867pt;}
.y12{bottom:78.519733pt;}
.y5{bottom:83.553867pt;}
.y11{bottom:90.519733pt;}
.y4{bottom:102.220533pt;}
.y10{bottom:102.519733pt;}
.y28{bottom:174.519733pt;}
.y27{bottom:186.519733pt;}
.y3d{bottom:198.519733pt;}
.y26{bottom:210.519733pt;}
.y25{bottom:222.519733pt;}
.y24{bottom:234.519733pt;}
.y23{bottom:246.519733pt;}
.y22{bottom:258.519733pt;}
.y21{bottom:270.519733pt;}
.y3c{bottom:282.519733pt;}
.y20{bottom:294.519733pt;}
.y1f{bottom:306.519733pt;}
.y1e{bottom:318.519733pt;}
.y1d{bottom:330.519733pt;}
.y3b{bottom:342.519733pt;}
.y1c{bottom:354.519733pt;}
.y1b{bottom:366.519733pt;}
.y1a{bottom:378.519733pt;}
.y19{bottom:390.519733pt;}
.y3a{bottom:402.519733pt;}
.y39{bottom:426.519733pt;}
.y38{bottom:438.519733pt;}
.y48{bottom:447.658000pt;}
.y37{bottom:450.519733pt;}
.y47{bottom:460.458000pt;}
.y36{bottom:462.519733pt;}
.y35{bottom:474.519733pt;}
.y46{bottom:480.351333pt;}
.y34{bottom:486.519733pt;}
.y33{bottom:498.519733pt;}
.y45{bottom:506.804667pt;}
.y32{bottom:510.519733pt;}
.y31{bottom:522.519733pt;}
.y44{bottom:526.858000pt;}
.y43{bottom:539.658000pt;}
.y30{bottom:546.519733pt;}
.y42{bottom:553.311333pt;}
.y2f{bottom:558.519733pt;}
.y41{bottom:566.111333pt;}
.y2e{bottom:570.519733pt;}
.y40{bottom:579.764667pt;}
.y2d{bottom:582.519733pt;}
.y3f{bottom:592.564667pt;}
.y2c{bottom:594.519733pt;}
.y2b{bottom:606.519733pt;}
.y3e{bottom:612.458000pt;}
.y2a{bottom:618.519733pt;}
.y29{bottom:642.519733pt;}
.y18{bottom:654.519733pt;}
.y17{bottom:666.519733pt;}
.y16{bottom:678.519733pt;}
.y15{bottom:690.519733pt;}
.yc{bottom:750.519600pt;}
.yb{bottom:762.519600pt;}
.ya{bottom:774.519600pt;}
.y13{bottom:822.519733pt;}
.y9{bottom:846.519733pt;}
.y3{bottom:989.417333pt;}
.y14{bottom:990.047333pt;}
.yf{bottom:1019.191733pt;}
.y2{bottom:1025.259867pt;}
.ye{bottom:1025.855733pt;}
.yd{bottom:1032.519733pt;}
.y8{bottom:1060.606400pt;}
.y1{bottom:1065.385867pt;}
.h6{height:26.390625pt;}
.h2{height:35.187500pt;}
.ha{height:39.585938pt;}
.h8{height:43.984375pt;}
.h5{height:61.578125pt;}
.h9{height:65.976562pt;}
.h3{height:70.375000pt;}
.h7{height:87.968750pt;}
.h4{height:140.750000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.007867pt;}
.x1{left:68.031467pt;}
.xb{left:75.898133pt;}
.x8{left:94.488133pt;}
.x7{left:396.850400pt;}
.x9{left:410.076133pt;}
.xa{left:436.536133pt;}
.x3{left:553.700800pt;}
.x6{left:652.157200pt;}
.x5{left:655.565200pt;}
.x4{left:660.277200pt;}
}




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