
    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_7f4affe1297d059f39e2fc7d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_7b50606ddfd430d67b8137d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.180000;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_004458c38ed83e2c17d7fb05.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_4d7ff0d9fcb3ec7de0139d1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_b412ee122690d55de7222e16.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051758;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_7ec3aac09cfe39ed73aadbf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912500;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_2cd2fa9ed34d5fbe6d92bf0d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913000;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_e4e7903d244bd405b56de0d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.820801;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_34fc176ba86b36098cefafff.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900391;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:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls4{letter-spacing:-29.520000px;}
.ls3{letter-spacing:-0.972000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.372600px;}
.ls5{letter-spacing:0.540000px;}
.ls0{letter-spacing:2.016000px;}
.ls1{letter-spacing:2.088000px;}
.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:-120.000000px;}
.ws1{word-spacing:-119.028000px;}
.ws3{word-spacing:-72.000000px;}
.ws8{word-spacing:-54.000000px;}
.ws7{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.494000px;}
.ws4{word-spacing:-7.870500px;}
.ws9{word-spacing:-0.144000px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:29.376000px;}
._c{margin-left:-29.520000px;}
._2{margin-left:-6.336000px;}
._0{margin-left:-4.896000px;}
._8{margin-left:-3.526200px;}
._1{margin-left:-1.680000px;}
._4{width:1.512000px;}
._5{width:3.060000px;}
._6{width:4.219200px;}
._3{width:6.120000px;}
._b{width:7.250400px;}
._a{width:8.301600px;}
._e{width:9.316800px;}
._d{width:10.526400px;}
._9{width:16.038000px;}
._7{width:40.500000px;}
.fc1{color:rgb(128,130,133);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:31.482000px;}
.fs2{font-size:41.976000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs6{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:127.559100px;}
.y3c{bottom:143.759100px;}
.yb{bottom:148.254600px;}
.y3b{bottom:159.959100px;}
.y44{bottom:164.454600px;}
.y3a{bottom:180.654600px;}
.y39{bottom:192.359100px;}
.y38{bottom:208.559100px;}
.ya{bottom:222.846750px;}
.y37{bottom:229.254600px;}
.y43{bottom:238.321350px;}
.y9{bottom:245.346750px;}
.y42{bottom:260.821350px;}
.y8{bottom:267.846750px;}
.y41{bottom:283.321350px;}
.y7{bottom:290.346750px;}
.y36{bottom:305.821350px;}
.y6{bottom:312.846750px;}
.y35{bottom:328.321350px;}
.y5{bottom:335.346750px;}
.y67{bottom:336.535200px;}
.y34{bottom:350.821350px;}
.y4{bottom:357.846750px;}
.y66{bottom:359.035200px;}
.y33{bottom:373.321350px;}
.y65{bottom:381.535200px;}
.y32{bottom:395.821350px;}
.y64{bottom:404.035200px;}
.y31{bottom:418.321350px;}
.y63{bottom:426.535200px;}
.y30{bottom:440.821350px;}
.y62{bottom:449.035200px;}
.y2f{bottom:463.321350px;}
.y61{bottom:471.535200px;}
.y2e{bottom:485.821350px;}
.y60{bottom:494.035200px;}
.y2d{bottom:508.321350px;}
.y5f{bottom:516.535200px;}
.y2c{bottom:530.821350px;}
.y5e{bottom:539.035200px;}
.y2b{bottom:553.321350px;}
.y5d{bottom:561.535200px;}
.y2a{bottom:575.821350px;}
.y5c{bottom:584.035200px;}
.y29{bottom:598.321350px;}
.y5b{bottom:606.535200px;}
.y28{bottom:620.821350px;}
.y5a{bottom:629.035200px;}
.y27{bottom:643.321350px;}
.y59{bottom:651.535200px;}
.y26{bottom:665.821350px;}
.y58{bottom:674.035200px;}
.y25{bottom:688.321350px;}
.y57{bottom:696.535200px;}
.y24{bottom:710.821350px;}
.y56{bottom:719.035200px;}
.y23{bottom:733.321350px;}
.y55{bottom:741.535200px;}
.y22{bottom:755.821350px;}
.y54{bottom:764.035200px;}
.y21{bottom:778.321350px;}
.y53{bottom:786.535200px;}
.y20{bottom:800.821350px;}
.y52{bottom:809.035200px;}
.y1f{bottom:823.321350px;}
.y51{bottom:831.535200px;}
.y1e{bottom:845.821350px;}
.y50{bottom:854.035200px;}
.y1d{bottom:868.321350px;}
.y4f{bottom:876.535200px;}
.y1c{bottom:890.821350px;}
.y4e{bottom:899.035200px;}
.y1b{bottom:913.321350px;}
.y40{bottom:913.329300px;}
.y4d{bottom:921.535200px;}
.y3{bottom:923.358600px;}
.y1a{bottom:935.821350px;}
.y3f{bottom:935.829300px;}
.y4c{bottom:944.035200px;}
.y2{bottom:953.358600px;}
.y19{bottom:958.321350px;}
.y3e{bottom:958.329300px;}
.y4b{bottom:966.535200px;}
.y18{bottom:980.821350px;}
.y3d{bottom:980.829300px;}
.y4a{bottom:989.035200px;}
.y17{bottom:1003.329300px;}
.y49{bottom:1011.535200px;}
.y1{bottom:1018.614600px;}
.y16{bottom:1025.829300px;}
.y48{bottom:1034.035200px;}
.y15{bottom:1048.329300px;}
.y47{bottom:1056.535200px;}
.y14{bottom:1070.829300px;}
.y46{bottom:1079.035200px;}
.y45{bottom:1101.535200px;}
.y13{bottom:1101.825300px;}
.y11{bottom:1116.352350px;}
.y10{bottom:1136.152350px;}
.yf{bottom:1155.952350px;}
.y12{bottom:1166.275950px;}
.ye{bottom:1175.752350px;}
.yd{bottom:1195.552350px;}
.h5{height:29.399836px;}
.ha{height:45.140625px;}
.h6{height:47.381836px;}
.h7{height:48.015000px;}
.h9{height:49.289062px;}
.h4{height:63.175781px;}
.h2{height:69.984000px;}
.h8{height:111.164062px;}
.h3{height:116.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.559100px;}
.x2{left:143.430900px;}
.xa{left:217.098450px;}
.x3{left:298.110900px;}
.x1{left:391.332450px;}
.x5{left:485.675850px;}
.x6{left:611.455350px;}
.x9{left:641.567850px;}
.x7{left:649.916850px;}
.x8{left:693.394350px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls4{letter-spacing:-26.240000pt;}
.ls3{letter-spacing:-0.864000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.331200pt;}
.ls5{letter-spacing:0.480000pt;}
.ls0{letter-spacing:1.792000pt;}
.ls1{letter-spacing:1.856000pt;}
.ws0{word-spacing:-106.666667pt;}
.ws1{word-spacing:-105.802667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.328000pt;}
.ws4{word-spacing:-6.996000pt;}
.ws9{word-spacing:-0.128000pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:26.112000pt;}
._c{margin-left:-26.240000pt;}
._2{margin-left:-5.632000pt;}
._0{margin-left:-4.352000pt;}
._8{margin-left:-3.134400pt;}
._1{margin-left:-1.493333pt;}
._4{width:1.344000pt;}
._5{width:2.720000pt;}
._6{width:3.750400pt;}
._3{width:5.440000pt;}
._b{width:6.444800pt;}
._a{width:7.379200pt;}
._e{width:8.281600pt;}
._d{width:9.356800pt;}
._9{width:14.256000pt;}
._7{width:36.000000pt;}
.fs3{font-size:27.984000pt;}
.fs2{font-size:37.312000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs6{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:113.385867pt;}
.y3c{bottom:127.785867pt;}
.yb{bottom:131.781867pt;}
.y3b{bottom:142.185867pt;}
.y44{bottom:146.181867pt;}
.y3a{bottom:160.581867pt;}
.y39{bottom:170.985867pt;}
.y38{bottom:185.385867pt;}
.ya{bottom:198.086000pt;}
.y37{bottom:203.781867pt;}
.y43{bottom:211.841200pt;}
.y9{bottom:218.086000pt;}
.y42{bottom:231.841200pt;}
.y8{bottom:238.086000pt;}
.y41{bottom:251.841200pt;}
.y7{bottom:258.086000pt;}
.y36{bottom:271.841200pt;}
.y6{bottom:278.086000pt;}
.y35{bottom:291.841200pt;}
.y5{bottom:298.086000pt;}
.y67{bottom:299.142400pt;}
.y34{bottom:311.841200pt;}
.y4{bottom:318.086000pt;}
.y66{bottom:319.142400pt;}
.y33{bottom:331.841200pt;}
.y65{bottom:339.142400pt;}
.y32{bottom:351.841200pt;}
.y64{bottom:359.142400pt;}
.y31{bottom:371.841200pt;}
.y63{bottom:379.142400pt;}
.y30{bottom:391.841200pt;}
.y62{bottom:399.142400pt;}
.y2f{bottom:411.841200pt;}
.y61{bottom:419.142400pt;}
.y2e{bottom:431.841200pt;}
.y60{bottom:439.142400pt;}
.y2d{bottom:451.841200pt;}
.y5f{bottom:459.142400pt;}
.y2c{bottom:471.841200pt;}
.y5e{bottom:479.142400pt;}
.y2b{bottom:491.841200pt;}
.y5d{bottom:499.142400pt;}
.y2a{bottom:511.841200pt;}
.y5c{bottom:519.142400pt;}
.y29{bottom:531.841200pt;}
.y5b{bottom:539.142400pt;}
.y28{bottom:551.841200pt;}
.y5a{bottom:559.142400pt;}
.y27{bottom:571.841200pt;}
.y59{bottom:579.142400pt;}
.y26{bottom:591.841200pt;}
.y58{bottom:599.142400pt;}
.y25{bottom:611.841200pt;}
.y57{bottom:619.142400pt;}
.y24{bottom:631.841200pt;}
.y56{bottom:639.142400pt;}
.y23{bottom:651.841200pt;}
.y55{bottom:659.142400pt;}
.y22{bottom:671.841200pt;}
.y54{bottom:679.142400pt;}
.y21{bottom:691.841200pt;}
.y53{bottom:699.142400pt;}
.y20{bottom:711.841200pt;}
.y52{bottom:719.142400pt;}
.y1f{bottom:731.841200pt;}
.y51{bottom:739.142400pt;}
.y1e{bottom:751.841200pt;}
.y50{bottom:759.142400pt;}
.y1d{bottom:771.841200pt;}
.y4f{bottom:779.142400pt;}
.y1c{bottom:791.841200pt;}
.y4e{bottom:799.142400pt;}
.y1b{bottom:811.841200pt;}
.y40{bottom:811.848267pt;}
.y4d{bottom:819.142400pt;}
.y3{bottom:820.763200pt;}
.y1a{bottom:831.841200pt;}
.y3f{bottom:831.848267pt;}
.y4c{bottom:839.142400pt;}
.y2{bottom:847.429867pt;}
.y19{bottom:851.841200pt;}
.y3e{bottom:851.848267pt;}
.y4b{bottom:859.142400pt;}
.y18{bottom:871.841200pt;}
.y3d{bottom:871.848267pt;}
.y4a{bottom:879.142400pt;}
.y17{bottom:891.848267pt;}
.y49{bottom:899.142400pt;}
.y1{bottom:905.435200pt;}
.y16{bottom:911.848267pt;}
.y48{bottom:919.142400pt;}
.y15{bottom:931.848267pt;}
.y47{bottom:939.142400pt;}
.y14{bottom:951.848267pt;}
.y46{bottom:959.142400pt;}
.y45{bottom:979.142400pt;}
.y13{bottom:979.400267pt;}
.y11{bottom:992.313200pt;}
.y10{bottom:1009.913200pt;}
.yf{bottom:1027.513200pt;}
.y12{bottom:1036.689733pt;}
.ye{bottom:1045.113200pt;}
.yd{bottom:1062.713200pt;}
.h5{height:26.133188pt;}
.ha{height:40.125000pt;}
.h6{height:42.117188pt;}
.h7{height:42.680000pt;}
.h9{height:43.812500pt;}
.h4{height:56.156250pt;}
.h2{height:62.208000pt;}
.h8{height:98.812500pt;}
.h3{height:103.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.385867pt;}
.x2{left:127.494133pt;}
.xa{left:192.976400pt;}
.x3{left:264.987467pt;}
.x1{left:347.851067pt;}
.x5{left:431.711867pt;}
.x6{left:543.515867pt;}
.x9{left:570.282533pt;}
.x7{left:577.703867pt;}
.x8{left:616.350533pt;}
}




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